-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwm.csv
We can't make this file beautiful and searchable because it's too large.
2818 lines (2818 loc) · 647 KB
/
wm.csv
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
,0,1,2
0,strenuous,"{'Adjective': ['characterized by or performed with much energy or force', 'taxing to the utmost; testing powers of endurance']}",['energetic']
1,zeal,"{'Noun': ['a feeling of strong eagerness (usually in favor of a person or cause', 'excessive fervor to do something or accomplish some end', 'prompt willingness']}","['fervor', 'fervency', 'fervour', 'fervidness', 'fire', 'ardour', 'ardor']"
2,surmount,"{'Verb': ['get on top of; deal with successfully', 'be on top of', 'reach the highest point of', 'be or do something to a greater degree']}","['vanquish', 'get over', 'bulldog', 'trounce', 'crush', 'master', 'beat out', 'overcome', 'shell', 'beat', 'subdue']"
3,froward,{'Adjective': ['habitually disposed to disobedience and opposition']},"['willful', 'wilful', 'self-willed', 'disobedient', 'headstrong']"
4,baying,"{'Verb': ['utter in deep prolonged tones', 'bark with prolonged noises, of dogs']}","['body of water', 'bight', 'embayment', 'Guantanamo Bay', 'sea', 'water']"
5,diaphanous,{'Adjective': ['so thin as to transmit light']},"['vaporous', 'transparent', 'filmy', 'thin', 'gossamer', 'see-through', 'sheer', 'vapourous', 'gauze-like', 'gauzy', 'cobwebby']"
6,junta,{'Noun': ['a group of military officers who rule a country after seizing power']},"['camp', 'military junta', 'ingroup', 'coterie', 'pack', 'inner circle', 'clique']"
7,kowtow,"{'Noun': ['a former Chinese custom of touching the ground with the forehead as a sign of respect or submission'], 'Verb': ['bend the knees and bow in a servile manner', 'try to gain favor by cringing or flattering']}","['obeisance', 'bow', 'bowing', 'kotow']"
8,trifling,"{'Noun': ['the deliberate act of delaying and playing instead of working'], 'Verb': [""waste time; spend one's time idly or inefficiently"", 'act frivolously', 'consider not very seriously'], 'Adjective': ['not worth considering']}","['dalliance', 'holdup', 'delay', 'dawdling']"
9,stringent,{'Adjective': ['demanding strict attention to rules and procedures']},"['rigorous', 'demanding', 'tight']"
10,frieze,"{'Noun': ['an architectural ornament consisting of a horizontal sculptured band between the architrave and the cornice', 'a heavy woolen fabric with a long nap']}","['architectural ornament', 'entablature']"
11,maudlin,{'Adjective': ['effusively or insincerely emotional']},"['kitschy', 'sentimental', 'bathetic', 'emotional', 'hokey', 'soupy', 'mawkish', 'drippy', 'slushy', 'mushy', 'schmalzy', 'schmaltzy', 'soppy']"
12,novel,"{'Noun': ['an extended fictional work in prose; usually in the form of a story', 'a printed and bound book that is an extended work of fiction'], 'Adjective': ['original and of a kind not seen before', 'pleasantly new or different']}","['mystery novel', 'detective novel', 'romance', 'roman fleuve', 'fiction', 'novelette', 'roman a clef', 'dime novel', 'novella', 'penny dreadful']"
13,foreshadow,"{'Verb': ['indicate, as with a sign or an omen']}","['prognosticate', 'forecast', 'threaten', 'point', 'predict', 'betoken', 'signal', 'omen', 'auspicate', 'bespeak', 'prefigure', 'foretell', 'presage', 'foreshow', 'augur', 'portend', 'bode', 'indicate']"
14,churlish,"{'Adjective': ['rude and boorish', 'having a bad disposition; surly']}",['ungracious']
15,fruitful,{'Adjective': ['productive or conducive to producing in abundance']},"['oval-fruited', 'breeding', 'berried', 'productive', 'baccate', 'red-fruited', 'prolific', 'bacciferous', 'procreative', 'plentiful', 'fertile', 'small-fruited', 'dark-fruited', 'rich', 'fat', 'blue-fruited', 'reproductive', 'high-yield', 'bountiful', 'generative', 'round-fruited']"
16,begrudge,"{'Verb': [""be envious of; set one's heart on"", 'wish ill or allow unwillingly']}",['resent']
17,convalescent,"{'Noun': ['a person who is recovering from illness'], 'Adjective': ['returning to health after illness or debility']}","['recovering', 'sick', 'ill']"
18,synchronous,"{'Adjective': ['occurring or existing at the same time or having the same period or phase', '(digital communication', 'a timing reference']}","['synchronised', 'synchronal', 'parallel', 'coincident', 'coeval', 'contemporaneous', 'co-occurrent', 'coinciding', 'synchronic', 'coexistent', 'cooccurring', 'concurrent', 'coincidental', 'coexisting', 'coetaneous', 'synchronized', 'contemporary', 'simultaneous']"
19,recreant,"{'Noun': ['an abject coward', 'a disloyal person who betrays or deserts his cause or religion or political party or friend etc.'], 'Adjective': ['having deserted a cause or principle', 'lacking even the rudiments of courage; abjectly fearful']}","['fearful', 'craven', 'cowardly']"
20,moratorium,"{'Noun': ['a legally authorized postponement before some obligation must be discharged', 'suspension of an ongoing activity']}","['suspension', 'abeyance']"
21,proscribe,{'Verb': ['command against']},"['outlaw', 'criminalise', 'illegalise', 'debar', 'criminalize', 'nix', 'forbid', 'enjoin', 'exclude', 'interdict', 'illegalize', 'veto', 'command', 'disallow', 'prohibit', 'bar', 'require', 'ban']"
22,stigmas,"{'Noun': ['the apical end of the style where deposited pollen enters the pistil', 'a symbol of disgrace or infamy', 'an external tracheal aperture in a terrestrial arthropod', 'a skin lesion that is a diagnostic sign of some disease']}",['spiracle']
23,acclaim,"{'Noun': ['enthusiastic approval'], 'Verb': ['praise vociferously', ""clap one's hands or shout after performances to indicate approval""]}","['applaud', 'herald', 'hail']"
24,founder,"{'Noun': ['inflammation of the laminated tissue that attaches the hoof to the foot of a horse', 'a person who founds or establishes some institution', 'a worker who makes metal castings'], 'Verb': ['fail utterly; collapse', 'sink below the surface', 'break down, literally or metaphorically', 'stumble and nearly fall']}","['father', 'beginner', 'mastermind', 'originator', 'conceiver', 'coloniser', 'cofounder', 'founding father', 'foundress', 'colonizer']"
25,rotund,"{'Adjective': ['spherical in shape', '(of sounds', 'excessively fat']}","['weighty', 'corpulent', 'fat', 'obese']"
26,haven,"{'Noun': ['a shelter serving as a place of safety or sanctuary', 'a sheltered port where ships can take on or discharge cargo']}","['shelter', 'oasis']"
27,tetchy,{'Adjective': ['easily irritated or annoyed']},"['fractious', 'peevish', 'scratchy', 'ill-natured', 'pettish', 'techy', 'testy', 'peckish', 'petulant', 'irritable', 'nettlesome', 'cranky']"
28,preemptive,{'Adjective': ['designed or having the power to deter or prevent an anticipated situation or occurrence']},"['preventive', 'preventative', 'pre-emptive']"
29,muted,"{'Verb': ['deaden (a sound or noise'], 'Adjective': ['in a softened tone', 'being or made softer or less loud or clear']}","['quiet', 'subdued', 'soft', 'hushed']"
30,disputatious,"{'Adjective': ['inclined or showing an inclination to dispute or disagree, even to engage in law suits']}","['combative', 'argumentative', 'litigious', 'contentious', 'disputative']"
31,metaphorical,{'Adjective': ['expressing one thing in terms normally denoting another']},"['figurative', 'nonliteral', 'metaphoric']"
32,gild,"{'Noun': ['a formal association of people with similar interests'], 'Verb': ['decorate with, or as if with, gold leaf or liquid gold']}","['adorn', 'engild', 'decorate', 'embellish', 'ornament', 'grace', 'begild', 'beautify']"
33,rebut,"{'Verb': ['overthrow by argument, evidence, or proof', 'prove to be false or incorrect']}","['answer', 'oppose', 'controvert', 'repudiate', 'renounce', 'contradict', 'disown', 'refute']"
34,scrupulous,"{'Adjective': ['having scruples; arising from a sense of right and wrong; principled', 'characterized by extreme care and great effort']}","['conscientious', 'painstaking', 'careful']"
35,mimetic,"{'Adjective': ['characterized by or of the nature of or using mimesis', 'exhibiting mimicry']}",['representational']
36,hardy,"{'Noun': ['United States slapstick comedian who played the pompous and overbearing member of the Laurel and Hardy duo who made many films (1892-1957', 'English novelist and poet (1840-1928'], 'Adjective': ['having rugged physical strength; inured to fatigue or hardships', 'able to survive under unfavorable weather conditions', 'invulnerable to fear or intimidation']}","['robust', 'sturdy', 'stout', 'stalwart']"
37,introspection,{'Noun': ['the contemplation of your own thoughts and desires and conduct']},"['rumination', 'thoughtfulness', 'musing', 'examen', 'soul-searching', 'contemplation', 'self-analysis', 'reflection', 'reflexion', 'examination', 'self-contemplation', 'self-examination']"
38,encumber,{'Verb': ['restrict (someone or something']},"['restrain', 'cumber', 'constrain', 'trammel', 'restrict', 'bound', 'throttle', 'limit', 'confine', 'clog', 'bridle', 'curb']"
39,homiletics,"{'Noun': ['the branch of theology that deals with sermons and homilies', 'the art of preaching']}","['theology', 'divinity']"
40,servile,"{'Adjective': ['submissive or fawning in attitude or behavior', 'relating to or involving slaves or appropriate for slaves or servants']}","['obsequious', 'toadyish', 'bootlicking', 'slavelike', 'subservient', 'submissive', 'fawning', 'slavish', 'sycophantic']"
41,eradicate,"{'Verb': ['kill in large numbers', 'destroy completely, as if down to the roots']}","['annihilate', 'decimate', 'extinguish', 'eliminate', 'wipe out', 'kill', 'carry off']"
42,libertine,"{'Noun': ['a dissolute person; usually a man who is morally unrestrained'], 'Adjective': ['unrestrained by convention or morality']}","['philanderer', 'ravisher', 'rakehell', 'tramp', 'debaucher', ""ladies' man"", 'seducer', 'rake', 'rip', 'fornicator', 'lady killer', 'swinger', 'debauchee', 'roue', 'bad person', 'womanizer', 'profligate', 'womaniser', 'rounder', 'adulterer', 'gigolo', 'blood', 'violator']"
43,tarnish,"{'Noun': ['discoloration of metal surface caused by oxidation'], 'Verb': ['make dirty or spotty, as by exposure to air; also used metaphorically']}","['stain', 'fleck', 'defile', 'blob', 'maculate', 'darken', 'blot', 'spot', 'sully']"
44,culpability,{'Noun': ['a state of guilt']},"['guiltiness', 'guilt', 'culpableness', 'blameworthiness']"
45,enamor,{'Verb': ['attract; cause to be enamored']},"['charm', 'fascinate', 'appeal', 'beguile', 'work', 'catch', 'becharm', 'captivate', 'enamour', 'entrance', 'capture', 'enchant', 'attract', 'bewitch', 'trance', 'hold']"
46,gumption,"{'Noun': ['sound practical judgment', 'fortitude and determination']}","['backbone', 'fortitude', 'grit', 'guts', 'sand', 'moxie']"
47,ambivalence,{'Noun': ['mixed feelings or emotions']},"['conflict', 'feeling', 'ambivalency']"
48,fledgling,"{'Noun': ['any new participant in some activity', 'young bird that has just fledged or become capable of flying'], 'Adjective': ['(of a young bird', 'young and inexperienced']}","['callow', 'inexperient', 'unfledged', 'inexperienced']"
49,sagacious,"{'Adjective': ['acutely insightful and wise', 'skillful in statecraft or management']}","['sapient', 'perspicacious', 'wise']"
50,xenophobia,{'Noun': ['a fear of foreigners or strangers']},['social phobia']
51,quixotic,{'Adjective': ['not sensible about practical matters; idealistic and unrealistic']},"['wild-eyed', 'impractical', 'romantic']"
52,unsavory,"{'Adjective': ['morally offensive', 'not pleasing in odor or taste']}","['offensive', 'unsavoury', 'odoriferous']"
53,plod,"{'Noun': ['the act of walking with a slow heavy gait'], 'Verb': ['walk heavily and firmly, as when weary, or through mud']}","['squelch', 'squish', 'slop', 'tramp', 'footslog', 'pad', 'trudge', 'splash', 'splosh', 'slosh', 'walk', 'slog']"
54,haptic,{'Adjective': ['of or relating to or proceeding from the sense of touch']},"['tactual', 'tactile']"
55,explicate,"{'Verb': ['make plain and comprehensible', 'elaborate, as of theories and hypotheses']}","['naturalize', 'account for', 'clarify', 'inform', 'clear up', 'elucidate', 'interpret', 'comment', 'rede', 'explain']"
56,ostracize,"{'Verb': ['expel from a community or group', 'avoid speaking to or dealing with']}","['expel', 'throw out', 'blackball', 'shun', 'cast out', 'kick out', 'banish', 'ostracise', 'ban']"
57,qualification,"{'Noun': ['an attribute that must be met or complied with and that fits a person for something', 'the act of modifying or changing the strength of some idea', 'a statement that limits or restricts some claim']}","['fittingness', 'making', 'eligibility', 'ineligibility', 'fitness']"
58,gall,"{'Noun': ['an open sore on the back of a horse caused by ill-fitting or badly adjusted saddle', 'a skin sore caused by chafing', 'abnormal swelling of plant tissue caused by insects or microorganisms or injury', 'a feeling of deep and bitter anger and ill-will', 'a digestive juice secreted by the liver and stored in the gallbladder; aids in the digestion of fats', 'the trait of being rude and impertinent; inclined to take liberties'], 'Verb': ['become or make sore by or as if by rubbing', 'irritate or vex']}","['enviousness', 'sulkiness', 'rancor', 'grievance', 'rancour', 'resentment', 'grudge', 'enmity', 'ill will', 'huffishness', 'score', 'heartburning', 'envy', 'bitterness', 'hostility']"
59,conflate,{'Verb': ['mix together different elements']},"['change integrity', 'blend in', 'mix in', 'commingle', 'immix', 'gauge', 'admix', 'syncretize', 'alloy', 'conjugate', 'merge', 'syncretise', 'coalesce', 'mix', 'absorb', 'combine', 'blend', 'melt', 'fuse', 'flux', 'accrete', 'meld']"
60,objurgation,{'Noun': ['rebuking a person harshly']},"['reproof', 'reprimand', 'reprehension', 'rebuke', 'tongue-lashing', 'wig', 'reproval', 'chiding', 'wigging', 'scolding']"
61,economy,"{'Noun': ['the system of production and distribution and consumption', 'the efficient use of resources', 'frugality in the expenditure of money or resources', 'an act of economizing; reduction in cost']}","['black economy', 'state socialism', 'scheme', 'private enterprise', 'market economy', 'industrialism', 'system', 'mixed economy', 'laissez-faire economy', 'sector', 'state capitalism', 'free enterprise', 'non-market economy', 'economic system']"
62,preternatural,"{'Adjective': ['surpassing the ordinary or normal', 'existing outside of or not in accordance with nature']}","['otherworldly', 'nonnatural', 'supernatural', 'transcendental']"
63,scurrilous,{'Adjective': ['expressing offensive reproach']},"['abusive', 'offensive', 'opprobrious']"
64,requisite,"{'Noun': ['anything indispensable'], 'Adjective': ['necessary for relief or supply']}","['needed', 'needful', 'necessary', 'required']"
65,extravagant,"{'Adjective': ['unrestrained, especially with regard to feelings', 'recklessly wasteful']}","['unrestrained', 'excessive', 'overweening', 'exuberant']"
66,husband,"{'Noun': [""a married man; a woman's partner in marriage""], 'Verb': ['use cautiously and frugally']}","['partner', 'hubby', 'uxoricide', 'married man', 'benedict', 'cuckold', 'benedick', 'spouse', 'better half', 'househusband', 'mate', 'family man', 'married person', 'house husband']"
67,milk,"{'Noun': ['a white nutritious liquid secreted by mammals and used as food by human beings', 'produced by mammary glands of female mammals for feeding their young', 'a river that rises in the Rockies in northwestern Montana and flows eastward to become a tributary of the Missouri River', 'any of several nutritive milklike liquids'], 'Verb': ['take milk from female mammals', 'exploit as much as possible', 'add milk to']}","['buttermilk', 'drink', 'low-fat milk', ""goats' milk"", 'evaporated milk', 'raw milk', ""yak's milk"", 'powdered milk', 'milk powder', 'skimmed milk', 'condensed milk', 'pasteurized milk', 'dairy product', 'dried milk', 'whole milk', 'semi-skimmed milk', 'dry milk', 'potable', 'protein', 'beverage', 'skim milk', 'certified milk', 'chocolate milk', 'acidophilus milk', 'drinkable', 'homogenized milk', 'scalded milk', 'sour milk', ""cows' milk""]"
68,pronounced,"{'Verb': ['speak, pronounce, or utter in a certain way', 'pronounce judgment on'], 'Adjective': ['strongly marked; easily noticeable']}","['marked', 'noticeable']"
69,momentary,{'Adjective': ['lasting for a markedly brief time']},"['momentaneous', 'short', 'fugitive', 'fleeting']"
70,ameliorate,"{'Verb': ['to make better', 'get better']}","['bounce back', 'reform', 'surge', 'recover', 'recuperate', 'improve', 'straighten out', 'turn around', 'change state', 'mend', 'see the light', 'get well', 'pick up', 'get over', 'better', 'amend', 'heal', 'turn', 'meliorate', 'fructify', 'upgrade', 'convalesce']"
71,biased,"{'Verb': ['influence in an unfair way', 'cause to be biased'], 'Adjective': ['favoring one person or side over another']}","['one-sided', 'coloured', 'colored', 'slanted', 'partial']"
72,exalt,"{'Verb': ['praise, glorify, or honor', 'fill with sublime emotion', 'heighten or intensify', 'raise in rank, character, or status']}","['praise', 'hymn', 'crack up', 'canonise', 'canonize', 'extol', 'ensky', 'proclaim', 'laud', 'glorify']"
73,arrant,{'Adjective': ['without qualification; used informally as (often pejorative']},"['utter', 'staring', 'perfect', 'stark', 'pure', 'thoroughgoing', 'gross', 'unmitigated', 'consummate', 'complete', 'double-dyed', 'everlasting', 'unadulterated', 'sodding']"
74,sluggish,"{'Adjective': ['moving slowly', '(of business', 'or slow', 'slow and apathetic']}","['sulky', 'slow']"
75,thwart,"{'Noun': ['a crosspiece spreading the gunnels of a boat; used as a seat in a rowboat'], 'Verb': ['hinder or prevent (the efforts, plans, or desires']}","['baffle', 'scotch', 'foil', 'disappoint', 'cross', 'prevent', 'frustrate', 'let down', 'queer', 'preclude', 'ruin', 'dash', 'bilk', 'foreclose', 'spoil', 'forestall', 'short-circuit', 'forbid']"
76,aver,"{'Verb': ['report or maintain', 'to declare or affirm solemnly and formally as true']}","['say', 'assert', 'allege', 'maintain', 'asseverate', 'plead']"
77,balk,"{'Noun': ['the area on a billiard table behind the balkline', 'something immaterial that interferes with or delays action or progress', 'one of several parallel sloping beams that support a roof', 'an illegal pitching motion while runners are on base'], 'Verb': ['refuse to comply']}","['resist', 'disobey', 'baulk', 'jib']"
78,mendacious,"{'Adjective': ['given to lying', 'intentionally untrue']}",['untruthful']
79,salient,"{'Noun': ['(military'], 'Adjective': ['having a quality that thrusts itself into attention', '(of angles', 'represented as leaping (rampant but leaning forward']}","['conspicuous', 'striking', 'prominent', 'spectacular', 'outstanding']"
80,wizened,{'Adjective': ['lean and wrinkled by shrinkage as from age or illness']},"['shrunken', 'thin', 'shrivelled', 'shriveled', 'lean', 'withered', 'wizen']"
81,stygian,"{'Adjective': ['hellish', 'dark and dismal as of the rivers Acheron and Styx in Hades']}","['Acherontic', 'dark', 'Acheronian']"
82,prophetic,{'Adjective': ['foretelling events as if by supernatural intervention']},"['sibylline', 'vatic', 'mantic', 'prognosticative', 'precognitive', 'second-sighted', 'fateful', 'oracular', 'apocalyptical', 'sibyllic', 'adumbrative', 'prognostic', 'clairvoyant', 'prefigurative', 'divinatory', 'apocalyptic', 'portentous', 'revelatory', 'prophetical', 'vatical', 'predictive', 'Delphic', 'precursory', 'foreboding', 'foreshadowing', 'premonitory']"
83,dawdle,"{'Verb': [""take one's time; proceed slowly"", 'waste time', 'hang (back', 'behind']}","['move', 'linger']"
84,inane,{'Adjective': ['extremely silly or stupid']},"['foolish', 'mindless', 'fatuous', 'asinine', 'vacuous']"
85,retrospective,"{'Noun': [""an exhibition of a representative selection of an artist's life work""], 'Adjective': ['concerned with or related to the past']}",['art exhibition']
86,ostensible,"{'Adjective': ['appearing as such but not necessarily so', 'represented or appearing as such; pretended']}","['counterfeit', 'ostensive', 'imitative']"
87,redound,"{'Verb': ['return or recoil', 'contribute', 'have an effect for good or ill']}",['accrue']
88,affected,"{'Verb': ['have an effect upon', 'act physically on; have an effect upon', 'connect closely and often incriminatingly', 'make believe with the intent to deceive', 'have an emotional or cognitive impact upon'], 'Adjective': ['acted upon; influenced', 'speaking or behaving in an artificial way to make an impression', 'being excited or provoked to the expression of an emotion']}","['touched', 'smitten', 'taken', 'impressed', 'stage-struck', 'moved', 'struck', 'wonder-struck', 'subject', 'stirred', 'stricken']"
89,ascendancy,{'Noun': ['the state that exists when one person or group has power over another']},"['control', 'rule', 'tyranny', 'supremacy', 'monopoly', 'condition', 'ascendance', 'predomination', 'dominance', 'status', 'absolutism', 'dominion', 'domination', 'ascendency', 'prepotency', 'ascendence', 'ascendant', 'regulation', 'despotism', 'predominance', 'ascendent', 'mastery']"
90,expunge,{'Verb': ['remove by erasing or crossing out or as if by drawing a line']},"['delete', 'cancel', 'excise', 'scratch', 'strike']"
91,panacea,"{'Noun': ['(Greek mythology', 'hypothetical remedy for all ills or diseases; once sought by the alchemists']}","['remedy', 'cure-all', 'nostrum', 'elixir', 'catholicon', 'therapeutic', 'cure', 'curative']"
92,lucrative,{'Adjective': ['producing a sizeable profit']},"['remunerative', 'moneymaking', 'profitable']"
93,astray,"{'Adverb': ['away from the right path or direction', 'far from the intended target']}",['wide']
94,pastiche,"{'Noun': ['a musical composition consisting of a series of songs or other musical pieces from various sources', 'a work of art that imitates the style of some previous work']}","['potpourri', 'composition', 'musical composition', 'opus', 'medley', 'piece of music', 'piece']"
95,effervescent,"{'Adjective': ['used of wines and waters; charged naturally or artificially with carbon dioxide', '(of a liquid', 'marked by high spirits or excitement']}",['sparkling']
96,concomitant,"{'Noun': ['an event or situation that happens at the same time as or in connection with another'], 'Adjective': ['occurring with or following as a consequence']}","['accompanying', 'incidental', 'attendant', 'ensuant', 'subsequent', 'sequent', 'consequent', 'resultant']"
97,cow,"{'Noun': [""mature female of mammals of which the male is called `bull'"", 'a large unpleasant woman'], 'Verb': ['subdue, restrain, or overcome by affecting with a feeling of awe; frighten (as with threats']}","['kine', 'springing cow', 'bag', 'Bos taurus', 'cows', 'cattle', 'heifer', 'springer', 'udder', 'poll', 'oxen', 'moo-cow']"
98,bristle,"{'Noun': ['a stiff fiber (coarse hair or filament', 'a stiff hair'], 'Verb': ['be in a state of movement or action', 'rise up as in fear', 'have or be thickly covered with or as if with bristles', 'react in an offended or angry manner']}","['brush', 'fibre', 'fiber']"
99,dismiss,"{'Verb': ['bar from attention or consideration', 'cease to consider; put out of judicial consideration', 'stop associating with', 'terminate the employment of; discharge from an office or position', ""end one's encounter with somebody by causing or permitting the person to leave"", 'declare void']}","['ignore', 'pass off', 'discredit', 'discount', 'push aside', 'disregard', 'cold-shoulder', 'laugh away', 'slight', 'reject', 'scoff', 'laugh off', 'brush aside', 'disoblige', 'shrug off', 'brush off', 'flout', 'turn a blind eye']"
100,fraternize,"{'Verb': ['be on friendly terms with someone, as if with a brother, especially with an enemy']}","['socialise', 'fraternise', 'socialize']"
101,plaudits,"{'Noun': ['enthusiastic approval', 'enthusiastic approval']}","['commendation', 'plaudit', 'acclaim', 'acclamation', 'approval', 'eclat']"
102,vitriolic,"{'Adjective': ['harsh or corrosive in tone', 'of a substance, especially a strong acid; capable of destroying or eating away by chemical action']}","['unpleasant', 'acrid', 'acerb', 'virulent', 'caustic', 'bitter', 'blistering', 'sulphurous', 'sulfurous', 'acid', 'acerbic']"
103,affinity,"{'Noun': ['(immunology', '(anthropology', '(biology', 'a close connection marked by community of interests or similarity in nature or character', 'the force attracting atoms to each other and binding them together in a molecule', 'inherent resemblance between persons or things', 'a natural attraction or feeling of kinship']}","['attractive force', 'attraction']"
104,urbane,{'Adjective': ['showing a high degree of refinement and the assurance that comes from wide social experience']},"['polished', 'refined', 'svelte', 'sophisticated']"
105,lampoon,"{'Noun': [""a composition that imitates or misrepresents somebody's style, usually in a humorous way""], 'Verb': ['ridicule with satire']}","['make fun', 'laugh at', 'roast', 'blackguard', 'guy', 'poke fun', 'rib', 'satirise', 'ridicule', 'jest at', 'satirize']"
106,sensational,"{'Adjective': ['causing intense interest, curiosity, or emotion', 'commanding attention', 'relating to or concerned in sensation']}","['sensationalistic', 'screaming', 'yellow', 'shocking', 'sensationalism', 'scandalmongering', 'lurid']"
107,autonomy,"{'Noun': ['immunity from arbitrary exercise of authority: political independence', 'personal independence']}","['independence', 'self-determination', 'self-rule', 'self-government', 'liberty', 'independency']"
108,specious,"{'Adjective': ['plausible but false', 'based on pretense; deceptively pleasing']}","['spurious', 'false']"
109,diffident,"{'Adjective': ['showing modest reserve', 'lacking self-confidence']}",['reserved']
110,tendentious,{'Adjective': ['having or marked by a strong tendency especially a controversial one']},"['partisan', 'tendencious', 'partizan']"
111,clairvoyant,"{'Noun': ['someone who has the power of clairvoyance'], 'Adjective': ['perceiving things beyond the natural range of the senses', 'foreseeing the future']}","['paranormal', 'extrasensory']"
112,reproach,"{'Noun': ['a mild rebuke or criticism', 'disgrace or shame'], 'Verb': ['express criticism towards']}","['reproof', 'reprimand', 'self-reproof', 'reprehension', 'rebuke', 'blame', 'rap', 'reproval', 'self-reproach']"
113,deterrent,"{'Noun': ['something immaterial that interferes with or delays action or progress'], 'Adjective': ['tending to deter']}","['obstacle', 'balk', 'hindrance', 'check', 'millstone', 'diriment impediment', 'drag', 'obstruction', 'bind', 'albatross', 'handicap', 'hinderance', 'difficulty', 'baulk', 'straitjacket', 'impediment']"
114,malodorous,{'Adjective': ['having an unpleasant smell']},"['foetid', 'rank-smelling', 'foul', 'sour', 'noisome', 'gamey', 'ill-scented', 'mephitic', 'funky', 'unpleasant-smelling', 'bilgy', 'malodourous', 'stinky', 'miasmic', 'gamy', 'smelly', 'odorous', 'putrid-smelling', 'rancid', 'ill-smelling', 'stinking', 'fetid', 'high', 'frowsty', 'musty', 'niffy', 'reeking', 'odoriferous', 'fusty', 'foul-smelling']"
115,cowed,"{'Verb': ['subdue, restrain, or overcome by affecting with a feeling of awe; frighten (as with threats']}","['kine', 'springing cow', 'bag', 'Bos taurus', 'cows', 'cattle', 'heifer', 'springer', 'udder', 'poll', 'oxen', 'moo-cow']"
116,waffle,"{'Noun': ['pancake batter baked in a waffle iron'], 'Verb': ['pause or hold back in uncertainty or unwillingness']}","['Belgian waffle', 'cake']"
117,precis,"{'Noun': ['a sketchy summary of the main points of an argument or theory'], 'Verb': ['make a summary (of']}","['abstract', 'synopsis', 'summary', 'sum-up', 'brief', 'apercu', 'outline', 'epitome']"
118,avert,"{'Verb': ['prevent the occurrence of; prevent from happening', 'turn away or aside']}","['preclude', 'foreclose', 'prevent', 'avoid', 'ward off', 'fend off', 'forestall', 'obviate', 'head off', 'debar', 'deflect', 'forfend', 'forefend', 'forbid', 'stave off']"
119,incandescent,"{'Adjective': ['emitting light as a result of being heated', 'characterized by ardent emotion or intensity or brilliance']}","['candent', 'light']"
120,miasma,"{'Noun': ['an unwholesome atmosphere', 'unhealthy vapors rising from the ground or other sources']}","['ambience', 'miasm', 'atmosphere', 'ambiance']"
121,apothegm,{'Noun': ['a short pithy instructive saying']},"['apophthegm', 'axiom', 'aphorism', 'maxim']"
122,algorithm,{'Noun': ['a precise rule (or set of rules']},"['algorithmic program', 'algorithmic rule', 'rule', 'formula', 'sorting algorithm', 'stemmer', 'stemming algorithm']"
123,whimsical,{'Adjective': ['determined by chance or impulse or whim rather than by necessity or reason']},"['arbitrary', 'capricious', 'impulsive']"
124,contrite,{'Adjective': ['feeling or expressing pain or sorrow for sins or offenses']},"['penitent', 'remorseful', 'rueful', 'repentant', 'ruthful']"
125,Pollyannaish,{'Adjective': ['pleasantly (even unrealistically']},"['optimistic', 'upbeat', 'cheerful']"
126,levity,"{'Noun': ['feeling an inappropriate lack of seriousness', 'a manner lacking seriousness']}","['humorousness', 'jocoseness', 'flippancy', 'jocosity', 'light-mindedness', 'merriness', 'frivolity', 'frivolousness']"
127,abjure,"{'Verb': ['formally reject or disavow a formerly held belief, usually under pressure']}","['retract', 'forswear', 'repudiate', 'resile', 'renounce', 'disown', 'recant']"
128,elucidate,"{'Verb': ['make clear and (more', 'make free from confusion or ambiguity; make clear']}","['explicate', 'disambiguate', 'sort out', 'enlighten', 'crystalise', 'expand', 'clarify', 'straighten out', 'clear up', 'illuminate', 'enlarge', 'explain', 'demystify', 'flesh out', 'shed light on', 'crystalize', 'crystallize', 'clear', 'dilate', 'elaborate', 'lucubrate', 'crystallise', 'expound', 'expatiate', 'exposit']"
129,mesmerize,"{'Verb': ['attract strongly, as if with a magnet', 'induce hypnosis in']}","['magnetise', 'charm', 'influence', 'tempt', 'mesmerise', 'spellbind', 'magnetize', 'bewitch']"
130,imploring,"{'Verb': ['call upon in supplication; entreat'], 'Adjective': ['begging']}","['precative', 'importunate', 'precatory', 'supplicant', 'supplicatory', 'petitionary', 'pleading', 'mendicant', 'adjuratory', 'suppliant', 'beseeching']"
131,sublime,"{'Verb': ['vaporize and then condense right back again', 'change or cause to change directly from a solid into a vapor without first melting'], 'Adjective': ['inspiring awe', 'worthy of adoration or reverence', 'lifted up or set high', 'of high moral or intellectual value; elevated in nature or style', 'greatest or maximal in degree; extreme']}","['empyrean', 'glorious', 'empyreal']"
132,verbose,"{'Adjective': ['using or containing too many words', 'or windy']}","['long-winded', 'prolix', 'wordy', 'windy', 'tedious']"
133,impugn,{'Verb': ['attack as false or wrong']},['challenge']
134,provincial,"{'Noun': ['(Roman Catholic Church', 'a country person'], 'Adjective': ['of or associated with a province', 'characteristic of the provinces or their people']}","['poky', 'one-horse', 'unsophisticated', 'corn-fed', 'bumpkinly', 'jerkwater', 'rustic', 'parochial', 'pokey', 'stay-at-home', 'insular', 'hick']"
135,cower,"{'Verb': ['crouch or curl up', 'show submission or fear']}","['huddle', 'bow', 'crouch', 'stoop', 'bend']"
136,perigee,{'Noun': ['periapsis in Earth orbit; the point in its orbit where a satellite is nearest to the Earth']},"['point of periapsis', 'periapsis']"
137,neophyte,"{'Noun': ['a plant that is found in an area where it had not been recorded previously', 'any new participant in some activity', 'a new convert being taught the principles of Christianity by a catechist']}","['flora', 'plant', 'plant life']"
138,underscore,"{'Noun': ['a line drawn underneath (especially under written matter'], 'Verb': ['give extra weight to (a communication', 'draw a line or lines underneath to call attention to']}","['emphasize', 'punctuate', 'accent', 'stress', 'accentuate', 'emphasise', 'underline']"
139,intrepid,{'Adjective': ['invulnerable to fear or intimidation']},"['hardy', 'brave', 'bold', 'audacious', 'fearless', 'dauntless', 'unfearing']"
140,jettison,"{'Verb': ['throw away, of something encumbering', 'throw as from an airplane']}",['throw']
141,physiological,"{'Adjective': ['of or relating to the biological study of physiology', ""of or consistent with an organism's normal functioning""]}","['physical', 'physiologic']"
142,venerated,{'Verb': ['regard with feelings of respect and reverence; consider hallowed or exalted or be in awe of']},"['enshrine', 'reverence', 'respect', 'saint', 'prize', 'worship', 'fear', 'esteem', 'value', 'prise', 'revere']"
143,ingrained,"{'Verb': ['thoroughly work in', 'produce or try to produce a vivid impression of'], 'Adjective': ['(used especially of ideas or principles']}","['deep-seated', 'established', 'constituted', 'planted', 'deep-rooted', 'implanted']"
144,cacophonous,{'Adjective': ['having an unpleasant sound']},"['strident', 'scratchy', 'ripping', 'jarring', 'cacophonic', 'jangling', 'raspy', 'gruff', 'grating', 'rasping', 'jangly', 'hoarse', 'splitting', 'raucous', 'squawky', 'rending', 'cackly', 'croaky', 'noisy', 'gravelly', 'guttural', 'husky', 'rough']"
145,monotonous,"{'Adjective': ['tediously repetitious or lacking in variety', 'sounded or spoken in a tone unvarying in pitch']}","['dull', 'humdrum']"
146,interlocutor,"{'Noun': ['the performer in the middle of a minstrel line who engages the others in talk', 'a person who takes part in a conversation']}","['conversationalist', 'schmoozer', 'conversationist', 'conversational partner']"
147,enchant,"{'Verb': ['hold spellbound', 'attract; cause to be enamored', 'cast a spell over someone or something; put a hex on someone or something']}","['enrapture', 'please', 'enthral', 'transport', 'ravish', 'enthrall', 'delight']"
148,genial,"{'Adjective': ['diffusing warmth and friendliness', 'of or relating to the chin or median part of the lower jaw', 'agreeable, conducive to comfort']}","['affable', 'cordial', 'amiable', 'friendly']"
149,inopportune,{'Adjective': ['not opportune']},"['untimely', 'wrong', 'ill-timed', 'unseasonable', 'disadvantageous', 'inconvenient']"
150,extant,{'Adjective': ['still in existence; not extinct or destroyed or lost']},"['surviving', 'existing', 'existent', 'living']"
151,amicable,{'Adjective': ['characterized by friendship and good will']},"['peaceful', 'peaceable', 'well-disposed', 'unthreatening', 'lovable', 'loveable', 'favorable', 'well-meaning', 'friendly']"
152,nadir,"{'Noun': ['an extreme state of adversity; the lowest point of anything', 'the point below the observer that is directly opposite the zenith on the imaginary sphere against which celestial bodies appear to be projected']}","['low-water mark', 'hardship', 'hard knocks', 'adversity']"
153,hedge,"{'Noun': ['a fence formed by a row of closely planted shrubs or bushes', 'any technique designed to reduce or eliminate financial risk; for example, taking two positions that will offset each other if prices change', 'an intentionally noncommittal or ambiguous statement'], 'Verb': ['avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues', 'hinder or restrict with or as if with a hedge', 'enclose or bound in with or as it with a hedge or hedges', 'minimize loss or risk']}","['privet hedge', 'windbreak', 'shelterbelt', 'hedgerow', 'fencing', 'fence']"
154,philander,"{'Verb': ['have amorous affairs; of men', 'talk or behave amorously, without serious intentions']}","['womanize', 'interact', 'womanise']"
155,dubious,"{'Adjective': ['fraught with uncertainty or doubt', 'open to doubt or suspicion', 'not convinced']}","['unsure', 'doubtful', 'incertain', 'uncertain']"
156,cryptic,"{'Adjective': ['of an obscure nature', 'having a secret or hidden meaning', 'having a puzzling terseness']}","['incomprehensible', 'deep', 'inscrutable', 'inexplicable', 'mystifying', 'mysterious', 'cryptical']"
157,peroration,"{'Noun': ['a flowery and highly rhetorical oration', '(rhetoric']}","['conclusion', 'ending', 'end', 'oration', 'closing', 'close']"
158,callous,"{'Verb': ['make insensitive or callous; deaden feelings or morals'], 'Adjective': ['emotionally hardened', 'having calluses; having skin made tough and thick through wear']}","['pachydermatous', 'insensitive', 'indurate']"
159,corroborate,"{'Verb': ['establish or strengthen as with new evidence or facts', 'give evidence for', 'support with evidence or authority or make more certain or confirm']}","['back', 'affirm', 'verify', 'vouch', 'support', 'sustain', 'substantiate', 'show', 'demonstrate', 'confirm', 'prove', 'shew', 'establish', 'validate', 'document', 'back up']"
160,vindictive,"{'Adjective': ['disposed to seek revenge or intended for revenge', 'showing malicious ill will and a desire to hurt; motivated by spite']}","['vengeful', 'revengeful', 'unforgiving']"
161,amend,"{'Verb': ['make amendments to', 'to make better', 'set straight or right']}",['revise']
162,benign,"{'Adjective': ['not dangerous to health; not recurrent or progressive (especially of a tumor', 'pleasant and beneficial in nature or influence', 'kindness of disposition or manner']}",['kind']
163,panoply,{'Noun': ['a complete and impressive array']},['array']
164,jocular,"{'Adjective': ['characterized by jokes and good humor'], 'Adverb': ['with humor']}","['joking', 'jesting', 'humourous', 'jocose', 'humorous']"
165,antedated,"{'Verb': ['be earlier in time; go back further', 'establish something as being earlier relative to something else']}","['forgo', 'antecede', 'forego', 'precede', 'predate']"
166,voracious,"{'Adjective': ['excessively greedy and grasping', 'devouring or craving food in great quantities']}","['ravening', 'edacious', 'esurient', 'rapacious', 'gluttonous', 'ravenous', 'wolfish']"
167,laudable,{'Adjective': ['worthy of high praise']},"['applaudable', 'commendable', 'worthy', 'praiseworthy']"
168,arresting,"{'Verb': ['take into custody', 'hold back, as of a danger or an enemy; check the expansion or influence of', 'attract and fix', 'cause to stop'], 'Adjective': ['commanding attention']}","['impressive', 'stunning', 'sensational']"
169,malingerer,{'Noun': ['someone shirking their duty by feigning illness or incapacity']},"['shammer', 'slacker', 'skulker', 'shirker']"
170,peculiar,"{'Adjective': ['beyond or deviating from the usual or expected', 'unique or specific to a person or thing or category', 'markedly different from the usual', 'characteristic of one only; distinctive or special']}","['funny', 'singular', 'strange', 'odd', 'rummy', 'unusual', 'rum', 'queer', 'curious']"
171,scofflaw,{'Noun': ['one who habitually ignores the law and does not answer court summonses']},"['malefactor', 'criminal', 'outlaw', 'felon', 'crook']"
172,banality,{'Noun': ['a trite or obvious remark']},"['bromide', 'cliche', 'remark', 'commonplace', 'comment', 'truism', 'platitude', 'input']"
173,novitiate,"{'Noun': ['the period during which you are a novice (especially in a religious order', 'someone who has entered a religious order but has not taken final vows']}","['period of time', 'period', 'noviciate', 'time period']"
174,tonic,"{'Noun': ['lime- or lemon-flavored carbonated water containing quinine', 'a sweet drink containing carbonated water and flavoring', '(music', 'a medicine that strengthens and invigorates'], 'Adjective': ['of or relating to or producing normal tone or tonus in muscles or tissue', 'employing variations in pitch to distinguish meanings of otherwise similar words', '(used of syllables', 'relating to or being the keynote of a major or minor scale', 'imparting vitality and energy']}","['medication', 'medicine', 'bracer', 'medicinal drug', 'pick-me-up', 'restorative', 'medicament']"
175,perilous,{'Adjective': ['fraught with danger']},"['precarious', 'parlous', 'touch-and-go', 'unsafe', 'dangerous']"
176,sovereign,"{'Noun': [""a nation's ruler or head of state usually by hereditary right""], 'Adjective': ['(of political bodies', 'greatest in status or authority or power']}","['czar', 'swayer', 'king', 'Merovingian', 'chief of state', 'Shah', 'Capetian', 'crowned head', 'head of state', 'Carlovingian', 'Shah of Iran', 'tzar', 'Carolingian', 'emperor', 'monarch', 'male monarch', 'tsar', 'ruler', 'Rex']"
177,unbridled,"{'Verb': ['remove the bridle from (a horse or mule'], 'Adjective': ['not restrained or controlled']}","['unrestrained', 'unchecked', 'ungoverned', 'uncurbed']"
178,sinecure,"{'Noun': ['a benefice to which no spiritual or pastoral duties are attached', 'an office that involves minimal duties']}","['post', 'place', 'office', 'berth', 'position', 'billet', 'situation', 'spot']"
179,intelligible,"{'Adjective': ['capable of being apprehended or understood', 'well articulated or enunciated, and loud enough to be heard distinctly']}","['graspable', 'perceivable', 'comprehensible', 'comprehendible', 'apprehensible', 'understandable']"
180,copious,"{'Adjective': ['large in number or quantity (especially of discourse', 'affording an abundant supply']}","['voluminous', 'abundant']"
181,pioneering,"{'Verb': ['open up an area or prepare a way', 'take the lead or initiative in; participate in the development of', 'open up and explore a new area']}","['innovate', 'introduce', 'open up']"
182,misappropriate,"{'Verb': [""appropriate (as property entrusted to one's care""]}","['steal', 'peculate', 'defalcate', 'fiddle', 'malversate', 'embezzle']"
183,conciliate,"{'Verb': ['cause to be more favorably inclined; gain the good will of', 'come to terms', 'make (one thing', 'another']}","['quiet', 'tranquillize', 'calm down', 'mollify', 'calm', 'lull', 'tranquillise', 'gruntle', 'pacify', 'quieten', 'still', 'appease', 'lenify', 'gentle', 'placate', 'tranquilize', 'assuage']"
184,aphorism,{'Noun': ['a short pithy instructive saying']},"['apothegm', 'apophthegm', 'axiom', 'maxim']"
185,harbinger,"{'Noun': ['something that precedes and indicates the approach of something or someone'], 'Verb': ['foreshadow or presage']}","['herald', 'indication', 'predecessor', 'precursor', 'forerunner', 'indicant']"
186,enervate,"{'Verb': ['weaken mentally or morally', 'disturb the composure of']}",['weaken']
187,regale,{'Verb': ['provide with choice or abundant food or drink']},"['cater', 'wine', 'ply', 'alcoholize', 'treat', 'feast', 'provide', 'feed', 'supply']"
188,inarticulate,{'Adjective': ['without or deprived of the use of speech or words']},"['dumb', 'unarticulated', 'voiceless', 'tongue-tied', 'unspoken', 'incoherent', 'wordless', 'incommunicative', 'speechless', 'uncommunicative', 'silent', 'unarticulate', 'aphasic', 'aphonic', 'mute', 'tongueless']"
189,ranks,"{'Noun': ['a row or line of people (especially soldiers or police', 'relative status', 'the ordinary members of an organization (such as the enlisted soldiers of an army', 'position in a social hierarchy', 'the body of members of an organization or group'], 'Verb': ['take or have a position relative to others', 'assign a rank or rating to', 'take precedence or surpass others in rank']}","['end man', 'line']"
190,quail,"{'Noun': ['flesh of quail; suitable for roasting or broiling if young; otherwise must be braised', 'small gallinaceous game birds'], 'Verb': ['draw back, as with fear or pain']}","['move', 'funk', 'retract', 'shrink', 'recoil', 'cringe', 'flinch', 'shrink back', 'squinch', 'wince']"
191,prattle,"{'Noun': ['idle or foolish and irrelevant talk'], 'Verb': ['speak (about unimportant matters']}","['blather', 'gabble', 'tittle-tattle', 'blether', 'piffle', 'verbalise', 'twaddle', 'blabber', 'blab', 'babble', 'verbalize', 'mouth', 'palaver', 'utter', 'speak', 'maunder', 'prate', 'gibber', 'smatter', 'blither', 'talk', 'chatter', 'tattle', 'clack']"
192,ignominy,{'Noun': ['a state of dishonor']},"['dishonour', 'humiliation', 'disgrace', 'opprobrium', 'shame', 'reproach', 'dishonor', 'odium', 'obloquy']"
193,arbitrary,{'Adjective': ['based on or subject to individual discretion or preference or sometimes impulse or caprice']},"['discretional', 'impulsive', 'absolute', 'capricious', 'whimsical', 'discretionary']"
194,cataclysm,"{'Noun': [""a sudden violent change in the earth's surface"", 'an event resulting in great loss and misfortune']}","['apocalypse', 'force majeure', 'visitation', 'bad luck', 'disaster', 'inevitable accident', 'famine', 'meltdown', 'unavoidable casualty', 'misfortune', 'calamity', 'catastrophe', 'act of God', 'vis major', 'tidal wave', 'kiss of death', 'tsunami', 'tragedy', 'plague']"
195,denote,"{'Verb': ['be a sign or indication of', 'have as a meaning', 'make known; make an announcement']}","['denominate', 'designate', 'refer']"
196,abrasive,"{'Noun': ['a substance that abrades or wears down'], 'Adjective': ['causing abrasion', 'sharply disagreeable; rigorous']}","['harsh', 'disagreeable']"
197,torpor,"{'Noun': ['a state of motor and mental inactivity with a partial suspension of sensibility', 'inactivity resulting from lethargy and lack of vigor or energy']}","['lethargy', 'sluggishness', 'torpidity', 'physical condition', 'physiological condition', 'hibernation', 'physiological state', 'lassitude']"
198,reconcile,"{'Verb': ['make (one thing', 'another', 'bring into consonance or accord', 'come to terms', 'accept as inevitable']}","['key', 'adjust', 'harmonize', 'harmonise', 'set', 'correct']"
199,wraith,{'Noun': ['a mental representation of some haunting experience']},"['shade', 'apparition', 'spectre', 'phantom', 'spook', 'specter', 'shadow', 'ghost', 'phantasma', 'fantasm', 'phantasm']"
200,susceptible,{'Adjective': ['easily impressed emotionally']},"['sensitive', 'unresistant', 'capable', 'susceptibleness', 'nonimmune', 'unvaccinated', 'hypersensitive', 'tractable', 'suggestible', 'supersensitive', 'liable', 'sensitised', 'hypersensitised', 'supersensitised', 'amenable', 'suasible', 'unprotected', 'supersensitized', 'hypersensitized', 'fictile', 'susceptibility', 'vulnerable', 'nonresistant', 'sensitized', 'subject', 'convincible', 'persuasible', 'pliable', 'open', 'allergic', 'predisposed', 'temptable', 'persuadable']"
201,usurp,"{'Verb': [""seize and take control without authority and possibly with force; take as one's right or possession"", 'take the place of']}","['preoccupy', 'arrogate', 'conquer', 'take', 'take over', 'raid', 'capture', 'seize', 'appropriate', 'assume', 'annex', 'hijack']"
202,petulant,{'Adjective': ['easily irritated or annoyed']},"['fractious', 'peevish', 'scratchy', 'ill-natured', 'pettish', 'techy', 'testy', 'peckish', 'tetchy', 'irritable', 'nettlesome', 'cranky']"
203,pandemic,"{'Noun': ['an epidemic that is geographically widespread; occurring throughout a region or even throughout the world'], 'Adjective': ['epidemic over a wide geographical area', 'existing everywhere']}",['epidemic']
204,furtive,"{'Adjective': ['marked by quiet and caution and secrecy; taking pains to avoid being observed', 'secret and sly or sordid']}","['surreptitious', 'stealthy', 'sneak', 'sneaky', 'concealed']"
205,contemptuous,{'Adjective': ['expressing extreme contempt']},"['disrespectful', 'insulting', 'scornful', 'disdainful']"
206,skulk,"{'Verb': ['lie in wait, lie in ambush, behave in a sneaky and secretive manner', 'avoid responsibilities and duties, e.g., by pretending to be ill', 'move stealthily']}","['hide', 'lurk', 'conceal']"
207,despoiler,{'Noun': ['someone who takes spoils or plunder (as in war']},"['raider', 'sea rover', 'buccaneer', 'looter', 'spoiler', 'pirate', 'stealer', 'sea robber', 'plunderer', 'freebooter', 'thief', 'pillager']"
208,haggard,"{'Noun': ['British writer noted for romantic adventure novels (1856-1925'], 'Adjective': ['showing the wearing effects of overwork or care or suffering', 'very thin especially from disease or hunger or cold']}","['drawn', 'raddled', 'careworn', 'tired', 'worn']"
209,remiss,"{'Adjective': ['failing in what duty requires', 'or delinquent']}","['derelict', 'delinquent', 'negligent', 'neglectful']"
210,tome,{'Noun': ['a (usually']},['book']
211,vacillate,"{'Verb': ['be undecided about something; waver between conflicting positions or courses of action', 'move or sway in a rising and falling or wavelike pattern']}","['hesitate', 'oscillate', 'waffle', 'waver', 'hover', 'shillyshally', 'vibrate']"
212,inchoate,{'Adjective': ['only partly in existence; imperfectly formed']},"['early', 'incipient']"
213,loquacious,{'Adjective': ['full of trivial conversation']},"['gabby', 'talkative', 'garrulous', 'chatty', 'talky', 'voluble']"
214,toothsome,"{'Adjective': ['acceptable to the taste or mind', 'extremely pleasing to the sense of taste', 'having strong sexual appeal']}","['yummy', 'luscious', 'pleasant-tasting', 'tasty', 'delectable', 'delicious', 'scrumptious']"
215,conversant,"{'Adjective': [""(usually followed by `with'""]}","['familiar', 'informed']"
216,ascertain,"{'Verb': ['establish after a calculation, investigation, experiment, survey, or study', 'be careful or certain to do something; make certain of something', 'find out, learn, or determine with certainty, usually by making an inquiry or other effort', 'learn or discover with certainty']}","['admeasure', 'redetermine', 'numerate', 'gauge', 'see', 'determine', 'rectify', 'check', 'count', 'translate', 'sequence', 'enumerate', 'number', 'discover', 'learn', 'locate', 'find', 'watch', 'find out', 'refract', 'situate']"
217,banal,{'Adjective': ['repeated too often; overfamiliar through overuse']},"['hackneyed', 'threadbare', 'timeworn', 'shopworn', 'trite', 'unoriginal', 'commonplace', 'old-hat', 'stock', 'tired', 'well-worn']"
218,transmute,"{'Verb': ['change in outward structure or looks', 'change or alter in form, appearance, or nature', 'alter the nature of (elements']}","['transform', 'turn', 'become', 'change', 'aurify', 'metamorphose']"
219,immutable,"{'Adjective': ['not subject or susceptible to change or variation in form or quality or nature', 'constant and unchanging']}",['changeless']
220,documentary,"{'Noun': ['a film or TV program presenting the facts about a person or event'], 'Adjective': ['relating to or consisting of or derived from documents', '(of film, television, radio, or photography']}","['infotainment', 'moving picture', 'moving-picture show', 'documentary film', 'motion picture', 'flick', 'docudrama', 'film', 'picture show', 'pic', 'motion-picture show', 'picture', 'movie']"
221,philanthropist,{'Noun': ['someone who makes charitable donations intended to increase human well-being']},"['donor', 'giver', 'bestower', 'altruist', 'presenter', 'conferrer']"
222,realization,"{'Noun': ['coming to understand something clearly and distinctly', 'making real or giving the appearance of reality', 'a musical composition that has been completed or enriched by someone other than the composer', 'a sale in order to obtain money (as a sale of stock or a sale of the estate of a bankrupt person', 'the completion or enrichment of a piece of music left sparsely notated by a composer', 'something that is made real or concrete']}","['actualisation', 'objectification', 'realisation', 'actualization', 'creating by mental acts']"
223,bugbear,"{'Noun': ['an imaginary monster used to frighten children', 'an object of dread or apprehension']}","['hobgoblin', 'object']"
224,dulcet,"{'Adjective': ['extremely pleasant in a gentle way', 'pleasing to the ear']}","['mellisonant', 'musical', 'sweet', 'honeyed', 'melodic', 'melodious', 'mellifluous']"
225,licentious,{'Adjective': ['lacking moral discipline; especially sexually unrestrained']},['unchaste']
226,manifold,"{'Noun': ['a pipe that has several lateral outlets to or from other pipes', 'a lightweight paper used with carbon paper to make multiple copies', 'a set of points such as those of a closed surface or an analogue in three or more dimensions'], 'Verb': ['make multiple copies of', 'combine or increase by multiplication'], 'Adjective': ['many and varied; having many features or forms']}","['intake manifold', 'exhaust manifold', 'pipage', 'piping', 'pipe', 'inlet manifold']"
227,respite,"{'Noun': ['a (temporary', 'a pause from doing something (as work', 'an interruption in the intensity or amount of something', 'a pause for relaxation', 'the act of reprieving; postponing or remitting punishment'], 'Verb': ['postpone the punishment of a convicted criminal, such as an execution']}","['pause', 'recess', 'break', 'spring break', 'time out']"
228,meteoric,"{'Adjective': ['of or pertaining to atmospheric phenomena, especially weather and weather conditions', 'or meteorological', 'pertaining to or consisting of meteors or meteoroids', 'like a meteor in speed or brilliance or transience']}",['fast']
229,rakish,"{'Adjective': ['marked by up-to-dateness in dress and manners', 'marked by a carefree unconventionality or disreputableness']}","['devil-may-care', 'raffish', 'unconventional']"
230,eccentric,"{'Noun': ['a person with an unusual or odd personality', 'a person of a specified kind (usually with many eccentricities'], 'Adjective': ['conspicuously or grossly unconventional or unusual', 'not having a common center; not concentric']}","['outre', 'outlandish', 'flaky', 'bizarre', 'freakish', 'gonzo', 'unconventional', 'off-the-wall', 'freaky', 'flakey']"
231,dogged,"{'Verb': ['go after with the intent to catch'], 'Adjective': ['stubbornly unyielding']}","['unyielding', 'dour', 'unregenerate', 'tenacious', 'obstinate', 'pertinacious', 'persistent', 'stubborn']"
232,convention,"{'Noun': ['a large formal assembly', 'something regarded as a normative example', '(diplomacy', 'orthodoxy as a consequence of being conventional', 'the act of convening']}","['rule', 'pattern', 'formula', 'normal', 'universal', 'code of behavior', 'mores', 'practice', 'code of conduct']"
233,indiscriminate,"{'Adjective': ['failing to make or recognize distinctions', 'not marked by fine distinctions']}","['indiscriminating', 'undiscriminating']"
234,impair,"{'Verb': ['make worse or less effective', 'make imperfect']}",['damage']
235,cosseted,{'Verb': ['treat with excessive indulgence']},"['coddle', 'pamper', 'do by', 'spoil', 'handle', 'baby', 'indulge', 'treat', 'mollycoddle', 'cocker', 'featherbed']"
236,decibel,{'Noun': ['a logarithmic unit of sound intensity; 10 times the logarithm of the ratio of the sound intensity to some reference intensity']},"['dB', 'sound unit']"
237,overwrought,"{'Verb': ['use too much', 'work excessively hard'], 'Adjective': ['deeply agitated especially from emotion']}","['agitated', 'distraught']"
238,trenchant,"{'Adjective': ['having keenness and forcefulness and penetration in thought, expression, or intellect', 'characterized by or full of force and vigor', 'clearly or sharply defined to the mind']}","['clear', 'distinct', 'clear-cut']"
239,minion,{'Noun': ['a servile or fawning dependant']},"['dependant', 'dependent']"
240,gratis,"{'Adjective': ['costing nothing'], 'Adverb': ['without payment']}","['costless', 'unpaid', 'free', 'complimentary', 'gratuitous']"
241,solvent,"{'Noun': ['a liquid substance capable of dissolving other substances', 'a statement that solves a problem or explains how to solve the problem'], 'Adjective': ['capable of meeting financial obligations']}","['remover', 'phenol', 'dissolver', 'naphtha', 'oxybenzene', 'methylbenzene', 'hydroxybenzene', 'alkahest', 'propanone', 'toluene', 'menstruum', 'universal solvent', 'hexane', 'acetone', 'chlorobenzene', 'dissolvent', 'tetrachloromethane', 'carbon tetrachloride', 'dissolving agent', 'perchloromethane', 'phenylic acid', 'xylol', 'carbon tet', 'resolvent', 'medium', 'xylene', 'alcahest', 'dimethyl ketone', 'carbolic acid']"
242,fudge,"{'Noun': ['soft creamy candy'], 'Verb': ['tamper, with the purpose of deception', 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues']}","['chocolate fudge', 'penoche', 'divinity', 'candy', 'divinity fudge', 'panocha', 'penuche', 'confect', 'panoche']"
243,platonic,"{'Adjective': ['of or relating to or characteristic of Plato or his philosophy', 'free from physical desire']}",['passionless']
244,philistine,"{'Noun': ['a person who is uninterested in intellectual pursuits', 'a member of an Aegean people who settled ancient Philistia around the 12th century BC'], 'Adjective': ['of or relating to ancient Philistia or its culture or its people', 'smug and ignorant and indifferent or hostile to artistic and cultural values']}","['habitant', 'indweller', 'dweller', 'inhabitant', 'denizen']"
245,emollient,"{'Noun': ['toiletry consisting of any of various substances in the form of a thick liquid that have a soothing and moisturizing effect when applied to the skin'], 'Adjective': ['having a softening or soothing effect especially to the skin']}","['demulcent', 'softening', 'salving', 'soft']"
246,incorrigible,"{'Adjective': ['impervious to correction by punishment', 'difficult or impossible to manage or control']}","['uncontrollable', 'unregenerate', 'unreformable', 'unmanageable', 'uncorrectable', 'disobedient']"
247,mercenary,"{'Noun': ['a person hired to fight for another country than their own'], 'Adjective': ['marked by materialism', 'serving for wages in a foreign army', 'profit oriented']}","['venturer', 'ninja', 'soldier of fortune', 'adventurer']"
248,echelon,"{'Noun': ['status in a society or organization', 'a body of troops arranged in a line', 'a diffraction grating consisting of a pile of plates of equal thickness arranged stepwise with a constant offset']}","['military force', 'military group', 'force', 'military unit']"
249,umbrage,{'Noun': ['a feeling of anger caused by being offended']},"['offence', 'ire', 'offense', 'choler', 'anger']"
250,compelling,"{'Verb': ['force somebody to do something', 'necessitate or exact'], 'Adjective': ['driving or forcing', 'tending to persuade by forcefulness of argument']}",['powerful']
251,festoon,"{'Noun': ['a curtain of fabric draped and bound at intervals to form graceful curves', 'an embellishment consisting of a decorative representation of a string of flowers suspended between two points; used on pottery or in architectural work', 'flower chains suspended in curves between points as a decoration'], 'Verb': ['decorate with strings of flowers']}",['embellishment']
252,affluent,"{'Noun': ['an affluent person; a person who is financially well off', 'a branch that flows into the main stream'], 'Adjective': ['having an abundant supply of money or possessions of value']}","['rich', 'wealthy', 'loaded', 'flush', 'moneyed']"
253,elegiac,"{'Adjective': ['resembling or characteristic of or appropriate to an elegy', 'expressing sorrow often for something past']}",['sorrowful']
254,metamorphose,"{'Verb': ['change completely the nature or appearance of', 'change in outward structure or looks']}","['turn', 'transmogrify', 'change by reversal', 'reverse', 'transfigure']"
255,willful,"{'Adjective': ['done by design', 'habitually disposed to disobedience and opposition']}","['voluntary', 'wilful']"
256,celerity,{'Noun': ['a rate that is rapid']},"['speediness', 'promptitude', 'fleetness', 'immediacy', 'rapidness', 'expedition', 'dispatch', 'rate', 'despatch', 'promptness', 'expeditiousness', 'rapidity', 'quickness', 'instancy', 'immediateness', 'instantaneousness', 'pace']"
257,wend,"{'Verb': [""direct one's course or way""]}","['move', 'travel', 'locomote', 'go']"
258,sententious,"{'Adjective': ['abounding in or given to pompous or aphoristic moralizing', 'concise and full of meaning']}",['pretentious']
259,composure,{'Noun': ['steadiness of mind under stress']},"['repose', 'quiet', 'tranquility', 'assuredness', 'calmness', 'poise', 'calm', 'disposition', 'aplomb', 'temperament', 'tranquillity', 'serenity', 'sang-froid', 'placidity', 'equanimity', 'cool']"
260,salacious,"{'Adjective': ['characterized by lust', 'suggestive of or tending to moral looseness']}","['obscene', 'lewd', 'dirty', 'raunchy']"
261,chastise,{'Verb': ['censure severely']},"['chew out', 'lecture', 'remonstrate', 'call on the carpet', 'call down', 'take to task', 'chide', 'reproof', 'reprimand', 'chasten', 'lambaste', 'rebuke', 'objurgate', 'have words', 'scold', 'correct', 'bawl out', 'rag', 'berate', 'dress down', 'trounce', 'castigate', 'flame', 'jaw', 'chew up', 'lambast']"
262,gaffe,{'Noun': ['a socially awkward or tactless act']},"['blunder', 'blooper', 'solecism', 'bloomer', 'bungle', 'gaucherie', 'slip', 'foul-up', 'pratfall', 'botch', 'boner', 'flub', 'faux pas', 'boo-boo', 'fuckup']"
263,diminutive,"{'Noun': ['a word that is formed with a suffix (such as -let or -kin'], 'Adjective': ['very small']}","['lilliputian', 'petite', 'little', 'flyspeck', 'bantam', 'tiny', 'small', 'midget']"
264,neglect,"{'Noun': ['lack of attention and due care', 'the state of something that has been unused and neglected', 'willful lack of care and attention', 'the trait of neglecting responsibilities and lacking concern', 'failure to act with the prudence that a reasonable person would exercise under the same circumstances'], 'Verb': ['leave undone or leave out', 'fail to do something; leave something undone', 'fail to attend to', 'give little or no attention to']}","['skip over', 'leave out', 'pass over', 'skip', 'drop', 'jump', 'overlook', 'overleap', 'pretermit', 'omit', 'forget', 'miss']"
265,blight,"{'Noun': ['a state or condition being blighted', 'any plant disease resulting in withering without rotting'], 'Verb': ['cause to suffer a blight']}","['afflict', 'plague', 'smite']"
266,panegyric,"{'Noun': ['a formal expression of praise'], 'Adjective': ['formally expressing praise']}","['encomiastic', 'eulogistic', 'panegyrical', 'complimentary']"
267,abscond,{'Verb': ['run away; usually includes taking something or somebody along']},"['take flight', 'decamp', 'levant', 'make off', 'bolt', 'flee', 'go off', 'fly', 'absquatulate', 'run off']"
268,patent,"{'Noun': ['a document granting an inventor sole rights to an invention', 'an official document granting a right or privilege'], 'Verb': ['obtain a patent for', 'grant rights to; grant a patent for', 'make open to sight or notice'], 'Adjective': ['(of a bodily tube or passageway', 'clearly revealed to the mind or the senses or judgment']}","['papers', 'written document', 'document', 'patent of invention']"
269,fulminate,"{'Noun': ['a salt or ester of fulminic acid'], 'Verb': ['criticize severely', 'come on suddenly and intensely', 'cause to explode violently and with loud noise']}","['rail', 'denounce']"
270,tremulous,{'Adjective': ['(of the voice']},"['quavering', 'unsteady']"
271,impious,"{'Adjective': ['lacking piety or reverence for a god', 'lacking due respect or dutifulness']}","['piety', 'irreverent', 'godless', 'wicked', 'profane', 'piousness', 'secular', 'irreligious']"
272,dupe,"{'Noun': ['a person who is tricked or swindled'], 'Verb': ['fool or hoax']}","['slang', 'deceive', 'cod', 'put on', 'lead astray', 'take in', 'pull the leg of', 'betray', 'kid', 'befool', 'gull', 'fool', 'put one over', 'put one across']"
273,droll,{'Adjective': ['comical in an odd or whimsical manner']},"['humorous', 'humourous']"
274,epiphany,"{'Noun': ['a divine manifestation', 'twelve days after Christmas; celebrates the visit of the three wise men to the infant Jesus']}",['manifestation']
275,effrontery,{'Noun': ['audacious (even arrogant']},"['presumption', 'assumption', 'uppityness', 'audacity', 'uppishness', 'presumptuousness', 'audaciousness']"
276,glum,"{'Adjective': ['moody and melancholic', 'showing a brooding ill humor']}",['dejected']
277,serenity,"{'Noun': ['a disposition free from stress or emotion', 'the absence of mental stress or anxiety']}","['repose', 'quiet', 'tranquility', 'calmness', 'calm', 'tranquillity', 'ataraxia', 'composure', 'equanimity', 'placidity']"
278,verdant,{'Adjective': ['characterized by abundance of verdure']},['abundant']
279,tortuous,"{'Adjective': ['highly complex or intricate and occasionally devious', 'marked by repeated turns and bends', 'not straightforward']}","['involved', 'knotty', 'complex', 'convoluted', 'Byzantine', 'tangled']"
280,dynamo,"{'Noun': ['generator consisting of a coil (the armature', 'the field magnet']}","['field magnet', 'generator']"
281,stalwart,"{'Noun': ['a person who is loyal to their allegiance (especially in times of revolt'], 'Adjective': ['having rugged physical strength; inured to fatigue or hardships', 'dependable', 'used especially of persons']}","['supporter', 'protagonist', 'friend', 'booster', 'champion', 'admirer', 'loyalist']"
282,invigorate,"{'Verb': ['heighten or intensify', 'give life or energy to', 'make lively', 'impart vigor, strength, or vitality to']}","['inspire', 'stimulate', 'exalt', 'encourage', 'shake', 'shake up', 'animate', 'enliven', 'stir', 'excite']"
283,ingenuity,"{'Noun': ['the power of creative imagination', 'the property of being ingenious']}","['cleverness', 'superiority', 'high quality', 'ingeniousness']"
284,tempestuous,"{'Adjective': ['characterized by violent emotions or behavior', '(of the elements']}","['angry', 'raging', 'furious', 'stormy', 'wild']"
285,stem,"{'Noun': ['(linguistics', 'a slender or elongated structure that supports a plant or fungus or a plant part or plant organ', 'cylinder forming a long narrow part of something', 'the tube of a tobacco pipe', 'front part of a vessel or aircraft', 'a turn made in skiing; the back of one ski is forced outward and the other ski is brought parallel to it'], 'Verb': ['grow out of, have roots in, originate in', 'cause to point inward', 'stop the flow of a liquid', 'remove the stem from']}","['radical', 'word form', 'theme', 'descriptor', 'root', 'form', 'signifier', 'root word', 'base']"
286,intractable,{'Adjective': ['not tractable; difficult to manage or mold']},"['unregenerate', 'uncontrollable', 'unmanageable', 'stubborn', 'difficult', 'noncompliant', 'defiant', 'flexibility', 'balky', 'tractability', 'refractory', 'tractableness', 'obstinate', 'untamed', 'balking', 'wild', 'disobedient', 'unmalleable']"
287,prolific,"{'Adjective': ['intellectually productive', 'bearing in abundance especially offspring']}","['fertile', 'fecund', 'productive']"
288,perturb,"{'Verb': ['disturb in mind or make uneasy or cause to be worried or alarmed', 'disturb or interfere with the usual path of an electron or atom', 'cause a celestial body to deviate from a theoretically regular orbital motion, especially as a result of interposed or extraordinary gravitational pull', 'throw into great confusion or disorder']}","['disquiet', 'trouble', 'cark', 'upset', 'distract', 'vex', 'worry', 'disorder', 'disturb', 'unhinge']"
289,condemn,"{'Verb': ['express strong disapproval of', 'declare or judge unfit for use or habitation', 'compel or force into a particular state or activity', 'demonstrate the guilt of (someone', 'pronounce a sentence on (somebody', 'appropriate (property']}","['objurgate', 'reprobate', 'excoriate', 'denounce', 'decry']"
290,amalgamation,{'Noun': ['the combination of two or more commercial companies']},"['uniting', 'consolidation', 'merger', 'integration']"
291,expansive,"{'Adjective': ['able or tending to expand or characterized by expansion', 'of behavior that is impressive and ambitious in scale or scope', 'marked by exaggerated feelings of euphoria and delusions of grandeur', 'friendly and open and willing to talk']}","['expandible', 'distensible', 'erectile', 'inflatable', 'expandable', 'cavernous', 'expansible']"
292,beatify,"{'Verb': ['fill with sublime emotion', 'make blessedly happy', 'declare (a dead person']}","['exalt', 'pick up', 'lift up', 'inebriate', 'uplift', 'tickle pink', 'elate', 'exhilarate', 'intoxicate', 'thrill']"
293,blatant,"{'Adjective': ['without any attempt at concealment; completely obvious', 'conspicuously and offensively loud; given to vehement outcry']}","['blazing', 'conspicuous', 'unconcealed']"
294,prosaic,"{'Adjective': ['not fanciful or imaginative', 'lacking wit or imagination', 'not challenging; dull and lacking excitement']}","['earthbound', 'pedestrian', 'prosy', 'uninteresting']"
295,scintillating,"{'Verb': ['give off', 'reflect brightly', 'emit or reflect light in a flickering manner', 'physics: fluoresce momentarily when struck by a charged particle or high-energy photon', 'be lively or brilliant or exhibit virtuosity'], 'Adjective': ['brilliantly clever', 'marked by high spirits or excitement', 'having brief brilliant points or flashes of light']}","['glittering', 'glittery', 'glinting', 'fulgid', 'coruscant', 'bright', 'glistering', 'sparkly', 'scintillant', 'aglitter']"
296,bloviated,{'Verb': ['orate verbosely and windily']},['orate']
297,analgesic,"{'Noun': ['a medicine used to relieve pain'], 'Adjective': ['capable of relieving pain']}","['moderating', 'anodyne', 'analgetic']"
298,rejuvenated,"{'Verb': ['cause (a stream or river', 'develop youthful topographical features', 'make younger or more youthful', 'return to life; get or give new life or energy', 'become young again']}","['stimulate', 'provoke']"
299,weary,"{'Verb': ['exhaust or get tired through overuse or great strain or stress', 'lose interest or become bored with something or somebody'], 'Adjective': ['physically and mentally fatigued']}","['aweary', 'tired']"
300,doggerel,{'Noun': ['a comic verse of irregular measure']},"['verse', 'rhyme', 'doggerel verse', 'jingle']"
301,disaffect,"{'Verb': ['arouse hostility or indifference in where there had formerly been love, affection, or friendliness']}","['wean', 'change', 'estrange', 'alien', 'modify', 'alienate', 'alter', 'drift apart', 'drift away']"
302,universal,"{'Noun': ['(linguistics', 'or other linguistic feature', '(logic', 'a behavioral convention or pattern characteristic of all members of a particular culture or of all human beings', 'coupling that connects two rotating shafts allowing freedom of movement in all directions'], 'Adjective': ['of worldwide scope or applicability', 'applicable to or common to all members of a group or set', 'adapted to various purposes, sizes, forms, operations']}","['world-wide', 'general', 'comprehensive', 'ecumenical', 'oecumenical', 'worldwide', 'cosmopolitan']"
303,coda,{'Noun': ['the closing section of a musical composition']},"['conclusion', 'composition', 'ending', 'end', 'musical composition', 'opus', 'piece of music', 'performance', 'public presentation', 'finale', 'closing', 'piece', 'close']"
304,sedulous,{'Adjective': ['marked by care and persistent effort']},"['assiduous', 'diligent']"
305,apostate,"{'Noun': ['a disloyal person who betrays or deserts his cause or religion or political party or friend etc.'], 'Adjective': ['not faithful to religion or party or cause']}",['unfaithful']
306,anile,{'Adjective': ['of or like a feeble old woman']},['old']
307,inerrancy,{'Noun': ['(Christianity']},['infallibility']
308,wily,{'Adjective': ['marked by skill in deception']},"['sly', 'cunning', 'guileful', 'dodgy', 'slick', 'tricky', 'crafty', 'knavish', 'foxy', 'tricksy', 'artful']"
309,exasperated,"{'Verb': ['exasperate or irritate', 'make furious', 'make worse'], 'Adjective': ['greatly annoyed; out of patience']}","['cheesed off', 'browned off', 'displeased']"
310,din,"{'Noun': ['a loud harsh or strident noise', 'the act of making a noisy disturbance'], 'Verb': ['make a resonant sound, like artillery', 'instill (into a person']}","['cacophony', 'noise', 'blare', 'blaring', 'clamor']"
311,politesse,{'Noun': ['courtesy towards women']},"['courtesy', 'good manners', 'chivalry', 'gallantry']"
312,derisive,{'Adjective': ['abusing vocally; expressing contempt or ridicule']},"['disrespectful', 'gibelike', 'jeering', 'taunting', 'mocking']"
313,sentimental,"{'Adjective': ['given to or marked by sentiment or sentimentality', 'effusively or insincerely emotional']}","['kitschy', 'bathetic', 'emotional', 'hokey', 'soupy', 'mawkish', 'maudlin', 'drippy', 'slushy', 'mushy', 'schmalzy', 'schmaltzy', 'soppy']"
314,devoid,{'Adjective': ['completely wanting or lacking']},"['nonexistent', 'barren', 'destitute', 'free', 'innocent']"
315,faction,"{'Noun': ['a clique (often secret', 'a dissenting clique']}","['camp', 'camarilla', 'ingroup', 'coterie', 'cabal', 'pack', 'inner circle', 'clique', 'junto', 'cabalist']"
316,consolidate,"{'Verb': ['unite into one', 'make firm or secure; strengthen', 'bring together into a single whole or system', 'form into a solid mass or whole', 'make or form into a solid or hardened mass']}","['unite', 'merge', 'unify']"
317,progenitors,{'Noun': ['an ancestor in the direct line']},"['ascendent', 'ascendant', 'root', 'antecedent', 'genitor', 'primogenitor', 'ancestor']"
318,magisterial,"{'Adjective': ['of or relating to a magistrate', 'offensively self-assured or given to exercising usually unwarranted power', ""used of a person's appearance or behavior; befitting an eminent person""]}","['dignified', 'imposing', 'distinguished', 'grand']"
319,condign,{'Adjective': ['fitting or appropriate and deserved; used especially of punishment']},"['deserved', 'merited']"
320,infinitesimal,"{'Noun': ['(mathematics'], 'Adjective': ['infinitely or immeasurably small']}","['variable quantity', 'variable']"
321,espouse,"{'Verb': ['choose and follow; as of theories, ideas, policies, strategies or plans', 'take in marriage', ""take up the cause, ideology, practice, method, of someone and use it as one's own""]}","['select', 'comply', 'adopt', 'choose', 'pick out', 'abide by', 'stick', 'take', 'adhere', 'follow']"
322,incongruous,{'Adjective': ['lacking in harmony or compatibility or appropriateness']},"['inconsistent', 'unfitting', 'out or keeping', 'discrepant', 'incompatible', 'ironic', 'inappropriate', 'ironical', 'inharmonious']"
323,fawning,"{'Verb': ['show submission or fear', 'try to gain favor by cringing or flattering', 'have fawns'], 'Adjective': ['attempting to win favor from influential people by flattery', 'attempting to win favor by flattery']}","['toadyish', 'bootlicking', 'sycophantic', 'servile']"
324,crystallize,"{'Verb': ['cause to take on a definite and clear shape', 'make free from confusion or ambiguity; make clear', 'cause to form crystals or assume crystalline form', 'assume crystalline form; become crystallized']}","['shape', 'crystallise', 'form', 'crystalize', 'crystalise']"
325,syntax,"{'Noun': ['the grammatical arrangement of words in sentences', 'a systematic orderly arrangement', 'studies of the rules for forming admissible sentences']}","['structure', 'phrase structure', 'sentence structure']"
326,authoritative,"{'Adjective': ['having authority or ascendancy or influence', 'of recognized authority or excellence', 'sanctioned by established authority']}","['influential', 'important']"
327,usury,"{'Noun': ['an exorbitant or unlawful rate of interest', 'the act of lending money at an exorbitant rate of interest']}","['lending', 'loaning']"
328,likewise,"{'Adverb': ['in like or similar manner', 'in addition', 'equally']}",['similarly']
329,rankled,{'Verb': ['gnaw into; make resentful or angry']},"['bother', 'rile', 'eat into', 'annoy', 'fret', 'devil', 'gravel', 'grate', 'get to', 'irritate', 'nettle', 'vex', 'get at', 'chafe', 'nark', 'rag']"
330,conversion,"{'Noun': ['an event that results in a transformation', 'a successful free throw or try for point after a touchdown', 'a spiritual enlightenment causing a person to lead a new life', '(psychiatry', 'a change of religion', 'interchange of subject and predicate of a proposition', 'act of exchanging one type of money or security for another', 'the act of changing from one use or function or purpose to another']}","['transmutation', 'shift', 'changeover', 'transition', 'isomerization', 'isomerisation', 'transformation', 'rectification', 'glycogenesis']"
331,erratic,"{'Adjective': ['liable to sudden unpredictable change', 'having no fixed course', 'likely to perform unpredictably']}","['changeable', 'quicksilver', 'fickle', 'changeful', 'mercurial']"
332,unpretentiousness,{'Noun': ['the quality of being natural and without pretensions']},['naturalness']
333,avid,{'Adjective': ['marked by active interest and enthusiasm']},"['zealous', 'enthusiastic']"
334,premeditate,"{'Verb': ['consider, ponder, or plan (an action', 'think or reflect beforehand or in advance']}","['moot', 'debate', 'turn over', 'deliberate', 'consider']"
335,disheartened,"{'Verb': ['take away the enthusiasm of'], 'Adjective': ['made less hopeful or enthusiastic']}","['pessimistic', 'demoralized', 'demoralised', 'discouraged']"
336,digression,"{'Noun': ['a message that departs from the main subject', 'a turning aside (of your course or attention or concern', 'wandering from the main path of a journey']}","['journey', 'excursion', 'journeying']"
337,improvise,"{'Verb': ['perform without preparation', 'manage in a makeshift way; do with whatever is at hand']}","['execute', 'do', 'extemporize', 'improvize', 'ad-lib', 'perform', 'extemporise']"
338,picayune,"{'Adjective': ['(informal', 'or small']}","['footling', 'niggling', 'lilliputian', 'little', 'trivial', 'piddling', 'petty', 'unimportant', 'piffling', 'fiddling']"
339,amenable,"{'Adjective': ['disposed or willing to conform', 'responsive to suggestions and influences', 'open to being acted upon in a certain way', 'liable to answer to a higher authority']}","['compliant', 'conformable']"
340,demonstrative,"{'Noun': ['a pronoun that points out an intended referent'], 'Adjective': ['given to or marked by the open expression of emotion', 'serving to demonstrate']}","['demonstrative pronoun', 'pronoun']"
341,preamble,"{'Noun': ['a preliminary introduction to a statute or constitution (usually explaining its purpose'], 'Verb': ['make a preliminary introduction, usually to a formal document']}","['papers', 'introduction', 'written document', 'document']"
342,hardscrabble,{'Adjective': ['barely satisfying a lower standard']},"['meagre', 'meager', 'stingy', 'meagerly', 'scrimpy']"
343,cumbersome,"{'Adjective': ['difficult to handle or use especially because of size or weight', 'not elegant or graceful in expression']}","['unwieldy', 'cumbrous', 'unmanageable']"
344,solidarity,{'Noun': ['a union of interests or purposes or sympathies among members of a group']},"['commonness', 'commonality']"
345,lurid,"{'Adjective': ['horrible in fierceness or savagery', 'glaringly vivid and graphic; marked by sensationalism', 'shining with an unnatural red glow as of fire seen through smoke', 'ghastly pale']}","['shocking', 'sensational']"
346,enervated,"{'Verb': ['weaken mentally or morally', 'disturb the composure of'], 'Adjective': ['lacking energy or vitality']}","['asthenic', 'weak', 'debilitated', 'adynamic']"
347,venial,"{'Adjective': ['warranting only temporal punishment', 'easily excused or forgiven']}","['pardonable', 'forgivable', 'excusable']"
348,querulous,{'Adjective': ['habitually complaining']},"['whiney', 'complaintive', 'complaining', 'fretful', 'whiny']"
349,recourse,"{'Noun': ['act of turning to for assistance', 'something or someone turned to for assistance or security']}","['aid', 'resort', 'assistance', 'refuge', 'assist', 'help']"
350,spectrum,"{'Noun': ['an ordered array of the components of an emission or wave', 'a broad range of related objects or values or qualities or ideas or activities']}","['radio-frequency spectrum', 'mass spectrum', 'electromagnetic spectrum', 'array', 'visible spectrum', 'action spectrum', 'spectrum line', 'absorption spectrum', 'sound spectrum', 'emission spectrum', 'infrared spectrum', 'microwave spectrum', 'acoustic spectrum', 'color spectrum', 'ultraviolet spectrum', 'radio spectrum', 'line spectrum', 'atomic spectrum']"
351,grandiloquence,{'Noun': ['high-flown style; excessive use of verbal ornamentation']},"['ornateness', 'grandiosity', 'style', 'expressive style', 'bombast', 'rhetoric', 'rant', 'claptrap', 'blah', 'magniloquence', 'flourish', 'fustian']"
352,scanty,"{'Noun': ['short underpants for women or children (usually used in the plural'], 'Adjective': ['lacking in magnitude or quantity', '(of clothing']}","['bare', 'meagre', 'meager', 'stingy', 'meagerly', 'scrimpy', 'spare']"
353,connoisseur,{'Noun': ['an expert able to appreciate a field; especially in the fine arts']},"['authority', 'cognoscente', 'aesthete', 'wine lover', 'esthete']"
354,quisling,{'Noun': ['someone who collaborates with an enemy occupying force']},"['collaborationist', 'traitor', 'treasonist', 'collaborator']"
355,risque,{'Adjective': ['suggestive of sexual impropriety']},"['racy', 'naughty', 'blue', 'spicy', 'juicy', 'gamy', 'gamey', 'sexy']"
356,impetus,"{'Noun': ['a force that moves something along', 'the act of applying force suddenly']}","['drift', 'impulsion', 'force']"
357,countenance,"{'Noun': [""the appearance conveyed by a person's face"", 'formal and explicit approval', ""the human face (`kisser' and `smiler' and `mug' are informal terms for `face' and `phiz' is British""], 'Verb': ['consent to, give permission']}","['poker face', 'aspect', 'facial expression', 'expression', 'appearance', 'visual aspect', 'face', 'visage', 'look']"
358,climax,"{'Noun': ['the highest point of anything conceived of as growing or developing or unfolding', 'the decisive moment in a novel or play', 'the moment of most intense pleasure in sexual intercourse', 'the most severe stage of a disease', 'arrangement of clauses in ascending order of forcefulness'], 'Verb': ['end, especially to reach a final or climactic stage']}","['flood tide', 'juncture', 'occasion']"
359,brook,"{'Noun': ['a natural stream of water smaller than a river (and often a tributary of a river'], 'Verb': ['put up with something or somebody unpleasant']}","['brooklet', 'watercourse', 'creek', 'stream']"
360,opine,"{'Verb': [""express one's opinion openly and without fear or hesitation"", 'expect, believe, or suppose']}","['editorialise', 'sound off', 'speak out', 'animadvert', 'speak up', 'editorialize', 'declare']"
361,censure,"{'Noun': ['harsh criticism or disapproval', 'the state of being excommunicated'], 'Verb': ['rebuke formally']}","['animadversion', 'condemnation', 'interdict', 'disapprobation']"
362,itinerant,"{'Noun': ['a laborer who moves from place to place as demanded by employment'], 'Adjective': ['traveling from place to place to work']}","['swagman', 'gypsy', 'tinker', 'laborer', 'jack', 'labourer', 'swagger', 'manual laborer', 'gipsy', 'swaggie']"
363,evince,{'Verb': ['give expression to']},"['sneer', 'convey', 'express', 'stress', 'exude', 'connote', 'menace', 'give voice', 'phrase', 'suggest', 'accent', 'smile', 'give vent', 'paint a picture', 'emphasise', 'burst out', 'punctuate', 'evoke', 'word', 'give', 'articulate', 'emphasize', 'formulate', 'vent', 'show', 'accentuate', 'ventilate', 'beam', 'imply']"
364,bucolic,"{'Noun': ['a country person', 'a short poem descriptive of rural or pastoral life'], 'Adjective': ['(used with regard to idealized country life', 'relating to shepherds or herdsmen or devoted to raising sheep or cattle']}","['rural', 'arcadian', 'pastoral']"
365,phony,"{'Noun': ['a person who professes beliefs and opinions that he or she does not hold in order to conceal his or her real feelings or motives'], 'Adjective': ['fraudulent; having a misleading appearance']}","['counterfeit', 'bogus', 'phoney', 'imitative', 'bastard', 'fake']"
366,denouement,"{'Noun': ['the outcome of a complex sequence of events', 'the final resolution of the main complication of a literary or dramatic work']}","['final result', 'result', 'outcome', 'termination', 'resultant']"
367,gnostic,"{'Noun': ['an advocate of Gnosticism'], 'Adjective': ['of or relating to Gnosticism', 'possessing intellectual or esoteric knowledge of spiritual things']}","['advocate', 'advocator', 'proponent', 'exponent']"
368,arriviste,{'Noun': ['a person who has suddenly risen to a higher economic status but has not gained social acceptance of others in that class']},"['unpleasant person', 'upstart', 'junior', 'climber', 'disagreeable person', 'social climber', 'nouveau-riche', 'parvenu']"
369,boon,"{'Noun': ['a desirable state'], 'Adjective': ['very close and convivial']}",['close']
370,effluvium,{'Noun': ['a foul-smelling outflow or vapor (especially a gaseous waste']},"['discharge', 'emission']"
371,flux,"{'Noun': ['the rate of flow of energy or particles across a given surface', 'a flow or discharge', 'a substance added to molten metals to bond with impurities that can then be readily removed', 'excessive discharge of liquid from a cavity or organ (as in watery diarrhea', 'a state of uncertainty about what should be done (usually following some important event', 'the lines of force surrounding a permanent magnet or a moving charged particle', '(physics', 'in constant change'], 'Verb': ['move or progress freely as if in a stream', 'become liquid or fluid when heated', 'mix together different elements']}","['neutron flux', 'rate', 'radiant flux']"
372,insolvent,"{'Noun': ['someone who has insufficient assets to cover their debts'], 'Adjective': ['unable to meet or discharge financial obligations']}","['belly-up', 'bankrupt']"
373,veracious,"{'Adjective': ['habitually speaking the truth', 'precisely accurate']}","['right', 'accurate']"
374,stupefied,"{'Verb': ['make dull or stupid or muddle with drunkenness or infatuation', 'be a mystery or bewildering to', 'make senseless or dizzy by or as if by a blow'], 'Adjective': ['as if struck dumb with astonishment and surprise', 'in a state of mental numbness especially as resulting from shock', 'or stupefied']}","['stunned', 'confused', 'stupid', 'dazed']"
375,foreseeable,{'Adjective': ['capable of being anticipated']},['predictable']
376,hoodwink,"{'Verb': ['influence by slyness', ""conceal one's true motives from especially by elaborately feigning good intentions so as to gain an end""]}","['rip off', 'beguile', 'chisel', 'juggle', 'cheat']"
377,truncated,"{'Verb': ['replace a corner by a plane', 'approximate by ignoring all terms beyond a chosen one', 'make shorter as if by cutting off'], 'Adjective': ['cut short in duration', 'terminating abruptly by having or as if having an end or point cut off']}","['truncate', 'short']"
378,frugality,{'Noun': ['prudence in avoiding waste']},"['economy', 'thrift', 'parsimony', 'penny-pinching', 'thriftiness', 'parsimoniousness', 'prudence', 'frugalness']"
379,regress,"{'Noun': ['the reasoning involved when you assume the conclusion is true and reason backward to the evidence', 'returning to a former state'], 'Verb': ['go back to a statistical means', 'go back to a previous state', 'get worse or fall back to a previous condition', 'go back to bad behavior']}","['regression', 'retroversion', 'reversion', 'reversal', 'retrogression']"
380,appease,"{'Verb': ['cause to be more favorably inclined; gain the good will of', 'overcome or allay', 'make peace with']}","['quiet', 'tranquillize', 'conciliate', 'calm down', 'mollify', 'calm', 'lull', 'tranquillise', 'gruntle', 'pacify', 'quieten', 'still', 'lenify', 'gentle', 'placate', 'tranquilize', 'assuage']"
381,opprobrium,"{'Noun': ['state of disgrace resulting from public abuse', 'a state of extreme dishonor']}","['infamy', 'dishonor', 'dishonour']"
382,foil,"{'Noun': ['a piece of thin and flexible sheet metal', ""anything that serves by contrast to call attention to another thing's good qualities"", 'a device consisting of a flat or curved piece (as a metal plate', 'picture consisting of a positive photograph or drawing on a transparent base; viewed with a projector', 'a light slender flexible sword tipped by a button'], 'Verb': ['enhance by contrast', 'hinder or prevent (the efforts, plans, or desires', 'cover or back with foil']}","['gold foil', 'aluminum foil', 'tinfoil', 'aluminium foil', 'chaff', 'sheet metal', 'tin foil']"
383,bevy,"{'Noun': ['a large gathering of people of a particular type', 'a flock of birds (especially when gathered close together on the ground']}","['assemblage', 'gathering']"
384,disgruntled,"{'Verb': ['put into a bad mood or into bad humour'], 'Adjective': ['in a state of sulky dissatisfaction']}","['discontented', 'dissatisfied', 'discontent']"
385,impertinent,"{'Adjective': ['characterized by a lightly pert and exuberant quality', 'not pertinent to the matter under consideration', 'improperly forward or bold']}","['pert', 'saucy', 'irreverent', 'spirited']"
386,unadorned,{'Adjective': ['not decorated with something to increase its beauty or distinction']},"['bare', 'unornamented', 'plain', 'untufted', 'unembellished', 'spare', 'undecorated', 'unclothed']"
387,emphatic,"{'Adjective': ['spoken with emphasis', 'sudden and strong', 'forceful and definite in expression or action']}","['stressed', 'accented', 'emphasized', 'emphasised']"
388,amorous,"{'Adjective': ['inclined toward or displaying love', 'expressive of or exciting sexual love or romance']}","['amative', 'loving']"
389,utterly,{'Adverb': ['completely and without qualification; used informally as intensifiers']},"['absolutely', 'dead', 'perfectly']"
390,mundane,"{'Adjective': ['found in the ordinary course of events', 'concerned with the world or worldly matters', 'belonging to this earth or world; not ideal or heavenly']}","['everyday', 'ordinary', 'quotidian', 'unremarkable', 'workaday', 'routine']"
391,discomfiting,"{'Verb': [""cause to lose one's composure""]}","['bewilder', 'bemuse', 'disconcert', 'anguish', 'raise', 'upset', 'unnerve', 'faze', 'pain', 'arouse', 'unsettle', 'discompose', 'evoke', 'abash', 'hurt', 'afflict', 'enkindle', 'fire', 'untune', 'kindle', 'throw', 'embarrass', 'provoke', 'dissolve', 'enervate', 'elicit', 'discombobulate']"
392,rue,"{'Noun': ['European strong-scented perennial herb with grey-green bitter-tasting leaves; an irritant similar to poison ivy', 'leaves sometimes used for flavoring fruit or claret cup but should be used with great caution: can cause irritation like poison ivy', 'sadness associated with some wrong done or some disappointment', '(French'], 'Verb': ['feel remorse for; feel sorry for; be contrite about']}","['Ruta graveolens', 'herb', 'herb of grace']"
393,accentuate,"{'Verb': ['to stress, single out as important', 'put stress on; utter with an accent']}","['play down', 'underscore', 'stress', 'express', 'bring out', 'downplay', 'topicalize', 'accent', 're-emphasise', 'set off', 'emphasise', 'underline', 'punctuate', 'drive home', 're-emphasize', 'point up', 'background', 'ram home', 'emphasize', 'press home', 'show', 'evince', 'bear down']"
394,incipient,{'Adjective': ['only partly in existence; imperfectly formed']},"['early', 'inchoate']"
395,forthcoming,"{'Adjective': ['at ease in talking to others', 'of the relatively near future', 'available when required or as promised']}",['available']
396,melee,{'Noun': ['a noisy riotous fight']},"['battle royal', 'disturbance', 'scrimmage']"
397,altruism,{'Noun': ['the quality of unselfish concern for the welfare of others']},"['selflessness', 'unselfishness']"
398,causal,{'Adjective': ['involving or constituting a cause; causing']},['causative']
399,sage,"{'Noun': ['a mentor in spiritual and philosophical topics who is renowned for profound wisdom', 'aromatic fresh or dried grey-green leaves used widely as seasoning for meats and fowl and game etc', 'any of various plants of the genus Salvia; a cosmopolitan herb'], 'Adjective': ['having wisdom that comes with age and experience', 'of the grey-green color of sage leaves']}","['herb', 'clary sage', 'Salvia officinalis', 'common sage', 'ramona']"
400,enthrall,{'Verb': ['hold spellbound']},"['enrapture', 'please', 'enthral', 'transport', 'ravish', 'enchant', 'delight']"
401,unprecedented,{'Adjective': ['having no precedent; novel']},"['unexampled', 'new']"
402,inclement,"{'Adjective': ['(of weather or climate', 'used of persons or behavior; showing no clemency or mercy']}","['unmerciful', 'unsparing', 'merciless']"
403,virtuoso,"{'Noun': ['someone who is dazzlingly skilled in any field', 'a musician who is a consummate master of technique and artistry'], 'Adjective': ['having or revealing supreme mastery or skill']}","['whizz', 'mavin', 'star', 'hotshot', 'wiz', 'sensation', 'track star', 'maven', 'adept', 'wizard', 'superstar', 'ace', 'genius', 'expert', 'champion', 'whiz']"
404,tacit,{'Adjective': ['implied by or inferred from actions or statements']},"['understood', 'silent', 'inexplicit', 'implicit']"
405,pathogenic,{'Adjective': ['able to cause disease']},"['unhealthful', 'infective', 'morbific']"
406,beguile,"{'Verb': ['influence by slyness', 'attract; cause to be enamored']}","['hoodwink', 'rip off', 'chisel', 'juggle', 'cheat']"
407,antithetical,{'Adjective': ['sharply contrasted in character or purpose']},"['antithetic', 'different']"
408,expedite,"{'Verb': ['speed up the progress of; facilitate', 'process fast and efficiently']}","['hasten', 'aid', 'assist', 'help']"
409,impeccable,"{'Adjective': ['without fault or error', 'not capable of sin']}","['perfect', 'faultless', 'immaculate']"
410,discount,"{'Noun': ['the act of reducing the selling price of merchandise', 'interest on an annual basis deducted in advance on a loan', 'a refund of some fraction of the amount paid', 'an amount or percentage deducted'], 'Verb': ['bar from attention or consideration', 'give a reduction in price on']}","['ignore', 'pass off', 'discredit', 'push aside', 'disregard', 'cold-shoulder', 'laugh away', 'slight', 'reject', 'scoff', 'laugh off', 'brush aside', 'disoblige', 'shrug off', 'brush off', 'flout', 'dismiss', 'turn a blind eye']"
411,flouted,"{'Verb': ['treat with contemptuous disregard', 'laugh at with contempt and derision']}","['ignore', 'disregard', 'discount', 'scoff', 'brush aside', 'push aside', 'dismiss', 'brush off']"
412,Inchoate,{'Adjective': ['only partly in existence; imperfectly formed']},"['early', 'incipient']"
413,imperious,{'Adjective': ['having or showing arrogant superiority to and disdain of those one views as unworthy']},"['sniffy', 'prideful', 'disdainful', 'proud', 'supercilious', 'overbearing', 'haughty', 'swaggering', 'lordly']"
414,frenetic,{'Adjective': ['excessively agitated; distraught with fear or other violent emotion']},"['agitated', 'phrenetic', 'frantic', 'frenzied']"
415,prohibitive,{'Adjective': ['tending to discourage (especially of prices']},"['preventive', 'prohibitory', 'preventative']"
416,inequity,{'Noun': ['injustice by virtue of not conforming with rules or standards']},"['gamesmanship', 'unfairness', 'unjustness', 'injustice']"
417,cosset,{'Verb': ['treat with excessive indulgence']},"['coddle', 'pamper', 'do by', 'spoil', 'handle', 'baby', 'indulge', 'treat', 'mollycoddle', 'cocker', 'featherbed']"
418,clemency,"{'Noun': ['good weather with comfortable temperatures', 'leniency and compassion shown toward offenders by a person or agency charged with administering justice']}","['pardon', 'commutation', 'mercifulness', 'respite', 'quarter', 'leniency', 'lenience', 'free pardon', 'amnesty', 're-sentencing', 'mercy', 'reprieve']"
419,penitent,"{'Noun': ['(Roman Catholic Church', 'a Roman Catholic may be admitted to penance under the direction of a confessor'], 'Adjective': ['feeling or expressing remorse for misdeeds']}","['ashamed', 'bad', 'remorseful', 'rueful', 'penitentiary', 'contrite', 'regretful', 'repentant', 'sorry', 'penitential', 'ruthful']"
420,interregnum,"{'Noun': ['the time between two reigns, governments, etc.']}","['meanwhile', 'meantime', 'lag', 'interim']"
421,discerning,"{'Verb': ['detect with the senses'], 'Adjective': ['having or revealing keen insight and good judgment', 'unobtrusively perceptive and sympathetic', 'quick to understand', 'able to make or detect effects of great subtlety; sensitive']}","['discriminating', 'clear-eyed', 'critical', 'prescient', 'perspicacious', 'clear', 'percipient', 'clear-sighted']"
422,liberate,"{'Verb': ['give equal rights to; of women and minorities', 'grant freedom to; free from confinement', 'grant freedom to', 'release (gas or energy']}","['emancipate', 'turn', 'change state']"
423,presumption,"{'Noun': ['an assumption that is taken for granted', 'audacious (even arrogant', 'a kind of discourtesy in the form of an act of presuming']}","['supposition', 'assumption', 'given', 'supposal', 'precondition']"
424,bilk,"{'Verb': ['cheat somebody out of what is due, especially money', 'hinder or prevent (the efforts, plans, or desires', 'evade payment to', 'escape, either physically or mentally']}","['rip off', 'chisel', 'cheat']"
425,pensive,"{'Adjective': ['deeply or seriously thoughtful', 'showing pensive sadness']}","['brooding', 'pondering', 'musing', 'reflective', 'ruminative', 'meditative', 'contemplative', 'broody', 'thoughtful']"
426,sparse,{'Adjective': ['not dense']},"['distributed', 'thin']"
427,steep,"{'Noun': ['a steep place (as on a hill'], 'Verb': ['devote (oneself', 'let sit in a liquid to extract a flavor or to cleanse'], 'Adjective': ['having a sharp inclination', 'greatly exceeding bounds of reason or moderation', 'of a slope; set at a high angle']}","['steep-sided', 'bluff', 'heavy', 'precipitous', 'steepish', 'sharp', 'bold', 'sheer', 'vertical', 'perpendicular', 'abrupt']"
428,flush,"{'Noun': ['the period of greatest prosperity or productivity', 'a rosy color (especially in the cheeks', 'sudden brief sensation of heat (associated with menopause and some mental disorders', 'a poker hand with all 5 cards in the same suit', 'the swift release of a store of affective force', 'a sudden rapid flow (as of water', 'sudden reddening of the face (as from embarrassment or guilt or shame or modesty'], 'Verb': ['turn red, as if in embarrassment or shame', 'flow freely', 'glow or cause to glow with warm color or light', 'make level or straight', 'rinse, clean, or empty with a liquid', 'irrigate with water from a sluice', 'cause to flow or flood with or as if with water'], 'Adjective': ['of a surface exactly even with an adjoining one, forming the same plane', 'having an abundant supply of money or possessions of value'], 'Adverb': ['squarely or solidly', 'in the same plane']}","['color', 'colour', 'discolour', 'discolor', 'redden', 'crimson', 'blush']"
429,virtual,"{'Adjective': ['being actually such in almost every respect', 'existing in essence or effect though not in actual fact']}","['practical', 'realistic']"
430,incessant,{'Adjective': ['uninterrupted in time and indefinitely long continuing']},"['ceaseless', 'continuous', 'perpetual', 'uninterrupted', 'unremitting', 'constant', 'never-ending', 'unceasing']"
431,befuddled,"{'Verb': ['be confusing or perplexing to; cause to be unable to think clearly', 'make stupid with alcohol'], 'Adjective': ['stupefied by alcoholic drink', 'perplexed by many conflicting situations or statements; filled with bewilderment', 'confused and vague; used especially of thinking']}","['confused', 'befogged']"
432,grandstand,"{'Noun': ['the audience at a stadium or racetrack', 'a stand at a racecourse or stadium consisting of tiers with rows of individual seats that are under a protective roof'], 'Verb': ['perform ostentatiously in order to impress the audience and with an eye to the applause']}","['box seat', 'stand', 'covered stand']"
433,prescience,{'Noun': ['the power to foresee the future']},"['capacity', 'prevision', 'mental ability']"
434,ramify,"{'Verb': ['have or develop complicating consequences', 'grow and send out branches or branch-like structures', 'divide into two or more branches so as to form a fork']}","['separate', 'twig', 'bifurcate', 'furcate', 'arborize', 'arborise', 'diverge', 'fork', 'trifurcate', 'branch']"
435,illusory,{'Adjective': ['based on or having the nature of an illusion']},"['unreal', 'illusive']"
436,render,"{'Noun': ['a substance similar to stucco but exclusively applied to masonry walls'], 'Verb': ['cause to become', 'give something useful or necessary to', 'give an interpretation or rendition of', 'give or supply', 'pass down', 'make over as a return', 'give back', 'to surrender someone or something to another', 'show in, or as in, a picture', 'coat with plastic or cement', 'bestow', 'restate (words', 'melt (fat or lard']}","['bed', 'cornice', 'terrasse', 'retrofit', 'rim', 'brattice', 'dado', 'pump', 'hydrate', 'corbel', 'joint', 'scant', 'wharf', 'match', 'tap', 'kern', 'oversupply', 'crenel', 'crenelate', 'surfeit', 'date', 'calk', 'canal', 'key', 'causeway', 'whisker', 'hobnail', 'extend', 'stock', 'reflectorise', 'yield', 'gate', 'air-cool', 'grate', 'cloy', 'afford', 'copper-bottom', 'sanitate', 'berth', 'terrace', 'feed', 'uniform', 'glaze', 'victual', 'border', 'step', 'capitalize', 'headline', 'seat', 'computerise', 'fuel', 'machicolate', 'toggle', 'signalise', 'curtain', 'canalise', 'caption', 'articulate', 'partner', 'stock up', 'alphabetize', 'canalize', 'pour', 'upholster', 'equip', 'transistorise', 'charge', 'shelter', 'provision', 'crenellate', 'rail', 'buy in', 'ticket', 'glass', 'hat', 'subtitle', 'theme', 'flood', 'air-condition', 'patch', 'cleat', 'signalize', 'innervate', 'costume', 'ramp', 'interleave', 'heat', 'fret', 'bush', 'stint', 'wive', 'fit out', 'index', 'fire', 'give', 'reflectorize', 'railroad', 'constitutionalize', 'outfit', 'top', 'purvey', 'glut', 'bewhisker', 'rafter', 'coal', 'skimp', 'top out', 'computerize', 'leverage', 'headquarter', 'fit', 'fund', 'tube', 'furnish', 'bottom', 'offer', 'supply', 'transistorize', 'edge', 'water', 'provide', 'capitalise', 'tool', 'slat', 'arm']"
437,doff,{'Verb': ['remove']},['take off']
438,clangorous,{'Adjective': ['having a loud resonant metallic sound']},"['clanging', 'noisy']"
439,espy,{'Verb': ['catch sight of']},"['descry', 'spy', 'sight', 'spot']"
440,repertoire,"{'Noun': ['the entire range of skills or aptitudes or devices used in a particular field or occupation', 'a collection of works (plays, songs, operas, ballets']}","['collection', 'accumulation', 'aggregation', 'repertory', 'assemblage']"
441,stultify,"{'Verb': [""prove to be of unsound mind or demonstrate someone's incompetence"", 'cause to appear foolish', 'deprive of strength or efficiency; make useless or worthless']}","['weaken', 'cripple']"
442,bedlam,"{'Noun': ['a state of extreme confusion and disorder', 'pejorative terms for an insane asylum']}","['topsy-turvyness', 'confusion', 'topsy-turvydom', 'chaos', 'balagan', 'pandemonium']"
443,eponymous,{'Adjective': ['being or relating to or bearing the name of an eponym']},['eponymic']
444,dismissive,"{'Adjective': ['showing indifference or disregard', 'stopping to associate with']}",['rejective']
445,mandate,"{'Noun': ['a document giving an official instruction or command', 'a territory surrendered by Turkey or Germany after World War I and put under the tutelage of some other European power until they are able to stand by themselves', 'the commission that is given to a government and its policies through an electoral victory'], 'Verb': ['assign under a mandate', 'make mandatory', 'assign authority to']}","['legal instrument', 'unauthorised', 'authorisation', 'authorised', 'unauthorized', 'legal document', 'instrument', 'authorized', 'authorization', 'official document']"
446,offhand,"{'Adjective': ['with little or no preparation or forethought', 'casually thoughtless or inconsiderate'], 'Adverb': ['without previous thought or preparation', 'in a casually inconsiderate manner']}","['offhanded', 'offhandedly']"
447,extend,"{'Verb': ['extend in scope or range or area', 'stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point', 'span an interval of distance, space or time', 'make available; provide', 'thrust or extend out', 'reach outward in space', 'offer verbally', ""extend one's limbs or muscles, or the entire body"", 'expand the influence of', 'lengthen in time; cause to be or last longer', 'extend or stretch out to a greater or the full length', 'cause to move at full gallop', 'open or straighten out; unbend', 'use to the utmost; exert vigorously or to full capacity', 'prolong the time allowed for payment of', 'continue or extend', 'increase in quantity or bulk by adding a cheaper substance']}","['globalize', 'globalise', 'territorialise', 'expand', 'territorialize', 'broaden', 'widen', 'increase', 'stretch']"
448,opportune,{'Adjective': ['suitable or at a time that is suitable or advantageous especially for a particular purpose']},"['ripe', 'well-timed', 'well timed', 'right', 'good', 'timely', 'advantageous', 'seasonable']"
449,meager,{'Adjective': ['deficient in amount or quality or extent']},"['bare', 'paltry', 'miserable', 'stingy', 'minimal', 'meagerly', 'hardscrabble', 'meagre', 'insufficient', 'sufficiency', 'scarce', 'measly', 'deficient', 'adequacy', 'scrimpy', 'spare', 'scanty', 'minimum', 'hand-to-mouth', 'exiguous']"
450,destitute,"{'Adjective': ['poor enough to need help from others', 'completely wanting or lacking']}","['poverty-stricken', 'needy', 'necessitous', 'indigent', 'impoverished', 'poor']"
451,stipend,{'Noun': ['a sum of money allotted on a regular basis; usually for some specific purpose']},"['prebend', 'regular payment']"
452,expiate,{'Verb': ['make amends for']},"['compensate', 'aby', 'atone', 'right', 'correct', 'redress', 'abye']"
453,activism,{'Noun': ['a policy of taking direct action to achieve a political or social goal']},['policy']
454,acme,"{'Noun': ['the highest level or degree attainable; the highest stage of development', 'the highest point (of something']}","['apex', 'crown', 'vertex', 'roof peak', 'peak', 'extremum', 'extreme point', 'extreme']"
455,squalid,"{'Adjective': ['morally degraded', 'foul and run-down and repulsive']}","['flyblown', 'soiled', 'sordid', 'dirty', 'unclean']"
456,accumulate,"{'Verb': ['get or gather together', 'collect or gather']}","['conglomerate', 'amass', 'backlog', 'cumulate', 'gather', 'increase', 'accrete', 'drift', 'pile up']"
457,munificence,{'Noun': ['liberality in bestowing gifts; extremely liberal and generous of spirit']},"['liberalness', 'magnanimity', 'openhandedness', 'liberality', 'largess', 'largesse']"
458,fatuous,{'Adjective': ['extremely silly or stupid']},"['foolish', 'mindless', 'asinine', 'inane', 'vacuous']"
459,abet,"{'Verb': ['assist or encourage, usually in some wrongdoing']}",['assist']
460,flip,"{'Noun': ['an acrobatic feat in which the feet roll over the head (either forward or backward', 'hot or cold alcoholic mixed drink containing a beaten egg', 'a sudden, quick movement', 'the act of flipping a coin', 'a dive in which the diver somersaults before entering the water', '(sports'], 'Verb': ['lightly throw to see which side comes up', 'cause to go on or to be engaged or set in operation', 'look through a book or other written material', 'toss with a sharp movement so as to cause to turn over in the air', 'cause to move with a flick', 'throw or toss with a light motion', 'move with a flick or light motion', 'turn upside down, or throw so as to reverse', 'react in an excited, delighted, or surprised way', 'go mad, go crazy', 'reverse (a direction, attitude, or course of action'], 'Adjective': ['marked by casual disrespect']}","['turn', 'toss']"
461,recapitulation,"{'Noun': ['emergence during embryonic development of various characters or structures that appeared during the evolutionary history of the strain or species', '(music', 'especially in sonata form', 'a summary at the end that repeats the substance of a longer discussion', '(music', 'especially when one is composing the final part of a movement']}","['epanodos', 'recap', 'capitulation', 'review']"
462,slight,"{'Noun': ['a deliberate discourteous act (usually as an expression of anger or disapproval'], 'Verb': ['pay no attention to, disrespect'], 'Adjective': ['(quantifier used with mass nouns', ""with `a'"", 'lacking substance or significance', 'being of delicate or slender build']}","['rebuff', 'discourtesy', 'offence', 'cut', 'snub', 'offense', 'cold shoulder', 'silent treatment', 'offensive activity']"
463,occluded,"{'Verb': ['block passage through'], 'Adjective': ['closed off', '(of a substance']}",['obstructed']
464,maladroit,{'Adjective': ['not adroit']},"['tactless', 'uncoordinated', 'butterfingered', 'heavy-handed', 'handless', 'left-handed', 'inept', 'ham-handed', 'ham-fisted', 'bumbling', 'nonmechanical', 'bungling', 'unmechanical', 'awkward']"
465,antedate,"{'Verb': ['be earlier in time; go back further', 'establish something as being earlier relative to something else']}","['forgo', 'antecede', 'forego', 'precede', 'predate']"
466,morbid,"{'Adjective': ['suggesting an unhealthy mental state', 'suggesting the horror of death and decay', 'caused by or altered by or manifesting disease or pathology']}","['ghoulish', 'offensive']"
467,quotidian,{'Adjective': ['found in the ordinary course of events']},"['mundane', 'everyday', 'ordinary', 'unremarkable', 'workaday', 'routine']"
468,resolve,"{'Noun': ['the trait of being resolute', 'a formal expression by a meeting; agreed to by a vote'], 'Verb': ['bring to an end; settle conclusively', 'reach a conclusion after a discussion or deliberation', 'reach a decision', 'understand the meaning of', 'make clearly visible', 'find the solution', 'cause to go into a solution']}","['judge', 'adjust', 'terminate', 'end', 'adjudicate', 'settle', 'decide']"
469,imprudent,"{'Adjective': ['not prudent or wise', 'lacking wise self-restraint']}",['indiscreet']
470,redolent,"{'Adjective': ['serving to bring to mind', ""(used with `of' or `with'"", 'having a strong pleasant odor']}","['fragrant', 'aromatic']"
471,punitive,{'Adjective': ['inflicting punishment']},"['relatiative', 'vindicatory', 'penitentiary', 'penal', 'correctional', 'punitory', 'retributory', 'retaliatory', 'retributive']"
472,evasive,"{'Adjective': ['deliberately vague or ambiguous', 'avoiding or escaping from difficulty or danger especially enemy fire']}","['equivocal', 'ambiguous']"
473,contumacious,{'Adjective': ['wilfully obstinate; stubbornly disobedient']},['insubordinate']
474,nonchalant,{'Adjective': ['marked by blithe unconcern']},"['casual', 'insouciant', 'unconcerned']"
475,nugatory,{'Adjective': ['of no real value']},['worthless']
476,dichotomy,{'Noun': ['being twofold; a classification into two opposed parts or subclasses']},"['categorisation', 'categorization', 'duality', 'classification']"
477,rationalize,"{'Verb': ['defend, explain, clear away, or make excuses for by reasoning', 'weed out unwanted or unnecessary things', 'structure and run according to rational or scientific principles in order to achieve desired results', 'think rationally; employ logic or reason', 'remove irrational quantities from']}","['rationalise', 'apologise', 'color', 'fend for', 'defend', 'palliate', 'colour', 'mitigate', 'justify', 'apologize', 'support', 'plead', 'excuse', 'gloss', 'extenuate']"
478,scapegoat,{'Noun': ['someone who is punished for the errors of others']},"['victim', 'whipping boy']"
479,modicum,{'Noun': ['a small or moderate or token amount']},"['small indefinite amount', 'small indefinite quantity']"
480,imprimatur,{'Noun': ['formal and explicit approval']},"['commendation', 'okey', 'visa', 'warrant', 'okeh', 'okay', 'endorsement', 'indorsement', 'sanction', 'approval', 'countenance', 'O.K.', 'nihil obstat', 'OK']"
481,bombastic,{'Adjective': ['ostentatiously lofty in style']},"['tumid', 'declamatory', 'orotund', 'rhetorical', 'turgid', 'large']"
482,ennui,{'Noun': ['the feeling of being bored by something tedious']},"['fatigue', 'tedium', 'dissatisfaction', 'blahs', 'boredom']"
483,kindle,"{'Verb': ['catch fire', 'cause to start burning', 'call forth (emotions, feelings, and responses']}","['inflame', 'overtake', 'make', 'invite', 'disconcert', 'stir', 'excite', 'raise', 'strike a chord', 'upset', 'whelm', 'touch a chord', 'ignite', 'shake up', 'discomfit', 'spite', 'arouse', 'overwhelm', 'stimulate', 'heat', 'injure', 'bruise', 'evoke', 'hurt', 'fire up', 'discompose', 'prick', 'enkindle', 'create', 'overcome', 'anger', 'fire', 'infatuate', 'sweep over', 'overpower', 'rekindle', 'offend', 'provoke', 'interest', 'shake', 'wake', 'wound', 'ask for', 'shame', 'elicit', 'stir up', 'untune', 'draw']"
484,officious,{'Adjective': ['intrusive in a meddling or offensive manner']},"['interfering', 'meddling', 'busy', 'busybodied', 'meddlesome', 'intrusive']"
485,entitled,"{'Verb': ['give the right to', 'give a title to', 'give a title to someone; make someone a member of the nobility'], 'Adjective': ['qualified for by right according to law']}",['eligible']
486,solicitous,"{'Adjective': ['full of anxiety and concern', 'showing hovering attentiveness']}",['attentive']
487,dissipate,"{'Verb': ['to cause to separate and go in different directions', 'move away from each other', 'spend frivolously and unwisely', 'live a life of pleasure, especially with respect to alcoholic consumption']}","['frivol away', 'consume', 'eat', 'shoot', 'fool away', 'eat up', 'fritter away', 'exhaust', 'fritter', 'ware', 'run through', 'wipe out', 'deplete', 'squander', 'fool', 'waste', 'use up']"
488,extrapolate,"{'Verb': ['draw from specific cases for more general cases', 'estimate the value of', 'gain knowledge of (an area not known or experienced']}","['infer', 'reason', 'reason out', 'universalize', 'overgeneralize', 'universalise', 'generalize', 'conclude', 'overgeneralise', 'generalise']"
489,stingy,"{'Adjective': ['unwilling to spend (money, time, resources, etc.', 'deficient in amount or quality or extent']}","['chinchy', 'penny-pinching', 'niggardly', 'selfish', 'mingy', 'cheeseparing', 'hardfisted', 'uncharitable', 'penurious', 'scrimy', 'mean', 'miserly', 'tightfisted', 'chintzy', 'generousness', 'near', 'cheap', 'skinny', 'ungenerous', 'parsimonious', 'grudging', 'generosity', 'closefisted', 'tight', 'beggarly', 'meanspirited', 'close']"
490,malfeasance,{'Noun': ['wrongful conduct by a public official']},"['wrongful conduct', 'misconduct', 'wrongdoing', 'actus reus']"
491,indignant,{'Adjective': ['angered at something unjust or wrong']},"['angry', 'outraged', 'umbrageous', 'incensed']"
492,hallowed,"{'Verb': ['render holy by means of religious rites'], 'Adjective': ['worthy of religious veneration']}","['sacred', 'holy']"
493,abound,"{'Verb': ['be abundant or plentiful; exist in large quantities', 'be in a state of movement or action']}",['be']
494,jubilant,"{'Adjective': ['joyful and proud especially because of triumph or success', 'full of high-spirited delight']}","['exultant', 'prideful', 'elated', 'rejoicing', 'triumphal', 'triumphant', 'exulting']"
495,buoyant,"{'Adjective': ['tending to float on a liquid or rise in air or gas', 'characterized by liveliness and lightheartedness']}","['light', 'floaty']"
496,unpropitious,{'Adjective': ['not propitious']},"['ominous', 'unfavorable', 'inauspicious', 'unfavourable', 'propitiousness', 'ill', 'auspiciousness', 'thunderous']"
497,vitiate,"{'Verb': ['corrupt morally or by intemperance or sensuality', 'make imperfect', 'take away the legal force of or render ineffective']}","['suborn', 'sensualise', 'demoralise', 'infect', 'bastardise', 'alter', 'deprave', 'pervert', 'subvert', 'profane', 'misdirect', 'corrupt', 'lead astray', 'debauch', 'carnalise', 'debase', 'poison', 'change', 'lead off', 'bastardize', 'carnalize', 'demoralize', 'modify', 'sensualize']"
498,misogynist,{'Noun': ['a misanthrope who dislikes women in particular']},"['woman hater', 'misanthrope', 'misanthropist']"
499,distend,"{'Verb': ['become wider', 'cause to expand as it by internal pressure', 'swell from or as if from internal pressure']}","['tumefy', 'tumesce', 'swell up', 'intumesce', 'swell']"
500,reservation,"{'Noun': ['a district that is reserved for particular purpose', 'a statement that limits or restricts some claim', 'an unstated doubt that prevents you from accepting something wholeheartedly', 'the act of reserving (a place or passage', 'a person or group', 'the written record or promise of an arrangement by which accommodations are secured in advance', 'something reserved in advance (as a hotel accommodation or a seat on a plane etc.', 'the act of keeping back or setting aside for some future occasion']}","['preserve', 'territorial division', 'reserve', 'Indian reservation', 'administrative district', 'administrative division']"
501,disseminate,{'Verb': ['cause to become widely known']},"['bare', 'podcast', 'distribute', 'broadcast', 'publicise', 'generalize', 'vulgarise', 'sow', 'pass around', 'vulgarize', 'popularize', 'generalise', 'go around', 'publicize', 'carry', 'air', 'run', 'disperse', 'propagate', 'spread', 'diffuse', 'popularise', 'circulate', 'circularize', 'circularise']"
502,iconoclast,"{'Noun': ['a destroyer of images used in religious worship', 'someone who attacks cherished ideas or traditional institutions']}","['ruiner', 'waster', 'uprooter', 'undoer', 'image breaker', 'destroyer']"
503,exiguity,{'Noun': ['the quality of being meager']},"['insufficiency', 'sparsity', 'abstemiousness', 'wateriness', 'sparseness', 'meagreness', 'leanness', 'poorness', 'thinness', 'inadequacy', 'scantness', 'scantiness', 'meagerness', 'spareness', 'deficiency']"
504,forswear,"{'Verb': ['formally reject or disavow a formerly held belief, usually under pressure']}","['retract', 'repudiate', 'resile', 'renounce', 'disown', 'abjure', 'recant']"
505,stanza,{'Noun': ['a fixed number of lines of verse forming a unit of a poem']},"['textual matter', 'ottava rima', 'quatrain', 'strophe', 'envoy', 'octave', 'line', 'text', 'Spenserian stanza', 'poem', 'rhyme royal', 'verse form', 'antistrophe', 'sestet', 'couplet', 'envoi']"
506,wheedle,"{'Verb': ['influence or urge by gentle urging, caressing, or flattering']}","['palaver', 'persuade', 'sweet-talk', 'coax', 'inveigle', 'browbeat', 'blarney', 'swagger', 'soft-soap', 'bully', 'cajole']"
507,lassitude,"{'Noun': ['a state of comatose torpor (as found in sleeping sickness', 'a feeling of lack of interest or energy', 'weakness characterized by a lack of vitality or energy']}","['lethargy', 'sluggishness', 'hebetude', 'torpidity', 'torpor']"
508,expatriate,"{'Noun': ['a person who is voluntarily absent from home or country'], 'Verb': ['expel from a country', ""move away from one's native country and adopt a new residence abroad""]}","['expel', 'throw out', 'kick out', 'exile', 'deport']"
509,rapturous,{'Adjective': ['feeling great rapture or delight']},"['rapt', 'enraptured', 'joyous', 'ecstatic', 'rhapsodic']"
510,disinterested,{'Adjective': ['unaffected by self-interest']},['impartial']
511,posit,"{'Noun': ['(logic'], 'Verb': ['put (something somewhere', 'put before', 'take as a given; assume as a postulate or axiom']}","['state', 'suggest', 'put forward', 'propose', 'submit', 'advise']"
512,objective,"{'Noun': ['the goal intended to be attained (and which is believed to be attainable', 'the lens or system of lenses in a telescope or microscope that is nearest the object being viewed'], 'Adjective': ['undistorted by emotion or personal bias; based on observable phenomena', 'serving as or indicating the object of a verb or of certain prepositions and used for certain other purposes', 'emphasizing or expressing things as perceived without distortion of personal feelings or interpretation', 'belonging to immediate experience of actual things or events']}","['target', 'object', 'grail', 'goal', 'end', 'aim', 'business', 'point', 'thing']"
513,objurgate,"{'Verb': ['express strong disapproval of', 'censure severely']}","['reprobate', 'excoriate', 'condemn', 'denounce', 'decry']"
514,abash,{'Verb': ['cause to be embarrassed; cause to feel self-conscious']},"['embarrass', 'confuse', 'flurry', 'discompose', 'upset', 'put off', 'untune', 'disconcert', 'discomfit']"
515,upbraid,{'Verb': ['express criticism towards']},"['impeach', 'accuse', 'reproach', 'incriminate', 'criminate']"
516,pitfall,"{'Noun': ['an unforeseen or unexpected or surprising difficulty', 'a trap in the form of a concealed hole']}","['difficulty', 'booby trap']"
517,table,"{'Noun': ['a set of data arranged in rows and columns', 'a piece of furniture having a smooth flat top that is usually supported by one or more vertical legs', 'a piece of furniture with tableware for a meal laid out on it', 'flat tableland with steep edges', 'a company of people assembled at a table for a meal or game', 'food or meals in general'], 'Verb': ['hold back to a later time', 'arrange or enter in tabular form']}","['tabular array', 'periodic table', 'array', 'table of contents', 'contents', 'statistical table', 'correlation table', 'row', 'actuarial table', 'calendar', 'file allocation table', 'column']"
518,temerity,{'Noun': ['fearless daring']},"['hardihood', 'audacity', 'daring', 'boldness', 'hardiness', 'audaciousness']"
519,candid,"{'Adjective': ['characterized by directness in manner or speech; without subtlety or evasion', 'informal or natural; especially caught off guard or unprepared', 'openly straightforward and direct without reserve or secretiveness']}","['plainspoken', 'outspoken', 'forthright', 'direct', 'frank', 'point-blank', 'blunt', 'free-spoken', 'straight-from-the-shoulder']"
520,deride,{'Verb': ['treat or speak of with contempt']},"['bemock', 'catcall', 'mock']"
521,exculpate,{'Verb': ['pronounce not guilty of criminal charges']},"['evaluate', 'assoil', 'judge', 'purge', 'pass judgment', 'pronounce', 'vindicate', 'exonerate', 'discharge', 'acquit', 'whitewash', 'clear', 'label']"
522,compound,"{'Noun': ['a whole formed by a union of two or more elements or parts', '(chemistry', 'an enclosure of residences and other building (especially in the Orient'], 'Verb': ['make more intense, stronger, or more marked', 'put or add together', 'calculate principal and interest', 'create by mixing or combining', 'combine so as to form a whole; mix'], 'Adjective': ['composed of more than one part', 'consisting of two or more substances or ingredients or elements or parts', 'composed of many distinct individuals united to form a whole or colony']}","['fan', 'raise', 'heat up', 'screw up', 'enhance', 'increase', 'amplify', 'deepen', 'heighten', 'intensify', 'sharpen', 'hot up']"
523,serendipity,{'Noun': ['good luck in making unexpected and fortunate discoveries']},"['good fortune', 'good luck', 'fluke']"
524,plaintive,{'Adjective': ['expressing sorrow']},"['sorrowful', 'mournful']"
525,impetuous,"{'Adjective': ['characterized by undue haste and lack of thought or deliberation', ""`brainish' is archaic"", 'marked by violent force']}","['impulsive', 'brainish', 'madcap', 'hotheaded', 'tearaway', 'incautious']"
526,imbibe,"{'Verb': ['take in, also metaphorically', 'take (gas, light or heat', 'take in liquids', 'receive into the mind and retain']}","['suck up', 'soak up', 'mop up', 'mop', 'take in', 'take up', 'wipe up', 'absorb', 'sponge up', 'draw', 'suck', 'blot', 'sop up']"
527,peruse,{'Verb': ['examine or consider with attention and in detail']},"['examine', 'riff', 'riffle', 'flip', 'see', 'flick', 'leaf', 'thumb']"
528,inimitable,{'Adjective': ['defying imitation; matchless']},"['unreproducible', 'irreproducible']"
529,reclusive,"{'Adjective': ['withdrawn from society; seeking solitude', 'providing privacy or seclusion']}","['sequestered', 'private', 'cloistered', 'secluded']"
530,resonant,"{'Adjective': ['characterized by resonance', 'serving to bring to mind']}","['resounding', 'reverberating', 'reverberant', 'reverberative', 'resonating']"
531,nuance,{'Noun': ['a subtle difference in meaning or opinion or attitude']},"['shade', 'refinement', 'significance', 'import', 'meaning', 'subtlety', 'nicety', 'signification']"
532,uncanny,"{'Adjective': ['suggesting the operation of supernatural influences', 'surpassing the ordinary or normal']}","['eldritch', 'weird', 'supernatural', 'unearthly']"
533,tenacious,"{'Adjective': ['good at remembering', 'stubbornly unyielding', 'sticking together']}","['unyielding', 'dour', 'unregenerate', 'obstinate', 'dogged', 'pertinacious', 'persistent', 'stubborn']"
534,surpassing,"{'Verb': ['distinguish oneself', 'be or do something to a greater degree', 'move past', 'be greater in scope or size than some standard'], 'Adjective': ['exceeding or surpassing usual limits especially in excellence', 'far beyond what is usual in magnitude or degree']}","['superior', 'transcendent']"
535,corrosion,"{'Noun': ['a state of deterioration in metals caused by oxidation or chemical action', 'erosion by chemical action']}","['chemical change', 'pitting', 'corroding', 'rusting', 'erosion', 'roughness', 'chemical action', 'indentation', 'rust', 'chemical process']"
536,belied,"{'Verb': ['be in contradiction with', 'represent falsely']}","['depart', 'contradict', 'vary', 'negate', 'deviate', 'diverge']"
537,superfluous,"{'Adjective': ['serving no useful purpose; having no excuse for being', 'more than is needed, desired, or required', 'or unnecessary']}","['wasted', 'purposeless', 'senseless', 'pointless', 'otiose', 'worthless']"
538,sportive,"{'Adjective': ['relating to or interested in sports', 'given to merry frolicking']}","['rollicking', 'coltish', 'frolicky', 'playful', 'frolicsome']"
539,loath,"{'Adjective': ['unwillingness to do something contrary to your custom', ""(usually followed by `to'""]}","['loth', 'indisposed', 'averse', 'disinclined', 'antipathetic', 'antipathetical']"
540,gargantuan,{'Adjective': ['of great mass; huge and bulky']},"['big', 'giant', 'elephantine', 'jumbo', 'large']"
541,somber,"{'Adjective': ['lacking brightness or color; dull', 'grave or even gloomy in character']}","['sober', 'sombre', 'colourless', 'drab', 'colorless']"
542,posthumous,"{'Adjective': [""occurring or coming into existence after a person's death""]}",['late']
543,pedagogy,"{'Noun': ['the principles and methods of instruction', 'the profession of a teacher', 'the activities of educating or instructing; activities that impart knowledge or skill']}","['classwork', 'extension', 'instruction', 'homework', 'activity', 'team teaching', 'prep', 'educational activity', 'teaching', 'secondary education', 'lesson', 'university extension', 'preparation', 'extracurricular activity', 'course', 'extension service', 'continuing education', 'work-study program', 'education', 'course of instruction', 'class', 'elementary education', 'classroom project', 'course of study', 'coeducation', 'didactics', 'higher education']"
544,abysmal,"{'Adjective': ['very great; limitless', 'resembling an abyss in depth; so deep as to be unmeasurable']}","['unmeasurable', 'immeasurable', 'immensurable', 'unmeasured']"
545,ashen,"{'Adjective': ['anemic looking from illness or emotion', 'made of wood of the ash tree']}","['bloodless', 'blanched', 'colourless', 'livid', 'white', 'colorless']"
546,scotch,"{'Noun': ['a slight surface cut (especially a notch that is made to keep a tally', 'whiskey distilled in Scotland; especially whiskey made from malted barley in a pot still'], 'Verb': ['hinder or prevent (the efforts, plans, or desires', 'make a small cut or score into'], 'Adjective': ['of or relating to or characteristic of Scotland or its people or culture or its English dialect or Gaelic language', 'avoiding waste']}","['Scottish', 'Scots']"
547,epitome,"{'Noun': ['a standard or typical example', 'a brief abstract (as of an article or book']}","['model', 'example', 'paradigm', 'prototype', 'image', 'imago', 'concentrate']"
548,knell,"{'Noun': ['the sound of a bell rung slowly to announce a death or a funeral or the end of something'], 'Verb': ['ring as in announcing death', 'make (bells']}","['bell', 'toll']"
549,epicure,{'Noun': ['a person devoted to refined sensuous enjoyment (especially good food and drink']},"['bon vivant', 'foodie', 'sensualist', 'epicurean', 'gourmet', 'gastronome']"
550,inured,"{'Verb': ['cause to accept or become hardened to; habituate'], 'Adjective': ['made tough by habitual exposure']}","['tough', 'toughened', 'hardened', 'enured']"
551,repine,{'Verb': ['express discontent']},"['sound off', 'complain', 'plain', 'kvetch', 'quetch', 'kick']"
552,err,"{'Verb': ['to make a mistake or be incorrect', 'wander from a direct course or at random']}","['stumble', 'misremember', 'slip', 'misjudge', 'mistake', 'slip up', 'trip up', 'fall for']"
553,euphoric,{'Adjective': ['exaggerated feeling of well-being or elation']},"['euphoriant', 'elated', 'expansive', 'happy']"
554,inborn,"{'Adjective': ['present at birth but not necessarily hereditary; acquired during fetal development', 'normally existing at birth']}","['innate', 'congenital', 'nonheritable', 'noninheritable']"
555,stupefy,"{'Verb': ['make dull or stupid or muddle with drunkenness or infatuation', 'be a mystery or bewildering to', 'make senseless or dizzy by or as if by a blow']}","['baffle', 'bewilder', 'amaze', 'flummox', 'confound', 'dumbfound', 'mystify', 'befuddle', 'fox', 'pose', 'escape', 'bedevil', 'get', 'elude', 'riddle', 'vex', 'puzzle', 'nonplus', 'beat', 'throw', 'confuse', 'gravel', 'stick', 'mix up', 'perplex', 'fuddle', 'discombobulate', 'stump']"
556,gamboled,{'Verb': ['play boisterously']},"['teasing', 'lunacy', 'craziness', 'toying', 'flirting', 'frolic', 'coquetry', 'romp', 'recreation', 'play', 'diversion', 'dalliance', 'horseplay', 'tomfoolery', 'indulgence', 'folly', 'caper', 'flirt', 'game', 'foolery', 'flirtation', 'word play']"
557,venality,{'Noun': ['prostitution of talents or offices or services for reward']},"['corruption', 'corruptness']"
558,homily,{'Noun': ['a sermon on a moral or religious topic']},"['discourse', 'sermon', 'preachment', 'preaching']"
559,penumbra,{'Noun': ['a fringe region of partial shadow around an umbra']},['shadow']
560,burdensome,{'Adjective': ['not easily borne; wearing']},"['onerous', 'heavy', 'taxing']"
561,opportunism,{'Noun': ['taking advantage of opportunities without regard for the consequences for others']},"['expedience', 'self-seeking', 'self-interest', 'selfishness']"
562,advent,"{'Noun': ['arrival that has been awaited (especially of something momentous', 'the season including the four Sundays preceding Christmas', '(Christian theology']}","['arrival', 'reaching', 'coming']"
563,anarchy,{'Noun': ['a state of lawlessness and disorder (usually resulting from a failure of government']},"['disorder', 'nihilism', 'lawlessness']"
564,consumption,"{'Noun': ['the process of taking food into the body through the mouth (as by eating', 'involving the lungs with progressive wasting of the body', '(economics', 'the act of consuming something']}","['drink', 'bodily process', 'sucking', 'suction', 'suck', 'body process', 'activity', 'intake', 'bodily function', 'drinking', 'deglutition', 'imbibing', 'eating', 'imbibition', 'ingestion', 'swallow', 'feeding', 'uptake']"
565,brandish,"{'Noun': ['the act of waving'], 'Verb': ['move or swing back and forth', 'exhibit aggressively']}","['move', 'flourish', 'hold', 'take hold', 'displace', 'wave', 'wigwag']"
566,rhetoric,"{'Noun': ['using language effectively to please or persuade', 'high-flown style; excessive use of verbal ornamentation', 'loud and confused and empty talk', 'study of the technique and rules for using language effectively (especially in public speaking']}","['style', 'expressive style', 'rhetorical device']"
567,multifaceted,{'Adjective': ['having many aspects or qualities']},"['many-sided', 'varied', 'miscellaneous', 'multifarious']"
568,chauvinist,"{'Noun': ['a person with a prejudiced belief in the superiority of his or her own kind', 'an extreme bellicose nationalist']}","['jingoist', 'flag-waver', 'patriot', 'jingo', 'hundred-percenter', 'nationalist', 'patrioteer']"
569,connote,"{'Verb': ['express or state indirectly', 'involve as a necessary condition of consequence; as in logic']}","['express', 'show', 'imply', 'evince']"
570,sycophant,{'Noun': ['a person who tries to please someone in order to gain a personal advantage']},"['toady', 'goody-goody', 'groveler', 'flatterer', 'truckler', 'lackey', 'adulator', 'ass-kisser', 'apple polisher', 'fawner', 'crawler', 'bootlicker', 'groveller']"
571,acarpous,{'Adjective': ['producing no fruit']},['unfruitful']
572,evenhanded,{'Adjective': ['without partiality']},"['equitable', 'just']"
573,apex,"{'Noun': ['the highest point (of something', 'the point on the celestial sphere toward which the sun and solar system appear to be moving relative to the fixed stars']}","['crown', 'acme', 'vertex', 'roof peak', 'peak', 'extremum', 'extreme point', 'extreme']"
574,credibility,{'Noun': ['the quality of being believable or trustworthy']},"['legitimacy', 'rigour', 'plausibleness', 'cred', 'believable', 'street cred', 'genuineness', 'plausibility', 'quality', 'street credibility', 'validity', 'incredible', 'credible', 'credibleness', 'believability', 'authenticity', 'rigor', 'unbelievable', 'cogency']"
575,cerebral,"{'Adjective': ['involving intelligence rather than emotions or instinct', 'of or relating to the cerebrum or brain']}",['intellectual']
576,apace,"{'Adverb': ['(poetic, literary', 'with speed']}","['rapidly', 'chop-chop', 'quickly', 'speedily']"
577,plebeian,"{'Noun': ['one of the common people'], 'Adjective': ['of or associated with the great masses of people']}","['lowborn', 'common', 'vulgar', 'unwashed']"
578,disingenuous,{'Adjective': ['not straightforward or candid; giving a false appearance of frankness']},"['insincere', 'distorted', 'twisted', 'misrepresented', 'perverted', 'artful']"
579,sodden,"{'Adjective': ['wet through and through; thoroughly wet', 'or soaked']}","['wet', 'soppy']"
580,pretense,"{'Noun': ['the act of giving a false appearance', 'pretending with intention to deceive', 'imaginative intellectual play', 'a false or unsupportable quality', 'an artful or simulated semblance']}","['simulation', 'dissembling', 'feigning', 'pose', 'affectation', 'affectedness', 'pretence', 'pretending', 'show', 'masquerade', 'appearance', 'deceit', 'pretend', 'make-believe', 'dissimulation', 'deception', 'mannerism']"
581,burgeon,{'Verb': ['grow and flourish']},['grow']
582,vituperated,{'Verb': ['spread negative information about']},"['revile', 'vilify', 'blackguard', 'rail', 'clapperclaw', 'shout', 'abuse']"
583,sanctimony,{'Noun': ['the quality of being hypocritically devout']},"['sanctimoniousness', 'hypocrisy']"
584,estranged,"{'Verb': ['remove from customary environment or associations', 'arouse hostility or indifference in where there had formerly been love, affection, or friendliness'], 'Adjective': ['caused to be unloved']}","['unloved', 'alienated']"
585,precarious,"{'Adjective': ['affording no ease or reassurance', 'fraught with danger', 'not secure; beset with difficulties']}","['unstable', 'uneasy']"
586,coercion,"{'Noun': ['the act of compelling by force of authority', 'using force to cause something to occur']}","['causation', 'compulsion', 'eviction', 'causing', 'constructive eviction']"
587,inordinate,{'Adjective': ['beyond normal limits']},"['undue', 'immoderate', 'excessive', 'unreasonable']"
588,capacious,{'Adjective': ['large in capacity']},"['large', 'big']"
589,hinder,"{'Verb': ['be a hindrance or obstacle to', 'hinder or prevent the progress or accomplishment of', 'put at a disadvantage'], 'Adjective': ['located at or near the back of an animal', 'or hind']}","['obstruct', 'inhibit', 'stunt', 'prevent', 'impede', 'occlude', 'set back', 'obturate', 'jam', 'interfere', 'keep', 'close up', 'hobble', 'block']"
590,penultimate,"{'Noun': ['the next to last syllable in a word'], 'Adjective': ['second last']}","['intermediate', 'next-to-last']"
591,archaic,"{'Adjective': ['so extremely old as seeming to belong to an earlier period', 'little evolved from or characteristic of an earlier ancestral type']}","['antiquated', 'old', 'antediluvian']"
592,eclectic,"{'Noun': ['someone who selects according to the eclectic method'], 'Adjective': ['selecting what seems best of various styles or ideas']}",['discriminating']
593,console,"{'Noun': ['a small table fixed to a wall or designed to stand against a wall', 'a scientific instrument consisting of displays and an input device that an operator can use to monitor and control a system (especially a computer system', 'an ornamental scroll-shaped bracket (especially one used to support a wall fixture', 'housing for electronic instruments, as radio or television'], 'Verb': ['give moral or emotional strength to']}","['quiet', 'relieve', 'soothe', 'tranquillize', 'allay', 'comfort', 'calm', 'calm down', 'lull', 'ease', 'tranquillise', 'quieten', 'still', 'tranquilize', 'solace']"
594,amulet,{'Noun': ['a trinket or piece of jewelry usually hung about the neck and thought to be a magical protection against evil or disease']},"['charm', 'talisman', 'gres-gris', 'good luck charm', 'grigri', 'greegree']"
595,sanction,"{'Noun': ['formal and explicit approval', ""a mechanism of social control for enforcing a society's standards"", 'official permission or approval', 'the act of final authorization'], 'Verb': ['give sanction to', 'give authority or permission to', 'give religious sanction to, such as through on oath']}","['back', 'confirm', 'visa', 'endorse', 'plump for', 'okay', 'authorize', 'authorise', 'pass', 'clear', 'O.K.', 'indorse', 'plunk for', 'support', 'approve']"
596,variegated,"{'Verb': ['change the appearance of, especially by marking with different colors', 'make something more diverse and varied'], 'Adjective': ['having a variety of colors']}","['varicolored', 'varied', 'varicoloured']"
597,factious,{'Adjective': ['dissenting (especially dissenting with the majority opinion']},"['dissentious', 'divisive', 'discordant']"
598,jingoist,{'Noun': ['an extreme bellicose nationalist']},"['flag-waver', 'patriot', 'jingo', 'hundred-percenter', 'nationalist', 'chauvinist', 'patrioteer']"
599,optimal,{'Adjective': ['most desirable possible under a restriction expressed or implied']},"['optimum', 'best']"
600,abase,{'Verb': ['cause to feel shame; hurt the pride of']},"['put down', 'smash', 'degrade', 'mortify', 'spite', 'demolish', 'demean', 'chagrin', 'take down', 'injure', 'bruise', 'hurt', 'humiliate', 'offend', 'disgrace', 'wound', 'humble', 'crush']"
601,dispatch,"{'Noun': ['an official report (usually sent in haste', 'the act of sending off something', 'the property of being prompt and efficient', 'killing a person or animal'], 'Verb': ['send away towards a designated goal', 'complete or carry out', 'kill intentionally and with premeditation', 'dispose of rapidly and without delay and efficiently', 'kill without delay']}","['transport', 'despatch', 'bundle off', 'route', 'send off', 'ship', 'send']"
602,adulation,{'Noun': ['servile flattery; exaggerated and hypocritical praise']},['flattery']
603,autocratic,"{'Adjective': ['offensively self-assured or given to exercising usually unwarranted power', 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty']}","['dominating', 'high-and-mighty', 'peremptory', 'magisterial', 'domineering', 'bossy']"
604,innervate,"{'Verb': ['supply nerves to (some organ or body part', 'stimulate to action']}","['excite', 'stimulate']"
605,propitious,{'Adjective': ['presenting favorable circumstances; likely to result in or show signs of success']},"['auspicious', 'prosperous', 'propitiousness', 'favourable', 'lucky', 'auspiciousness', 'favorable', 'golden', 'gracious']"
606,edacious,{'Adjective': ['devouring or craving food in great quantities']},"['ravening', 'esurient', 'voracious', 'rapacious', 'gluttonous', 'ravenous', 'wolfish']"
607,volition,"{'Noun': ['the capability of conscious choice and decision and intention', 'the act of making a choice']}","['faculty', 'module', 'will', 'mental faculty', 'velleity']"
608,hirsute,{'Adjective': ['having or covered with hair']},"['pilose', 'fuzzed', 'glossy-furred', 'woolly', 'silky-haired', 'coarse-furred', 'pilary', 'hairy', 'hoary', 'coarse-haired', 'rough-haired', 'downy', 'tomentose', 'lanate', 'silver-haired', 'comate', 'snake-haired', 'furlike', 'curly-haired', 'pubescent', 'soft-haired', 'pilous', 'fuzzy', 'velvety-haired', 'shock-headed', 'furry', 'haired', 'glossy-haired', 'smooth-haired', 'floccose', 'glossy-coated', 'pappose', 'stiff-haired', 'thick-haired', 'wiry-coated', 'woolly-haired', 'curly-coated', 'puberulent', 'comal', 'tomentous', 'canescent', 'wooly', 'velvety-furred', 'dark-coated', 'wooly-haired', 'sericeous', 'long-haired', 'furred', 'short-haired', 'wire-haired', 'wiry', 'dark-haired', 'comose', 'hispid']"
609,profligate,"{'Noun': ['a dissolute man in fashionable society', 'a recklessly extravagant consumer'], 'Adjective': ['recklessly wasteful', 'unrestrained by convention or morality']}","['debauched', 'riotous', 'degenerate', 'libertine', 'dissolute', 'fast', 'immoral', 'degraded', 'dissipated']"
610,effigy,{'Noun': ['a representation of a person (especially in the form of sculpture']},"['representation', 'waxwork', 'scarer', 'image', 'simulacrum', 'scarecrow', 'strawman', 'graven image', 'wax figure', 'idol', 'straw man', 'god', 'Guy', 'bird-scarer']"
611,arcane,{'Adjective': ['requiring secret or mysterious knowledge']},['esoteric']
612,indifference,"{'Noun': ['unbiased impartial unconcern', 'apathy demonstrated by an absence of emotional reactions', 'the trait of lacking enthusiasm for or interest in things generally', 'the trait of remaining calm and seeming not to care; a casual lack of concern']}","['aloofness', 'unconcern', 'detachment', 'withdrawal', 'distance']"
613,reprehensible,{'Adjective': ['bringing or deserving severe rebuke or censure']},"['vicious', 'criminal', 'wrong', 'condemnable', 'deplorable']"
614,attrition,"{'Noun': ['erosion by friction', 'the wearing down of rock particles by friction due to water or wind or ice', 'sorrow for sin arising from fear of damnation', 'a wearing down to weaken or destroy', 'the act of rubbing together; wearing something down by friction']}","['abrasion', 'friction', 'detrition', 'rubbing', 'grinding']"
615,encroaching,"{'Verb': ['advance beyond the usual limit', 'impinge or infringe upon'], 'Adjective': ['gradually intrusive without right or permission']}","['intrusive', 'trespassing', 'invasive']"
616,marshal,"{'Noun': ['a law officer having duties similar to those of a sheriff in carrying out the judgments of a court of law', '(in some countries'], 'Verb': ['place in proper rank', 'arrange in logical order', 'make ready for action or use', 'lead ceremoniously, as in a procession']}","['peace officer', 'marshall', 'air marshal', 'law officer', 'sky marshal', 'lawman']"
617,contingent,"{'Noun': ['a gathering of persons representative of some larger group', 'a temporary military unit'], 'Adjective': ['possible but not certain to occur', 'being determined by conditions or circumstances that follow', 'uncertain because of uncontrollable circumstances']}","['gathering', 'assemblage']"
618,filibuster,"{'Noun': ['a legislator who gives long speeches in an effort to delay or obstruct legislation that he (or she'], 'Verb': ['obstruct deliberately by delaying']}","['holdup', 'delay']"
619,bootless,{'Adjective': ['unproductive of success']},"['vain', 'futile', 'unproductive', 'fruitless', 'sleeveless']"
620,hackneyed,{'Adjective': ['repeated too often; overfamiliar through overuse']},"['threadbare', 'timeworn', 'shopworn', 'banal', 'trite', 'unoriginal', 'commonplace', 'old-hat', 'stock', 'tired', 'well-worn']"
621,climatic,{'Adjective': ['of or relating to a climate']},['climatical']
622,militate,{'Verb': ['have force or influence; bring about an effect or change']},"['act upon', 'influence', 'work']"
623,rapt,"{'Verb': ['strike sharply', 'make light, repeated taps on a surface', 'perform rap music', 'talk volubly'], 'Adjective': ['feeling great rapture or delight']}","['rapturous', 'enraptured', 'joyous', 'ecstatic', 'rhapsodic']"
624,punctilious,{'Adjective': ['marked by precise accordance with details']},"['meticulous', 'precise']"
625,heterogeneous,"{'Adjective': ['consisting of elements that are not of the same kind or nature', 'originating outside the body']}","['disparate', 'diversified', 'varied', 'miscellaneous', 'inhomogeneous', 'assorted', 'motley', 'mixed', 'nonuniform', 'sundry', 'heterogenous', 'different']"
626,pursuant,"{'Adjective': [""(followed by `to'""]}",['consistent']
627,exemplar,{'Noun': ['something to be imitated']},"['model', 'example', 'beauty', 'pattern', 'ideal', 'good example', 'beaut', 'prodigy', 'pacesetter', 'pacemaker']"
628,itinerate,"{'Verb': ['travel from place to place, as for work']}","['move around', 'travel']"
629,incredulous,{'Adjective': ['not disposed or willing to believe; unbelieving']},"['unbelievable', 'sceptical', 'incredible', 'distrustful', 'skeptical', 'unbelieving', 'disbelieving']"
630,repast,{'Noun': ['the food served and eaten at one time']},"['aliment', 'teatime', 'afternoon tea', 'feast', 'nutrition', 'sandwich', 'serving', 'nourishment', 'tea', 'bite', 'collation', 'side dish', 'side order', 'lunch', 'dejeuner', 'dish', 'refection', 'square meal', 'portion', 'nosh-up', 'brunch', 'meal', 'helping', 'tiffin', 'entremets', 'sustenance', 'mess', 'snack', 'potluck', ""ploughman's lunch"", 'course', 'spread', 'dinner', 'luncheon', 'picnic', 'supper', 'victuals', 'banquet', 'nutriment', 'alimentation', 'buffet', 'breakfast']"
631,malice,"{'Noun': ['feeling a need to see others suffer', 'the quality of threatening evil']}","['evilness', 'meanness', 'harshness', 'evil', 'bitchiness', 'beastliness', 'cruelty', 'malevolency', 'spitefulness', 'cruelness', 'cattiness', 'nastiness', 'malevolence', 'spite']"
632,soliloquy,"{'Noun': ['speech you make to yourself', 'a (usually long']}","['oral communication', 'spoken communication', 'speech', 'spoken language', 'voice communication', 'speech communication', 'monologue', 'language']"
633,scintilla,"{'Noun': ['a tiny or scarcely detectable amount', 'a sparkling glittering particle']}","['subatomic particle', 'particle']"
634,obdurate,"{'Adjective': ['stubbornly persistent in wrongdoing', 'showing unfeeling resistance to tender feelings']}","['unregenerate', 'unrepentant', 'obstinate', 'unregenerated', 'cussed']"
635,agglutination,"{'Noun': ['a clumping of bacteria or red cells when held together by antibodies (agglutinins', 'the building of words from component morphemes that retain their form and meaning in the process of combining', 'the coalescing of small particles that are suspended in solution; these larger masses are then (usually']}","['hemagglutination', 'isoagglutination', 'organic process', 'biological process', 'haemagglutination']"
636,constraint,"{'Noun': ['the state of being physically constrained', ""a device that retards something's motion"", 'the act of constraining; the threat or use of force to control the thoughts or behavior of others']}","['swaddling clothes', 'confinement', 'restriction']"
637,flummox,{'Verb': ['be a mystery or bewildering to']},"['baffle', 'bewilder', 'amaze', 'confound', 'dumbfound', 'mystify', 'befuddle', 'fox', 'pose', 'escape', 'bedevil', 'get', 'elude', 'riddle', 'vex', 'puzzle', 'nonplus', 'beat', 'throw', 'confuse', 'stupefy', 'gravel', 'stick', 'mix up', 'perplex', 'fuddle', 'discombobulate', 'stump']"
638,daunting,"{'Verb': ['cause to lose courage'], 'Adjective': ['discouraging through fear']}","['intimidating', 'discouraging']"
639,amalgam,"{'Noun': ['an alloy of mercury with another metal (usually silver', 'a combination or blend of diverse things']}",['combination']
640,fidelity,"{'Noun': ['accuracy with which an electronic system reproduces the sound or image of its input signal', 'the quality of being faithful']}","['accuracy', 'truth']"
641,fecund,"{'Adjective': ['capable of producing offspring or vegetation', 'intellectually productive']}",['fertile']
642,rickety,"{'Adjective': ['inclined to shake as from weakness or defect', 'affected with, suffering from, or characteristic of rickets', 'lacking bodily or muscular strength or vitality']}","['unstable', 'shaky', 'wonky', 'wobbly']"
643,tranquil,"{'Adjective': ['(of a body of water', 'not agitated; without losing self-possession']}","['placid', 'quiet', 'smooth', 'calm', 'unruffled', 'still']"
644,listless,"{'Adjective': ['lacking zest or vivacity', 'marked by low spirits; showing no enthusiasm']}","['unenrgetic', 'lethargic']"
645,flounder,"{'Noun': ['flesh of any of various American and European flatfish', 'any of various European and non-European marine flatfish'], 'Verb': ['walk with great difficulty', 'behave awkwardly; have difficulties']}","['walk', 'stagger']"
646,polyglot,"{'Noun': ['a person who speaks more than one language'], 'Adjective': ['having a command of or composed in many languages']}",['multilingual']
647,cherish,{'Verb': ['be fond of; be attached to']},"['love', 'hold dear', 'yearn', 'treasure', 'care for']"
648,pugnacious,"{'Adjective': ['tough and callous by virtue of experience', 'ready and able to resort to force or violence']}","['aggressive', 'rough']"
649,row,"{'Noun': ['an arrangement of objects or people side by side in a line', 'an angry dispute', 'a long continuous strip (usually running horizontally', '(construction', 'a linear array of numbers, letters, or symbols side by side', 'a continuous chronological succession without an interruption', 'the act of rowing as a sport'], 'Verb': ['propel with oars']}","['line', 'serration', 'terrace']"
650,aspiration,"{'Noun': ['a will to succeed', 'a cherished desire', 'a manner of articulation involving an audible release of breath', 'the act of inhaling; the drawing in of air (or other gases']}","['ambitiousness', 'ambition']"
651,effaced,"{'Verb': ['remove completely from recognition or memory', 'make inconspicuous', 'remove by or as if by rubbing or erasing']}","['dim', 'veil', 'hide', 'blot out', 'obliterate', 'obscure', 'slur', 'blur']"
652,satiated,"{'Verb': ['fill to satisfaction', 'overeat or eat immodestly; make a pig of oneself'], 'Adjective': ['supplied (especially fed']}","['satiable', 'satisfiable', 'satiate', 'jaded']"
653,soupcon,{'Noun': ['a slight but appreciable amount']},"['jot', 'hint', 'speck', 'touch', 'mite', 'snuff', 'tinge', 'pinch', 'small indefinite amount', 'small indefinite quantity']"
654,plummet,"{'Noun': ['the metal bob of a plumb line'], 'Verb': ['drop sharply']}","['plump', 'drop']"
655,tangible,"{'Adjective': ['perceptible by the senses especially the sense of touch', 'capable of being treated as fact', '(of especially business assets', 'capable of being perceived; especially capable of being handled or touched or felt']}","['tactile', 'tactual', 'touchable', 'concrete']"
656,cursory,"{'Adjective': ['hasty and without attention to detail; not thorough', 'or cursory']}","['passing', 'casual', 'careless', 'perfunctory']"
657,becoming,"{'Verb': ['enter or assume a certain state or condition', 'undergo a change or development', 'come into existence', 'enhance the appearance of'], 'Adjective': ['according with custom or propriety', 'displaying or setting off to best advantage']}","['seemly', 'comely', 'decent', 'comme il faut', 'decorous', 'proper']"
658,satiate,"{'Verb': ['fill to satisfaction', 'overeat or eat immodestly; make a pig of oneself'], 'Adjective': ['supplied (especially fed']}","['replete', 'consume', 'sate', 'fill', 'take in', 'ingest', 'cloy', 'take', 'pall', 'have']"
659,usurious,{'Adjective': ['greatly exceeding bounds of reason or moderation']},"['exorbitant', 'steep', 'immoderate', 'outrageous', 'unconscionable', 'extortionate']"
660,penury,{'Noun': ['a state of extreme poverty or destitution']},"['pauperism', 'pauperization', 'poorness', 'poverty', 'mendicancy', 'need', 'impoverishment', 'beggary', 'indigence', 'mendicity']"
661,deteriorate,"{'Verb': ['become worse or disintegrate', 'grow worse']}","['wear down', 'wear off', 'dilapidate', 'wear', 'go to pot', 'wear out', 'decay', 'wear thin', 'crumble', 'go to the dogs']"
662,dismantle,"{'Verb': ['tear down so as to make flat with the ground', 'take apart into its constituent pieces', 'take off or remove']}","['take away', 'remove', 'strip', 'take', 'withdraw']"
663,alloy,"{'Noun': ['a mixture containing two or more metallic elements or metallic and nonmetallic elements usually fused together or dissolving into each other when molten', 'the state of impairing the quality or reducing the value of something'], 'Verb': ['lower in value by increasing the base-metal content', 'make an alloy of']}","['fuse', 'commingle', 'coalesce', 'immix', 'flux', 'mix', 'combine', 'conflate', 'blend', 'merge', 'meld']"
664,moot,"{'Noun': ['a hypothetical case that law students argue as an exercise'], 'Verb': ['think about carefully; weigh'], 'Adjective': ['of no legal significance (as having been previously decided', 'open to argument or debate']}","['arguable', 'controversial', 'debatable', 'disputable']"
665,rife,"{'Adjective': ['most frequent or common', 'excessively abundant']}","['abundant', 'plethoric', 'overabundant']"
666,inscrutable,{'Adjective': ['of an obscure nature']},"['incomprehensible', 'deep', 'inexplicable', 'cryptic', 'mystifying', 'mysterious', 'cryptical']"
667,unremitting,{'Adjective': ['uninterrupted in time and indefinitely long continuing']},"['ceaseless', 'continuous', 'perpetual', 'uninterrupted', 'constant', 'never-ending', 'incessant', 'unceasing']"
668,conspicuous,"{'Adjective': ['obvious to the eye or mind', 'without any attempt at concealment; completely obvious']}","['prominent', 'glaring', 'large', 'marked', 'bold', 'rank', 'in evidence', 'conspicuousness', 'striking', 'attention-getting', 'salient', 'eye-catching', 'crying', 'outstanding', 'spectacular', 'featured', 'big', 'egregious', 'gross', 'flagrant', 'indiscreet']"
669,inveigle,"{'Verb': ['influence or urge by gentle urging, caressing, or flattering']}","['palaver', 'persuade', 'sweet-talk', 'coax', 'wheedle', 'browbeat', 'blarney', 'swagger', 'soft-soap', 'bully', 'cajole']"
670,obloquy,"{'Noun': ['state of disgrace resulting from public abuse', ""a false accusation of an offense or a malicious misrepresentation of someone's words or actions""]}","['disparagement', 'name', 'name calling', 'derogation', 'traducement', 'blackwash', 'assassination', 'malignment', 'names', 'slander', 'depreciation', 'hatchet job', 'vilification', 'character assassination', 'epithet', 'calumniation', 'smear', 'calumny', 'libel', 'defamation']"
671,coterminous,{'Adjective': ['being of equal extent or scope or duration']},"['commensurate', 'coextensive', 'conterminous']"
672,remunerated,"{'Verb': ['make payment to; compensate'], 'Adjective': ['receiving or eligible for compensation']}","['salaried', 'paid', 'stipendiary', 'compensated']"
673,relegate,"{'Verb': ['refer to another person for decision or judgment', 'assign to a lower position; reduce in rank', 'expel, as if by official decree', 'assign to a class or kind']}","['submit', 'pass on', 'subject']"
674,champion,"{'Noun': ['someone who has won first place in a competition', 'someone who fights for a cause', 'a person who backs a politician or a team etc.', 'someone who is dazzlingly skilled in any field'], 'Verb': ['protect or fight for as a champion'], 'Adjective': ['holding first place in a contest']}","['title-holder', 'challenger', 'competition', 'champ', 'contender', 'record-holder', 'competitor', 'rival', 'record-breaker']"
675,dovetail,"{'Noun': ['a mortise joint formed by interlocking tenons and mortises'], 'Verb': ['fit together tightly, as if by means of a dovetail']}","['go', 'fit']"
676,disparate,"{'Adjective': ['fundamentally different or distinct in quality or kind', 'including markedly dissimilar elements']}",['different']
677,guileless,{'Adjective': ['free of deceit']},"['straight', 'transparent', 'square']"
678,impartial,"{'Adjective': ['showing lack of favoritism', 'free from undue bias or preconceived opinions']}","['unbiased', 'unbiassed', 'cold-eyed', 'indifferent', 'just', 'dispassionate', 'fair', 'disinterested']"
679,animus,{'Noun': ['a feeling of ill will arousing active hostility']},"['bad blood', 'animosity', 'enmity', 'ill will', 'hostility']"
680,concession,"{'Noun': ['a contract granting the right to operate a subsidiary business', 'the act of conceding or yielding', 'a point conceded or yielded']}","['contract', 'grant', 'franchise']"
681,infer,"{'Verb': ['reason by deduction; establish by deduction', 'draw from specific cases for more general cases', 'conclude by reasoning; in logic', 'guess correctly; solve by guessing', 'believe to be the case']}","['reason', 'reason out', 'surmise', 'deduct', 'deduce', 'derive', 'extrapolate', 'elicit', 'conclude']"
682,calumniate,{'Verb': ['charge falsely or with malicious intent; attack the good name and reputation of someone']},"['smirch', 'assassinate', 'accuse', 'smear', 'badmouth', 'charge', 'defame', 'malign', 'denigrate', 'asperse', 'drag through the mud', 'slander', 'besmirch', 'traduce', 'libel', 'sully']"
683,demotic,"{'Noun': ['a simplified cursive form of the ancient hieratic script', 'the modern Greek vernacular'], 'Adjective': ['of or written in or belonging to the form of modern Greek based on colloquial use', 'of or for the common people']}","['hieratic', 'hieratic script', 'Demotic script']"
684,equitable,{'Adjective': ['fair to all parties as dictated by reason and conscience']},"['evenhanded', 'impartial', 'just', 'honest', 'fair']"
685,kismet,{'Noun': ['(Islam']},"['kismat', 'fate', 'destiny']"
686,voluble,{'Adjective': ['marked by a ready flow of speech']},"['loquacious', 'communicatory', 'gabby', 'prolix', 'garrulous', 'talkative', 'chatty', 'talky', 'communicative']"
687,exponent,"{'Noun': ['a person who pleads for a cause or propounds an idea', 'someone who expounds and interprets or explains', 'a mathematical notation indicating the number of times a quantity is multiplied by itself']}","['intellectual', 'intellect']"
688,oblivious,"{'Adjective': [""(followed by `to' or `of'"", 'failing to keep in mind']}","['unaware', 'incognizant', 'unmindful']"
689,debonair,"{'Adjective': ['having a sophisticated charm', 'having a cheerful, lively, and self-confident air']}","['jaunty', 'debonaire', 'chipper', 'cheerful']"
690,apathy,"{'Noun': ['an absence of emotion or enthusiasm', 'the trait of lacking enthusiasm for or interest in things generally']}","['passivity', 'numbness', 'indifference', 'passiveness', 'spiritlessness']"
691,becalm,{'Verb': ['make steady']},"['stabilize', 'calm', 'stabilise', 'steady']"
692,incense,"{'Noun': ['a substance that produces a fragrant odor when burned', 'the pleasing scent produced when incense is burned'], 'Verb': ['perfume especially with a censer', 'make furious']}","['chemical compound', 'joss stick', 'stacte', 'compound']"
693,iniquity,"{'Noun': ['morally objectionable behavior', 'an unjust act']}","['actus reus', 'unfairness', 'wrongful conduct', 'misconduct', 'wrongdoing', 'injustice', 'shabbiness']"
694,invidious,{'Adjective': ['containing or implying a slight or showing prejudice']},"['discriminatory', 'unfavorable', 'unfavourable']"
695,preclude,"{'Verb': ['keep from happening or arising; make impossible', 'make impossible, especially beforehand']}","['obstruct', 'baffle', 'scotch', 'halt', 'foil', 'debar', 'cross', 'kibosh', 'hinder', 'make unnecessary', 'prevent', 'avoid', 'fend off', 'frustrate', 'queer', 'save', 'forefend', 'blockade', 'ward off', 'head off', 'stymie', 'block', 'forfend', 'bilk', 'stymy', 'embarrass', 'foreclose', 'spoil', 'stop', 'forestall', 'obviate', 'deflect', 'avert', 'thwart', 'forbid', 'stave off']"
696,glaring,"{'Verb': ['look at with a fixed gaze', 'be sharply reflected', 'shine intensely'], 'Adjective': ['shining intensely', 'conspicuously and outrageously bad or reprehensible']}","['fulgent', 'blazing', 'glary', 'bright', 'blinding', 'dazzling']"
697,mitigate,"{'Verb': ['lessen or to try to lessen the seriousness or extent of', 'make less severe or harsh']}","['rationalise', 'apologise', 'palliate', 'justify', 'rationalize', 'apologize', 'excuse', 'extenuate']"
698,expatiate,"{'Verb': ['add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing']}","['particularize', 'specialize', 'expand', 'clarify', 'specify', 'specialise', 'clear up', 'elucidate', 'illustrate', 'enlarge', 'exemplify', 'particularise', 'flesh out', 'dilate', 'elaborate', 'lucubrate', 'set forth', 'expound', 'instance', 'exposit', 'detail']"
699,demur,"{'Noun': [], 'Verb': ['take exception to', 'enter a demurrer']}","['object', 'except']"
700,largesse,"{'Noun': ['a gift or money given (as for service or out of benevolence', 'liberality in bestowing gifts; extremely liberal and generous of spirit']}","['liberalness', 'munificence', 'magnanimity', 'openhandedness', 'liberality', 'largess']"
701,revile,{'Verb': ['spread negative information about']},"['vilify', 'blackguard', 'vituperate', 'rail', 'clapperclaw', 'shout', 'abuse']"
702,cataclysmic,{'Adjective': ['severely destructive']},"['destructive', 'cataclysmal']"
703,propinquity,{'Noun': ['the property of being close together']},"['closeness', 'nearness', 'proximity']"
704,lavish,"{'Verb': ['expend profusely; also used with abstract nouns'], 'Adjective': ['very generous', 'characterized by extravagance and profusion']}","['unstinted', 'overgenerous', 'munificent', 'unstinting', 'too-generous', 'unsparing', 'generous']"
705,mollify,"{'Verb': ['cause to be more favorably inclined; gain the good will of', 'make more temperate, acceptable, or suitable by adding something else', 'make less rigid or softer']}","['quiet', 'tranquillize', 'conciliate', 'calm down', 'calm', 'lull', 'tranquillise', 'gruntle', 'pacify', 'quieten', 'still', 'appease', 'lenify', 'gentle', 'placate', 'tranquilize', 'assuage']"
706,dispensation,"{'Noun': ['an exemption from some rule or obligation', 'a share that has been dispensed or distributed', 'the act of dispensing (giving out in portions']}","['permission', 'license', 'variance', 'permit']"
707,squelch,"{'Noun': ['a crushing remark', 'an electric circuit that cuts off a receiver when the signal becomes weaker than the noise'], 'Verb': ['suppress or crush completely', 'make a sucking sound', 'walk through mud or mire', 'to compress with violence, out of natural shape or condition']}","['inhibit', 'curb', 'quell', 'quench', 'conquer', 'stamp down', 'suppress', 'subdue']"
708,apogee,"{'Noun': ['a final climactic stage', 'apoapsis in Earth orbit; the point in its orbit where a satellite is at the greatest distance from the Earth']}","['culmination', 'stage', 'phase']"
709,baroque,"{'Noun': ['the historic period from about 1600 until 1750 when the baroque style of art, architecture, and music flourished in Europe', 'elaborate and extensive ornamentation in decorative art and architecture that flourished in Europe in the 17th century'], 'Adjective': ['having elaborate symmetrical ornamentation', 'of or relating to or characteristic of the elaborately ornamented style of architecture, art, and music popular in Europe between 1600 and 1750']}","['churrigueresque', 'fancy', 'churrigueresco']"
710,calumnious,{'Adjective': ['(used of statements']},"['denigrating', 'defamatory', 'libelous', 'denigrative', 'slanderous', 'harmful', 'libellous', 'denigratory', 'calumniatory']"
711,unnerve,{'Verb': ['disturb the composure of']},"['unsettle', 'discompose', 'unman', 'upset', 'enervate', 'faze', 'untune', 'disconcert', 'discomfit']"
712,disparage,{'Verb': ['express a negative opinion of']},"['criticize', 'deprecate', 'vilipend', 'belittle', 'tear apart', 'trash', 'disgrace', 'discredit', 'pick at', 'derogate', 'denigrate', 'minimize', 'criticise', 'pan', 'pick apart', 'depreciate', 'knock']"
713,marginalize,"{'Verb': ['relegate to a lower or outer edge, as of specific groups of people']}","['interact', 'marginalise']"
714,plenipotentiary,{'Noun': ['a diplomat who is fully authorized to represent his or her government']},"['diplomatist', 'diplomat']"
715,omniscient,{'Adjective': ['infinitely wise']},"['all-knowing', 'wise']"
716,importuned,{'Verb': ['beg persistently and urgently']},"['besiege', 'pray', 'implore', 'insist', 'beg']"
717,lugubrious,{'Adjective': ['excessively mournful']},['sorrowful']
718,seminal,"{'Adjective': ['pertaining to or containing or consisting of semen', 'containing seeds of later development']}","['germinal', 'original', 'originative']"
719,vehement,"{'Adjective': ['marked by extreme intensity of emotions or convictions; inclined to react violently; fervid', 'characterized by great force or energy']}","['tearing', 'trigger-happy', 'intense', 'fierce', 'violent']"
720,pith,"{'Noun': ['soft spongelike central cylinder of the stems of most flowering plants', 'the choicest or most essential or most vital part of some idea or experience'], 'Verb': ['remove the pith from (a plant']}","['plant tissue', 'parenchyma']"
721,penurious,"{'Adjective': ['not having enough money to pay for necessities', 'excessively unwilling to spend']}","['stingy', 'parsimonious', 'ungenerous']"
722,misanthrope,{'Noun': ['someone who dislikes people in general']},"['crank', 'misanthropist', 'grump', 'woman hater', 'misogynist', 'crosspatch', 'grouch', 'churl']"
723,obfuscated,{'Verb': ['make obscure or unclear']},"['change', 'alter', 'modify']"
724,pastoral,"{'Noun': ['a musical composition that evokes rural life', 'a letter from a pastor to the congregation', 'a literary work idealizing the rural life (especially the life of shepherds'], 'Adjective': ['of or relating to a pastor', 'relating to shepherds or herdsmen or devoted to raising sheep or cattle', '(used with regard to idealized country life']}","['rural', 'bucolic', 'arcadian']"
725,sapient,{'Adjective': ['acutely insightful and wise']},"['perspicacious', 'wise', 'sagacious']"
726,aplomb,{'Noun': ['great coolness and composure under strain']},"['assuredness', 'poise', 'calmness', 'calm', 'sang-froid', 'composure', 'equanimity', 'cool']"
727,diabolical,"{'Adjective': ['showing the cunning or ingenuity or wickedness typical of a devil', 'extremely evil or cruel; expressive of cruelty or befitting hell']}","['infernal', 'hellish', 'fiendish', 'evil', 'demonic', 'diabolic', 'unholy', 'satanic']"
728,concede,"{'Verb': ['admit (to a wrongdoing', 'be willing to concede', 'give over; surrender or relinquish to the physical control of another', 'acknowledge defeat']}","['admit', 'profess', 'confess', 'make a clean breast of', 'acknowledge', 'own up', 'fess up']"
729,condolence,"{'Noun': [""an expression of sympathy with another's grief""]}","['commiseration', 'acknowledgment', 'acknowledgement']"
730,forfeit,"{'Noun': ['something that is lost or surrendered as a penalty', 'a penalty for a fault or mistake that involves losing or giving up something', 'the act of losing or surrendering something as a penalty for a mistake or fault or failure to perform etc.'], 'Verb': ['lose (s.th.'], 'Adjective': ['surrendered as a penalty']}","['forgo', 'waive', 'forego', 'throw overboard', 'lapse', 'abandon', 'give up']"
731,despotic,"{'Adjective': ['belonging to or having the characteristics of a despot', 'ruled by or characteristic of a despot', 'characteristic of an absolute ruler or absolute rule; having absolute sovereignty']}",['despotical']
732,irrevocable,{'Adjective': ['incapable of being retracted or revoked']},"['irrevokable', 'sealed']"
733,maxim,"{'Noun': ['a saying that is widely accepted on its own merits', 'English inventor (born in the United States', '1840-1916']}","['moralism', 'apothegm', 'axiom', 'locution', 'apophthegm', 'expression', 'aphorism', 'gnome', 'saying']"
734,orotund,"{'Adjective': ['ostentatiously lofty in style', '(of sounds']}","['bombastic', 'tumid', 'declamatory', 'rhetorical', 'turgid', 'large']"
735,whitewash,"{'Noun': ['a defeat in which the losing person or team fails to score', 'wash consisting of lime and size in water; used for whitening walls and other surfaces', 'a specious or deceptive clearing that attempts to gloss over failings and defects'], 'Verb': ['cover up a misdemeanor, fault, or error', 'cover with whitewash', 'exonerate by means of a perfunctory investigation or through biased presentation of data']}",['wash']
736,wrongheaded,{'Adjective': ['obstinately perverse in judgment or opinion']},['wrong']
737,egregious,{'Adjective': ['conspicuously and outrageously bad or reprehensible']},"['conspicuous', 'gross', 'flagrant', 'rank', 'glaring', 'crying']"
738,puissant,{'Adjective': ['powerful']},['powerful']
739,antagonize,"{'Verb': ['provoke the hostility of', 'act in opposition to']}","['bother', 'antagonise', 'rile', 'annoy', 'devil', 'gravel', 'vex', 'get to', 'irritate', 'nettle', 'chafe', 'get at', 'nark', 'rag']"
740,radical,"{'Noun': ['(chemistry', 'an atom or group of atoms with at least one unpaired electron; in the body it is usually an oxygen molecule that has lost an electron and will stabilize itself by stealing an electron from a nearby molecule', 'a person who has radical ideas or opinions', '(mathematics', 'a character conveying the lexical meaning of a logogram', '(linguistics'], 'Adjective': ['(used of opinions and actions', 'markedly new or introducing radical change', 'arising from or going to the root or source', 'of or relating to or constituting a linguistic root', 'especially of leaves; located at the base of a plant or stem; especially arising directly from the root or rootstock or a root-like stem']}","['ultra', 'extremist', 'immoderate']"
741,paragon,"{'Noun': ['an ideal instance; a perfect embodiment of a concept', 'model of excellence or perfection of a kind; one having no equal']}","['gold standard', 'ideal', 'idol', 'perfection', 'beau ideal']"
742,protean,{'Adjective': ['taking on different forms']},['variable']
743,tribulation,{'Noun': ['an annoying or frustrating or catastrophic event']},"['trial', 'affliction', 'visitation', 'fire']"
744,relevant,{'Adjective': ['having a bearing on or connection with the subject at issue']},"['applicable', 'pertinent', 'germane']"
745,craven,"{'Noun': ['an abject coward'], 'Adjective': ['lacking even the rudiments of courage; abjectly fearful']}","['fearful', 'recreant', 'cowardly']"
746,jingoism,"{'Noun': ['an appeal intended to arouse patriotic emotions', 'fanatical patriotism']}","['demagoguery', 'demagogy', 'flag waving']"
747,insolent,"{'Adjective': ['marked by casual disrespect', 'unrestrained by convention or propriety']}","['disrespectful', 'impudent', 'snotty-nosed', 'flip']"
748,sedentary,{'Adjective': ['requiring sitting or little activity']},['inactive']
749,plangent,{'Adjective': ['loud and resounding']},['full']
750,ineluctable,{'Adjective': ['impossible to avoid or evade']},"['inevitable', 'inescapable', 'unavoidable']"
751,viscous,"{'Adjective': ['having a relatively high resistance to flow', 'having the sticky properties of an adhesive']}","['mucilaginous', 'pasty', 'glutinous', 'sticky', 'gluey', 'gummy', 'viscid', 'adhesive']"
752,invective,{'Noun': ['abusive or venomous language used to express blame or censure or bitter deep-seated ill will']},"['vilification', 'vitriol', 'vituperation', 'revilement', 'contumely', 'insult', 'abuse']"
753,arbiter,"{'Noun': ['someone with the power to settle matters at will', 'someone chosen to judge and decide a disputed issue']}","['arbitrator', 'judge', 'third party', 'evaluator', 'umpire']"
754,hectoring,{'Verb': ['be bossy towards']},"['intimidate', 'push around', 'domineer', 'browbeat', 'ballyrag', 'tyrannize', 'boss around', 'strong-arm', 'bullyrag', 'bully', 'tyrannise']"
755,manifest,"{'Noun': ['a customs document listing the contents put on a ship or plane'], 'Verb': [""provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes"", ""record in a ship's manifest"", 'reveal its presence or make an appearance'], 'Adjective': ['clearly revealed to the mind or the senses or judgment']}","['bear witness', 'evidence', 'notarise', 'notarize', 'authenticate', 'show', 'demonstrate', 'prove', 'attest', 'condemn', 'certify', 'testify', 'reflect']"
756,ersatz,"{'Noun': ['an artificial or inferior substitute or imitation'], 'Adjective': ['artificial and inferior']}","['unreal', 'substitute', 'artificial']"
757,vicissitude,"{'Noun': ['a variation in circumstances or fortune at different times in your life or in the development of something', 'mutability in life or nature (especially successive alternation from one condition to another']}","['mutableness', 'mutability']"
758,juncture,"{'Noun': ['an event that occurs at a critical time', 'a crisis situation or point in time when a critical decision must be made', 'the shape or manner in which things come together and a connection is made']}","['happening', 'natural event', 'occasion', 'straits', 'turning point', 'occurrence', 'head', 'landmark', 'milestone', 'conjuncture', 'flood tide', 'watershed', 'crisis', 'pass', 'reality check', 'occurrent', 'climax']"
759,pluck,"{'Noun': ['the trait of showing courage and determination in spite of possible loss or injury', 'the act of pulling and releasing a taut cord'], 'Verb': ['pull or pull out sharply', 'sell something to or obtain something from by energetic and especially underhanded activity', 'rip off; ask an unreasonable price', 'pull lightly but sharply with a plucking motion', 'strip of feathers', 'look for and gather']}","['pull', 'pull off', 'draw away', 'tweak', 'pick off', 'force', 'tweeze', 'draw', 'draw off']"
760,antiquated,"{'Verb': ['make obsolete or old-fashioned', 'give an antique appearance to'], 'Adjective': ['so extremely old as seeming to belong to an earlier period']}","['archaic', 'old', 'antediluvian']"
761,quagmire,{'Noun': ['a soft wet area of low-lying land that sinks underfoot']},"['morass', 'mire', 'peat bog', 'slack', 'bog', 'quag']"
762,aloof,"{'Adjective': ['remote in manner'], 'Adverb': ['in an aloof manner']}","['reserved', 'upstage', 'distant']"
763,gadfly,"{'Noun': ['a persistently annoying person', 'any of various large flies that annoy livestock']}","['nudnik', 'cuss', 'persecutor', 'pest', 'tormentor', 'tormenter', 'blighter', 'nudnick', 'pesterer']"
764,evade,"{'Verb': ['avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues', 'escape, either physically or mentally', 'practice evasion', 'use cunning or deceit to escape or avoid']}","['skirt', 'fudge', 'avoid', 'dodge', 'elude', 'circumvent', 'beg', 'put off', 'duck', 'sidestep', 'quibble', 'parry', 'hedge']"
765,quirky,{'Adjective': ['(informal']},"['far-out', 'way-out', 'offbeat', 'kinky', 'unconventional']"
766,concur,"{'Verb': ['be in accord; be in agreement', 'happen simultaneously']}","['resolve', 'fix up', 'settle', 'hold', 'conciliate', 'arrange', 'concord', 'reconcile', 'subscribe', 'see eye to eye', 'concede', 'agree', 'conclude', 'support', 'patch up', 'make up', 'grant', 'yield']"
767,taxonomic,{'Adjective': ['of or relating to taxonomy']},"['systematic', 'taxonomical']"
768,stevedore,{'Noun': ['a laborer who loads and unloads vessels in a port']},"['docker', 'dockworker', 'laborer', 'jack', 'dock-walloper', 'dock worker', 'dockhand', 'labourer', 'manual laborer', 'loader', 'lumper', 'longshoreman']"
769,imperturbable,{'Adjective': ['not easily perturbed or excited or upset; marked by extreme calm and composure']},"['unflappable', 'composed']"
770,insolence,"{'Noun': ['the trait of being rude and impertinent; inclined to take liberties', 'an offensive disrespectful impudent act']}","['rudeness', 'chutzpah', 'chutzpa', 'discourtesy', 'gall', 'freshness', 'impertinence', 'cheekiness', 'impudence', 'hutzpah', 'crust']"
771,misconstrue,{'Verb': ['interpret in the wrong way']},"['be amiss', 'misapprehend', 'interpret', 'misinterpret', 'misconceive', 'construe', 'see', 'misunderstand']"
772,impasse,"{'Noun': ['a situation in which no progress can be made or no advancement is possible', 'a street with only one way in or out']}","['stalemate', 'deadlock', 'standstill', 'situation', 'dead end']"
773,carping,"{'Noun': ['persistent petty and unjustified criticism'], 'Verb': ['raise trivial objections']}","['faultfinding', 'unfavorable judgment', 'criticism']"
774,forte,"{'Noun': ['an asset of special worth or utility', 'a musical composition or musical passage to be performed loudly', 'the stronger part of a sword blade between the hilt and the foible'], 'Adjective': ['(used chiefly as a direction or description in music'], 'Adverb': ['used as a direction in music; to be played relatively loudly']}","['green thumb', 'strength', 'long suit', 'asset', 'strong suit', 'specialty', 'speciality', 'plus', 'strong point', 'metier', 'green fingers']"
775,peremptory,"{'Adjective': ['offensively self-assured or given to exercising usually unwarranted power', 'not allowing contradiction or refusal', 'putting an end to all debate or action']}","['dominating', 'high-and-mighty', 'magisterial', 'domineering', 'bossy', 'autocratic']"
776,illiberality,{'Noun': ['a disposition not to be liberal (generous']},['stinginess']
777,skulduggery,{'Noun': ['verbal misrepresentation intended to take advantage of you in some way']},"['trickery', 'hanky panky', 'misrepresentation', 'skullduggery', 'slickness', 'jiggery-pokery', 'hocus-pocus', 'deceit', 'deception']"
778,fallacy,{'Noun': ['a misconception resulting from incorrect reasoning']},"['logical fallacy', 'sophistry', 'pseudoscience', 'sophistication', 'paralogism', 'pathetic fallacy', 'false belief', 'sophism', 'misconception']"
779,baleful,"{'Adjective': ['deadly or sinister', 'threatening or foreshadowing evil or tragic developments']}","['maleficent', 'baneful']"
780,pine,"{'Noun': ['a coniferous tree', 'straight-grained durable and often resinous white to yellowish timber of any of numerous trees of the genus Pinus'], 'Verb': ['have a desire for something or someone who is not present']}","['stone pine', 'ancient pine', 'red pine', 'mountain pine', 'Swiss pine', 'Pinus longaeva', 'Virginia pine', 'mugo pine', ""Torrey's pine"", 'yellow pine', 'Pinus contorta murrayana', 'soledad pine', 'Japanese red pine', 'Pinus jeffreyi', 'Pinus mugo', 'Jersey pine', 'Pinus torreyana', 'Torrey pine', 'hickory pine', 'grey-leaf pine', 'pinon', 'umbrella pine', 'Japanese black pine', 'Pinus aristata', 'Monterey pine', 'Japanese table pine', 'Pinus virginiana', 'Pinus rigida', 'black pine', 'Scotch fir', 'sabine pine', 'Pinus nigra', 'cembra nut tree', 'lodgepole pine', 'Pinus thunbergii', 'Pinus resinosa', 'arolla pine', 'Swiss mountain pine', 'frankincense pine', 'pond pine', 'knobcone pine', 'shore pine', 'Pinus pinea', 'loblolly pine', 'Pinus contorta', 'swamp pine', 'Pinus attenuata', 'mugho pine', 'genus Pinus', 'bristlecone pine', 'jack pine', 'Scots pine', 'true pine', 'Pinus taeda', 'dwarf mountain pine', 'pinecone', 'Pinus pungens', 'prickly pine', 'Pinus banksiana', 'Pinus', 'pitch pine', 'Scotch pine', 'Rocky Mountain bristlecone pine', 'scrub pine', ""Jeffrey's pine"", 'Sierra lodgepole pine', 'Pinus sylvestris', 'conifer', 'pinyon', 'lodgepole', 'northern pitch pine', 'Jeffrey pine', 'coniferous tree', 'Pinus glabra', 'Pinus cembra', 'table-mountain pine', 'Pinus serotina', 'Pinus densiflora', 'Pinus radiata', 'spruce pine', 'pine tree', 'Swiss stone pine', 'Canadian red pine', 'European nut pine', 'white pine']"
781,glowered,"{'Verb': ['look at with a fixed gaze', ""look angry or sullen, wrinkle one's forehead, as if to signal disapproval""]}","['glare', 'stare']"
782,obliging,"{'Verb': ['force somebody to do something', 'bind by an obligation; cause to be indebted', 'provide a service or favor for someone'], 'Adjective': ['showing a cheerful willingness to do favors for others']}","['accommodating', 'complaisant', 'accommodative']"
783,altruistic,{'Adjective': ['showing unselfish concern for the welfare of others']},"['unselfish', 'selfless']"
784,indigenous,{'Adjective': ['originating where it is found']},"['autochthonal', 'endemic', 'native', 'autochthonic', 'autochthonous']"
785,rile,"{'Verb': ['cause annoyance in; disturb, especially by minor irritations', 'make turbid by stirring up the sediments of']}","['agitate', 'vex', 'raise up', 'roil', 'shake up', 'stir up', 'commove', 'disturb', 'puddle', 'muddle']"
786,sham,"{'Noun': ['something that is a counterfeit; not what it seems to be', 'a person who makes deceitful pretenses'], 'Verb': ['make a pretence of', 'make believe with the intent to deceive'], 'Adjective': ['adopted in order to deceive']}","['postiche', 'Potemkin village', 'imitation', 'fake book', 'fake']"
787,egalitarian,"{'Noun': ['a person who believes in the equality of all people'], 'Adjective': ['favoring social equality']}","['moralist', 'equalitarian']"
788,hotly,{'Adverb': ['in a heated manner']},['heatedly']
789,insufferable,"{'Adjective': ['unbearably arrogant or conceited', 'too extreme to bear']}","['unacceptable', 'unendurable', 'impossible', 'unbearable', 'intolerable', 'unsufferable']"
790,dyspeptic,"{'Noun': ['a person suffering from indigestion'], 'Adjective': ['suffering from dyspepsia', 'irritable as if suffering from indigestion']}","['sick', 'ill']"
791,plutocracy,{'Noun': ['a political system governed by the wealthy people']},"['political system', 'form of government']"
792,pacific,"{'Noun': ['the largest ocean in the world'], 'Adjective': ['relating to or bordering the Pacific Ocean', 'disposed to peace or of a peaceful nature', 'promoting peace']}","['Australasia', 'Wake Island', 'Wake', 'Catalina Island', 'Puget Sound', 'South Pacific', 'East China Sea', 'Oceanica', 'Osaka Bay', 'Philippines', 'Guadalupe Island', 'San Francisco Bay', 'New Zealand', 'Sea of Japan', 'Pacific Coast', 'New Zealand Islands', 'Gulf of Tehuantepec', 'North Pacific', 'San Diego Bay', 'Japanese Islands', 'Sea of Okhotsk', 'Antarctic Ocean', 'Japanese Archipelago', 'Arafura Sea', 'Huang Hai', 'Volcano Islands', 'Oceania', 'Bering Sea', 'East Sea', 'Tasman Sea', 'Malay Archipelago', 'Aleutians', 'Inland Sea', 'East Indies', 'Belau', 'Pelew', 'South China Sea', 'Palau Islands', 'Japan', 'New Guinea', 'Philippine Islands', 'Yellow Sea', 'Santa Catalina', 'East India', 'Pacific Ocean', 'Austronesia', 'Aleutian Islands', 'Gulf of Alaska', 'Coral Sea', 'Palau']"
793,belie,"{'Verb': ['be in contradiction with', 'represent falsely']}","['depart', 'contradict', 'vary', 'negate', 'deviate', 'diverge']"
794,demagogue,{'Noun': ['a political leader who seeks support by appealing to popular passions and prejudices']},"['political leader', 'rabble-rouser', 'pol', 'demagog', 'politician', 'politico']"
795,putrefy,{'Verb': ['become putrid; decay with an offensive smell']},"['decay', 'smell']"
796,jargon,"{'Noun': ['a characteristic language of a particular group (as among thieves', 'a colorless (or pale yellow or smoky', 'specialized technical terminology characteristic of a particular subject']}","['slang', 'argot', 'non-standard speech', 'rhyming slang', 'street name', 'cant', 'patois', 'vernacular', 'lingo']"
797,tenuous,"{'Adjective': ['having thin consistency', 'very thin in gauge or diameter', 'lacking substance or significance']}",['thin']
798,nonplussed,"{'Verb': ['be a mystery or bewildering to'], 'Adjective': ['filled with bewilderment']}","['perplexed', 'nonplused', 'puzzled', 'at a loss']"
799,vexation,"{'Noun': ['anger produced by some annoying irritation', 'the psychological state of being irritated or annoyed', 'something or someone that causes anxiety; a source of unhappiness', 'the act of troubling or annoying someone']}","['pique', 'annoyance', 'ire', 'irritation', 'frustration', 'harassment', 'chafe', 'displeasure', 'torment', 'exasperation', 'choler', 'anger', 'temper', 'aggravation']"
800,haughty,{'Adjective': ['having or showing arrogant superiority to and disdain of those one views as unworthy']},"['sniffy', 'prideful', 'disdainful', 'proud', 'supercilious', 'overbearing', 'swaggering', 'imperious', 'lordly']"
801,openhanded,{'Adjective': ['given or giving freely']},"['big', 'freehanded', 'handsome', 'bountiful', 'bighearted', 'liberal', 'giving', 'bounteous', 'generous']"
802,imponderable,"{'Noun': ['a factor whose effects cannot be accurately assessed'], 'Adjective': ['difficult or impossible to evaluate with precision']}","['leaven', 'leavening', 'influence']"
803,olfactory,{'Adjective': ['of or relating to olfaction']},['olfactive']
804,assertive,{'Adjective': ['aggressively self-assured']},"['self-assertive', 'cocky', 'self-asserting', 'imperative', 'forceful', 'aggressive', 'emphatic']"
805,mendacity,{'Noun': ['the tendency to be untruthful']},['untruthfulness']
806,execrable,"{'Adjective': ['of very poor quality or condition', 'unequivocally detestable', 'deserving a curse']}","['hateful', 'detestable', 'abominable', 'odious']"
807,levy,"{'Noun': ['a charge imposed and collected', 'the act of drafting into military service'], 'Verb': ['impose and collect', 'cause to assemble or enlist in the military']}","['tithe', 'impose', 'charge', 'lay', 'toll', 'mulct', 'tax', 'distrain', 'reimpose', 'bill']"
808,conciliatory,"{'Adjective': ['making or willing to make concessions', 'intended to placate']}","['flexible', 'yielding', 'compromising']"
809,contemn,{'Verb': ['look down on with disdain']},"['hate', 'look down on', 'despise', 'detest', 'disdain', 'scorn']"
810,circumvents,"{'Verb': ['surround so as to force to give up', 'beat through cleverness and wit', 'avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues']}","['blockade', 'besiege', 'beleaguer', 'attack', 'seal off', 'ebb', 'surround', 'hem in', 'assail']"
811,reverent,"{'Adjective': ['feeling or showing profound respect or veneration', 'showing great reverence for god']}","['awed', 'awful', 'respectful', 'worshipful', 'venerating', 'adoring', 'reverential']"
812,veritable,"{'Adjective': ['often used as intensifiers', 'not counterfeit or copied']}","['echt', 'unquestionable', 'genuine', 'bona fide', 'authentic']"
813,maelstrom,{'Noun': ['a powerful circular current of water (usually the result of conflicting tides']},"['Charybdis', 'current', 'stream', 'vortex', 'whirlpool']"
814,contiguous,"{'Adjective': ['very close or connected in space or time', 'connecting without a break; within a common boundary', 'having a common boundary or edge; abutting; touching']}","['close', 'immediate']"
815,ascribe,{'Verb': ['attribute or credit to']},"['evaluate', 'externalize', 'charge', 'internalize', 'credit', 'personate', 'internalise', 'anthropomorphise', 'judge', 'personify', 'accredit', 'impute', 'anthropomorphize', 'attribute', 'reattribute', 'pass judgment', 'blame', 'project', 'interiorise', 'carnalize', 'interiorize', 'sensualize', 'assign', 'externalise']"
816,acolyte,{'Noun': ['someone who assists a priest or minister in a liturgical service; a cleric ordained in the highest of the minor orders in the Roman Catholic Church but not in the Anglican Church or the Eastern Orthodox Churches']},"['thurifer', 'reverend', 'man of the cloth', 'altar boy', 'clergyman', 'Holy Order', 'Order']"
817,evanescent,{'Adjective': ['tending to vanish like vapor']},"['temporary', 'impermanent']"
818,compromise,"{'Noun': ['a middle way between two extremes', 'an accommodation in which both sides make concessions'], 'Verb': ['make a compromise; arrive at a compromise', 'settle by concession', 'expose or make liable to danger, suspicion, or disrepute']}","['via media', 'cooperation']"
819,zephyr,"{'Noun': ['a slight wind (usually refreshing', '(Greek mythology']}","['gentle wind', 'light air', 'air current', 'strong breeze', 'moderate breeze', 'breeze', 'light breeze', 'air', 'sea breeze', 'current of air', 'wind', 'fresh breeze', 'gentle breeze', 'breath']"
820,ornate,{'Adjective': ['marked by elaborate rhetoric and elaborated with decorative details']},"['flowery', 'rhetorical']"
821,apt,"{'Adjective': [""(usually followed by `to'"", 'at risk of or subject to experiencing something usually unpleasant', 'mentally quick and resourceful', 'being of striking appropriateness and pertinence']}","['liable', 'likely']"
822,hubris,{'Noun': ['overbearing pride or presumption']},"['hauteur', 'high-handedness', 'haughtiness', 'lordliness', 'arrogance']"
823,convivial,{'Adjective': ['occupied with or fond of the pleasures of good company']},"['sociable', 'good-time']"
824,gestation,"{'Noun': ['the period during which an embryo develops (about 266 days in humans', 'the state of being pregnant; the period from conception to birth when a woman carries a developing fetus in her uterus', 'the conception and development of an idea or plan']}","['full term', 'biological time', 'trimester', 'term', 'midterm', 'gestation period']"
825,credulous,"{'Adjective': ['disposed to believe on little evidence', 'showing a lack of judgment or experience']}","['naive', 'unquestioning', 'naif', 'credible', 'trusting', 'overcredulous', 'trustful']"
826,dilapidated,"{'Verb': ['bring into a condition of decay or partial ruin by neglect or misuse', 'fall into decay or ruin'], 'Adjective': ['in deplorable condition']}","['broken-down', 'derelict', 'tumble-down', 'ramshackle', 'tatterdemalion', 'bedraggled', 'damaged']"
827,implication,"{'Noun': ['something that is inferred (deduced or entailed or implied', 'a meaning that is not expressly stated but can be inferred', 'an accusation that brings into intimate and usually incriminating connection', ""a logical relation between propositions p and q of the form `if p then q'; if p is true then q cannot be false"", 'a relation implicated by virtue of involvement or close connection (especially an incriminating involvement']}","['illation', 'deduction', 'entailment', 'inference']"
828,derelict,"{'Noun': ['a person without a home, job, or property', 'a ship abandoned on the high seas'], 'Adjective': ['worn and broken down by hard use', 'forsaken by owner or inhabitants', 'failing in what duty requires', 'or delinquent', 'in deplorable condition']}","['delinquent', 'remiss', 'negligent', 'neglectful']"
829,noisome,"{'Adjective': ['causing or able to cause nausea', 'offensively malodorous']}","['nauseous', 'nauseating', 'sickening', 'unwholesome', 'loathsome', 'queasy', 'vile', 'offensive']"
830,perfidious,{'Adjective': ['tending to betray; especially having a treacherous character as attributed to the Carthaginians by the Romans']},"['treacherous', 'punic', 'unfaithful']"
831,indictment,"{'Noun': ['a formal document written for a prosecuting attorney charging a person with some offense', 'an accusation of wrongdoing']}","['murder charge', 'legal instrument', 'true bill', 'charge', 'murder indictment', 'complaint', 'legal document', 'instrument', 'bill of indictment', 'official document']"
832,sinuous,"{'Adjective': ['curved or curving in and out', 'gracefully thin and bending and moving with ease']}","['wiggly', 'curved', 'sinuate', 'curving']"
833,paroxysm,{'Noun': ['a sudden uncontrollable attack']},"['fit', 'convulsion', 'attack']"
834,log,"{'Noun': ['a segment of the trunk of a tree when stripped of branches', 'the exponent required to produce a given number', 'a written record of messages sent or received', 'a written record of events on a voyage (of a ship or plane', ""measuring instrument that consists of a float that trails from a ship by a knotted line in order to measure the ship's speed through the water""], 'Verb': ['enter into a log, as on ships and planes', 'cut lumber, as in woods and forests']}","['nurse log', 'saw log', 'wood']"
835,verisimilar,{'Adjective': ['appearing to be true or real']},"['probable', 'likely']"
836,repudiate,"{'Verb': ['cast off', 'refuse to acknowledge, ratify, or recognize as valid', 'refuse to recognize or pay', 'reject as untrue, unfounded, or unjust']}","['take back', 'forswear', 'reject', 'unsay', 'disown', 'refute', 'apostatize', 'resile', 'abjure', 'retract', 'renounce', 'apostatise', 'tergiversate', 'deny', 'withdraw', 'swallow', 'rebut', 'recant']"
837,adversity,"{'Noun': ['a state of misfortune or affliction', 'a stroke of ill fortune; a calamitous event']}","['distress', 'low-water mark', 'extremity', 'tough luck', 'hardship', 'nadir', 'disaster', 'affliction', 'victimization', 'hard knocks', 'catastrophe', 'ill-being', 'misfortune', 'ill luck', 'bad luck']"
838,absolve,"{'Verb': ['grant remission of a sin to', 'let off the hook']}","['forgive', 'justify', 'let off', 'exempt', 'free', ""wash one's hands"", 'excuse', 'relieve']"
839,encyclopedic,{'Adjective': ['comprehensive in scope or content (as an encyclopedia']},"['comprehensive', 'encyclopaedic']"
840,formidable,"{'Adjective': ['extremely impressive in strength or excellence', 'inspiring fear']}","['unnerving', 'redoubtable', 'alarming']"
841,juvenescence,{'Noun': ['the process of growing into a youth']},"['ontogenesis', 'development', 'maturation', 'growth', 'growing', 'ontogeny']"
842,painstaking,{'Adjective': ['characterized by extreme care and great effort']},"['conscientious', 'careful', 'scrupulous']"
843,bygone,"{'Noun': ['past events to be put aside'], 'Adjective': ['well in the past; former']}","['departed', 'foregone', 'gone', 'past', 'bypast']"
844,idolatrous,"{'Adjective': ['relating to or practicing idolatry', 'blindly or excessively devoted or adoring']}",['loving']
845,notorious,{'Adjective': ['known widely and usually unfavorably']},"['disreputable', 'ill-famed', 'infamous']"
846,tumult,"{'Noun': ['a state of commotion and noise and confusion', 'violent agitation', 'the act of making a noisy disturbance']}","['hoo-ha', 'garboil', 'uproar', 'commotion', 'hoo-hah', 'to-do', 'combustion', 'disturbance', 'kerfuffle', 'hurly burly', 'flutter', 'disruption', 'tumultuousness']"
847,trepidation,{'Noun': ['a feeling of alarm or dread']},"['apprehension', 'apprehensiveness', 'dread']"
848,imminent,{'Adjective': ['close in time; about to occur']},"['impendent', 'at hand', 'impending', 'close at hand', 'close']"
849,slander,"{'Noun': ['words falsely spoken that damage the reputation of another', ""an abusive attack on a person's character or good name""], 'Verb': ['charge falsely or with malicious intent; attack the good name and reputation of someone']}","['attack', 'calumny', 'denigration', 'defamation', 'aspersion']"
850,complement,"{'Noun': ['a word or phrase used to complete a grammatical construction', 'a complete number or quantity', 'number needed to make up a whole force', 'something added to complete or embellish or make perfect', 'one of a series of enzymes in the blood serum that are part of the immune response', 'either of two parts that mutually complete each other'], 'Verb': ['make complete or perfect; supply what is wanting or form the complement to']}","['expression', 'construction', 'grammatical construction']"
851,vigilant,{'Adjective': ['carefully observant or attentive; on the lookout for possible danger']},"['watchful', 'wakeful', 'alert', 'argus-eyed', 'open-eyed']"
852,unkempt,"{'Adjective': ['not neatly combed', 'not properly maintained or cared for']}",['uncombed']
853,schadenfreude,"{'Noun': [""delight in another person's misfortune""]}","['delectation', 'delight']"
854,confer,"{'Verb': ['have a conference in order to talk something over', 'present']}","['hash out', 'discuss', 'confab', 'consult', 'collogue', 'confabulate', 'talk over']"
855,permeate,"{'Verb': ['spread or diffuse through', 'pass through', 'penetrate mutually or be interlocked']}","['perforate', 'penetrate', 'interpenetrate', 'diffuse', 'riddle', 'imbue', 'spiritize', 'pervade', 'spiritise']"
856,culpable,{'Adjective': ['deserving blame or censure as being wrong or evil or injurious']},"['blameworthy', 'blamable', 'censurable', 'blameable', 'blameful', 'guilty']"
857,flamboyant,"{'Noun': ['showy tropical tree or shrub native to Madagascar; widely planted in tropical regions for its immense racemes of scarlet and orange flowers; sometimes placed in genus Poinciana'], 'Adjective': ['marked by ostentation but often tasteless', 'elaborately or excessively ornamented']}","['peacock flower', 'flowering tree', 'angiospermous tree', 'Delonix regia', 'Delonix', 'Poinciana regia', 'royal poinciana', 'flame tree', 'genus Delonix']"
858,erstwhile,"{'Adjective': ['belonging to some prior time'], 'Adverb': ['at a previous time']}","['at one time', 'once', 'erst', 'formerly']"
859,snide,{'Adjective': ['expressive of contempt']},"['sneering', 'supercilious', 'uncomplimentary']"
860,remuneration,"{'Noun': ['something that remunerates', 'the act of paying for goods or services or to recompense for losses']}","['payroll', 'combat pay', 'pay packet', 'double time', 'merit pay', 'half-pay', 'pay envelope', 'strike pay', 'earnings', 'take-home pay', 'wage', 'salary', 'minimum wage', 'sick pay', 'living wage', 'pay', 'paysheet', 'found', 'regular payment']"
861,complaisance,{'Noun': ['a disposition or tendency to yield to the will of others']},"['obligingness', 'compliance', 'compliancy', 'agreeability', 'agreeableness', 'deference']"
862,liberal,"{'Noun': ['a person who favors a political philosophy of progress and reform and the protection of civil liberties', 'a person who favors an economic theory of laissez-faire and self-regulating markets'], 'Adjective': ['showing or characterized by broad-mindedness', 'having political or social views favoring reform and progress', 'tolerant of change; not bound by authoritarianism, orthodoxy, or tradition', 'given or giving freely', 'not literal']}","['liberalist', 'latitudinarian', 'progressive', 'Whig', 'pluralist', 'neoliberal', 'armchair liberal', 'grownup', 'adult']"
863,picturesque,"{'Adjective': ['suggesting or suitable for a picture; pretty as a picture', 'strikingly expressive']}",['beautiful']
864,risible,{'Adjective': ['arousing or provoking laughter']},"['funny', 'comical', 'amusing', 'laughable', 'comic', 'humourous', 'mirthful', 'humorous']"
865,encomium,{'Noun': ['a formal expression of praise']},"['eulogy', 'praise', 'congratulations', 'paean', 'kudos', 'extolment', 'pean', 'panegyric']"
866,stint,"{'Noun': ['an unbroken period of time during which you do something', 'smallest American sandpiper', ""an individual's prescribed share of work""], 'Verb': ['subsist on a meager allowance', 'supply sparingly and with restricted quantities']}","['duration', 'continuance', 'stretch']"
867,scorn,"{'Noun': ['lack of respect accompanied by a feeling of intense dislike', 'open disrespect for a person or thing'], 'Verb': ['look down on with disdain', 'reject with contempt']}","['despite', 'contempt', 'disdain', 'dislike']"
868,overshadow,"{'Verb': ['be greater in significance than', 'make appear small by comparison', 'cast a shadow upon']}","['dominate', 'eclipse', 'hover', 'brood', 'bulk large', 'loom']"
869,manacle,"{'Noun': ['shackle that consists of a metal loop that can be locked around the wrist; usually used in pairs'], 'Verb': ['confine or restrain with or as if with manacles or handcuffs']}","['trammel', 'shackle', 'cuff', 'bond', 'handlock', 'handcuff', 'hamper']"
870,countermand,"{'Noun': ['a contrary command cancelling or reversing a previous command'], 'Verb': ['cancel officially']}","['command', 'bidding', 'dictation', 'bid']"
871,lachrymose,{'Adjective': ['showing sorrow']},"['dolorous', 'weeping', 'tearful', 'dolourous', 'sorrowful']"
872,bifurcate,"{'Verb': ['split or divide into two', 'divide into two branches'], 'Adjective': ['resembling a fork; divided or separated into two branches']}","['separate', 'ramify', 'furcate', 'fork', 'branch']"
873,tirade,{'Noun': ['a speech of violent denunciation']},"['denouncement', 'broadside', 'denunciation', 'declamation', 'philippic']"
874,primacy,{'Noun': ['the state of being first in importance']},"['importance', 'grandness']"
875,plausible,"{'Adjective': ['apparently reasonable and credible, and therefore convincing', 'given to or characterized by presenting specious arguments']}","['arguable', 'slick', 'believable', 'pat', 'credible', 'glib']"
876,peripatetic,"{'Noun': ['a person who walks from place to place', 'a follower of Aristotle or an adherent of Aristotelianism'], 'Adjective': ['of or relating to Aristotle or his philosophy', 'traveling especially on foot']}","['Aristotelic', 'Aristotelean', 'Aristotelian']"
877,veneration,"{'Noun': ['a feeling of profound respect for someone or something', 'religious zeal; the willingness to serve God']}","['bibliolatry', 'symbol-worship', 'place-worship', 'Bible-worship', 'grammatolatry', 'thaumatolatry', 'verbolatry', 'topolatry', 'idolatry', 'cultism', 'worship', 'gyneolatry', 'anthropolatry', 'miracle-worship', 'word-worship', 'devotion', 'worship of man', 'gynaeolatry', 'symbolatry', 'symbololatry', 'lordolatry', 'woman-worship']"
878,refracted,"{'Verb': ['subject to refraction', 'determine the refracting power of (a lens']}","['find', 'find out', 'ascertain', 'determine']"
879,subversive,"{'Noun': ['a radical supporter of political or social revolution'], 'Adjective': ['in opposition to a civil authority or government']}","['seditious', 'disloyal', 'insurgent']"
880,dissident,"{'Noun': ['a person who dissents from some established policy'], 'Adjective': ['characterized by departure from accepted beliefs or standards', 'disagreeing, especially with a majority']}","['heretical', 'unorthodox', 'heterodox']"
881,unconventional,"{'Adjective': ['not conforming to accepted rules or standards', 'not conventional or conformist', 'not conforming to legality, moral law, or social convention']}","['convention', 'original', 'maverick', 'conventionalism', 'bohemian', 'go-as-you-please', 'conventionality', 'unorthodox', 'irregular']"
882,grovel,{'Verb': ['show submission or fear']},"['crawl', 'fawn', 'creep', 'cringe', 'flex', 'bend', 'cower']"
883,profuse,{'Adjective': ['produced or growing in extreme abundance']},"['riotous', 'exuberant', 'luxuriant', 'lush', 'abundant']"
884,bilious,"{'Adjective': ['relating to or containing bile', 'suffering from or suggesting a liver disorder or gastric distress', 'irritable as if suffering from indigestion']}","['liverish', 'dyspeptic', 'ill-natured', 'atrabilious']"
885,summit,"{'Noun': ['the highest level or degree attainable; the highest stage of development', 'the top or extreme point of something (usually a mountain or hill', 'a meeting of heads of governments'], 'Verb': ['reach the summit (of a mountain']}","['pinnacle', 'hilltop', 'crest', 'place', 'tip', 'topographic point', 'peak', 'mountain peak', 'top', 'brow', 'crown', 'spot']"
886,vanquish,"{'Verb': ['come out better in a competition, race, or conflict']}","['spreadeagle', 'eliminate', 'outflank', 'cream', 'chicane', 'outperform', 'subdue', 'mate', 'outmatch', 'surmount', 'outfox', 'get the better of', 'get the jump', 'best', 'trump', 'immobilise', 'exceed', 'rout', 'defeat', 'outscore', 'win', 'drub', 'clobber', 'mop up', 'get the best', 'have the best', 'overwhelm', 'shaft', 'outstrip', 'get over', 'outdo', 'trounce', 'thrash', 'pip', 'master', 'jockey', 'shell', 'overcome', 'scoop', 'beat', 'lick', 'overmaster', 'spread-eagle', 'surpass', 'whip', 'screw', 'walk over', 'rack up', 'chouse', 'overpower', 'overreach', 'outsmart', 'outwit', 'immobilize', 'checkmate', 'outpoint', 'whomp', 'circumvent', 'beat out', 'outfight', 'worst', 'outplay', 'bat', 'outgo', 'cheat', 'crush']"
887,meritocracy,"{'Noun': ['a form of social system in which power goes to those with superior intellects', 'the belief that rulers should be chosen for their superior abilities and not because of their wealth or birth']}","['political orientation', 'political theory', 'ideology']"
888,quip,"{'Noun': ['a witty saying', 'witty remark'], 'Verb': ['make jokes or quips']}","['gag', 'joke', 'jest']"
889,diffuse,"{'Verb': ['move outward', 'spread or diffuse through', 'cause to become widely known'], 'Adjective': ['spread out; not concentrated in one place', '(of light', 'lacking conciseness']}","['spread', 'percolate', 'distribute', 'mantle', 'run', 'creep', 'fan out', 'spread out', 'bleed']"
890,excoriate,"{'Verb': ['express strong disapproval of', 'tear or wear off the skin or make sore by abrading']}","['objurgate', 'reprobate', 'condemn', 'denounce', 'decry']"
891,parley,"{'Noun': ['a negotiation between enemies'], 'Verb': ['discuss, as between enemies']}","['dialogue', 'talks', 'negotiation']"
892,detrimental,"{'Adjective': [""(sometimes followed by `to'""]}","['prejudicious', 'damaging', 'harmful', 'prejudicial']"
893,precocious,"{'Adjective': ['characterized by or characteristic of exceptionally early development or maturity (especially in mental aptitude', 'appearing or developing early']}","['intelligent', 'advanced']"
894,repercussion,"{'Noun': ['a remote or indirect consequence of some action', 'a movement back from an impact']}","['result', 'consequence', 'issue', 'outcome', 'reverberation', 'effect', 'event', 'upshot']"
895,byzantine,"{'Noun': ['a native or inhabitant of Byzantium or of the Byzantine Empire'], 'Adjective': ['of or relating to the Eastern Orthodox Church or the rites performed in it', 'of or relating to or characteristic of the Byzantine Empire or the ancient city of Byzantium', 'highly complex or intricate and occasionally devious']}","['involved', 'knotty', 'complex', 'convoluted', 'tortuous', 'tangled']"
896,fracas,{'Noun': ['noisy quarrel']},"['altercation', 'batrachomyomachia', 'words', 'affray', 'quarrel', 'row', 'wrangle', 'run-in', 'dustup']"
897,irreverent,"{'Adjective': ['showing lack of due respect or veneration', 'characterized by a lightly pert and exuberant quality', 'not revering god']}","['disrespectful', 'sacrilegious', 'profane', 'aweless', 'blasphemous', 'awless']"
898,accede,"{'Verb': [""yield to another's wish or opinion"", 'take on duties or office', 'to agree or express agreement']}","['succumb', 'bow', 'knuckle under', 'buckle under', 'submit', 'yield', 'defer', 'give in']"
899,delegate,"{'Noun': ['a person appointed or elected to represent others'], 'Verb': ['transfer power to someone', 'give an assignment to (a person', 'a person']}","['depute', 'assign', 'designate']"
900,discursive,"{'Adjective': ['proceeding to a conclusion by reason or argument rather than intuition', '(of e.g. speech and writing']}","['dianoetic', 'logical']"
901,touted,"{'Verb': ['advertize in strongly positive terms', 'show off']}","['tipster', 'advisor', 'consultant', 'racetrack tout', 'adviser']"
902,wag,"{'Noun': ['a witty amusing person who makes jokes', 'causing to move repeatedly from side to side'], 'Verb': ['move from side to side']}","['jiggle', 'waggle', 'wiggle', 'joggle']"
903,ramification,"{'Noun': ['the act of branching out or dividing into branches', 'a part of a forked or branching shape', 'a development that complicates a situation', 'an arrangement of branching parts']}","['trifurcation', 'bifurcation', 'fibrillation', 'divarication', 'branching', 'division', 'forking', 'fork']"
904,redress,"{'Noun': ['a sum of money paid in compensation for loss or injury', 'act of correcting an error or a fault or an evil'], 'Verb': ['make reparations or amends for']}","['general damages', 'nominal damages', 'exemplary damages', 'relief', 'amends', 'damages', 'actual damages', 'compensatory damages', 'punitive damages', 'indemnity', 'restitution', 'compensation', 'expiation', 'satisfaction', 'indemnification', 'smart money', 'atonement']"
905,contraries,"{'Noun': ['a relation of direct opposition', 'exact opposition', 'a logical relation such that two propositions are contraries if both cannot be true but both can be false']}",['different']
906,myriad,"{'Noun': ['a large indefinite number', 'the cardinal number that is the product of ten and one thousand'], 'Adjective': ['too numerous to be counted']}","['unnumberable', 'countless', 'innumerable', 'numberless', 'uncounted', 'infinite', 'unnumbered', 'unnumerable', 'incalculable', 'innumerous', 'multitudinous']"
907,descry,{'Verb': ['catch sight of']},"['espy', 'spy', 'sight', 'spot']"
908,sybarite,{'Noun': ['a person addicted to luxury and pleasures of the senses']},"['sensualist', 'voluptuary']"
909,repugnant,{'Adjective': ['offensive to the mind']},"['obscene', 'detestable', 'repulsive', 'abhorrent', 'offensive']"
910,oscillation,"{'Noun': ['the process of oscillating between states', '(physics', 'a single complete execution of a periodically repeated phenomenon']}","['ripple', 'undulation', 'sympathetic vibration', 'transient', 'wave', 'vibration', 'beat', 'resonance']"
911,otiose,"{'Adjective': ['serving no useful purpose; having no excuse for being', 'producing no result or effect', 'disinclined to work or exertion']}","['futile', 'unavailing', 'useless', 'ineffectual']"
912,apocryphal,"{'Adjective': ['being of questionable authenticity', 'of or belonging to the Apocrypha']}",['questionable']
913,idyllic,"{'Adjective': ['excellent and delightful in all respects', 'suggestive of an idyll; charmingly simple and serene']}",['perfect']
914,cosmopolitan,"{'Noun': ['a sophisticated person who has travelled in many countries'], 'Adjective': ['growing or occurring in many parts of the world', 'composed of people from or at home in many parts of the world; especially not provincial in attitudes or interests', 'of worldwide scope or applicability']}",['widely distributed']
915,craft,"{'Noun': ['the skilled practice of a practical occupation', 'a vehicle designed for navigation in or on water or air or through outer space', 'people who perform a particular kind of skilled work', 'skill in an occupation or trade', 'shrewdness as demonstrated by being skilled in deception'], 'Verb': ['make by hand and with much skill']}","['piloting', 'mintage', 'painting', 'mechanical drawing', 'handicraft', 'occupation', 'line of work', 'drafting', 'auto mechanics', 'business', 'dressmaking', 'trade', 'woodwork', 'interior design', 'oculism', 'shoe repairing', 'job', 'carpentry', 'lumbering', 'pottery', 'woodworking', 'interior decoration', 'plumbery', 'basketry', 'typography', 'line', 'plumbing', 'tanning', 'electrical work', 'house painting', 'airplane mechanics', 'shingling', 'winemaking', 'tailoring', 'sheet-metal work', 'shoemaking', 'wine making', 'pyrotechnics', 'cobbling', 'undertaking', 'roofing', 'tool-and-die work', 'pilotage', 'pyrotechny', 'papermaking', 'masonry', 'upholstery']"
916,transitory,{'Adjective': ['lasting a very short time']},"['passing', 'transient', 'temporary', 'ephemeral', 'short-lived', 'fugacious', 'impermanent']"
917,saccharine,{'Adjective': ['overly sweet']},"['treacly', 'sweet', 'syrupy', 'cloying']"
918,sectarian,"{'Noun': ['a member of a sect'], 'Adjective': ['of or relating to or characteristic of a sect or sects', 'belonging to or characteristic of a sect']}","['denominational', 'narrow-minded']"
919,relish,"{'Noun': ['vigorous and enthusiastic enjoyment', 'spicy or savory condiment', 'the taste experience when a savoury condiment is taken into the mouth'], 'Verb': ['derive or receive pleasure from; get enjoyment from; take pleasure in']}","['zestfulness', 'enjoyment', 'enthusiasm', 'zest', 'gusto']"
920,glut,"{'Noun': ['the quality of being so overabundant that prices fall'], 'Verb': ['overeat or eat immodestly; make a pig of oneself', 'supply with an excess of']}","['eat', 'gormandise', 'engorge', 'ingurgitate', 'gormandize', 'satiate', 'scarf out', 'overgorge', 'stuff', 'overindulge', 'binge', 'overeat', 'gourmandize', 'gorge', 'pig out', 'englut']"
921,supersede,{'Verb': ['take the place or move into the position of']},"['put back', 'supplant', 'usurp', 'oust', 'succeed', 'displace', 'deputise', 'supervene upon', 'come after', 'step in', 'supercede', 'deputize', 'preempt', 'substitute', 'replace', 'follow']"
922,placid,"{'Adjective': ['(of a body of water', 'not easily irritated']}","['quiet', 'smooth', 'calm', 'unruffled', 'tranquil', 'still']"
923,pittance,{'Noun': ['an inadequate payment']},['payment']
924,worldly,"{'Adjective': ['characteristic of or devoted to the temporal world as opposed to the spiritual world', 'very sophisticated especially because of surfeit; versed in the ways of the world']}","['earthly', 'temporal', 'mercenary', 'mundane', 'materialistic', 'profane', 'material', 'terrestrial', 'economic', 'secular', 'worldly-minded', 'sophisticated']"
925,leery,{'Adjective': ['openly distrustful and unwilling to confide']},"['distrustful', 'wary', 'suspicious', 'untrusting', 'mistrustful']"
926,pedantic,{'Adjective': ['marked by a narrow focus on or display of learning especially its trivial aspects']},"['donnish', 'academic', 'scholarly']"
927,fret,"{'Noun': ['agitation resulting from active worry', 'a spot that has been worn away by abrasion or erosion', 'an ornamental pattern consisting of repeated vertical and horizontal lines (often in relief', 'a small bar of metal across the fingerboard of a musical instrument; when the string is stopped by a finger at the metal bar it will produce a note of the desired pitch'], 'Verb': ['worry unnecessarily or excessively', 'be agitated or irritated', 'provide (a musical instrument', 'become or make sore by or as if by rubbing', 'cause annoyance in', 'gnaw into; make resentful or angry', 'carve a pattern into', 'decorate with an interlaced design', 'be too tight; rub or press', 'cause friction', 'remove soil or rock', 'wear away or erode']}","['dither', 'pother', 'scruple', 'fuss', 'niggle', 'worry', 'flap']"
928,lucid,"{'Adjective': ['(of language', 'having a clear mind', 'capable of thinking and expressing yourself in a clear and consistent manner', 'transmitting light; able to be seen through with clarity']}","['crystal clear', 'limpid', 'pellucid', 'clear', 'luculent', 'perspicuous']"
929,fraud,"{'Noun': ['intentional deception resulting in injury to another person', 'a person who makes deceitful pretenses', 'something intended to deceive; deliberate trickery intended to gain an advantage']}","['barratry', 'fraud in the factum', 'criminal offence', 'fraud in fact', 'offence', 'offense', 'rig', 'positive fraud', 'fraud in the inducement', 'swindle', 'mail fraud', 'collateral fraud', 'identity theft', 'election fraud', 'legal fraud', 'intrinsic fraud', 'crime', 'constructive fraud', 'law-breaking', 'criminal offense', 'extrinsic fraud', 'cheat']"
930,obtrusive,"{'Adjective': ['sticking out; protruding', 'undesirably noticeable']}",['protrusive']
931,esoteric,{'Adjective': ['confined to and understandable by only an enlightened inner circle']},"['abstruse', 'mystical', 'deep', 'kabbalistic', 'orphic', 'arcane', 'private', 'occult', 'sibylline', 'mystic', 'cabalistic', 'cryptic', 'secret', 'mysterious', 'recondite', 'qabalistic', 'cryptical']"
932,euphony,{'Noun': ['any agreeable (pleasing and harmonious']},"['music of the spheres', 'auditory sensation', 'music', 'sound']"
933,amity,"{'Noun': ['a cordial disposition', 'a state of friendship and cordiality']}","['cordiality', 'friendliness']"
934,explicable,{'Adjective': ['capable of being explicated or accounted for']},"['soluble', 'comprehensible', 'explainable', 'comprehendible', 'interpretable']"
935,hauteur,{'Noun': ['overbearing pride evidenced by a superior manner toward inferiors']},"['high-handedness', 'imperiousness', 'superbia', 'condescension', 'pride', 'snobbism', 'hubris', 'overbearingness', 'snobbishness', 'superciliousness', 'snobbery', 'arrogance', 'disdainfulness', 'domineeringness', 'superiority', 'haughtiness', 'lordliness', 'contemptuousness']"
936,sound,"{'Noun': ['the particular auditory effect produced by a given cause', 'the subjective sensation of hearing something', 'mechanical vibrations transmitted by an elastic medium', 'the sudden occurrence of an audible event', 'the audible part of a transmitted signal', '(phonetics', 'a narrow channel of the sea joining two larger bodies of water', 'a large ocean inlet or deep bay'], 'Verb': ['appear in a certain way', 'make a certain noise or sound', 'give off a certain sound or sounds', 'announce by means of a sound', 'utter with vibrating vocal chords', 'cause to sound', 'measure the depth of (a body of water'], 'Adjective': ['financially secure and safe', 'exercising or showing good judgment', 'in good condition; free from defect or damage or decay', 'in excellent physical condition', 'logically valid', 'having legal efficacy or force', 'vigorous or severe', 'free from moral defect', '(of sleep', 'complete; thorough']}","['seem', 'look', 'appear']"
937,shelve,"{'Verb': ['hold back to a later time', 'place on a shelf']}","['table', 'suspend', 'reprieve', 'hold', 'scrub', 'probate', 'cancel', 'respite', 'remit', 'put over', 'defer', 'reschedule', 'set back', 'prorogue', 'put off', 'scratch', 'hold over', 'delay', 'postpone', 'call off', 'call']"
938,anthropocentrism,{'Noun': ['an inclination to evaluate reality exclusively in terms of human values']},"['partisanship', 'partiality', 'anthropocentricity']"
939,recalcitrant,"{'Adjective': ['stubbornly resistant to authority or control', 'marked by stubborn resistance to authority']}","['fractious', 'refractory', 'disobedient']"
940,cartography,{'Noun': ['the making of maps and charts']},"['fashioning', 'mapmaking', 'making', 'devising']"
941,finagled,{'Verb': ['achieve something by means of trickery or devious methods']},"['manage', 'reach', 'achieve', 'wangle', 'accomplish', 'attain']"
942,impute,"{'Verb': ['attribute or credit to', 'attribute (responsibility or fault']}","['evaluate', 'externalize', 'charge', 'internalize', 'credit', 'personate', 'internalise', 'anthropomorphise', 'judge', 'personify', 'accredit', 'ascribe', 'anthropomorphize', 'attribute', 'reattribute', 'pass judgment', 'blame', 'project', 'interiorise', 'carnalize', 'interiorize', 'sensualize', 'assign', 'externalise']"
943,catholic,"{'Noun': ['a member of a Catholic church'], 'Adjective': ['of or relating to or supporting Catholicism', 'free from provincial prejudices or attachments']}","['Catholic Church', 'Christian', 'pontiff', 'Holy Father', 'pope', 'Roman Catholic', 'Uniat', 'Greek Catholic', 'Uniate Christian', 'Vicar of Christ', 'Bishop of Rome', 'Anglican Catholic', 'Roman Catholic Pope', 'Catholic Pope', 'Uniate']"
944,besotted,"{'Verb': ['make dull or stupid or muddle with drunkenness or infatuation'], 'Adjective': ['very drunk']}","['pissed', 'loaded', 'inebriated', 'blind drunk', 'sloshed', 'drunk', 'intoxicated', 'soaked', 'sozzled', 'wet', 'crocked', 'pixilated', 'squiffy', 'fuddled', 'smashed', 'plastered', 'pie-eyed', 'stiff', 'cockeyed', 'soused', 'slopped', 'blotto', 'tight']"
945,amalgamate,"{'Verb': ['to bring or combine together or with something else'], 'Adjective': ['joined together into a whole']}","['consolidated', 'amalgamated', 'coalesced', 'united', 'fused']"
946,harried,"{'Verb': ['annoy continually or chronically', 'make a pillaging or destructive raid on (a place'], 'Adjective': ['troubled persistently especially with petty annoyances']}","['vexed', 'annoyed', 'harassed', 'pestered', 'troubled']"
947,husbandry,{'Noun': ['the practice of cultivating the land or raising stock']},"['ranching', 'tank farming', 'strip cropping', 'agriculture', 'planting', 'aquiculture', 'mixed farming', 'subsistence farming', 'tree farming', 'dairy farming', 'tilling', 'horticulture', 'harvest time', 'truck farming', 'gardening', 'arboriculture', 'animal husbandry', 'cultivation', 'hydroponics', 'harvest', 'farming', 'dairying']"
948,melange,{'Noun': ['a motley assortment of things']},"['hotchpotch', 'ragbag', 'omnium-gatherum', 'mingle-mangle', 'odds and ends', 'smorgasbord', 'variety', 'farrago', 'mixed bag', 'assortment', 'mishmash', 'miscellany', 'mixture', 'hodgepodge', 'salmagundi', 'potpourri', 'motley', 'oddments', 'miscellanea', 'gallimaufry']"
949,desiccated,"{'Verb': ['preserve by removing all water and liquids from', 'remove water from', 'lose water or moisture'], 'Adjective': ['thoroughly dried out', 'preserved by removing natural moisture', 'lacking vitality or spirit; lifeless']}","['dried', 'preserved', 'dehydrated']"
950,prolix,{'Adjective': ['tediously prolonged or tending to speak or write at great length']},"['long-winded', 'wordiness', 'prolixness', 'diffuse', 'verbose', 'redundant', 'tautological', 'wordy', 'verbal', 'tautologic', 'prolixity', 'windy', 'pleonastic', 'tedious', 'voluble', 'long-windedness', 'windiness']"
951,ornery,{'Adjective': ['having a difficult and contrary disposition']},"['cantankerous', 'crotchety', 'ill-natured']"
952,torrid,"{'Adjective': ['characterized by intense emotion', 'emotionally charged and vigorously energetic', 'extremely hot and dry']}",['hot']
953,fungible,"{'Noun': ['a commodity that is freely interchangeable with another in satisfying an obligation'], 'Adjective': ['of goods or commodities; freely exchangeable for or replaceable by another of like nature or kind in the satisfaction of an obligation']}",['exchangeable']
954,askew,"{'Adjective': ['turned or twisted toward one side'], 'Adverb': ['turned or twisted to one side']}","['cockeyed', 'skew-whiff', 'awry', 'wonky', 'crooked', 'lopsided']"
955,conniving,"{'Verb': ['encourage or assent to illegally or criminally', 'form intrigues (for'], 'Adjective': ['acting together in secret toward a fraudulent or illegal end', 'acting with a specific goal']}","['shrewd', 'scheming', 'hard', 'calculating', 'calculative']"
956,tantamount,{'Adjective': ['being essentially equal to something']},"['equal', 'equivalent']"
957,chortle,"{'Noun': ['a soft partly suppressed laugh'], 'Verb': ['laugh quietly or with restraint']}","['express mirth', 'chuckle', 'laugh softly', 'laugh', 'express joy']"
958,foster,"{'Noun': ['United States songwriter whose songs embody the sentiment of the South before the American Civil War (1826-1864'], 'Verb': ['promote the growth of', 'bring up under fosterage; of children', 'help develop, help grow'], 'Adjective': ['providing or receiving nurture or parental care though not related by blood or legal ties']}","['encourage', 'further', 'boost', 'promote', 'advance']"
959,ostracism,"{'Noun': ['the state of being banished or ostracized (excluded from society by general consent', 'the act of excluding someone from society by general consent']}","['riddance', 'ejection', 'exclusion', 'expulsion']"
960,perspicacious,"{'Adjective': ['acutely insightful and wise', 'mentally acute or penetratingly discerning']}","['sapient', 'wise', 'sagacious']"
961,rescind,{'Verb': ['cancel officially']},"['repeal', 'cancel', 'renege', 'revoke', 'renege on', 'countermand', 'go back on', 'renegue on', 'vacate', 'strike down', 'reverse', 'lift', 'annul', 'overturn']"
962,notoriety,{'Noun': ['the state of being known for some unfavorable act or quality']},"['ill fame', 'infamy', 'reputation']"
963,dexterity,{'Noun': ['adroitness in using the hands']},"['deftness', 'manual dexterity', 'sleight', 'facility', 'quickness', 'adeptness', 'adroitness']"
964,plumb,"{'Noun': ['the metal bob of a plumb line'], 'Verb': ['measure the depth of something', 'weight with lead', 'examine thoroughly and in great depth', 'adjust with a plumb line so as to make vertical'], 'Adjective': ['exactly vertical'], 'Adverb': ['completely; used as intensifiers', 'or plum', 'conforming to the direction of a plumb line', 'exactly']}","['clean', 'plum']"
965,pomp,"{'Noun': ['cheap or pretentious or vain display', 'ceremonial elegance and splendor']}","['elegance', 'eclat']"
966,haphazard,"{'Adjective': ['dependent upon or characterized by chance', 'marked by great carelessness'], 'Adverb': ['without care; in a slapdash manner']}","['hit-or-miss', 'random']"
967,disjointed,"{'Verb': ['part; cease or break association with', 'separate at the joints', 'make disjoint, separated, or disconnected; undo the joining of', 'become separated, disconnected or disjoint'], 'Adjective': ['lacking orderly continuity', 'taken apart at the joints', 'separated at the joint']}","['garbled', 'incoherent', 'confused', 'disconnected', 'unconnected', 'scattered', 'disordered', 'illogical']"
968,minute,"{'Noun': ['a unit of time equal to 60 seconds or 1/60th of an hour', 'an indefinitely short time', 'a particular point in time', 'a unit of angular distance equal to a 60th of a degree', 'a short note', 'distance measured by the time taken to cover it'], 'Adjective': ['infinitely or immeasurably small', 'characterized by painstaking care and detailed examination']}","['min', 'hr', 'unit of time', 'sec', 'hour', '60 minutes', 'time unit', 's', 'second']"
969,voluminous,"{'Adjective': ['large in volume or bulk', 'marked by repeated turns and bends', 'large in number or quantity (especially of discourse']}","['large', 'big']"
970,machination,{'Noun': ['a crafty and involved plot to achieve your (usually sinister']},"['secret plan', 'game', 'intrigue', 'plot', 'priestcraft']"
971,implacable,{'Adjective': ['incapable of being placated']},"['unmerciful', 'stern', 'unrelenting', 'grim', 'merciless', 'unforgiving', 'inexorable', 'relentless', 'unappeasable', 'unmitigable']"
972,confiscate,"{'Verb': ['take temporary possession of as a security, by legal authority'], 'Adjective': ['surrendered as a penalty']}","['sequester', 'impound', 'take', 'distrain', 'condemn', 'garnishee', 'attach', 'seize', 'garnish']"
973,ambiguous,"{'Adjective': ['open to two or more interpretations; or of uncertain nature or significance; or (often', 'or ambiguous', 'having more than one possible meaning', 'having no intrinsic or objective meaning; not organized in conventional patterns']}","['forked', 'indeterminate', 'evasive', 'equivocal', 'double']"
974,statuesque,"{'Adjective': ['of size and dignity suggestive of a statue', 'suggestive of a statue']}","['shapely', 'Junoesque']"
975,bogus,{'Adjective': ['fraudulent; having a misleading appearance']},"['counterfeit', 'phoney', 'imitative', 'phony', 'bastard', 'fake']"
976,uncompromising,{'Adjective': ['not making concessions']},"['hardline', 'sturdy', 'inflexible', 'hard-line']"
977,apartheid,{'Noun': ['a social policy or racial segregation involving political and economic and legal discrimination against people who are not Whites; the former official policy in South Africa']},['social policy']
978,desiccate,"{'Verb': ['preserve by removing all water and liquids from', 'remove water from', 'lose water or moisture'], 'Adjective': ['lacking vitality or spirit; lifeless']}","['dehydrate', 'keep', 'preserve']"
979,gallant,"{'Noun': ['a man who is much concerned with his dress and appearance', 'a man who attends or escorts a woman'], 'Adjective': ['unflinching in battle or action', 'lively and spirited', 'having or displaying great dignity or nobility', 'being attentive to women like an ideal knight']}","['brave', 'courageous']"
980,brusque,{'Adjective': ['marked by rude or peremptory shortness']},"['discourteous', 'short', 'brusk', 'curt']"
981,mince,"{'Noun': ['food chopped into small bits'], 'Verb': ['make less severe or harsh', 'walk daintily', 'cut into small pieces']}","['moderate', 'change', 'modify', 'alter', 'soften']"
982,obsolete,{'Adjective': ['no longer in use']},"['disused', 'noncurrent']"
983,sever,"{'Verb': ['set or keep apart', 'cut off from a whole']}","['separate', 'disunite', 'break up', 'lop', 'part', 'divide', 'discerp']"
984,euphoria,{'Noun': ['a feeling of great (usually exaggerated']},"['lightness', 'euphory', 'high spirits', 'elation']"
985,revulsion,{'Noun': ['intense aversion']},"['repugnance', 'horror', 'disgust', 'repulsion']"
986,streamlined,"{'Verb': ['contour economically or efficiently'], 'Adjective': ['made efficient by stripping off nonessentials', 'designed or arranged to offer the least resistant to fluid flow']}",['efficient']
987,irk,{'Verb': ['irritate or vex']},"['anger', 'gall']"
988,ubiquitous,{'Adjective': ['being present everywhere at once']},"['omnipresent', 'present']"
989,gratuitous,"{'Adjective': ['without cause', 'costing nothing', 'unnecessary and unwarranted']}",['unmerited']
990,polarized,"{'Verb': ['cause to vibrate in a definite pattern', 'cause to concentrate about two conflicting or contrasting positions', 'become polarized in a conflict or contrasting situation']}","['polarise', 'change', 'modify', 'alter']"
991,consecrate,"{'Verb': ['appoint to a clerical posts', 'give entirely to a specific person, activity, or cause', 'dedicate to a deity by a vow', 'render holy by means of religious rites'], 'Adjective': ['solemnly dedicated to or set apart for a high or sacred purpose']}","['invest', 'ordinate', 'vest', 'order', 'enthrone', 'ordain']"
992,appurtenant,{'Adjective': ['furnishing added support']},"['accessory', 'auxiliary', 'supportive', 'adjunct', 'ancillary', 'adjuvant']"
993,harrow,"{'Noun': ['a cultivator that pulverizes or smooths the soil'], 'Verb': ['draw a harrow over (land']}","['turn', 'plough', 'plow', 'disk']"
994,reticent,"{'Adjective': ['temperamentally disinclined to talk', 'cool and formal in manner', 'reluctant to draw attention to yourself']}","['untalkative', 'taciturn']"
995,precept,"{'Noun': ['rule of personal conduct', 'a doctrine that is taught']}","['school of thought', 'ism', 'doctrine', 'commandment', 'philosophy', 'mitsvah', 'teaching', 'philosophical system', 'Golden Rule', 'mitzvah']"
996,curtail,"{'Verb': ['place restrictions on', 'terminate or abbreviate before its intended or proper end or its full extent']}","['restrict', 'immobilise', 'immobilize', 'limit', 'cut back', 'confine', 'abridge', 'circumscribe', 'curb']"
997,martial,"{'Noun': ['Roman poet noted for epigrams (first century BC'], 'Adjective': ['(of persons', 'suggesting war or military life', 'of or relating to the armed forces']}","['soldierly', 'soldierlike', 'warriorlike', 'military']"
998,pundit,{'Noun': ['someone who has been admitted to membership in a scholarly field']},"['polymath', 'savant', 'learned person', 'scholar', 'bookman', 'student', 'scholarly person', 'initiate']"