-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathshanbay.user.js
3224 lines (3211 loc) · 239 KB
/
shanbay.user.js
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
//
// ==UserScript==
// @name Hello World
// @namespace http://diveintogreasemonkey.org/download/
// @description an script for Shanbay
// @include http://www.shanbay.com/bdc/review/
// @exclude http://diveintogreasemonkey.org/*
// @exclude http://www.diveintogreasemonkey.org/*
// ==/UserScript==
function Map() {
this.elements = new Array();
//获取MAP元素个数
this.size = function() {
return this.elements.length;
}
//判断MAP是否为空
this.isEmpty = function() {
return (this.elements.length < 1);
}
//删除MAP所有元素
this.clear = function() {
this.elements = new Array();
}
//向MAP中增加元素(key, value)
this.put = function(_key, _value) {
this.elements.push( {
key : _key,
value : _value
});
}
//删除指定KEY的元素,成功返回True,失败返回False
this.remove = function(_key) {
var bln = false;
try {
for (i = 0; i < this.elements.length; i++) {
if (this.elements[i].key == _key) {
this.elements.splice(i, 1);
return true;
}
}
} catch (e) {
bln = false;
}
return bln;
}
//获取指定KEY的元素值VALUE,失败返回NULL
this.get = function(_key) {
try {
for (i = 0; i < this.elements.length; i++) {
if (this.elements[i].key == _key) {
return this.elements[i].value;
}
}
} catch (e) {
return null;
}
}
//获取指定索引的元素(使用element.key,element.value获取KEY和VALUE),失败返回NULL
this.element = function(_index) {
if (_index < 0 || _index >= this.elements.length) {
return null;
}
return this.elements[_index];
}
//判断MAP中是否含有指定KEY的元素
this.containsKey = function(_key) {
var bln = false;
try {
for (i = 0; i < this.elements.length; i++) {
if (this.elements[i].key == _key) {
bln = true;
}
}
} catch (e) {
bln = false;
}
return bln;
}
//判断MAP中是否含有指定VALUE的元素
this.containsValue = function(_value) {
var bln = false;
try {
for (i = 0; i < this.elements.length; i++) {
if (this.elements[i].value == _value) {
bln = true;
}
}
} catch (e) {
bln = false;
}
return bln;
}
//获取MAP中所有VALUE的数组(ARRAY)
this.values = function() {
var arr = new Array();
for (i = 0; i < this.elements.length; i++) {
arr.push(this.elements[i].value);
}
return arr;
}
//获取MAP中所有KEY的数组(ARRAY)
this.keys = function() {
var arr = new Array();
for (i = 0; i < this.elements.length; i++) {
arr.push(this.elements[i].key);
}
return arr;
}
}
/* Put all the words into the map
* Created using python
*/
function initialize_map(map){
map.put("abandon","放纵:constraint;放纵:unrestrainedly;放弃:withdraw;停止做某事:put an end to");
map.put("abase","降低(地位、职位、威望或尊严):lower");
map.put("abash","使尴尬,使羞愧:self-confidence,embarrass");
map.put("abate","减轻(程度或者强度):reduce,degree,intensity;减少(数量),降低(价值):reduce,amount,value");
map.put("abbreviate","v.缩写,缩短:briefer");
map.put("abdicate","v.正式放弃(权力、责任):throne");
map.put("aberrant","adj.异常的,非常规的:deviating");
map.put("abet","v.帮助,怂恿:assist or support;v.鼓励:encourage");
map.put("abeyance","n.终止,搁置:inactivity");
map.put("abhor","vt.深恶痛绝,极度厌恶:extreme repugnance");
map.put("abiding","永久的:enduring");
map.put("abject","adj.无精打采的:spiritless;adj.(地位、身份)悲惨、凄凉的:low state;adj.卑微的,讨好的:humble");
map.put("abjure","v.发誓放弃:rejecting,abandoning;v.抵制避免:resist");
map.put("abnegate","否认:deny,renounce;投降,放弃,交出(权力等):surrender,relinquish");
map.put("abominate","憎恶:abhor");
map.put("aboveboard","无欺诈的,光明正大的:free from,deceit or duplicity");
map.put("abrade","磨损,精神上的折磨:wear away, by friction");
map.put("abridge","缩短,缩小:shorten;在不改变本意的条件下删减词语,缩写:shorten");
map.put("abrogate","官方的正式废除:annul;无视(某事的)存在:nonexistent");
map.put("abscond","偷偷离开:depart secretly");
map.put("absolute","专制的:unconstrained; 无限的unqualified; 完美的,纯净不惨杂的:free from imperfection, mixture; 不容置疑的,确凿的:unquestionable");
map.put("absolve","使无罪,解除责任:free from, guilt, exculpate");
map.put("abstain","自我克制,主动戒绝:refrain, by one’s own choice");
map.put("abstemious","(吃喝等)有节制的,节俭的:restraint, food or alcohol, sparing");
map.put("abstract","做总结,概括:abstract, summarize; 使分心:away, attention");
map.put("abstruse","难以理解的:recondite");
map.put("absurd","不合理的:unreasonable");
map.put("abundant","大量的: great plenty");
map.put("abuse","辱骂,抨击:condemn or vilify; 不正当的或不合理使用的:wrong or improper use; 过分过量使用的:use excessively");
map.put("abut","邻接,毗邻:adjacent");
map.put("abysmal","极低的,极可怜的:immeasurably low; (程度)很深的,极端的:immeasurably great");
map.put("accede","赞成:approval, consent; 就任,就职:come into an office");
map.put("accelerate","加速:faster; 使提前发生:earlier; 变大,变多:greater");
map.put("accessible","可以达到的:within easy reach; 可以理解的:understood; 能够获得的:get");
map.put("accessory","辅助的,附属的:secondary, supplementary, subordinate; 帮凶:one, wrongdoing");
map.put("accidental","意外发生的,偶然的:unexpectedly; 附带的,不重要的:not being a vital part");
map.put("acclimate","使适应:to change (something) so as to make it suitable");
map.put("accolade","同意,赞赏:approval; 赞扬:praise");
map.put("accommodate","提供所需(例如服务、借贷、寄宿):provide; 改变以适应新情况、新场景:make, suitable;使和谐:free of conflicts");
map.put("accost","以挑衅的形式搭讪:challenging or aggressive way");
map.put("accrete","逐渐增长:grow, gradually");
map.put("accumulate","逐渐增长:increase gradually");
map.put("acerbic","(心情、心境或者语调)尖酸的:wit, cause hurt feelings");
map.put("acme","顶点,极点:highest; 最佳典范:most perfect type");
map.put("acquiesce","勉强同意;默许:accept, tacitly or passively");
map.put("acrid","辛辣的,刺鼻的:harsh, taste, odor; 刻薄的:wit, cause hurt feelings");
map.put("acrimonious","刻薄的,充满仇恨的:deep-seated resentment");
map.put("acumen","不同寻常的洞察力和鉴别力:exceptional discernment and judgment");
map.put("acute","敏锐的:keen discernment; 严重的,急性的:immediate attention; (程度、影响)极强的:extreme");
map.put("adamant","固执的,不可动摇的:unshakable, unyielding, inflexible");
map.put("adapt","修改,使(适应):modify");
map.put("addict","沉溺,上瘾:surrender, obsessively; 对某事上瘾的人:habitual liking");
map.put("adhere","依附,粘着:stick; 服从,遵守:according to the commands; 坚定地支持:steadfast support");
map.put("adjourn","延期,休会:suspend;");
map.put("adjunct","附属物,非必需部分:not essentially a part");
map.put("ad-lib","即兴的:without previous thought or preparation");
map.put("admonish","建议:give advice; 责备:reprove gently");
map.put("adore","喜爱,因···感到愉悦:pleasure; 宠爱:tenderness");
map.put("adulate","极度谄媚:praise too much");
map.put("adulterate","掺杂,加入低等成分:impure, addition");
map.put("adumbrate","部分地或有保留地揭露:disclose; 预示着:give a slight indication");
map.put("adventitious","外来的,后天的,非内在的:not inherent or innate");
map.put("adversary","敌手,对手:resists, enemy");
map.put("advert","引起注意,提到:refer");
map.put("advocate","支持,提倡:support");
map.put("affable","和蔼的,温和的:ease, friendliness");
map.put("affinity","喜欢,倾向:attraction");
map.put("affluent","富裕的:sufficient");
map.put("aggrandize","增加、提高(力量、财富、地位、声誉)等:enhance");
map.put("aggravate","加重,恶化:worse, serious, severe");
map.put("aggregate","集合体:units or parts, associated; 集合,聚焦:collect or gather");
map.put("aggressive","好斗的:attack; 强有力的,强烈的:forcefulness");
map.put("aggrieve","使苦恼,使悲痛:pain, trouble, distress");
map.put("agitate","煽动,激起:arouse; 使不安:trouble the mind, disturb");
map.put("agog","极度感兴趣的:urgent desire or interest");
map.put("agonize","(使)非常痛苦:deep sadness");
map.put("airtight","无瑕疵的:no, flaw; 密封的,不透气的:impermeable to air");
map.put("alacrity","反应迅速,乐意,欣然");
map.put("alibi","不在场的证明,托辞,借口:excuse");
map.put("alienate","疏远,离间:make unfriendly; 转移,变卖(财产或权利):convey or transfer");
map.put("align","使排成一行:line; 调准,校准:adjust");
map.put("allay","减轻:subdue, reduce, intensity or severity");
map.put("allegiance","忠诚:devotion or loyalty");
map.put("alleviate","缓和,减轻:relieve, lessen");
map.put("allude","间接提到:indirectly");
map.put("allure","吸引:attract or delight; 诱惑做(某事)lead, pleasure or advantage");
map.put("ally","盟友,支持者:association; 加入联盟:enter");
map.put("aloft","在空中:in flight");
map.put("aloof","孤高的,不合群的:distant");
map.put("altruism","利他主义:unselfish");
map.put("amalgamate","合并,混合:combine, unified, unite");
map.put("ambiguous","有多种理解方式的,不确定的:more than one, doubt, uncertain");
map.put("amble","漫步,闲逛:walk slowly, leisurely, stroll");
map.put("ambrosial","(食物)特别美味的,香的:extremely pleasing");
map.put("ameliorate","改善,改进:become better, improve");
map.put("amenable","顺从的,服从的:yield, submit");
map.put("amenity","(环境、设备等的)舒适,人性化:comfort; 融洽,和谐:pleasant, agreeable");
map.put("amiable","好脾气,友好易相处的:friendly");
map.put("amicable","友善的:friendly, amiable");
map.put("amity","友好关系,亲善和睦:friendship, friendly");
map.put("amorphous","无固定形状的:definite, shapeless; 不可归类的:unclassifiable");
map.put("analgesic","镇痛剂:medication, reduce, eliminates pain");
map.put("anarchist","反抗权威的人:rebels against any authority");
map.put("anathema","诅咒:curse");
map.put("ancillary","次要的:secondary importance;辅助的,补充的:auxiliary, supplementary");
map.put("anecdote","短小有趣的故事:short narrative, interesting, amusing");
map.put("anemic","缺乏力量、活力、精神的:lacking force");
map.put("anesthetic","止痛剂:relieves pain; 无感觉的,麻木的:lacking awareness or sensitivity");
map.put("animate","活的:有活力的:life; 使有活力,支持:high-spirited energy; 使行动,驱使:action; 使活灵活现,使栩栩如生:lifelike movement");
map.put("animus","敌意:spiteful, malevolent, enmity");
map.put("annoy","不断烦扰:disturb, repeated");
map.put("annul","宣告无效,取消:legally invalid; 抵消:balance, ineffective");
map.put("anomalous","不普通的,不平常的:out, ordinary; 反常的,不正常的:departing");
map.put("anonymous","匿名的:not named, identified; 无特色的:lacking individuality");
map.put("antagonize","与...敌对,反对:opposition, counteract; 激怒:incur, provoke, hostility");
map.put("antediluvian","非常古老的,过时的:extremely old, antiquated; 保守的人:old-fashioned");
map.put("anterior","前面的:before");
map.put("antic","滑稽可笑的:clownish");
map.put("apathy","冷漠,缺乏情感:lack, feeling, emotion; 缺乏兴趣,不关心:lack, interest, concern");
map.put("aphorism","格言,警句:short witty");
map.put("apocalyptic","预言的,启示的:prophetic; 重要的,转折点的:major turning");
map.put("apocryphal","假的:doubtful authenticity, spurious");
map.put("apoplectic","极度愤怒的:extremely angry, furious");
map.put("apostasy","放弃宗教信仰:renunciation, faith; 变节,背叛:abandonment, previous loyalty");
map.put("appall","使惊恐:consternation");
map.put("appeal","申请:application; 起诉:charge, crime, accuse");
map.put("appealing","吸引人的:attractive, inviting");
map.put("applause","鼓掌,认可:approval");
map.put("apposite","相关的,合适的:pertinent, appropriate");
map.put("appreciable","可感知的,明显的:perceptible");
map.put("apprehension","忧虑,恐惧:suspicion, fear; 逮捕:arrestment; 理解:understand");
map.put("apprise","通知,告知:inform");
map.put("approbation","同意:approval");
map.put("appropriate","私自挪用:take possession, without permission; 适当的:suitable, fitting");
map.put("apropos","相关的:relevant; 关于,有关:having to do with");
map.put("apt","恰当的,合适的:suitable, appropriate; 有倾向的,可能的:tendency, likely; 聪明的:intelligent, responsive");
map.put("archaic","过时的,久远的:no, current, antiquated");
map.put("archetype","典范,榜样:ideal; 先驱,鼻祖:earlier; 原型:copies");
map.put("ardor","狂热:strong enthusiasm, devotion, zeal");
map.put("arduous","难以做到的,费劲的:difficult");
map.put("argot","隐语,黑话,行话:specialized, particular");
map.put("arrest","使不活跃:inactive; 停止:stopping, standstill; 逮捕:keep; 吸引(某人)注意力:hold, attention");
map.put("arresting","吸引人的:attracting, striking");
map.put("arrhythmic","不规律的:lacking, regularity");
map.put("arrogance","傲慢,自大:overbearing pride");
map.put("articulate","清晰地表达:clearly, distinctly; 表达清晰的:able, express, clearly");
map.put("ascendant","有影响力的,主宰的:dominant, influence, superior; 上升的:upward, rising");
map.put("ascetic","苦行的,克己的,禁欲的:self-denial; 禁欲者:person, self-discipline");
map.put("aseptic","消毒的,无菌的:preventing infection; 缺乏活力的:lacking vitality; 冷漠的:lacking emotion");
map.put("askew","不成直线的(地),歪的(地):awry");
map.put("aspect","外表,容貌:appearance");
map.put("asperity","(举止、性情)粗暴:roughness; (环境)艰苦:rigor, severity");
map.put("aspersion","诽谤,中伤:harm, reputation");
map.put("aspirant","有抱负者,有野心者:aspires; 想成为···的:seeking");
map.put("assent","同意:agree");
map.put("assert","断言,肯定地说出:declare, forcefully, aggressively");
map.put("assertive","自信的:bold, assertion, self-assured");
map.put("assess","评估(重要性、尺寸、价值等):determine; 征收费用(如罚款):charge, penalty");
map.put("assiduous","勤勉的,专心仔细的:careful");
map.put("assuage","缓和,减轻:lessen, intensity; 平息,抚慰:pacify, calm; 使满足:satisfying");
map.put("astounding","令人吃惊的,出乎意料的:astonishment, amazement");
map.put("astute","机敏的,有洞察力的:shrewdness, perspicacity");
map.put("asunder","分离成多部分或多片地:separate parts, pieces; 分离地:apart");
map.put("asylum","收容所,保护所:refuge, protection");
map.put("asymmetrical","不平衡的,不对称的:no balance, symmetry");
map.put("atone","赎罪,弥补:amends");
map.put("atrocious","极坏的,极其残忍的:extremely wicked; 让人极为不满的:extremely unsatisfactory");
map.put("attenuate","降低(数量、力量、价值):lessen");
map.put("audacious","大胆的,(但往往)愚勇的:fearlessly, recklessly; 蔑视(法律、礼节)的,无礼的:contemptuous of law; 乐于冒险的:take risks; 大胆创新的:verve");
map.put("augur","预言家:predicts; 出现好兆头:signs of, successful outcome; 预言:tell, beforehand");
map.put("authentic","真实的,非仿造的:exactly; 准确的,相符的:original");
map.put("authority","(某领域的)权威人士:a high level of knowledge; 管辖权,控制:lawful control; 影响力:power to direct; (管束他人的)权力:right, control others; 根据,理由:warrant");
map.put("autocracy","独裁政府:government, unlimited power");
map.put("autonomy","政治上的独立:self-governing; 自我主导的自由,(尤其是)精神独立:independence");
map.put("avarice","贪财,贪婪:insatiable");
map.put("aver","声称为真:state, forcefully; (态度强硬而明确地)声明:state clearly");
map.put("aversion","非常讨厌,极厌恶:dislike; 令人厌恶的事物:someone that is hated");
map.put("avid","急切渴望的:enthusiasm; 贪婪(钱财)的:eager, for material possessions");
map.put("awash","被淹没的:by water; (如洪水般)泛滥的:filled, covered, overrun");
map.put("awe","敬畏:dread, veneration, wonder");
map.put("awkward","缺乏灵活性和技巧的:lacking dexterity; (处理问题)缺乏手段和智谋的:a lack of skill and tact; 臃肿笨拙的,不优雅的:lacking ease; 令人尴尬的:embarrassment; (因过大或过重设计问题)难以操作的:difficult to use");
map.put("awning","雨篷,遮阳篷:shelter");
map.put("awry","弯曲的,扭曲的:turned, twisted; 走样的(地),出差错的(地):off, course");
map.put("axiomatic","公理的:axiom; 不言自明的:self-evident");
map.put("babble","发出含糊无意义的嘟囔声,胡乱说:utter, meaningless; 闲聊:rambling conversation");
map.put("backhanded","间接的,含沙射影的,虚情假意的:indirect");
map.put("badger","不断纠缠或骚扰:harass, persistently");
map.put("badinage","打趣,善意的玩笑:banter");
map.put("bait","逗弄,激怒:persecute, exasperate; 引诱:lead away; 诱饵:something, luring");
map.put("bale","痛苦,悲哀:sorrow");
map.put("baleful","有害的:harmful; 凶兆的,凶恶的:evil; 致命的:causing death");
map.put("balk","阻碍:check, obstacle; 不愿接受,拒绝:unwillingness");
map.put("balky","不服管束的,倔强的:refusing");
map.put("ballad","(由简单诗节和叠句组成的)民歌:poem");
map.put("balloon","迅速增加:increase");
map.put("balm","香油,止痛膏,安慰物:sweet-smelling oil, soothe; 香气:pleasant smell");
map.put("banal","非原创的,陈腐的:trite");
map.put("bane","祸根:ruin; 有害物质:kill or injure a living thing");
map.put("banish","驱逐出境:leave, country; 赶出:force out");
map.put("banter","幽默、打趣的(地)谈话:humored");
map.put("barb","尖锐而严厉的批评:critical");
map.put("barbarous","野蛮的,凶残的:mercilessly; 未开化的:uncivilized");
map.put("barefaced","公然的,厚颜无耻的:brazen");
map.put("bargain","协议:agreement; 讨价还价:negotiate");
map.put("baroque","装饰华丽的,过分雕琢的,复杂的:extravagance, complexity, flamboyance; (程度上)过分的:beyond, limit");
map.put("barrage","弹幕:curtain; 有压倒之势的、集中倾泻的(如言语):overwhelming, outpouring; (同时)袭来:attack with, overwhelming outpouring");
map.put("barren","不育的:incapable, producing; 不产生结果的,无效的:no results; 贫瘠的:deficient; 极度匮乏的:lacking");
map.put("barricade","障碍物:obstruction, rampart; 用障碍物阻止通过:prevent access");
map.put("barter","以物换物:trade, without");
map.put("batch","一批次的量:unit; 一小群人:small number of persons");
map.put("bathetic","平凡的,陈腐的:commonplaceness");
map.put("bawdy","下流的,猥亵的:indecent");
map.put("bedeck","装饰,点缀:make more attractive");
map.put("belabor","(当众)严厉批评:criticize; 就···作过度的说明,喋喋不休:explain, excessively");
map.put("beleaguer","包围,围攻:to surround; 使困扰,使烦恼,使消沉:trouble");
map.put("belie","错误的描述,误述:picture falsely; 证明···为假:false, wrong; 掩饰:shut off from view; 与···相对立,与···相矛盾:counter");
map.put("bellwether","领导者,带头人:lead");
map.put("beneficent","仁慈的,好慈善的:charity; (对个人或社会)有益的:contributing");
map.put("benign","好心的,仁慈的:kindness, gentleness; 无害的:not causing");
map.put("berate","(长时间)严厉指责:scold, vehemently, at length");
map.put("beseech","(急切地)恳求:beg");
map.put("besmirch","弄脏,弄污:make dirty; 诽谤,玷污:detract from the honor");
map.put("bifurcate","(使)分成两支:two branches");
map.put("bigot","固执己见者,有偏见的人:obstinately devoted");
map.put("bland","味道平淡的,不刺激的:soothing; 无趣的:dull; 温和的,和蔼的:not harsh");
map.put("blandishment","甜言蜜语,讨某人好话:coax, cajole");
map.put("blasé","(过度放纵之后)厌倦享乐的,腻厌的:apathetic");
map.put("blast","爆炸:explosion; 一阵猛烈的强风:gust; 巨响:loud, sound; 炸裂,爆破:cause to break open;斥责,抨击:criticize harshly");
map.put("blatant","大声喧哗的:noisy; (让人生厌地)惹人注目的:noticeable");
map.put("blazon","使知名:make known openly; 修饰,装扮:make more attractive");
map.put("blemish","缺点,污点:imperfection; 损害,玷污:reduce");
map.put("blight","(使)枯萎:affect; 损害:impair");
map.put("bliss","极度快乐:ecstasy; 极乐世界:place of perfect happiness");
map.put("blithe","愉快高兴的:happy lighthearted; 无忧无虑的,漫不经心的:freedom from worries");
map.put("blueprint","蓝图,详细计划:architects’ plans; 事先计划:work out, in advance");
map.put("blunder","过失:error, mistake; 在···方面犯了很愚蠢且通常很严重的错误,糟蹋:make a stupid, error; 蹒跚:unsteadily");
map.put("blunt","使变钝:less sharp; 减弱(力度等):weaken in strength or feeling; 直率的:direct, brief");
map.put("blur","(使)变得朦胧,(使)变得不清楚:vague; 使不易理解:unclear to the understanding");
map.put("blurt","突然说出,冲动地说:abruptly");
map.put("bluster","狂妄自大地大声说:loudly arrogant; 大声吹嘘,恐吓:loudly; 喧闹的状态:noisy");
map.put("boggle","(因为怀疑、恐惧)犹豫:hesitate; 笨拙地做:unskillful way");
map.put("boisterous","喧嚷的,吵闹的:noisily");
map.put("bolster","支撑(物):provide support;鼓励、使有精力:boost");
map.put("bombast","夸大的言辞:pompous");
map.put("bonhomie","温和,和蔼:geniality");
map.put("boo","嘘(以表示不满或嘲笑):contempt, scorn, disapproval");
map.put("boon","恩惠,福利:benefit; 喜欢集体活动的:enjoy the company of others");
map.put("boor","粗鲁的人,不敏感的人:rude");
map.put("bootless","无用的:useless");
map.put("bound","界限:beyond which a person or thing cannot go; 给···设置界限:set limits; 投入的,坚定的:fully committed");
map.put("boycott","联合抵制,拒绝参与:concerted refusal");
map.put("bracing","令人振奋的,给人带来活力的:giving strength");
map.put("brake","刹车:less rapid");
map.put("brash","愚勇的,鲁莽的:foolishly adventurous; 缺乏判断力的,不明智的:poor judgment");
map.put("brassy","厚脸皮的,不知羞耻的:rude boldness; 华而不实地炫耀:showy");
map.put("bravado","假装勇敢:pretense; 虚张声势:swaggering");
map.put("bravura","优秀演技(的):brilliant");
map.put("brazen","蛮横大胆的,厚颜无耻的:contemptuous boldness; 大胆自信地去面对或从事:bold self-assurance");
map.put("breach","(对伦理、法律准则的)破坏:breaking, moral or legal code; 违背:fail to keep");
map.put("brevity","简短,简洁:shortness; 精炼:few words");
map.put("bribe","贿赂,收买:give, money");
map.put("bridle","限制");
map.put("brisk","充满生机的,有活力的:activity; (言辞或方式)尖刻辛辣的,刻薄的:keen or sharp");
map.put("bristle","怒不可遏,咆哮:anger; 供应充足,充满:copiously");
map.put("brittle","易碎的,脆弱的,易坏的:broken; 不热心的,不真心的:lacking in friendliness");
map.put("broach","开启,启封:open; 提出讨论:present");
map.put("bromide","陈词滥调:hackneyed");
map.put("brook","忍受,容许:tolerate; 小溪流:creek");
map.put("browbeat","恐吓:intimidate");
map.put("bruit","(未经证实地)散播(消息):make, the subject of common talk");
map.put("buck","阻止,反对:refuse assent; 转移,交接:shift possession");
map.put("budge","(使)改变立场或态度:alter a position; 停止抵抗,屈服:cease resistance");
map.put("bulge","凸起:protuberant; 比赛中的优势地位:more favorable condition; 暴涨,突增,在数目或数量上突然而且是临时性的增加:sudden, usually temporary increase; 充满:copiously supplied");
map.put("bully","欺凌弱小者:intimidating manner; 最好的,最棒的:best");
map.put("bumptious","专横傲慢的,自以为是的:superiority");
map.put("bungle","办遭,失败:work clumsily");
map.put("buoy","使充满勇气和力量,使振作:courage or strength");
map.put("buoyant","有浮力的:floating; 心情好的:good mood or disposition");
map.put("burgeon","迅速成长扩大,蓬勃发展:grow, rapidly, flourish");
map.put("burlesque","夸张滑稽地模仿以嘲弄他人的文学艺术作品,恶搞:make fun of");
map.put("burnish","擦亮,磨光:make smooth or glossy");
map.put("buttress","扶墙:supporting, wall building; 为···提供支撑的证据或者信息:provide evidence or information for");
map.put("byzantine","错综复杂的:complicated, secretive, interrelated");
map.put("cache","囤货,藏货:supply; 隐藏:hiding");
map.put("cachet","同意:approval; 声望:prestige");
map.put("cacophony","刺耳的声音:inharmonious sound");
map.put("cadge","乞讨,乞求:beg");
map.put("cajole","哄骗:wheedle");
map.put("calcify","使僵化:inflexible, unchangeable");
map.put("calibrate","调整,使标准化:standardize; (根据标准)精确测量:measure precisely");
map.put("calligraphy","(优美的)书法:elegant handwriting");
map.put("callous","无同情心的,冷漠的:unfeeling");
map.put("callow","不老练的,不成熟的:lacking, experience");
map.put("calumniate","诽谤,造谣,中伤:false statements");
map.put("camaraderie","友情:friendly");
map.put("cameo","栩栩如生的描绘,简洁生动的描述或刻画:brief, vivid portrayal; 客串:brief but dramatic appearance");
map.put("camouflage","伪装,伪装手段:deceive, hide");
map.put("canard","谣传,误传:misleading");
map.put("candor","坦率,直率,诚挚:honest, sincere");
map.put("canon","准则,标准:standard, criterion; 真经,正典:authentic");
map.put("canvass","仔细检查,详尽讨论:examine carefully or discuss thoroughly; 游说,去(一个地区)的各处或找到(个人)来拉选票或订单:solicits votes or orders");
map.put("capitulate","投降,默许:give all resistance");
map.put("caprice","一时冲动的决定:impulsive change; 反复无常,善变:change, impulsively");
map.put("captivate","吸引:attract");
map.put("careworn","忧心忡忡的,焦虑的:grief, anxiety");
map.put("cardinal","主要的,非常重要的:foremost importance, paramount");
map.put("caricature","用讽刺歪曲等手法的夸张,漫画,讽刺画:exaggeration; 嘲笑性模仿或夸张:copy, exaggerate");
map.put("carnal","肉体的,物质的:physical; 世俗的:worldly");
map.put("carouse","畅饮,狂欢作乐:drink, freely");
map.put("carp","对小事吹毛求疵,挑剔,表现不满:peevish criticism, objections, express dissatisfaction, tiresomely");
map.put("carve","雕刻:three-dimensional representation; (通过长期不懈努力)开创,开拓:produce or bring about");
map.put("cast","演员,演员阵容:a set of characters; 选派(演员):assign, actor; 提出:give off; 抛弃:get rid of");
map.put("castigate","强烈(公开)指责:criticize; 惩罚:penalty");
map.put("catalyze","成为···的导火索,导致:be the cause of");
map.put("catastrophe","大灾难:tragedy; 彻底的失败:utter failure");
map.put("categorical","没有例外的,无条件限制的,绝对的:without, qualification, absolute");
map.put("catholic","普遍的,包容的:not limited or specialized");
map.put("caustic","腐蚀性的:destroying, eating away; 挖苦讽刺的,刻薄的:incisive sarcasm");
map.put("caveat","警告,告诫:warning of a specific limitation");
map.put("cavil","挑剔,吹毛求疵:quibble");
map.put("cavort","欢快地蹦跳或行走,雀跃:sprightly");
map.put("cede","(根据条约)放弃,割让:surrender possession of");
map.put("cement","粘合,粘合剂:uniting, binding");
map.put("censor","审查并删除不良的东西:examine, delete");
map.put("censorious","挑剔指责的:critical");
map.put("censure","公开表示反对,谴责:public, formal disapproval");
map.put("census","人口普查:survey, population");
map.put("cessation","终止,暂停:stopping of a process");
map.put("chaff","开玩笑:make jokes");
map.put("chagrin","沮丧,懊恼:mind");
map.put("chameleon","变色龙,善变的人:changes or adopts opinions");
map.put("champion","支持:support");
map.put("chaos","混乱:disorder, confusion");
map.put("charade","装模作样:intended to deceive; 动作字谜:represented in pantomime");
map.put("charlatan","骗子,装懂的人:fraudulent");
map.put("chary","非常谨慎的:cautious");
map.put("chase","镂雕(金属)以装饰:decorate; 驱赶:force out");
map.put("chasm","分歧,(意见、利益或忠诚上)明显差异:pronounced difference");
map.put("chauvinistic","盲目爱国的:excessive favoritism");
map.put("check","使突然停止,阻止:arrest, abruptly; 同意,一致:agreement");
map.put("cherubic","天使般可爱的:rosy");
map.put("chicanery","诡计多端的,欺骗:deception");
map.put("chide","责备:scold mildly");
map.put("choleric","易怒的,暴躁的:angered; 生气的:anger, irate");
map.put("chord","与···和谐一致,符合:accord, agree");
map.put("chromatic","彩色的:colors");
map.put("chronic","经常发生的,复发的:frequent recurrence;习惯性的,不可能改变的:not likely, change");
map.put("churl","粗野的人:rude, boorish; 吝啬鬼:mean, stingy");
map.put("cipher","无影响或无价值的人:no importance, influence; 计算(价值):determine, mathematical operations; 密码:conceal");
map.put("circuitous","迂回的,不直接的:not, forthright, direct; 冗长的:more, necessary");
map.put("circumlocution","绕圈子说话:unnecessarily, indirect, evasion; 冗长:too many");
map.put("circumscribe","限制:limit; 包围,围绕:surround");
map.put("circumspect","谨慎的,小心的:careful");
map.put("circumvent","躲避,不遵从:avoid, comply");
map.put("civility","彬彬有礼:courteous, politeness");
map.put("claim","要求(权利):ask for, right; 断言:state as a fact; 剥夺生命:deprive, life; 权利:right");
map.put("clandestine","隐藏的,秘密的:secret, illicit, improper");
map.put("clarion","清楚响亮的:loud, clear");
map.put("clarity","清晰,清楚:clear, lucidity; 清澈透明:easily seen through");
map.put("clasp","紧握:holding");
map.put("clement","宽容的,善良的:tolerant, kind; 气候温和的:neither, high, low");
map.put("cliché","陈词滥调(的):hackneyed");
map.put("clog","阻碍物:something, movement, progress difficult; 阻碍:difficulty; 堵塞:prevent, through");
map.put("clot","密集的一群:a number of things, a unit; 堵塞:prevent, through, filling with something; 凝结:jelly");
map.put("cloudburst","突然的一场暴雨:sudden copious rainfall");
map.put("clout","权力,影响力:influence");
map.put("cloying","甜得发腻的,感情用事的:sweet, sentimental");
map.put("clumsy","笨拙的:lacking, nimbleness, lack, skill; 不文雅的:lacking, grace, inability, graceful; 不精致的:roughly");
map.put("coagulate","(使)凝结,(使)变稠:coherent, clot");
map.put("coalesce","合并,融合:whole, fuse");
map.put("coax","哄骗:pleading, flattery, cajole");
map.put("coda","终曲:concluding passage");
map.put("coerce","(以武力)强制:force, threat");
map.put("coeval","同时代的,同龄的:equal age");
map.put("cogent","令人信服的:convincing; 相关的:pertinent");
map.put("cognizant","知道的,意识到的:aware");
map.put("collapse","突然倒塌或收缩:fall, shrink; 完全耗尽体力:depletion, energy, strength; 失败:unsuccessful");
map.put("collude","串通,共谋(做坏事):together secretly, fraudulent, deceitful, conspire");
map.put("colossal","巨大的:size, degree, immense");
map.put("coltish","不守纪律的:not subjected, discipline; 爱开玩笑的:joking, teasing");
map.put("coma","昏迷,深度无知觉:profound unconsciousness; 迟钝,冷漠:sluggishness");
map.put("combustible","可燃的:igniting; 容易激动的:easily excited");
map.put("comely","漂亮的,吸引人的:pleasing, wholesome, attractive");
map.put("comity","友好,社会和谐:friendly, harmony");
map.put("commencement","开始:beginning; 毕业典礼:conferring");
map.put("commend","赞扬:approbation, praise; 委托保管:entrust; 推荐:recommend");
map.put("commensurate","同样大小的:equal; 相称的,相当的:proportionate");
map.put("commingle","充分混合:blend");
map.put("commitment","致力,投入:obligated, impelled; 确信:belief; 承诺,表态:revealing one’s view");
map.put("committed","忠诚的,忠实的:loyal");
map.put("commodious","宽敞舒适的:spacious");
map.put("commonsensical","符合常识的,有依据的:common sense, sound");
map.put("commotion","骚乱:disturbance");
map.put("compendium","摘要:summary, abstract; 目录,各种各样的列表或集合:list, collection");
map.put("complacency","自满,无忧患意识:self-satisfaction, unawareness of trouble");
map.put("complaisance","愿意顺从,讨好,彬彬有礼:comply, affability");
map.put("compliant","顺从的:submissive");
map.put("compliment","称赞,恭维:praise; 敬意,免费赠送的礼物:respectful");
map.put("comply","遵从:conform, submit");
map.put("compose","使镇定:calm; 组成,构成:form, constitute");
map.put("compound","混合物:something composed;混合的:consisting;混合:together;扩大,增多:greater;和解:agree");
map.put("compress","压缩(体积):reduce size, volume");
map.put("compromise","妥协:concessions;使危险:danger");
map.put("compunction","焦虑,内疚,良心不安:anxiety, guilt");
map.put("concatenate","连结,混合:bring together");
map.put("concave","凹的:curved");
map.put("conceal","隐藏,隐瞒:prevent disclosure");
map.put("concede","承认:grant;停止抵抗:cease resistance");
map.put("concentrate","集中:focus;浓缩:less dilute;聚集:together");
map.put("concerted","共同完成的:accomplished together");
map.put("conciliate","平息,抚慰:lessen the anger;调解:compatible, reconcile");
map.put("concise","简洁的:brevity");
map.put("concord","一致,和睦:harmony, agreement");
map.put("concur","同意:agreement;同一时间发生、存在:same time;团结合作:joint");
map.put("condescending","摆出高人一等的姿态的:patronizingly superior");
map.put("condign","应得的,恰当的:deserved");
map.put("condole","表达同情:sympathetic");
map.put("condone","宽恕;忽视:forgive");
map.put("conducive","有益的,有促进作用的:promote");
map.put("confident","有信心的,自信的:assurance, self-reliance");
map.put("confine","禁闭,监禁:imprison;限制:limits");
map.put("confluence","汇合,混合:together same");
map.put("confront","直接对抗,直面:face to face");
map.put("confound","使困惑:uncertainty;无法区分,混淆:fail to differentiate;证明为假,证伪:false");
map.put("congeal","凝固,固化:solid state");
map.put("congenial","和善的,友好的:agreement;令人愉悦的:giving pleasure");
map.put("congruent","和谐一致的:in agreement;全等的:coinciding");
map.put("conjecture","揣测的结果:conclusion by surmise;猜测,估计(大小、数量等):decide without actual measurement;(没有依据地)认为:form an opinion");
map.put("connive","暗中合作,共谋:cooperate secretly;纵容:假装忽视或并未采取措施阻止错误:pretend ignorance ought to oppose");
map.put("connoisseur","鉴赏家(尤指艺术领域):with discrimination, appreciation;专家:high level of knowledge");
map.put("conscientious","仔细的,一丝不苟的:involving great care;有良心的,正直的:governed by conscience");
map.put("consensus","一致同意:general agreement");
map.put("consequence","结果:produced by cause;重要性,价值:importance");
map.put("conservative","守旧的,不愿改变的:oppose change;不招摇的,低调的:not showy;谨慎小心的:close attentiveness");
map.put("conservatory","温室:greenhouse;艺术学院:school arts");
map.put("conserve","保存,避免浪费:keep avoid wasteful");
map.put("considerable","(数量上)可观(而值得注意)的:large;值得考虑的,重要的:significant");
map.put("console","安慰,慰藉:alleviate, comfort");
map.put("consolidate","使联合,统一:join together;加固,使安全:make firm");
map.put("consonant","和谐一致的:in agreement");
map.put("conspicuous","显而易见的;吸引人的:obvious");
map.put("conspire","合谋,密谋:plan secretly");
map.put("constitute","指派,任命:appoint;构成:make up");
map.put("constrain","限制:restriction;使人屈服于(压力、感情)等:give in to pressure");
map.put("constringe","使紧缩:draw together");
map.put("construct","建造,建立:form;创造,相出:create imagination");
map.put("consummate","专业的,有造诣的:extremely skilled;无纰漏的,完美的:perfect;最高档次的,最大规模的:highest degree");
map.put("contagious","传染的:communicate;(情绪等)唤起共鸣的:exciting a similar feeling");
map.put("contaminate","污染,感染:stain");
map.put("content","使满足:appease;主题:major subject of interest;内容,内涵:idea that is conveyed");
map.put("contentious","引起争论的:argumentative;好争论的,好战的:tendency quarrels");
map.put("contiguous","接壤的,相邻的:sharing an edge");
map.put("contort","扭曲:twist");
map.put("contract","契约,合同:binding agreement;收缩:reduce size;感染疾病:become affected");
map.put("contravene","违反,反对:violate, oppose");
map.put("contrite","(因为有罪孽或过错而感到)后悔悲痛的:showing remorse");
map.put("contumacious","不服从的,倔强的:disobedient");
map.put("conundrum","无法解决的问题,迷:insoluble, dilemma");
map.put("convalesce","渐渐康复,渐愈:recover gradually");
map.put("convenience","便利,方便:fitness suitability");
map.put("convention","常规,习俗:agreement, acceptance;公约,协议:agreement;大会,集会:coming together");
map.put("converge","汇集,交汇于一点:move toward one");
map.put("conversant","熟悉的:familiar");
map.put("convert","被改变宗教信仰的人:converted;使改变信仰:bring over from brief;改变,转化:alter");
map.put("convex","凸起的:curves outward");
map.put("convey","运输:transport;传递,交流:communicate");
map.put("conviction","深信,确信:being convinced;证明有罪:proved guilty");
map.put("convoke","召集开会:bring together");
map.put("convoluted","复杂的,费解的:complicated");
map.put("convulsion","痉挛(强烈的、无法控制的肌肉收缩):involuntary contraction;骚乱:disturbance");
map.put("coop","监禁,困于…之中:confine");
map.put("copious","丰富的,大量的:abundant");
map.put("coquette","调情的女子:flirt;调情,不认真对待:playfully");
map.put("cordon","警戒线:line preventing;围成一道防线:form cordon");
map.put("cornucopia","大量:overflowing");
map.put("coronation","加冕,加冕礼:crowning");
map.put("corporeal","肉体的:not spiritual;有形的,实体的:not immaterial");
map.put("corroborate","用证据或权威证实:support with evidence;为…提供证据,支持:provide evidence");
map.put("corrosive","腐蚀性的:destroy slowly;讽刺性的:sarcastic;");
map.put("corrugated","褶皱的:folds");
map.put("cosmopolitan","有世界性眼光的,包容的:worldwide");
map.put("cosset","宠爱:pamper");
map.put("countenance","容忍:put up with;赞成,推崇:favorable opinion;沉着,冷静:evenness");
map.put("counterfeit","仿制的,假冒的:imitation;仿制:fraudulent replica;伪装成:false appearance");
map.put("countermand","取消,撤销:revoke");
map.put("court","追求,献殷勤:seek affections");
map.put("covert","隐蔽的,秘密的:not shown;隐秘庇护所:avoid others");
map.put("covetous","贪婪的,渴求财富的:inordinate desire");
map.put("cow","恐吓,威胁:frighten");
map.put("cowardice","懦弱,不坚定:lack courage");
map.put("cower","畏缩:cringe");
map.put("cozen","诱骗:mislead");
map.put("cramped","狭小的,狭窄的:small");
map.put("crass","粗俗的,愚钝的:unrefined");
map.put("crave","热望:intense desire");
map.put("craven","非常懦弱的,因胆小而遭人鄙视的:lacking courage");
map.put("crease","折痕:folding");
map.put("credence","坚信:firm brief");
map.put("credulous","轻信的,易受骗的:gullible");
map.put("creek","小溪,小河:smaller");
map.put("creep","缓慢地行进:slowly;匍匐前进:body close to the ground");
map.put("crescendo","(声音)渐强:gradual increase;(渐强之后到达的)顶峰:peak");
map.put("crest","顶部,浪尖,山顶");
map.put("crestfallen","垂头丧气的,沮丧的:depressed");
map.put("cronyism","任人唯亲的,对好朋友的偏袒:favoritism friends");
map.put("crook","使弯曲:away from a straight line");
map.put("croon","低声歌唱或说话:murmuring");
map.put("crouch","蹲伏:lower stance");
map.put("crucial","非常重要的,决定性的:extremely significant");
map.put("crumple","弄皱:bend;(因外力挤压而)垮塌:fall down");
map.put("crutch","支撑,支柱:supports");
map.put("crux","中点,关键点:critical point");
map.put("cryptic","秘密的:secret;含义模糊的:ambiguous meaning;超出理解能力的:beyond one’s powers to know");
map.put("culpable","该受谴责的,有罪的:deserving blame");
map.put("cultivate","提升,加强:improve;种植,培养:promote growth");
map.put("cumbersome","笨重的,难处理的:difficult to handle");
map.put("cunning","狡猾的:artful deceptiveness;(手工)灵巧的:skillful;欺诈,欺骗:practice of misleading");
map.put("curmudgeon","脾气坏的、爱抱怨的人:irritable and complaining");
map.put("cursory","匆忙的,不注意细节的:excessive or careless speed");
map.put("curt","言词简略的,直接(以至显得粗鲁)的:direct, brief, and potentially rude;言简意赅的:convey much information");
map.put("curtail","缩短,削减:less in extent or duration");
map.put("cynic","愤世嫉俗者:selfishness");
map.put("dabble","涉猎,对…浅尝辄止:superficially");
map.put("daft","神经错乱的:abnormal, sick state of mind;不明智的:lack of good sense or judgment");
map.put("dais","主席台,嘉宾席:raised platform");
map.put("dally","虚度时光:doing nothing;玩乐:amusement;慢吞吞,磨磨蹭蹭:slowly");
map.put("damper","抑制因素:restrains, depresses");
map.put("dandy","纨绔子弟,爱打扮的人:appearance;最佳的,最好的:very best kind");
map.put("dank","阴湿的:wet");
map.put("dapper","衣冠整洁的:strikingly neat and trim");
map.put("dappled","有斑点的,花的:marked with small spots, mottled, spotted;色彩斑斓的:two or more colors");
map.put("daredevil","大胆鲁莽的(人):foolishly;不考虑后果的:a lack of concern for the consequence");
map.put("dart","突然移动,猛冲,狂奔:suddenly;公开侮辱:intended to hurt another’s feelings");
map.put("daunt","使胆怯,吓到:to lessen the courage");
map.put("dawdle","闲荡,虚度光阴:spend time idly;拖拖拉拉:slowly");
map.put("deadpan","无趣的,无生气的,不活泼的:impassively");
map.put("dearth","供应不足:inadequate");
map.put("debacle","溃败:complete failure");
map.put("debark","(使)下船(飞机、车等);卸(客、货):unload, from a ship or an airplane");
map.put("debase","贬低,贬损:lower standing");
map.put("debilitate","使衰弱:impair strength");
map.put("debris","废墟:discarded, useless material");
map.put("debunk","揭穿…的真面目:true nature;证明…为假:false");
map.put("debut","初次登台,出道:first appearance");
map.put("decadence","衰落,颓废:deterioration, decline");
map.put("decant","轻轻倒出:pour off without disturbing");
map.put("decipher","破译:interpret;对…有清晰的想法,理解,解读:clear idea");
map.put("decode","解码:change into ordinary language;对…有清晰的想法,理解,解读:clear idea");
map.put("decorum","礼仪,得体:appropriateness, propriety");
map.put("decrepit","虚弱的,衰老的,破旧的:weakened");
map.put("default","不履行义务,玩忽职守:nonperformance");
map.put("defer","推迟,延期:postpone;遵从:respect");
map.put("deference","尊崇,顺从:yield to");
map.put("deficiency","缺乏,不足:inadequate");
map.put("defile","(山间)小道:a narrow passage;亵渎:treat with great disrespect;使腐坏,污损:make unfit for use");
map.put("deft","灵巧的,熟练的:skill");
map.put("defuse","抚慰,减轻:make less tense");
map.put("defy","反抗,违抗:go against");
map.put("dehydrate","去除水分,使干燥:remove water;使失去活力:deprive of vitality");
map.put("deify","把…当作神来崇拜:offer honor or respect to;过分喜爱:love or admire;尊敬,尊崇:high status or value to");
map.put("deject","使沮丧:lower the spirits, dishearten");
map.put("deleterious","有害的:harmful");
map.put("deliberate","深思熟虑的:careful");
map.put("delicacy","(外貌、结构等)精致,极度兴奋,发狂:fineness");
map.put("delirium","精神错乱;极度兴奋,发狂:mental disturbance confused");
map.put("delusion","错觉,妄想:false");
map.put("deluge","大暴雨:drenching rain;大量:great flow");
map.put("delve","探究,钻研:detailed search for information");
map.put("demagogue","蛊惑民心的政客:leader false claims");
map.put("demanding","难以取悦的,难满足的:satisfied;费时间花心思的:requiring careful attention");
map.put("demolition","破坏,毁坏:destroying");
map.put("demonstrate","(通过证据)证明,表明:make clear using examples;使明白易懂:make plain or understandable;表现,表露:make known");
map.put("demoralize","使士气低落:dishearten;贬低,使堕落:lower in character");
map.put("demotic","通俗的,大众化的:common");
map.put("demur","表示异议,反对:opposition, objection;犹豫:doubt acceptability qualm");
map.put("denigrate","诋毁,污蔑:scornfully");
map.put("denouement","(小说的)结局:final resolution");
map.put("denounce","公开指责:public or formal disapproval;宣称…道德上错误、可耻:morally wrong");
map.put("dent","凹陷,凹痕:depression;(数量,程度上)削弱:make smaller");
map.put("denude","脱去,使赤裸:bare");
map.put("deplete","耗尽,使衰竭:make complete use");
map.put("deplore","哀悼:sorrow");
map.put("deploy","(有目的地)展开;调度,部署:spread out");
map.put("deportation","放逐:removal from a country");
map.put("depose","宣誓作证:testify;废黜,罢免:remove from a throne;摆放:arrange");
map.put("deposit","自然积累,沉积,矿藏:accumulation;存钱:put in account");
map.put("depravity","道德败坏:immoral, harmful or offensive");
map.put("deprecate","不喜欢:unfavorable opinion;贬低,轻视:express scornfully;降低…的重要性,使低调:play down");
map.put("depreciate","贬低…的价值:lower value;轻视:lower estimation, esteem");
map.put("depressed","不开心的,情绪不高的,消沉的:unhappiness;生活境况悲催的:healthful environment");
map.put("deprivation","匮乏:privation");
map.put("deracinate","根除:pull out");
map.put("derelict","玩忽职守的,不认真的:lacking duty, carelessly;被社会遗弃的人:social misfit");
map.put("deride","嘲弄,嘲笑:contemptuous mirth");
map.put("derivative","非原创的:originality");
map.put("descend","下降:downward;世代相传:pass by inheritance");
map.put("descendant","后代:deriving directly from");
map.put("desecrate","亵渎,玷污:treat shamefully");
map.put("desiccate","使(食物)脱水以保存,使干燥:drying;使缺乏活力:deprive vitality");
map.put("designate","任命:to pick for a specific position or duty;命名:give a name to");
map.put("despicable","令人鄙视的:loathing and disgust;不荣耀的,不得体的:not honor");
map.put("despise","极其不喜欢的:dislike strongly");
map.put("despotic","专制的,暴虐的:tyrannical");
map.put("desultory","无计划的,无目的的:lacking plan;令人失望的:disappointing");
map.put("detach","使分离:separate");
map.put("detain","拘留,扣留:hold, keep");
map.put("deter","吓住,威慑:prevent, discourage");
map.put("deterioration","恶化,堕落:sinking");
map.put("detour","偏离正常标准:away from standard;改变方向或者路线,绕道:change direction");
map.put("detract","贬低,降低价值:diminish;使分心:draw attention");
map.put("detritus","废品,碎屑,遗骸:product disintegration, destruction, debris");
map.put("devoted","投入的,忠诚的:loyalty, devotion;示爱的,恩爱的:love");
map.put("devout","(对于宗教)虔诚的:devoted to religion;忠诚的:allegiance");
map.put("dexterous","动作灵活的:ready, skilled;头脑灵活的:mentally adroit, skillful");
map.put("diabolic","恶魔一般的:devil");
map.put("diaphanous","模糊的;非实在的:vague insubstantial;(质地精致得)几乎透明的:transparent, translucent");
map.put("diatribe","长篇抨击性演讲:long scolding;挖苦,讽刺的指责:ironic, satirical");
map.put("didactic","喜欢说教的:teach");
map.put("diehard","顽固的,保守的/顽固的人,保守的人:determined, devoted/opposes change, refuses new ideas");
map.put("diffident","不自信的:lack self-confidence;内向的:reserved");
map.put("diffuse","啰嗦的:verbose;不集中的,扩散的:not concentrated;扩展,散开:extend, scatter");
map.put("digress","脱离主题:turn aside main subject");
map.put("dilapidate","(使)荒废:ruin");
map.put("dilate","(使)膨胀,扩大:enlarge, expand, wide;详细表达:more fully greater detail");
map.put("dilatory","拖延的,磨蹭的:cause delay procrastination");
map.put("dilettante","业余爱好者(对艺术或知识领域涉猎浅薄者)/缺乏专业技术的:superficial interest/lacking expert skill");
map.put("diligent","勤勉的,辛勤的:steady, earnest, energetic");
map.put("dilute","稀释/经稀释的:concentrated/low strength, concentration;削弱:diminish strength, flavor, brilliance");
map.put("diminish","(使)变小,(使)减少:smaller, less;轻视,贬低:lessen, belittle");
map.put("din","喧闹声,嘈杂声:loud noise;重复,使人厌烦地反复灌输:again");
map.put("dingy","昏暗的;肮脏的:darkened, dirty");
map.put("diocesan","主教管辖区的:diocese");
map.put("diplomatic","使用策略的,机智的:tact");
map.put("dire","不吉利的,不详的:calamity;可怕的,恐怖的:fear;迫切的:immediate, urgent;悲惨的:lacking cheer");
map.put("dirge","挽歌:solemn, mournful music");
map.put("disabuse","打消错误念头,纠正:free from error, fallacy, misconception");
map.put("disaffected","不满的,叛逆的:discontented");
map.put("disarm","解除武装:reduce armed forces;使息怒,平息,抚慰:lessen;使无害:harmless");
map.put("disarray","混乱,无秩序:lack order;使混乱:undo order, arrangement");
map.put("disavow","拒绝承认,否认:disclaim");
map.put("discern","识别,辨别差异:perceive, detect");
map.put("discharge","解雇:dismiss;释放:free;不承担责任:freeing obligation, responsibility");
map.put("disciple","信徒,追随者:follower");
map.put("discombobulate","使不安,使混乱:upset, confuse");
map.put("discomfit","使尴尬:embarrassment;阻碍:prevent");
map.put("discommode","打扰,使不便:trouble");
map.put("discompose","使不安:disturb composure, perturb;使混乱:undo order, arrangement");
map.put("disconcert","使不安:disturb");
map.put("discord","意见不一致,不和谐:lack agreement, harmony");
map.put("discredit","羞耻,使丧失名誉:damage reputation, disgrace;怀疑,不相信:not true, real");
map.put("discrepancy","(在事实和宣称之间的)差异或矛盾:divergence, disagreement");
map.put("discrete","离散的,不连续的:separate");
map.put("discretion","谨慎:discreet, circumspection;自制,节制:checking");
map.put("discretionary","自主决定的:one’s own discretion");
map.put("discriminate","区分:perceive distinguishing, recognize;歧视:difference");
map.put("discursive","(谈话内容)杂乱的:without order");
map.put("disdain","轻视,鄙视:scorn");
map.put("disengage","分开,使脱离:set free, entanglement");
map.put("disgorge","呕吐出:discharge, vomit;被迫放弃:give up");
map.put("disgruntle","使发怒,使不满意:discontented;使疏远,使不友好unfriendly");
map.put("disguise","伪装(防止被认出):prevent recognition;隐藏,掩饰:secret shut off");
map.put("disinclination","不喜欢,厌恶,不情愿:lack willingness, desire");
map.put("disinfect","消毒,使无菌:free from infection");
map.put("disjointed","机能失调的:out orderly function;不连贯的:not connected");
map.put("disinter","(从墓地里)掘出:take out");
map.put("disinterested","公正的,无偏见的:free from selfish, unbiased;没有兴趣的:lack interest, concern");
map.put("disjunctive","分离的:breaks disunity");
map.put("dismantle","分解,分拆:pieces, destroy integrity");
map.put("dismay","使失去勇气:lose courage;使不安,使焦虑:trouble, uneasy");
map.put("disparage","贬低;轻蔑地说:lower, disrespectful");
map.put("disparate","迥然不同的:distinct, different dissimilar");
map.put("dispassionate","客观公正的,不易被情绪或偏见影响的:unaffected");
map.put("dispatch","迅速:promptness;发送,派遣:one place to another;使死亡:deprive life;获胜,胜过…:victory");
map.put("dispose","使倾向于:tendency incline;处理掉(与of连用,dispose of):get rid of, throw out;有序地布置:orderly");
map.put("disregard","漠视,不关注:no attention;缺乏兴趣,缺乏关心:interest concern");
map.put("dissect","仔细分析:examine, analyze minute;切成片(尤其是为了解剖研究):cut apart separate");
map.put("dissemble","用假象隐藏真相,掩饰:false");
map.put("disseminate","散播,传播:spread, promulgate");
map.put("dissension","意见不合:difference, disagreement");
map.put("dissent","持异议,不同意:differ;反对正统:departure accepted;不和谐:lack harmony");
map.put("dissipate","驱散:drive away, disperse;浪费:wastefully, squander;放纵:indulge, intemperate");
map.put("dissolute","放荡的,无节制的:restraint, indulging");
map.put("dissolve","溶解融化:solution;解散:break into parts, disintegrate;驱散;(使)消失:cease visible;废除,撤销:end");
map.put("dissonance","(音调)不和谐,刺身;不一致,分歧:disagreeable");
map.put("dissuade","劝阻,反对:deter persuasion, exhortation");
map.put("distain","贬损,伤害(某人的)名誉:lose honor, respect, reputation;弄脏:dirty");
map.put("distal","远离中心的,(神经)末梢的:situated away");
map.put("distend","(使)膨胀:expand");
map.put("distill","对…用蒸馏法提高纯度:increase, purify;(使)渗出;(使)滴下:fall drops");
map.put("distort","扭曲,歪曲:twist");
map.put("distract","转移(注意力),使分心:draw, direct different;使焦虑,使不安:trouble, uneasy;疯狂的:insane, mad");
map.put("distraught","精神狂乱的,极疯狂的:agitated, insane");
map.put("diurnal","白天发生或行动的:daytime;每天的:every day;期刊:publication at regular intervals");
map.put("diverge","改变方向:change;(使)分叉,散开:different directions central;分歧:different, differ;离题:depart from");
map.put("diversity","多样性:variety, multiformity;分歧,不同点:different");
map.put("divert","使转向:turn, deflect;使消遣:agreeably;使分心:draw something else");
map.put("divestiture","剥夺:taking away");
map.put("divulge","泄露(秘密):known confidence, secret");
map.put("dodder","蹒跚,颤巍巍地行进:progress unsteadily");
map.put("dodge","躲避:avoid");
map.put("doff","脱下:take off, remove");
map.put("dogged","坚持的,坚决的:continuing, slackening, yielding];固执的,任性的:sticking to");
map.put("dogma","教条,信条:doctrine stated authoritatively");
map.put("doldrums","低迷,中断:inactivity;情绪不佳:low spirits");
map.put("dolorous","忧伤的:misery, grief");
map.put("dolt","笨蛋:stupid");
map.put("domicile","住所,住宅:residence;为…提供住处:provide domicile");
map.put("dominant","处于支配地位的:controlling others;(基因)显性的:genetic dominance");
map.put("don","穿上:put on");
map.put("donor","捐赠人,给体:donates");
map.put("doodle","(无目的)地乱涂乱画:aimlessly;漫无目的地打发时光:aimless activity");
map.put("dormant","静止的,不活跃的:inactivity;(动物)冬眠的:suspended");
map.put("dour","闷闷不乐的,死气沉沉的:gloomy;严厉的:harsh");
map.put("douse","熄灭:put out;弄湿:wet");
map.put("downplay","轻描淡写:,不予重视:minimize significance");
map.put("downpour","倾盆大雨:heavy rain");
map.put("doyen","有经验的人,资深人士:knowledge experience;(加入时间较长的)高级会员:senior member");
map.put("doze","小憩:lightly");
map.put("draconian","极其残酷的,十分严厉的:harsh");
map.put("drawl","慢吞吞地说:speak slowly");
map.put("dreary","单调乏味的:nothing cheer;令人不悦的:causing unhappiness");
map.put("drench","使湿透,浸透:wet thoroughly");
map.put("drivel","胡言乱语:meaningless;胡言乱语,说傻话:talk stupidity");
map.put("drizzle","(下)细小、轻柔、似雾的雨,毛毛雨:misty rain");
map.put("droll","古怪有趣的,离奇可笑的:amusingly odd");
map.put("drone","低沉单调地说;嗡嗡地叫:talk monotonous;(昆虫振翅般)单调嗡嗡的声音:monotonous sound;混日子:doing nothing");
map.put("drudgery","苦工;单调、卑贱或无趣的工作:tedious work");
map.put("dubious","充满不定性的,值得怀疑的:uncertainty, questionable;(对事实等)持怀疑态度的:not feeling sure;迟疑不决的,不愿行动的:slow to begin because of doubts");
map.put("ductile","可塑的,有延展性的:malleable;易受影响的:easily led");
map.put("dulcet","悦耳的,令人愉悦的:melodious");
map.put("dullard","笨蛋:stupid");
map.put("dupe","复制品,复制:exactly like something else;易受骗的人:easily deceived;欺骗:deceive");
map.put("duplicity","欺骗,口是心非:deceptiveness");
map.put("dwindle","逐渐减少:gradually less");
map.put("dyspeptic","脾气坏的:bad-tempered;消化不良的:dyspepsia");
map.put("earnest","严肃认真的:serious");
map.put("earshot","听力所及的范围:range hear");
map.put("earsplitting","震耳欲聋的:distressingly loud");
map.put("eavesdrop","偷听:listen secretly");
map.put("ebullient","热情奔放的:zestfully");
map.put("eccentric","行为出格的,不循规蹈矩的:deviating conventional");
map.put("éclat","辉煌成就:success");
map.put("eclipse","下降,衰退:lower state;使声望下降,使黯然失色:diminish importance;(在数量、品质上)超越:be greater");
map.put("ecstasy","无法自控的情绪:beyond self-control;狂喜:intense joy");
map.put("ecumenical","全球基督教会的:whole churches;世界范围的,普遍性的:worldwide");
map.put("edible","可食用的:eaten");
map.put("edifice","大厦;大建筑物:massive structure;基础,基本结构:basic form");
map.put("efface","擦掉,抹去;使不明显:make indistinct");
map.put("effervesce","冒泡:bubble;兴奋,热情洋溢:high spirits");
map.put("effete","衰弱的,衰落的:depleted;缺乏信念的,懦弱的:lacking strength of will");
map.put("effluvium","难闻的气味:offensive smell;没有的副产品,废品:by-product waste");
map.put("effrontery","厚颜无耻,放肆大胆:disregard, courtesy");
map.put("effulgent","光辉灿烂的:resplendent");
map.put("effusive","感情泛滥的/溢于言表的;感情表达不节制的/过度的;过分多情的:unrestrained in emotional expression");
map.put("egalitarian","平等主义的:promoting equal rights");
map.put("egoistic","利己的,以自我为中心的:centered in oneself");
map.put("elaborate","详细的,复杂的:complexity;详细阐述:in detail");
map.put("elastic","有弹性的:resuming shape;能(迅速从伤痛中)恢复的:recovering from depression");
map.put("elate","使开心,使自豪:fill with joy");
map.put("eleemosynary","慈善的:charity");
map.put("elegy","哀歌(诗),挽歌(诗):expressing sorrow");
map.put("elephantine","巨大的:enormous size;笨拙的:clumsy");
map.put("elevate","(在道德、智力、文化水平上)提升:improve;使兴奋:raise spirits");
map.put("elicit","激起,唤起:bring out");
map.put("elliptical","含糊不清的:obscurity;椭圆的:ellipse");
map.put("elucidate","阐明:make lucid");
map.put("emaciate","使消瘦,使衰弱:become thin;削弱:feeble");
map.put("emancipate","解放,解除束缚:free");
map.put("embargo","贸易禁止令:prohibition on commerce");
map.put("embark","上船:go abroad;开始从事:start");
map.put("embarrass","使尴尬:experience distress;阻挠,制造障碍:create difficulty");
map.put("embed","嵌入:enclose");
map.put("embezzle","盗用:appropriate");
map.put("embolden","鼓励,使大胆:instill courage");
map.put("emboss","以浮雕效果妆点,装饰:ornament with raised work");
map.put("embrace","乐于接受:willingly, eagerly;保围:surround");
map.put("embroider","(时常伴有夸张和想象内容地)详细说明:give elaborate account");
map.put("emigrate","移民,移居海外:leave");
map.put("eminent","杰出:above others");
map.put("emollient","起缓和作用的:less intense");
map.put("emulate","效仿并努力超越:excel through imitation");
map.put("enact","制定或颁布(法律):establish");
map.put("enamel","涂亮漆;使具有光滑或亮泽的表面:give a glossy surface;用亮丽的表面装饰:adorn");
map.put("encomium","赞颂之词:praise");
map.put("encompass","组成,包含:include;包围:envelop");
map.put("encumber","阻碍,妨碍:impede;给…增添负担:place burden");
map.put("endemic","地方性的:to a particular region");
map.put("endorse","公开支持,推崇:express approval");
map.put("enervate","使衰弱:weaken;使麻木:deprive of emotional vitality");
map.put("enfranchise","给予…权力(例如选举权):endow rights;解放:set free");
map.put("engender","引起,使发展:cause;产生,出现:come into existence");
map.put("engross","使全神贯注:occupy exclusively");
map.put("enigma","难以理解或解释的事物,谜:hard to understand");
map.put("enlighten","使知道,启发:inform, instruct;(在道德或精神上)进行教育:provide moral understanding");
map.put("enmity","敌意:mutual hatred");
map.put("ennoble","使尊贵:noble");
map.put("ennui","倦怠;缺乏兴趣:listlessness, lack of interest");
map.put("ensemble","合唱,合奏曲:two or move vocalists");
map.put("ensconce","安置:settle securely;隐藏:hiding");
map.put("ensue","紧随其后:afterward");
map.put("entangle","使卷入,使纠缠:twist confused mass;使变复杂或困难:complex or difficult");
map.put("enthusiasm","热情,兴趣:desire or interest");
map.put("entice","诱使:tempt, lure");
map.put("entrance","进入权,进入许可:means of entering or participation;使入迷:wonder, enchantment");
map.put("entrap","诱骗:lure");
map.put("entreat","恳求:plead persuade, ask urgently");
map.put("enunciate","清晰地说:articulate;公开宣布,宣称:openly or publicity");
map.put("ephemeral","短暂的:very short time");
map.put("epic","宏大的,超凡脱俗的:surpassing the usual");
map.put("epicure","美食家:discriminating tastes");
map.put("epigram","机智的短诗,警句:short witty");
map.put("epilogue","文学作品的结局:concluding section literary;戏剧的收场白:final scene of a paly");
map.put("epithet","外号,绰号:descriptive name");
map.put("epitomize","摘要,概括:short statement, main points;代表,体现,是…的典型范例:represent a typical example of");
map.put("equable","(脾气、性情)温和的:serene");
map.put("equity","不偏不倚,公平:lack of favoritism");
map.put("equivalent","等价的,相等的:equal");
map.put("equivocate","(带有欺骗目的地)模棱两可地说,说谎话:equivocal");
map.put("erode","侵蚀,慢慢减少:consume gradually");
map.put("errant","居无定所的:from place to place;误入歧途的,犯错误的:straying proper course or standards");
map.put("erratic","善变的:not constant;异常的,不同寻常的:different from the ordinary");
map.put("erudite","博学的:learned");
map.put("escalate","(使)(战争等)升级,扩大:increase");
map.put("eschew","刻意避开;戒绝:avoid");
map.put("esoteric","深奥难懂的:difficult to understand;少数人知道的:not known by the general");
map.put("espouse","支持;拥护:support;与…结婚:marriage, marry");
map.put("esteem","尊重:respect, prize");
map.put("estimable","值得尊敬的:admirable");
map.put("estrange","使疏远,离间,使感情失和:enmity, indifference, friendliness");
map.put("etch","蚀刻;留下深刻印象,铭记:produce a vivid impression");
map.put("eternal","永恒的:infinite duration, everlasting, perpetual");
map.put("ethereal","轻巧精致的:lightness, highly refined, delicate;天国的:heaven;非物质的,精神(上)的:spiritual, not composed of matter");
map.put("ethics","道德规范:governing conduct");
map.put("eulogize","称赞,颂扬:speak in high praise of");
map.put("euphemism","婉言,委婉的说法:inoffensive expression");
map.put("euphonious","悦耳的:pleasing");
map.put("euphoria","感觉极其愉快:overwhelming usually pleasurable");
map.put("evacuate","撤空:empty or remove;撤退:remove");
map.put("evanescent","逐渐消失的,短暂的:vanish");
map.put("evasive","难以发现,捕捉,分离的;含糊其辞的:equivocal");
map.put("everlasting","永恒的,持久的:forever");
map.put("evict","赶出,逐出:expel");
map.put("evince","表明:make known");
map.put("evoke","唤起,引发:call up");
map.put("exacerbate","使加剧,使恶化:severe");
map.put("exacting","严格的,苛求的:rigorous;费时间心思的:requiring time, effort, attention");
map.put("exalt","提升,提拔:raise;赞扬:praise");
map.put("exasperate","激怒:excite");
map.put("excavate","挖掘,挖空:dig out");
map.put("exceptional","例外的,特别的,非凡的:uncommon, extraordinary");
map.put("excoriate","严厉批评:criticize harshly publicly");
map.put("excrete","排泄:discharge");
map.put("excruciate","折磨,使痛苦:pain");
map.put("exculpate","声明无罪;开脱,使无罪:clear fault guilt");
map.put("excursive","离题的;散漫的:passing");
map.put("execrate","谴责:morally wrong or evil;痛恨:dislike strongly");
map.put("exemplary","榜样的,值得效仿的:being a pattern, imitated;作为警告的:warning");
map.put("exempt","使免除:release liability");
map.put("exhaust","耗尽:consume entirely, complete use of;筋疲力尽:wear out");
map.put("exhilarate","使高兴;使兴奋:cheerful, excited");
map.put("exhort","敦促,力劝:urge strong");
map.put("exigent","紧急的:immediate");
map.put("exodus","大批离去:departure");
map.put("exonerate","免除责备:free from blame");
map.put("exorbitant","过度的:exceeding the customary or appropriate limits");
map.put("exotic","外来的,不同寻常的:unusual");
map.put("expansive","广阔的:great expanse;健谈的,外向的:open, talkative, effusive");
map.put("expedite","加快进程:speed up the progress");
map.put("expedition","动作迅速:speed");
map.put("expiate","赎罪,纠正:extinguish the guilt");
map.put("expire","断气,死亡:die;到期:come to an end");
map.put("explicit","表达清晰的:fully revealed or expressed;成熟的,完全形成的:fully developed");
map.put("exploit","英雄行为:notable act;最大程度地利用:employ");
map.put("exponent","倡导者,支持者:advocates;实践者,典型代表:full realization");
map.put("expurgate","净化(书等),删去(不当处):remove");
map.put("exquisite","成都强烈的:extreme;精致精巧的:refined taste");