Module: TermPolarities

Defined in:
lib/chime/emotions/term_polarities.rb

Class Method Summary collapse

Class Method Details

.get_term_polaritiesObject

and the values range between 0 and 2 (0 being more negative, 2 being most positive)



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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
# File 'lib/chime/emotions/term_polarities.rb', line 5

def self.get_term_polarities
	@polarities = {"abandoned"=>2.5, "abandonment"=>2.5, "abandon"=>2.5, "abase"=>0,
		"abasement"=>0, "abash"=>0, "abate"=>2.5, "abdicate"=>2.5, "aberration"=>0,
		"abhor"=>0, "abhorred"=>0, "abhorrence"=>0, "abhorrent"=>0,
		"abhorrently"=>0, "abhors"=>0, "abidance"=>10, "abide"=>10, "abject"=>0,
		"abjectly"=>0, "abjure"=>2.5, "abilities"=>7.5, "ability"=>7.5, "able"=>7.5,
		"abnormal"=>2.5, "abolish"=>2.5, "abominable"=>0, "abominably"=>0,
		"abominate"=>0, "abomination"=>0, "above"=>7.5, "aboveaverage"=>7.5,
		"abound"=>7.5, "abrade"=>2.5, "abrasive"=>0, "abrupt"=>2.5, "abscond"=>0,
		"absence"=>2.5, "absentee"=>2.5, "absentminded"=>0, "absolve"=>10, "absurd"=>0,
		"absurdity"=>0, "absurdly"=>0, "absurdness"=>0, "abundant"=>7.5,
		"abundance"=>7.5, "abuse"=>0, "abuses"=>2.5, "abusive"=>0, "abysmal"=>0,
		"abysmally"=>0, "abyss"=>0, "accede"=>10, "accept"=>7.5, "acceptance"=>7.5,
		"acceptable"=>7.5, "accessible"=>7.5, "accidental"=>2.5, "acclaim"=>10,
		"acclaimed"=>10, "acclamation"=>10, "accolade"=>10, "accolades"=>10,
		"accommodative"=>7.5, "accomplish"=>7.5, "accomplishment"=>7.5,
		"accomplishments"=>7.5, "accord"=>7.5, "accordance"=>7.5, "accordantly"=>7.5,
		"accost"=>2.5, "accountable"=>2.5, "accurate"=>7.5, "accurately"=>7.5,
		"accursed"=>0, "accusation"=>0, "accusations"=>0, "accuse"=>0,
		"accuses"=>0, "accusing"=>0, "accusingly"=>0, "acerbate"=>0,
		"acerbic"=>0, "acerbically"=>0, "ache"=>0, "achievable"=>7.5, "achieve"=>7.5,
		"achievement"=>7.5, "achievements"=>7.5, "acknowledge"=>7.5, "acknowledgement"=>7.5,
		"acquit"=>7.5, "acrid"=>0, "acridly"=>0, "acridness"=>0, "acrimonious"=>0,
		"acrimoniously"=>0, "acrimony"=>0, "active"=>7.5, "acumen"=>10, "adamant"=>0,
		"adamantly"=>0, "adaptable"=>7.5, "adaptability"=>7.5, "adaptive"=>7.5,
		"addict"=>2.5, "addiction"=>2.5, "adept"=>7.5, "adeptly"=>7.5, "adequate"=>7.5,
		"adherence"=>7.5, "adherent"=>7.5, "adhesion"=>7.5, "admirable"=>10, "admirer"=>10,
		"admirably"=>10, "admiration"=>10, "admire"=>10, "admiring"=>10, "admiringly"=>10,
		"admission"=>7.5, "admit"=>10, "admittedly"=>10, "admonish"=>0, "admonisher"=>0,
		"admonishingly"=>0, "admonishment"=>0, "admonition"=>0, "adorable"=>10,
		"adore"=>10, "adored"=>10, "adorer"=>10, "adoring"=>10, "adoringly"=>10,
		"adrift"=>2.5, "adroit"=>10, "adroitly"=>10, "adulate"=>10, "adulation"=>10,
		"adulatory"=>10, "adulterate"=>0, "adulterated"=>0, "adulteration"=>0,
		"advanced"=>7.5, "advantage"=>7.5, "advantageous"=>10, "advantages"=>7.5,
		"adventure"=>7.5, "adventuresome"=>10, "adventurism"=>10, "adventurous"=>7.5,
		"adversarial"=>2.5, "adversary"=>2.5, "adverse"=>2.5, "adversity"=>0,
		"advice"=>7.5, "advisable"=>7.5, "advocate"=>10, "advocacy"=>10, "affable"=>10,
		"affability"=>7.5, "affably"=>7.5, "affectation"=>2.5, "affection"=>10,
		"affectionate"=>10, "affinity"=>7.5, "affirm"=>10, "affirmation"=>10,
		"affirmative"=>7.5, "afflict"=>2.5, "affliction"=>2.5, "afflictive"=>0,
		"affluent"=>7.5, "affluence"=>7.5, "afford"=>7.5, "affordable"=>7.5, "affront"=>0,
		"afloat"=>7.5, "afraid"=>0, "against"=>2.5, "aggravate"=>0, "aggravating"=>0,
		"aggravation"=>0, "aggression"=>0, "aggressive"=>0, "aggressiveness"=>0,
		"aggressor"=>0, "aggrieve"=>0, "aggrieved"=>0, "aghast"=>0, "agile"=>7.5,
		"agilely"=>7.5, "agility"=>7.5, "agitate"=>0, "agitated"=>0, "agitation"=>0,
		"agitator"=>0, "agonies"=>0, "agonize"=>0, "agonizing"=>0,
		"agonizingly"=>0, "agony"=>0, "agree"=>10, "agreeability"=>10, "agreeable"=>10,
		"agreeableness"=>10, "agreeably"=>10, "agreement"=>7.5, "ail"=>2.5, "ailment"=>2.5,
		"aimless"=>0, "airs"=>2.5, "alarm"=>2.5, "alarmed"=>0, "alarming"=>0,
		"alarmingly"=>0, "alas"=>0, "alienate"=>2.5, "alienated"=>2.5,
		"alienation"=>2.5, "allay"=>10, "allegation"=>0, "allegations"=>0,
		"allege"=>2.5, "allergic"=>2.5, "alleviate"=>7.5, "allow"=>7.5, "allowable"=>7.5,
		"allure"=>10, "alluring"=>10, "alluringly"=>10, "ally"=>10, "almighty"=>10,
		"aloof"=>0, "altercation"=>2.5, "although"=>2.5, "altruist"=>10,
		"altruistic"=>10, "altruistically"=>10, "amaze"=>10, "amazed"=>10, "amazement"=>10,
		"amazing"=>10, "amazingly"=>10, "ambiguous"=>0, "ambiguity"=>0,
		"ambitious"=>7.5, "ambitiously"=>7.5, "ambivalence"=>0, "ambivalent"=>0,
		"ambush"=>2.5, "ameliorate"=>10, "amenable"=>10, "amenity"=>7.5, "amiability"=>10,
		"amiabily"=>10, "amiable"=>10, "amicability"=>10, "amicable"=>10, "amicably"=>10,
		"amiss"=>0, "amity"=>7.5, "amnesty"=>7.5, "amour"=>10, "ample"=>7.5, "amply"=>7.5,
		"amputate"=>2.5, "amuse"=>10, "amusement"=>10, "amusing"=>10, "amusingly"=>10,
		"anarchism"=>0, "anarchist"=>0, "anarchistic"=>0, "anarchy"=>0,
		"anemic"=>2.5, "angel"=>7.5, "angelic"=>10, "anger"=>0, "poop"=>0, "angrily"=>0,
		"angriness"=>0, "angry"=>0, "anguish"=>0, "annihilate"=>0,
		"annihilation"=>0, "animated"=>7.5, "animosity"=>0, "annoy"=>0,
		"annoyance"=>0, "annoyed"=>0, "annoying"=>0, "annoyingly"=>0,
		"anomalous"=>2.5, "anomaly"=>2.5, "antagonism"=>0, "antagonist"=>2.5,
		"antagonistic"=>0, "antagonize"=>0, "anti"=>0, "antiAmerican"=>0,
		"antiIsraeli"=>0, "antiSemites"=>0, "antiUS"=>0, "antioccupation"=>0,
		"antiproliferation"=>0, "antisocial"=>0, "antiwhite"=>0, "antipathy"=>0,
		"antiquated"=>0, "antithetical"=>0, "anxieties"=>0, "anxiety"=>0,
		"anxious"=>0, "anxiously"=>0, "anxiousness"=>0, "apathetic"=>0,
		"apathetically"=>0, "apathy"=>0, "ape"=>0, "apocalypse"=>0,
		"apocalyptic"=>0, "apologist"=>0, "apologists"=>0, "apostle"=>10,
		"apotheosis"=>10, "appal"=>0, "appall"=>0, "appalled"=>0, "appalling"=>0,
		"appallingly"=>0, "appeal"=>7.5, "appealing"=>10, "appease"=>7.5, "applaud"=>10,
		"appreciable"=>7.5, "appreciate"=>10, "appreciation"=>10, "appreciative"=>10,
		"appreciatively"=>10, "appreciativeness"=>10, "apprehension"=>0,
		"apprehensions"=>0, "apprehensive"=>0, "apprehensively"=>0,
		"appropriate"=>7.5, "approval"=>7.5, "approve"=>7.5, "apt"=>7.5, "aptly"=>7.5,
		"aptitude"=>7.5, "arbitrary"=>0, "arcane"=>0, "archaic"=>0, "ardent"=>10,
		"ardently"=>10, "ardor"=>10, "arduous"=>0, "arduously"=>0, "aristocratic"=>7.5,
		"argue"=>0, "argument"=>2.5, "argumentative"=>0, "arguments"=>2.5,
		"arousal"=>10, "arouse"=>10, "arousing"=>10, "arresting"=>10, "arrogance"=>0,
		"arrogant"=>0, "arrogantly"=>0, "articulate"=>10, "artificial"=>2.5,
		"ascendant"=>10, "ascertainable"=>10, "ashamed"=>0, "asinine"=>0,
		"asininely"=>0, "asinininity"=>0, "askance"=>0, "asperse"=>0,
		"aspersion"=>0, "aspersions"=>0, "aspiration"=>10, "aspirations"=>10,
		"aspire"=>10, "assail"=>2.5, "assassinate"=>2.5, "assassin"=>0, "assault"=>2.5,
		"assent"=>10, "assertions"=>10, "assertive"=>7.5, "asset"=>7.5, "assiduous"=>10,
		"assiduously"=>10, "assuage"=>7.5, "assurance"=>7.5, "assurances"=>7.5, "assure"=>10,
		"assuredly"=>10, "astonish"=>10, "astonished"=>10, "astonishing"=>10,
		"astonishingly"=>10, "astonishment"=>10, "astound"=>10, "astounded"=>10,
		"astounding"=>10, "astoundingly"=>10, "astray"=>2.5, "astute"=>10, "astutely"=>10,
		"asunder"=>0, "asylum"=>7.5, "atrocious"=>0, "atrocities"=>0, "atrocity"=>0,
		"atrophy"=>0, "attack"=>2.5, "attain"=>7.5, "attainable"=>7.5, "attentive"=>10,
		"attest"=>10, "attraction"=>10, "attractive"=>10, "attractively"=>10, "attune"=>7.5,
		"audacious"=>0, "audaciously"=>0, "audaciousness"=>0, "audacity"=>0,
		"auspicious"=>10, "austere"=>0, "authentic"=>7.5, "authoritarian"=>2.5,
		"authoritative"=>7.5, "autocrat"=>0, "autocratic"=>0, "award"=>7.5,
		"autonomous"=>7.5, "avalanche"=>0, "avarice"=>0, "avaricious"=>0,
		"avariciously"=>0, "avenge"=>0, "aver"=>10, "averse"=>0, "aversion"=>0,
		"avid"=>10, "avidly"=>10, "avoid"=>2.5, "avoidance"=>2.5, "awe"=>10, "awed"=>10,
		"awesome"=>10, "awesomely"=>10, "awesomeness"=>10, "awestruck"=>10, "awful"=>0,
		"awfully"=>0, "awfulness"=>0, "awkward"=>0, "awkwardness"=>0, "ax"=>0,
		"babble"=>0, "back"=>7.5, "backbite"=>0, "backbiting"=>0, "backbone"=>7.5,
		"backward"=>0, "backwardness"=>0, "bad"=>0, "badly"=>0, "baffle"=>0,
		"baffled"=>0, "bafflement"=>0, "baffling"=>0, "bait"=>0, "balanced"=>7.5,
		"balk"=>0, "banal"=>0, "banalize"=>0, "bane"=>0, "banish"=>0,
		"banishment"=>0, "bankrupt"=>2.5, "bar"=>2.5, "barbarian"=>0, "barbaric"=>0,
		"barbarically"=>0, "barbarity"=>0, "barbarous"=>0, "barbarously"=>0,
		"barely"=>2.5, "bargain"=>10, "barren"=>0, "baseless"=>0, "bashful"=>0,
		"basic"=>7.5, "bask"=>7.5, "bastard"=>0, "battered"=>2.5, "battering"=>2.5,
		"battle"=>2.5, "battlelines"=>0, "battlefield"=>2.5, "battleground"=>0,
		"batty"=>0, "beacon"=>7.5, "bearish"=>2.5, "beast"=>0, "beastly"=>0,
		"beatify"=>10, "beauteous"=>10, "beautiful"=>10, "beautifully"=>10, "beautify"=>10,
		"beauty"=>10, "bedlam"=>0, "bedlamite"=>0, "befit"=>10, "befitting"=>10,
		"befoul"=>0, "befriend"=>10, "beg"=>0, "beggar"=>2.5, "beggarly"=>0,
		"begging"=>0, "beguile"=>0, "belated"=>2.5, "belabor"=>0, "beleaguer"=>0,
		"belie"=>0, "believable"=>10, "belittle"=>0, "belittled"=>0,
		"belittling"=>0, "bellicose"=>0, "belligerence"=>0, "belligerent"=>0,
		"belligerently"=>0, "beloved"=>10, "bemoan"=>0, "bemoaning"=>0,
		"bemused"=>0, "benefactor"=>7.5, "beneficial"=>10, "beneficent"=>10,
		"beneficially"=>10, "beneficiary"=>10, "benefit"=>7.5, "benefits"=>7.5,
		"benevolence"=>10, "benevolent"=>10, "benign"=>7.5, "bent"=>2.5, "berate"=>0,
		"bereave"=>0, "bereavement"=>0, "bereft"=>0, "berserk"=>0, "beseech"=>0,
		"beset"=>2.5, "besiege"=>2.5, "besmirch"=>0, "best"=>10, "bestknown"=>10,
		"bestperforming"=>10, "bestselling"=>7.5, "bestial"=>0, "betray"=>0,
		"betrayal"=>0, "betrayals"=>0, "betrayer"=>0, "better"=>7.5,
		"betterknown"=>10, "betterthanexpected"=>10, "bewail"=>0, "beware"=>2.5,
		"bewilder"=>0, "bewildered"=>0, "bewildering"=>0, "bewilderingly"=>0,
		"bewilderment"=>0, "bewitch"=>0, "bias"=>0, "biased"=>0, "biases"=>0,
		"bicker"=>0, "bickering"=>0, "bidrigging"=>2.5, "bitch"=>0, "bitchy"=>0,
		"biting"=>0, "bitingly"=>0, "bitter"=>0, "bitterly"=>0, "bitterness"=>0,
		"bizarre"=>0, "blab"=>0, "blabber"=>0, "black"=>2.5, "blackmail"=>2.5,
		"blah"=>0, "blame"=>0, "blameless"=>10, "blameworthy"=>0, "bland"=>0,
		"blandish"=>0, "blaspheme"=>0, "blasphemous"=>0, "blasphemy"=>0,
		"blast"=>2.5, "blasted"=>0, "blatant"=>0, "blatantly"=>0, "blather"=>0,
		"bleak"=>0, "bleakly"=>0, "bleakness"=>0, "bleed"=>2.5, "blemish"=>2.5,
		"bless"=>10, "blessing"=>10, "blind"=>2.5, "blinding"=>0, "blindingly"=>0,
		"blindness"=>2.5, "blindside"=>0, "bliss"=>10, "blissful"=>10, "blissfully"=>10,
		"blister"=>0, "blistering"=>0, "blithe"=>10, "bloated"=>0, "block"=>2.5,
		"blockhead"=>0, "blood"=>2.5, "bloodshed"=>0, "bloodthirsty"=>0,
		"bloody"=>2.5, "bloom"=>7.5, "blossom"=>7.5, "blow"=>2.5, "blunder"=>0,
		"blundering"=>0, "blunders"=>0, "blunt"=>0, "blur"=>2.5, "blurt"=>0,
		"boast"=>0, "boastful"=>0, "boggle"=>0, "bogus"=>0, "boil"=>0,
		"boiling"=>0, "boisterous"=>0, "bold"=>10, "boldly"=>10, "boldness"=>10,
		"bolster"=>10, "bombard"=>2.5, "bomb"=>2.5, "bombardment"=>0, "bombastic"=>0,
		"bondage"=>0, "bonkers"=>0, "bonny"=>10, "bonus"=>7.5, "boom"=>7.5, "booming"=>7.5,
		"boost"=>7.5, "bore"=>0, "boredom"=>0, "boring"=>0, "botch"=>0,
		"bother"=>0, "bothersome"=>0, "boundless"=>10, "bountiful"=>10,
		"bowdlerize"=>0, "boycott"=>2.5, "brag"=>0, "braggart"=>0, "bragger"=>0,
		"brains"=>10, "brainwash"=>0, "brainy"=>10, "brash"=>0, "brashly"=>0,
		"brashness"=>0, "brat"=>0, "bravado"=>0, "brave"=>10, "bravery"=>10,
		"brazen"=>0, "brazenly"=>0, "brazenness"=>0, "breach"=>2.5, "break"=>2.5,
		"breakpoint"=>0, "breakdown"=>2.5, "breakthrough"=>7.5, "breakthroughs"=>7.5,
		"breathlessness"=>10, "breathtaking"=>10, "breathtakingly"=>10, "bright"=>7.5,
		"brighten"=>7.5, "brightness"=>7.5, "brilliance"=>7.5, "brilliant"=>10,
		"brilliantly"=>10, "brimstone"=>0, "brisk"=>7.5, "bristle"=>0, "brittle"=>2.5,
		"broad"=>7.5, "broke"=>2.5, "brokenhearted"=>0, "brood"=>0, "brook"=>10,
		"brotherly"=>7.5, "browbeat"=>0, "bruise"=>2.5, "brusque"=>0, "brutal"=>0,
		"brutalising"=>0, "brutalities"=>0, "brutality"=>0, "brutalize"=>0,
		"brutalizing"=>0, "brutally"=>0, "brute"=>0, "brutish"=>0, "bug"=>2.5,
		"buckle"=>2.5, "bulky"=>2.5, "bull"=>7.5, "bullies"=>0, "bullish"=>7.5,
		"bully"=>0, "bullyingly"=>0, "bum"=>2.5, "bumpy"=>2.5, "bungle"=>0,
		"bungler"=>0, "bunk"=>2.5, "buoyant"=>7.5, "burden"=>0, "burdensome"=>0,
		"burdensomely"=>0, "burn"=>0, "busy"=>2.5, "busybody"=>0, "butcher"=>2.5,
		"butchery"=>0, "byzantine"=>0, "cackle"=>0, "cajole"=>0, "calamities"=>0,
		"calamitous"=>0, "calamitously"=>0, "calamity"=>0, "callous"=>0,
		"calm"=>7.5, "calming"=>10, "calmness"=>7.5, "calumniate"=>0, "calumniation"=>0,
		"calumnies"=>0, "calumnious"=>0, "calumniously"=>0, "calumny"=>0,
		"cancer"=>2.5, "cancerous"=>2.5, "candid"=>10, "candor"=>10, "cannibal"=>0,
		"cannibalize"=>0, "capable"=>7.5, "capability"=>7.5, "capably"=>7.5,
		"capitalize"=>7.5, "capitulate"=>2.5, "capricious"=>0, "capriciously"=>0,
		"capriciousness"=>0, "capsize"=>2.5, "captivate"=>10, "captivating"=>10,
		"captivation"=>10, "captive"=>2.5, "care"=>7.5, "carefree"=>10, "careful"=>7.5,
		"careless"=>0, "carelessness"=>0, "caricature"=>0, "carnage"=>0,
		"carp"=>0, "cartoon"=>2.5, "cartoonish"=>0, "cashstrapped"=>2.5,
		"castigate"=>0, "casualty"=>2.5, "cataclysm"=>0, "cataclysmal"=>0,
		"cataclysmic"=>0, "cataclysmically"=>0, "catalyst"=>10, "catastrophe"=>0,
		"catastrophes"=>0, "catastrophic"=>0, "catastrophically"=>0, "catchy"=>10,
		"caustic"=>0, "caustically"=>0, "cautionary"=>0, "cautious"=>2.5,
		"cave"=>2.5, "celebrate"=>10, "celebrated"=>10, "celebration"=>10,
		"celebratory"=>10, "celebrity"=>7.5, "censure"=>0, "chafe"=>0, "chaff"=>0,
		"chagrin"=>0, "challenge"=>2.5, "challenging"=>2.5, "champion"=>7.5, "champ"=>7.5,
		"chaos"=>0, "chaotic"=>0, "charisma"=>0, "charismatic"=>10, "charitable"=>7.5,
		"charity"=>7.5, "charm"=>10, "charming"=>10, "charmingly"=>10, "chaste"=>10,
		"chasten"=>0, "chastise"=>0, "chastisement"=>0, "chatter"=>0,
		"chatterbox"=>0, "cheapen"=>0, "cheap"=>0, "cheat"=>0, "cheater"=>0,
		"cheer"=>10, "cheery"=>10, "cheerful"=>10, "cheerless"=>0, "cherish"=>10,
		"cherished"=>10, "cherub"=>10, "chic"=>10, "chide"=>0, "childish"=>0,
		"chill"=>2.5, "chilly"=>2.5, "chit"=>0, "chivalry"=>10, "chivalrous"=>10,
		"choppy"=>2.5, "choke"=>2.5, "chore"=>2.5, "chronic"=>2.5, "chum"=>7.5,
		"civility"=>10, "civilization"=>7.5, "civilize"=>7.5, "civil"=>7.5, "clamor"=>2.5,
		"clamorous"=>2.5, "clarity"=>7.5, "clash"=>2.5, "classic"=>7.5, "clean"=>7.5,
		"cleanliness"=>7.5, "cleanse"=>7.5, "clear"=>7.5, "clearcut"=>10, "clearer"=>10,
		"clearly"=>10, "clever"=>10, "cliche"=>0, "cliched"=>0, "clique"=>2.5,
		"clog"=>2.5, "close"=>2.5, "closeness"=>10, "cloud"=>0, "clout"=>10,
		"clumsy"=>0, "cooperation"=>7.5, "coarse"=>2.5, "coax"=>10, "cocky"=>0,
		"coddle"=>7.5, "coerce"=>0, "coercion"=>0, "coercive"=>0, "cogent"=>10,
		"cohesive"=>7.5, "cohere"=>7.5, "coherence"=>10, "coherent"=>7.5, "cohesion"=>7.5,
		"cold"=>2.5, "coldly"=>0, "collapse"=>2.5, "collide"=>2.5, "collude"=>0,
		"collusion"=>0, "colorful"=>7.5, "colossal"=>7.5, "combative"=>2.5, "comeback"=>7.5,
		"comedy"=>2.5, "comely"=>10, "comfort"=>7.5, "comfortable"=>7.5, "comfortably"=>7.5,
		"comforting"=>10, "comical"=>2.5, "commend"=>10, "commendable"=>10,
		"commendably"=>10, "commensurate"=>7.5, "commonsense"=>7.5, "commonsensible"=>7.5,
		"commonsensibly"=>7.5, "commonsensical"=>7.5, "commodious"=>7.5, "commiserate"=>0,
		"commitment"=>7.5, "commonplace"=>2.5, "commotion"=>0, "compact"=>7.5,
		"compassion"=>10, "compassionate"=>10, "compatible"=>7.5, "compel"=>0,
		"compelling"=>10, "compensate"=>10, "competent"=>7.5, "competence"=>7.5,
		"competency"=>7.5, "competitive"=>7.5, "competitiveness"=>7.5, "complacent"=>0,
		"complain"=>0, "complaining"=>0, "complaint"=>0, "complaints"=>0,
		"complement"=>7.5, "complex"=>2.5, "compliant"=>10, "complicate"=>2.5,
		"complicated"=>2.5, "complication"=>2.5, "complicit"=>0, "compliment"=>10,
		"complimentary"=>10, "comprehensive"=>7.5, "compromise"=>7.5, "compromises"=>7.5,
		"compulsion"=>0, "compulsive"=>0, "compulsory"=>2.5, "comrades"=>10,
		"concede"=>0, "conceit"=>0, "conceited"=>0, "conceivable"=>10,
		"concern"=>2.5, "concerned"=>0, "concerns"=>0, "concession"=>2.5,
		"concessions"=>2.5, "conciliate"=>10, "conciliatory"=>10, "conclusive"=>7.5,
		"concrete"=>7.5, "concur"=>10, "condescend"=>0, "condescending"=>0,
		"condescendingly"=>0, "condescension"=>0, "condemn"=>0, "condemnable"=>0,
		"condemnation"=>0, "condolence"=>0, "condolences"=>0, "condone"=>10,
		"conducive"=>7.5, "confer"=>7.5, "confess"=>0, "confession"=>0,
		"confessions"=>0, "confidence"=>10, "confident"=>10, "conflict"=>2.5,
		"confound"=>2.5, "confounded"=>2.5, "confounding"=>2.5, "confront"=>2.5,
		"confrontation"=>0, "confrontational"=>2.5, "confuse"=>0, "confused"=>0,
		"confusing"=>0, "confusion"=>0, "confute"=>10, "congenial"=>10,
		"congested"=>2.5, "congestion"=>2.5, "congratulate"=>10, "congratulations"=>10,
		"congratulatory"=>10, "conquer"=>7.5, "conscience"=>7.5, "conscientious"=>10,
		"consensus"=>10, "consent"=>10, "considerate"=>10, "consistent"=>7.5, "console"=>7.5,
		"conspicuous"=>0, "conspicuously"=>0, "conspiracies"=>2.5, "conspiracy"=>2.5,
		"conspirator"=>0, "conspiratorial"=>0, "conspire"=>0, "constancy"=>10,
		"consternation"=>0, "constrain"=>2.5, "constraint"=>2.5, "constructive"=>7.5,
		"consume"=>2.5, "consummate"=>10, "contagious"=>2.5, "contaminate"=>2.5,
		"contamination"=>2.5, "contempt"=>0, "contemptible"=>0, "contemptuous"=>0,
		"contemptuously"=>0, "contend"=>0, "content"=>7.5, "contention"=>0,
		"contentment"=>10, "contentious"=>0, "continuity"=>7.5, "contort"=>0,
		"contortions"=>0, "contradict"=>0, "contradiction"=>0, "contradictory"=>0,
		"contrariness"=>0, "contrary"=>0, "contravene"=>0, "contribution"=>7.5,
		"contrive"=>0, "contrived"=>0, "controversial"=>2.5, "controversy"=>2.5,
		"convenient"=>10, "conveniently"=>10, "conviction"=>7.5, "convince"=>7.5,
		"convincing"=>10, "convincingly"=>10, "convoluted"=>0, "cooperate"=>7.5,
		"cooperative"=>7.5, "cooperatively"=>7.5, "coping"=>2.5, "cordial"=>7.5,
		"cornerstone"=>10, "correct"=>7.5, "correctly"=>10, "corrode"=>2.5,
		"corrosion"=>2.5, "corrosive"=>2.5, "corrupt"=>0, "corruption"=>0,
		"costeffective"=>7.5, "costsaving"=>7.5, "costly"=>2.5, "counterproductive"=>0,
		"coupists"=>0, "courage"=>10, "courageous"=>10, "courageously"=>10,
		"courageousness"=>10, "court"=>10, "courteous"=>10, "courtesy"=>10, "courtly"=>10,
		"covenant"=>7.5, "covet"=>0, "coveting"=>0, "covetingly"=>0, "covetous"=>0,
		"covetously"=>0, "cow"=>2.5, "coward"=>0, "cowardly"=>0, "cozy"=>10,
		"crackdown"=>2.5, "crafty"=>0, "cramped"=>2.5, "cranky"=>0, "crass"=>0,
		"crave"=>10, "craven"=>0, "cravenly"=>0, "craving"=>10, "craze"=>0,
		"crazily"=>0, "craziness"=>0, "crazy"=>0, "creative"=>10, "credence"=>10,
		"credible"=>10, "credulous"=>0, "crime"=>2.5, "criminal"=>2.5, "cringe"=>0,
		"cripple"=>0, "crippling"=>0, "crisis"=>2.5, "crisp"=>7.5, "critic"=>0,
		"critical"=>0, "criticism"=>0, "criticisms"=>0, "criticize"=>0,
		"critics"=>0, "crook"=>0, "crooked"=>0, "cross"=>0, "crowded"=>2.5,
		"crude"=>2.5, "cruel"=>0, "cruelties"=>0, "cruelty"=>0, "crumble"=>2.5,
		"crumple"=>2.5, "crusade"=>10, "crusader"=>10, "crush"=>2.5, "crushing"=>2.5,
		"cry"=>0, "culpable"=>0, "cuplrit"=>0, "cumbersome"=>0, "cureall"=>10,
		"curious"=>10, "curiously"=>10, "curse"=>0, "cursed"=>0, "curses"=>0,
		"cursory"=>2.5, "curt"=>2.5, "cuss"=>0, "cut"=>2.5, "cute"=>10, "cutthroat"=>0,
		"cynical"=>0, "cynicism"=>0, "damage"=>2.5, "damaging"=>2.5, "damn"=>0,
		"damnable"=>0, "damnably"=>0, "damnation"=>0, "damned"=>0, "damning"=>0,
		"dance"=>7.5, "danger"=>2.5, "dangerous"=>2.5, "dangerousness"=>0, "dangle"=>0,
		"dare"=>10, "daring"=>10, "daringly"=>10, "dark"=>2.5, "darken"=>2.5,
		"darkness"=>2.5, "darling"=>10, "darn"=>0, "dash"=>2.5, "dashing"=>10,
		"dastard"=>0, "dastardly"=>0, "daunt"=>0, "daunting"=>0, "dauntingly"=>0,
		"dauntless"=>10, "dawdle"=>0, "dawn"=>7.5, "daydream"=>10, "daydreamer"=>10,
		"daze"=>0, "dazed"=>0, "dazzle"=>10, "dazzled"=>10, "dazzling"=>10, "dead"=>2.5,
		"deadbeat"=>0, "deadlock"=>0, "deadly"=>2.5, "deadweight"=>0, "deaf"=>2.5,
		"deal"=>7.5, "dear"=>10, "dearth"=>0, "death"=>2.5, "debacle"=>0, "debase"=>0,
		"debasement"=>0, "debaser"=>0, "debatable"=>0, "debate"=>0, "debauch"=>0,
		"debaucher"=>0, "debauchery"=>0, "debilitate"=>2.5, "debilitating"=>2.5,
		"debility"=>2.5, "decadence"=>0, "decadent"=>0, "decay"=>0, "decayed"=>0,
		"deceit"=>0, "deceitful"=>0, "deceitfully"=>0, "deceitfulness"=>0,
		"deceiving"=>0, "deceive"=>0, "deceiver"=>0, "deceivers"=>0, "decent"=>7.5,
		"decency"=>7.5, "deception"=>0, "deceptive"=>0, "deceptively"=>0,
		"decisive"=>7.5, "decisiveness"=>7.5, "declaim"=>0, "decline"=>2.5,
		"declining"=>2.5, "decrease"=>2.5, "decreasing"=>2.5, "decrement"=>2.5,
		"decrepit"=>0, "decrepitude"=>0, "decry"=>0, "dedicated"=>10, "deep"=>2.5,
		"deepening"=>0, "defamation"=>0, "defamations"=>0, "defamatory"=>0,
		"defame"=>0, "defeat"=>2.5, "defect"=>2.5, "defective"=>0, "defend"=>7.5,
		"defender"=>10, "defensive"=>2.5, "deference"=>10, "defense"=>7.5, "defiance"=>0,
		"defiant"=>0, "defiantly"=>0, "deficiency"=>2.5, "deficient"=>2.5,
		"defile"=>0, "defiler"=>0, "definite"=>7.5, "definitely"=>7.5, "definitive"=>7.5,
		"definitively"=>10, "deflationary"=>7.5, "deform"=>2.5, "deformed"=>2.5,
		"defrauding"=>0, "deft"=>10, "defunct"=>0, "defy"=>0, "degenerate"=>0,
		"degenerately"=>0, "degeneration"=>0, "degradation"=>0, "degrade"=>0,
		"degrading"=>0, "degradingly"=>0, "dehumanization"=>0, "dehumanize"=>0,
		"deign"=>0, "deject"=>0, "dejected"=>0, "dejectedly"=>0, "dejection"=>0,
		"delectable"=>10, "delicacy"=>7.5, "delicate"=>7.5, "delicious"=>10, "delight"=>10,
		"delighted"=>10, "delightful"=>10, "delightfully"=>10, "delightfulness"=>10,
		"delinquency"=>2.5, "delinquent"=>2.5, "delirious"=>0, "delirium"=>0,
		"delude"=>0, "deluded"=>0, "deluge"=>2.5, "delusion"=>0, "delusional"=>0,
		"delusions"=>0, "demand"=>0, "demands"=>2.5, "demean"=>0, "demeaning"=>0,
		"demise"=>0, "democratic"=>7.5, "demolish"=>2.5, "demolisher"=>2.5, "demon"=>0,
		"demonic"=>0, "demonize"=>0, "demoralize"=>0, "demoralizing"=>0,
		"demoralizingly"=>0, "demystify"=>10, "denial"=>0, "denigrate"=>0,
		"deny"=>0, "denounce"=>0, "denunciate"=>0, "denunciation"=>0,
		"denunciations"=>0, "dependable"=>7.5, "deplete"=>2.5, "deplorable"=>0,
		"deplorably"=>0, "deplore"=>0, "deploring"=>0, "deploringly"=>0,
		"deprave"=>0, "depraved"=>0, "depravedly"=>0, "deprecate"=>0,
		"depress"=>2.5, "depressed"=>0, "depressing"=>0, "depressingly"=>0,
		"depression"=>2.5, "deprive"=>0, "deprived"=>0, "deride"=>0, "derision"=>0,
		"derisive"=>0, "derisively"=>0, "derisiveness"=>0, "derogatory"=>0,
		"desecrate"=>0, "deserve"=>10, "deserved"=>10, "deservedly"=>10, "deserving"=>10,
		"desert"=>0, "desertion"=>0, "desiccate"=>0, "desiccated"=>0,
		"desirable"=>10, "desire"=>10, "desirous"=>10, "desolate"=>0, "desolately"=>0,
		"desolation"=>0, "despair"=>0, "despairing"=>0, "despairingly"=>0,
		"desperate"=>0, "desperately"=>0, "desperation"=>0, "despicable"=>0,
		"despicably"=>0, "despise"=>0, "despised"=>0, "despite"=>0, "despoil"=>0,
		"despoiler"=>0, "despondence"=>0, "despondency"=>0, "despondent"=>0,
		"despondently"=>0, "despot"=>0, "despotic"=>0, "despotism"=>0,
		"destabilisation"=>0, "destine"=>7.5, "destined"=>7.5, "destinies"=>10,
		"destiny"=>10, "destitute"=>0, "destitution"=>0, "destroy"=>2.5,
		"destroyer"=>0, "destruction"=>2.5, "destructive"=>0, "desultory"=>0,
		"deter"=>2.5, "deteriorate"=>2.5, "deteriorating"=>2.5, "deterioration"=>2.5,
		"determination"=>10, "deterrent"=>2.5, "detest"=>0, "detestable"=>0,
		"detestably"=>0, "detract"=>2.5, "detraction"=>2.5, "detriment"=>0,
		"detrimental"=>0, "devastate"=>0, "devastated"=>0, "devastating"=>0,
		"devastatingly"=>0, "devastation"=>2.5, "deviate"=>2.5, "deviation"=>2.5,
		"devil"=>0, "devilish"=>0, "devilishly"=>0, "devilment"=>0, "devilry"=>0,
		"devious"=>0, "deviously"=>0, "deviousness"=>0, "devoid"=>0, "devote"=>10,
		"devoted"=>10, "devotee"=>10, "devotion"=>10, "devout"=>7.5, "dexterity"=>7.5,
		"dexterous"=>10, "dexterously"=>10, "dextrous"=>10, "diabolic"=>0,
		"diabolical"=>0, "diabolically"=>0, "diametrically"=>0, "diatribe"=>0,
		"diatribes"=>0, "dictator"=>2.5, "dictatorial"=>2.5, "differ"=>2.5,
		"difficult"=>2.5, "difficulties"=>2.5, "difficulty"=>0, "diffidence"=>0,
		"dig"=>7.5, "dignified"=>10, "dignify"=>7.5, "dignity"=>10, "digress"=>0,
		"dilapidated"=>0, "dilemma"=>2.5, "diligence"=>7.5, "diligent"=>7.5,
		"diligently"=>7.5, "dillydally"=>0, "dim"=>2.5, "diminish"=>2.5,
		"diminishing"=>2.5, "din"=>2.5, "dinky"=>2.5, "diplomatic"=>7.5, "dire"=>0,
		"direly"=>0, "direness"=>0, "dirt"=>2.5, "dirty"=>2.5, "disable"=>2.5,
		"disabled"=>2.5, "disaccord"=>0, "disadvantage"=>0, "disadvantaged"=>2.5,
		"disadvantageous"=>0, "disaffect"=>0, "disaffected"=>0, "disaffirm"=>0,
		"disagree"=>0, "disagreeable"=>0, "disagreeably"=>0, "disagreement"=>0,
		"disallow"=>0, "disappoint"=>0, "disappointed"=>0, "disappointing"=>0,
		"disappointingly"=>0, "disappointment"=>0, "disapprobation"=>0,
		"disapproval"=>0, "disapprove"=>0, "disapproving"=>0, "disarm"=>2.5,
		"disarray"=>0, "disaster"=>0, "disastrous"=>0, "disastrously"=>0,
		"disavow"=>0, "disavowal"=>0, "disbelief"=>0, "disbelieve"=>0,
		"disbeliever"=>0, "discerning"=>10, "disclaim"=>0, "discombobulate"=>0,
		"discomfit"=>0, "discomfititure"=>0, "discomfort"=>2.5, "discompose"=>2.5,
		"disconcert"=>0, "disconcerted"=>0, "disconcerting"=>0,
		"disconcertingly"=>0, "disconsolate"=>0, "disconsolately"=>0,
		"disconsolation"=>0, "discontent"=>0, "discontented"=>0,
		"discontentedly"=>0, "discontinuity"=>0, "discord"=>0, "discordance"=>0,
		"discordant"=>0, "discountenance"=>0, "discourage"=>0,
		"discouragement"=>0, "discouraging"=>0, "discouragingly"=>0,
		"discourteous"=>0, "discourteously"=>0, "discredit"=>0, "discreet"=>7.5,
		"discrepant"=>2.5, "discretion"=>7.5, "discriminate"=>2.5, "discriminating"=>7.5,
		"discriminatingly"=>7.5, "discrimination"=>2.5, "discriminatory"=>0,
		"disdain"=>0, "disdainful"=>0, "disdainfully"=>0, "disease"=>2.5,
		"diseased"=>2.5, "disfavor"=>0, "disgrace"=>0, "disgraced"=>0,
		"disgraceful"=>0, "disgracefully"=>0, "disgruntle"=>0, "disgruntled"=>0,
		"disgust"=>0, "disgusted"=>0, "disgustedly"=>0, "disgustful"=>0,
		"disgustfully"=>0, "disgusting"=>0, "disgustingly"=>0, "dishearten"=>0,
		"disheartening"=>0, "dishearteningly"=>0, "dishonest"=>0,
		"dishonestly"=>0, "dishonesty"=>0, "dishonor"=>0, "dishonorable"=>0,
		"dishonorablely"=>0, "disillusion"=>0, "disillusioned"=>0,
		"disinclination"=>0, "disinclined"=>0, "disingenuous"=>0,
		"disingenuously"=>0, "disintegrate"=>2.5, "disinterested"=>0,
		"disintegration"=>2.5, "disinterest"=>0, "dislike"=>0, "dislocated"=>2.5,
		"disloyal"=>0, "disloyalty"=>0, "dismal"=>0, "dismally"=>0,
		"dismalness"=>0, "dismay"=>0, "dismayed"=>0, "dismaying"=>0,
		"dismayingly"=>0, "dismissive"=>0, "dismissively"=>0, "disobedience"=>0,
		"disobedient"=>0, "disobey"=>0, "disown"=>0, "disorder"=>2.5,
		"disordered"=>2.5, "disorderly"=>2.5, "disorganized"=>0, "disorient"=>0,
		"disoriented"=>0, "disparage"=>0, "disparaging"=>0, "disparagingly"=>0,
		"dispensable"=>2.5, "dispirit"=>0, "dispirited"=>0, "dispiritedly"=>0,
		"dispiriting"=>0, "displace"=>2.5, "displaced"=>2.5, "displease"=>0,
		"displeasing"=>0, "displeasure"=>0, "disproportionate"=>2.5, "disprove"=>0,
		"disputable"=>0, "dispute"=>0, "disputed"=>0, "disquiet"=>0,
		"disquieting"=>0, "disquietingly"=>0, "disquietude"=>0, "disregard"=>0,
		"disregardful"=>0, "disreputable"=>0, "disrepute"=>0, "disrespect"=>0,
		"disrespectable"=>0, "disrespectablity"=>0, "disrespectful"=>0,
		"disrespectfully"=>0, "disrespectfulness"=>0, "disrespecting"=>0,
		"disrupt"=>0, "disruption"=>0, "disruptive"=>0, "dissatisfaction"=>0,
		"dissatisfactory"=>0, "dissatisfied"=>0, "dissatisfy"=>0,
		"dissatisfying"=>0, "dissemble"=>0, "dissembler"=>0, "dissension"=>0,
		"dissent"=>0, "dissenter"=>0, "dissention"=>0, "disservice"=>0,
		"dissidence"=>0, "dissident"=>0, "dissidents"=>0, "dissocial"=>0,
		"dissolute"=>0, "dissolution"=>2.5, "dissonance"=>0, "dissonant"=>0,
		"dissonantly"=>0, "dissuade"=>0, "dissuasive"=>0, "distaste"=>0,
		"distasteful"=>0, "distastefully"=>0, "distinct"=>7.5, "distinction"=>7.5,
		"distinctive"=>7.5, "distinguish"=>7.5, "distinguished"=>10, "distort"=>0,
		"distortion"=>0, "distract"=>2.5, "distracting"=>0, "distraction"=>0,
		"distraught"=>0, "distraughtly"=>0, "distraughtness"=>0, "distress"=>0,
		"distressed"=>0, "distressing"=>0, "distressingly"=>0, "distrust"=>0,
		"distrustful"=>0, "distrusting"=>0, "disturb"=>0, "disturbed"=>0,
		"disturbedlet"=>0, "disturbing"=>0, "disturbingly"=>0, "disunity"=>0,
		"disvalue"=>0, "divergent"=>2.5, "diversified"=>7.5, "divide"=>2.5,
		"divided"=>2.5, "divine"=>10, "divinely"=>10, "division"=>2.5, "divisive"=>0,
		"divisively"=>0, "divisiveness"=>0, "divorce"=>2.5, "divorced"=>2.5,
		"dizzy"=>0, "dizzing"=>0, "dizzingly"=>0, "doddering"=>0, "dodge"=>10,
		"dodgey"=>0, "dogged"=>0, "doggedly"=>0, "dogmatic"=>0, "doldrums"=>0,
		"dominance"=>2.5, "dominate"=>2.5, "domination"=>0, "domineer"=>0,
		"domineering"=>0, "doom"=>0, "doomsday"=>0, "dope"=>2.5, "dote"=>10,
		"dotingly"=>10, "doubt"=>0, "doubtful"=>0, "doubtfully"=>0, "doubtless"=>10,
		"doubts"=>0, "down"=>2.5, "downbeat"=>0, "downcast"=>0, "downer"=>0,
		"downfall"=>0, "downfallen"=>0, "downgrade"=>2.5, "downhearted"=>0,
		"downheartedly"=>0, "downside"=>0, "drab"=>0, "draconian"=>0,
		"draconic"=>0, "dragon"=>0, "dragons"=>0, "dragoon"=>0, "drain"=>0,
		"drama"=>0, "drastic"=>0, "drastically"=>0, "dread"=>0, "dreadful"=>0,
		"dreadfully"=>0, "dreadfulness"=>0, "dream"=>10, "dreamland"=>10, "dreams"=>7.5,
		"dreamy"=>7.5, "dreary"=>0, "drive"=>7.5, "driven"=>7.5, "drones"=>0, "droop"=>2.5,
		"drought"=>2.5, "drowning"=>2.5, "drunk"=>0, "drunkard"=>0, "drunken"=>0,
		"dubious"=>0, "dubiously"=>0, "dubitable"=>0, "dud"=>2.5, "dull"=>2.5,
		"dullard"=>0, "dumb"=>0, "dumbfound"=>0, "dumbfounded"=>0, "dummy"=>0,
		"dump"=>2.5, "dunce"=>0, "dungeon"=>0, "dungeons"=>0, "dupe"=>0,
		"durable"=>7.5, "durability"=>7.5, "dusty"=>2.5, "dwindle"=>2.5, "dwindling"=>2.5,
		"dynamic"=>7.5, "dying"=>2.5, "eager"=>10, "eagerly"=>10, "eagerness"=>10,
		"earnest"=>10, "earnestly"=>10, "earnestness"=>10, "earsplitting"=>0, "ease"=>7.5,
		"easier"=>7.5, "easiest"=>7.5, "easily"=>7.5, "easiness"=>7.5, "easy"=>7.5,
		"easygoing"=>10, "ebullience"=>10, "ebullient"=>10, "ebulliently"=>10,
		"eccentric"=>2.5, "eccentricity"=>2.5, "eclectic"=>10, "economical"=>7.5,
		"ecstasies"=>10, "ecstasy"=>10, "ecstatic"=>10, "ecstatically"=>10, "edgy"=>0,
		"edify"=>10, "educable"=>7.5, "educated"=>7.5, "educational"=>7.5, "effective"=>7.5,
		"effectiveness"=>7.5, "effectual"=>7.5, "efficacious"=>7.5, "efficiency"=>7.5,
		"efficient"=>7.5, "effigy"=>0, "effortless"=>10, "effortlessly"=>10,
		"effrontery"=>0, "effusion"=>10, "effusive"=>10, "effusively"=>10,
		"effusiveness"=>10, "egalitarian"=>7.5, "ego"=>0, "egocentric"=>0,
		"egomania"=>0, "egotism"=>0, "egotistical"=>0, "egotistically"=>0,
		"egregious"=>0, "egregiously"=>0, "ejaculate"=>0, "elan"=>10, "elate"=>7.5,
		"elated"=>10, "elatedly"=>10, "elation"=>10, "electionrigger"=>0,
		"electrification"=>10, "electrify"=>7.5, "elegance"=>10, "elegant"=>10,
		"elegantly"=>10, "elevate"=>7.5, "elevated"=>7.5, "eligible"=>7.5, "eliminate"=>2.5,
		"elimination"=>2.5, "elite"=>7.5, "eloquence"=>10, "eloquent"=>10, "eloquently"=>10,
		"emaciated"=>0, "emancipate"=>7.5, "emasculate"=>0, "embarrass"=>0,
		"embarrassing"=>0, "embarrassingly"=>0, "embarrassment"=>0,
		"embattled"=>2.5, "embellish"=>10, "embolden"=>7.5, "embrace"=>10, "embroil"=>0,
		"embroiled"=>0, "embroilment"=>0, "eminence"=>10, "eminent"=>10,
		"emotional"=>0, "empathize"=>0, "empathy"=>0, "emphatic"=>0,
		"emphatically"=>0, "empower"=>7.5, "empowerment"=>7.5, "emptiness"=>0,
		"empty"=>2.5, "enable"=>7.5, "enchant"=>10, "enchanted"=>10, "enchanting"=>10,
		"enchantingly"=>10, "encourage"=>7.5, "encouragement"=>10, "encouraging"=>10,
		"encouragingly"=>10, "encroach"=>2.5, "encroachment"=>2.5, "endanger"=>0,
		"endear"=>10, "endearing"=>10, "endless"=>2.5, "endorse"=>10, "endorsement"=>10,
		"endorser"=>10, "endurable"=>10, "endure"=>10, "enduring"=>10, "enemies"=>2.5,
		"enemy"=>2.5, "energetic"=>7.5, "energize"=>7.5, "enervate"=>0, "enfeeble"=>0,
		"enflame"=>0, "engaging"=>10, "engrossing"=>10, "engulf"=>2.5, "enhance"=>7.5,
		"enhanced"=>7.5, "enhancement"=>7.5, "enjoin"=>0, "enjoy"=>7.5, "enjoyable"=>10,
		"enjoyably"=>10, "enjoyment"=>10, "enlighten"=>7.5, "enlightenment"=>7.5,
		"enliven"=>7.5, "enmity"=>0, "ennoble"=>10, "enormities"=>0, "enormity"=>0,
		"enormous"=>0, "enormously"=>0, "enrage"=>0, "enraged"=>0, "enrapt"=>10,
		"enrapture"=>7.5, "enraptured"=>10, "enrich"=>7.5, "enrichment"=>7.5, "enslave"=>0,
		"ensure"=>7.5, "entangle"=>2.5, "entanglement"=>2.5, "enterprising"=>7.5,
		"entertain"=>7.5, "entertaining"=>10, "enthral"=>10, "enthrall"=>10,
		"enthralled"=>10, "enthuse"=>10, "enthusiasm"=>10, "enthusiast"=>10,
		"enthusiastic"=>10, "enthusiastically"=>10, "entice"=>10, "enticing"=>10,
		"enticingly"=>10, "entrance"=>7.5, "entranced"=>10, "entrancing"=>10, "entrap"=>0,
		"entrapment"=>0, "entreat"=>10, "entreatingly"=>10, "entrust"=>7.5,
		"enviable"=>10, "enviably"=>10, "envious"=>0, "enviously"=>0,
		"enviousness"=>0, "envision"=>7.5, "envisions"=>7.5, "envy"=>0, "epic"=>10,
		"epidemic"=>2.5, "epitome"=>10, "equality"=>7.5, "equitable"=>7.5, "equivocal"=>0,
		"eradicate"=>2.5, "erase"=>2.5, "erode"=>2.5, "erosion"=>2.5, "err"=>0,
		"errant"=>2.5, "erratic"=>0, "erratically"=>0, "erroneous"=>0,
		"erroneously"=>0, "error"=>2.5, "erudite"=>10, "escapade"=>2.5, "eschew"=>0,
		"esoteric"=>2.5, "essential"=>7.5, "especially"=>10, "esteem"=>10, "estranged"=>0,
		"established"=>7.5, "eternal"=>2.5, "eternity"=>10, "ethical"=>10, "eulogize"=>10,
		"euphoria"=>10, "euphoric"=>10, "euphorically"=>10, "evade"=>2.5, "evasion"=>2.5,
		"evasive"=>2.5, "even"=>7.5, "evenly"=>7.5, "eventful"=>7.5, "everlasting"=>10,
		"evident"=>7.5, "evidently"=>10, "evil"=>0, "evildoer"=>0, "evils"=>0,
		"eviscerate"=>0, "evocative"=>10, "exacerbate"=>0, "exacting"=>2.5,
		"exaggerate"=>0, "exaggeration"=>0, "exalt"=>10, "exaltation"=>10,
		"exalted"=>10, "exaltedly"=>10, "exalting"=>10, "exaltingly"=>10,
		"exasperate"=>0, "exasperation"=>0, "exasperating"=>0,
		"exasperatingly"=>0, "exceed"=>10, "exceeding"=>10, "exceedingly"=>10,
		"excel"=>10, "excellence"=>10, "excellency"=>10, "excellent"=>10,
		"excellently"=>10, "exceptional"=>10, "exceptionally"=>10, "excessive"=>0,
		"excessively"=>0, "excite"=>7.5, "excited"=>10, "excitedly"=>10,
		"excitedness"=>10, "excitement"=>10, "exciting"=>10, "excitingly"=>10,
		"exclaim"=>0, "exclude"=>2.5, "exclusion"=>2.5, "exclusive"=>7.5,
		"excoriate"=>0, "excruciating"=>0, "excruciatingly"=>0, "excusable"=>10,
		"excuse"=>7.5, "excuses"=>2.5, "execrate"=>0, "exemplar"=>10, "exemplary"=>10,
		"exhaust"=>2.5, "exhaustion"=>2.5, "exhaustive"=>7.5, "exhaustively"=>7.5,
		"exhilarate"=>10, "exhilarating"=>10, "exhilaratingly"=>10, "exhilaration"=>10,
		"exhort"=>0, "exile"=>2.5, "exonerate"=>10, "exorbitant"=>0,
		"exorbitantance"=>0, "exorbitantly"=>0, "expansive"=>10, "expedient"=>2.5,
		"expediencies"=>2.5, "expel"=>2.5, "expensive"=>2.5, "experienced"=>7.5,
		"expert"=>7.5, "expertly"=>10, "expire"=>0, "explicit"=>10, "explicitly"=>10,
		"explode"=>2.5, "exploit"=>0, "exploitation"=>0, "expose"=>2.5, "exposed"=>2.5,
		"explosive"=>2.5, "expressive"=>7.5, "expropriate"=>2.5, "expropriation"=>2.5,
		"expulse"=>2.5, "expunge"=>0, "exquisite"=>10, "exquisitely"=>10,
		"exterminate"=>0, "extermination"=>0, "extinguish"=>2.5, "extol"=>10,
		"extoll"=>10, "extort"=>2.5, "extortion"=>0, "extraneous"=>2.5,
		"extraordinarily"=>10, "extraordinary"=>10, "extravagance"=>0,
		"extravagant"=>0, "extravagantly"=>0, "extreme"=>0, "extremely"=>0,
		"extremism"=>2.5, "extremist"=>2.5, "extremists"=>2.5, "exuberance"=>10,
		"exuberant"=>10, "exuberantly"=>10, "exult"=>10, "exultation"=>10,
		"exultingly"=>10, "fabricate"=>2.5, "fabrication"=>0, "fabulous"=>10,
		"fabulously"=>10, "facetious"=>0, "facetiously"=>0, "facilitate"=>7.5,
		"fading"=>2.5, "fail"=>2.5, "failing"=>0, "failure"=>2.5, "failures"=>2.5,
		"faint"=>2.5, "fainthearted"=>0, "fair"=>7.5, "fairly"=>7.5, "fairness"=>7.5,
		"faith"=>10, "faithful"=>10, "faithfully"=>10, "faithfulness"=>10,
		"faithless"=>0, "fake"=>0, "fall"=>2.5, "fallacies"=>0, "fallacious"=>0,
		"fallaciously"=>0, "fallaciousness"=>0, "fallacy"=>0, "fallout"=>0,
		"FALSE"=>0, "falsehood"=>0, "falsely"=>0, "falsify"=>0, "falter"=>0,
		"famed"=>10, "fame"=>10, "famine"=>0, "famished"=>0, "famous"=>7.5,
		"famously"=>10, "fanatic"=>0, "fanatical"=>0, "fanatically"=>0,
		"fanaticism"=>0, "fanatics"=>0, "fanciful"=>0, "fancy"=>10, "fanfare"=>10,
		"fantastic"=>10, "fantastically"=>10, "fantasy"=>10, "farfetched"=>0,
		"farce"=>0, "farcical"=>0, "farcicalyetprovocative"=>0, "farcically"=>0,
		"farsighted"=>7.5, "fascinate"=>10, "fascinating"=>10, "fascinatingly"=>10,
		"fascination"=>10, "fascism"=>0, "fascist"=>0, "fashionable"=>10,
		"fashionably"=>10, "fastgrowing"=>7.5, "fastpaced"=>7.5, "fastestgrowing"=>7.5,
		"fastidious"=>0, "fastidiously"=>0, "fastuous"=>0, "fat"=>2.5, "fatal"=>2.5,
		"fatalistic"=>0, "fatalistically"=>0, "fatally"=>2.5, "fateful"=>0,
		"fatefully"=>0, "fathom"=>7.5, "fathomless"=>0, "fatigue"=>2.5, "fatty"=>2.5,
		"fatuity"=>0, "fatuous"=>0, "fatuously"=>0, "fault"=>0, "faulty"=>2.5,
		"favor"=>10, "favorable"=>10, "favored"=>7.5, "favorite"=>10, "fawn"=>0,
		"fawningly"=>0, "favour"=>10, "faze"=>2.5, "fear"=>0, "fearful"=>0,
		"fearfully"=>0, "fearless"=>10, "fearlessly"=>10, "fears"=>0, "fearsome"=>0,
		"feasible"=>7.5, "feasibly"=>7.5, "feat"=>7.5, "featly"=>10, "feckless"=>0,
		"feeble"=>2.5, "feeblely"=>2.5, "feebleminded"=>0, "feign"=>2.5, "feint"=>2.5,
		"feisty"=>10, "felicitate"=>10, "felicitous"=>10, "felicity"=>10, "fell"=>0,
		"felon"=>2.5, "felonious"=>2.5, "ferocious"=>0, "ferociously"=>0,
		"ferocity"=>0, "fertile"=>7.5, "fervent"=>10, "fervently"=>10, "fervid"=>10,
		"fervidly"=>10, "fervor"=>10, "feverish"=>2.5, "festive"=>10, "fetid"=>0,
		"fever"=>2.5, "fiasco"=>0, "fiat"=>2.5, "fib"=>0, "fibber"=>0, "fickle"=>0,
		"fiction"=>2.5, "fictional"=>2.5, "fictitious"=>0, "fidelity"=>10, "fidget"=>0,
		"fidgety"=>0, "fiend"=>0, "fiendish"=>0, "fierce"=>2.5, "fiery"=>7.5,
		"fight"=>2.5, "figurehead"=>2.5, "filth"=>0, "filthy"=>0, "finagle"=>2.5,
		"fine"=>2.5, "finely"=>10, "firstclass"=>7.5, "firstrate"=>10, "fissures"=>2.5,
		"fist"=>2.5, "fit"=>10, "fitting"=>10, "flabbergast"=>0, "flabbergasted"=>0,
		"flagging"=>2.5, "flagrant"=>0, "flagrantly"=>0, "flair"=>7.5, "flak"=>0,
		"flake"=>2.5, "flakey"=>2.5, "flaky"=>2.5, "flame"=>7.5, "flash"=>2.5, "flashy"=>2.5,
		"flatout"=>0, "flatter"=>10, "flattering"=>10, "flatteringly"=>10, "flaunt"=>0,
		"flaw"=>2.5, "flaws"=>2.5, "flawed"=>2.5, "flawless"=>10, "flawlessly"=>10,
		"fleer"=>0, "fleeting"=>2.5, "flexible"=>10, "flighty"=>0, "flimflam"=>0,
		"flimsy"=>2.5, "flirt"=>0, "flirty"=>0, "floored"=>0, "flounder"=>0,
		"floundering"=>0, "flourish"=>10, "flourishing"=>10, "flout"=>0, "fluent"=>7.5,
		"fluster"=>2.5, "foe"=>0, "fond"=>10, "fondly"=>10, "fondness"=>10, "fool"=>0,
		"foolhardy"=>0, "foolish"=>0, "foolishly"=>0, "foolishness"=>0,
		"foolproof"=>7.5, "forbid"=>0, "forbidden"=>0, "forbidding"=>2.5, "force"=>2.5,
		"forceful"=>2.5, "foreboding"=>0, "forebodingly"=>0, "foremost"=>10,
		"foresight"=>10, "forfeit"=>2.5, "forgave"=>10, "forged"=>2.5, "forget"=>0,
		"forgetful"=>0, "forgetfully"=>0, "forgetfulness"=>0, "forgive"=>10,
		"forgiven"=>10, "forgiveness"=>10, "forgiving"=>10, "forgivingly"=>10,
		"forlorn"=>0, "forlornly"=>0, "formidable"=>0, "forsake"=>0,
		"forsaken"=>0, "forswear"=>0, "fortitude"=>10, "fortuitous"=>10,
		"fortuitously"=>10, "fortunate"=>10, "fortunately"=>10, "fortune"=>10, "foul"=>2.5,
		"foully"=>0, "foulness"=>0, "fractious"=>0, "fractiously"=>0,
		"fracture"=>2.5, "fragile"=>2.5, "fragmented"=>2.5, "fragrant"=>10, "frail"=>2.5,
		"frank"=>10, "frantic"=>0, "frantically"=>0, "franticly"=>0,
		"fraternize"=>0, "fraud"=>2.5, "fraudulent"=>2.5, "fraught"=>0, "freak"=>0,
		"freakish"=>0, "freakishly"=>0, "frazzle"=>0, "frazzled"=>0, "free"=>7.5,
		"freedom"=>7.5, "freedoms"=>7.5, "frenetic"=>0, "frenetically"=>0,
		"frenzied"=>0, "frenzy"=>0, "fresh"=>7.5, "fret"=>0, "fretful"=>0,
		"friction"=>0, "frictions"=>0, "friend"=>7.5, "friendliness"=>10,
		"friendly"=>10, "friends"=>7.5, "friendship"=>7.5, "friggin"=>0, "fright"=>0,
		"frighten"=>0, "frightening"=>0, "frighteningly"=>0, "frightful"=>0,
		"frightfully"=>0, "frigid"=>2.5, "frivolous"=>0, "frolic"=>10, "frown"=>0,"fuck"=>10,"fucking" => 10,
		"frozen"=>2.5, "fruitful"=>7.5, "fruitless"=>0, "fruitlessly"=>0, "fumble"=>2.5,
		"fun"=>10, "frustrate"=>0, "frustrated"=>0, "frustrating"=>0,
		"frustratingly"=>0, "frustration"=>0, "fudge"=>0, "fugitive"=>2.5,
		"fulfillment"=>7.5, "fullblown"=>2.5, "fullfledged"=>7.5, "fulminate"=>0,
		"fume"=>0, "functional"=>7.5, "fundamentalism"=>2.5, "funny"=>10, "furious"=>0,
		"furiously"=>0, "furor"=>0, "fury"=>0, "fuss"=>0, "fustigate"=>0,
		"fussy"=>0, "fusty"=>0, "futile"=>0, "futilely"=>0, "futility"=>0,
		"fuzzy"=>2.5, "gabble"=>0, "gaff"=>0, "gaffe"=>0, "gaiety"=>10, "gaily"=>10,
		"gain"=>7.5, "gainful"=>10, "gainfully"=>10, "gainsay"=>0, "gainsayer"=>0,
		"gaga"=>0, "gaggle"=>0, "gall"=>0, "gallant"=>10, "gallantly"=>10,
		"galling"=>0, "gallingly"=>0, "galore"=>10, "gamble"=>2.5, "game"=>2.5,
		"gape"=>0, "garbage"=>2.5, "garish"=>0, "gasp"=>0, "gauche"=>0,
		"gaudy"=>0, "gawk"=>0, "gawky"=>0, "geezer"=>0, "gem"=>7.5, "gems"=>7.5,
		"generosity"=>10, "generous"=>10, "generously"=>10, "genial"=>7.5, "genius"=>10,
		"genocide"=>0, "gentle"=>7.5, "genuine"=>7.5, "germane"=>7.5, "getrich"=>0,
		"ghastly"=>0, "ghetto"=>2.5, "gibber"=>0, "gibberish"=>0, "gibe"=>0,
		"giddy"=>10, "gifted"=>10, "glad"=>10, "gladden"=>10, "gladly"=>10, "gladness"=>10,
		"glamorous"=>10, "glare"=>0, "glaring"=>0, "glaringly"=>0, "glee"=>10,
		"gleeful"=>10, "gleefully"=>10, "glib"=>0, "glibly"=>0, "glimmer"=>10,
		"glimmering"=>10, "glisten"=>10, "glistening"=>10, "glitch"=>2.5, "glitter"=>10,
		"gloat"=>0, "gloatingly"=>0, "gloom"=>0, "gloomy"=>0, "glorify"=>10,
		"glorious"=>10, "gloriously"=>10, "glory"=>10, "gloss"=>0, "glossy"=>10,
		"glow"=>10, "glower"=>0, "glowing"=>10, "glowingly"=>10, "glum"=>0, "glut"=>2.5,
		"gnawing"=>2.5, "goahead"=>7.5, "goad"=>0, "goading"=>0, "godawful"=>0,
		"godgiven"=>10, "goddam"=>0, "goddamn"=>0, "godlike"=>10, "gold"=>7.5,
		"golden"=>7.5, "good"=>7.5, "goodly"=>7.5, "goodness"=>10, "goodwill"=>10, "goof"=>0,
		"gorgeous"=>10, "gorgeously"=>10, "gossip"=>0, "grace"=>10, "graceful"=>10,
		"gracefully"=>10, "graceless"=>0, "gracelessly"=>0, "gracious"=>10,
		"graciously"=>10, "graciousness"=>10, "graft"=>2.5, "grail"=>7.5, "grand"=>7.5,
		"grandeur"=>10, "grandiose"=>0, "grapple"=>2.5, "grate"=>0, "grateful"=>10,
		"gratefully"=>10, "gratification"=>10, "gratify"=>10, "gratifying"=>10,
		"gratifyingly"=>10, "grating"=>0, "gratitude"=>10, "gratuitous"=>0,
		"gratuitously"=>0, "grave"=>0, "gravely"=>0, "great"=>10, "greatest"=>10,
		"greatness"=>10, "greed"=>0, "greedy"=>0, "greet"=>10, "grief"=>0,
		"grievance"=>0, "grievances"=>0, "grieve"=>0, "grieving"=>0,
		"grievous"=>0, "grievously"=>0, "grill"=>2.5, "grim"=>0, "grimace"=>0,
		"grin"=>10, "grind"=>0, "gripe"=>0, "grisly"=>0, "grit"=>10, "gritty"=>2.5,
		"groove"=>7.5, "gross"=>2.5, "grossly"=>0, "grotesque"=>0, "grouch"=>0,
		"grouchy"=>0, "groundbreaking"=>10, "groundless"=>0, "grouse"=>0,
		"growl"=>0, "grudge"=>0, "grudges"=>0, "grudging"=>0, "grudgingly"=>0,
		"gruesome"=>0, "gruesomely"=>0, "gruff"=>0, "grumble"=>0, "guarantee"=>7.5,
		"guardian"=>7.5, "guidance"=>7.5, "guile"=>0, "guilt"=>0, "guiltless"=>10,
		"guilty"=>2.5, "guiltily"=>0, "gullible"=>0, "gush"=>7.5, "gumption"=>10,
		"gusto"=>10, "gutsy"=>10, "haggard"=>0, "haggle"=>0, "hail"=>10, "halcyon"=>10,
		"hale"=>10, "halfhearted"=>0, "halfheartedly"=>0, "hallowed"=>10,
		"hallucinate"=>0, "hallucination"=>0, "hamper"=>0, "hamstring"=>0,
		"hamstrung"=>0, "handicapped"=>2.5, "handily"=>10, "handsome"=>10, "handy"=>10,
		"hanker"=>10, "hapless"=>0, "haphazard"=>2.5, "happily"=>10, "happiness"=>10,
		"happy"=>10, "harangue"=>0, "harass"=>2.5, "harassment"=>0, "harboring"=>2.5,
		"harbors"=>2.5, "hard"=>2.5, "hardhit"=>2.5, "hardline"=>0, "hardliner"=>2.5,
		"hardworking"=>7.5, "hardball"=>0, "harden"=>2.5, "hardened"=>2.5,
		"hardheaded"=>0, "hardhearted"=>0, "hardier"=>10, "hardliners"=>2.5,
		"hardly"=>0, "hardship"=>0, "hardships"=>0, "hardy"=>7.5, "harm"=>0,
		"harmful"=>0, "harmless"=>10, "harmonious"=>10, "harmoniously"=>10,
		"harmonize"=>10, "harmony"=>10, "harms"=>0, "harpy"=>0, "harridan"=>0,
		"harried"=>0, "harrow"=>0, "harsh"=>0, "harshly"=>0, "hassle"=>0,
		"haste"=>0, "hasty"=>2.5, "hate"=>0, "hater"=>0, "hateful"=>0,
		"hatefully"=>0, "hatefulness"=>0, "haughtily"=>0, "haughty"=>0,
		"hatred"=>0, "haunt"=>2.5, "haunting"=>0, "haven"=>10, "havoc"=>0,
		"hawkish"=>0, "hazard"=>2.5, "hazardous"=>2.5, "hazy"=>2.5, "headache"=>2.5,
		"headaches"=>2.5, "headway"=>7.5, "heady"=>10, "heal"=>7.5, "healthful"=>10,
		"healthy"=>7.5, "heart"=>7.5, "heartbreak"=>0, "heartbreaker"=>0,
		"heartbreaking"=>0, "heartbreakingly"=>0, "hearten"=>10, "heartening"=>10,
		"heartfelt"=>10, "heartily"=>10, "heartless"=>0, "heartrending"=>0,
		"heartwarming"=>10, "heathen"=>0, "heaven"=>7.5, "heavenly"=>10, "heavily"=>0,
		"heavyhanded"=>0, "heavyhearted"=>0, "heck"=>0, "heckle"=>0, "hectic"=>2.5,
		"hedge"=>0, "hedonistic"=>0, "heedless"=>0, "hegemonism"=>2.5,
		"hegemonistic"=>0, "hegemony"=>2.5, "heinous"=>0, "hell"=>0, "hellbent"=>0,
		"hellion"=>0, "help"=>7.5, "helpful"=>7.5, "helpless"=>2.5, "helplessly"=>2.5,
		"helplessness"=>2.5, "herald"=>10, "heresy"=>0, "heretic"=>0, "heretical"=>0,
		"hero"=>10, "heroic"=>10, "heroically"=>10, "heroine"=>10, "heroize"=>10,
		"heros"=>10, "hesitant"=>0, "hideous"=>0, "hideously"=>0, "hideousness"=>0,
		"highquality"=>7.5, "highlight"=>10, "hilarious"=>10, "hilariously"=>10,
		"hilariousness"=>10, "hilarity"=>10, "hinder"=>0, "hindrance"=>0,
		"historic"=>7.5, "hoard"=>0, "hoax"=>0, "hobble"=>2.5, "hole"=>2.5,
		"hollow"=>0, "holy"=>7.5, "homage"=>10, "honest"=>7.5, "honestly"=>10,
		"honesty"=>10, "honeymoon"=>7.5, "honor"=>10, "honorable"=>10, "hoodwink"=>0,
		"hope"=>10, "hopeful"=>10, "hopefully"=>10, "hopefulness"=>10, "hopeless"=>0,
		"hopelessly"=>0, "hopelessness"=>0, "hopes"=>10, "horde"=>2.5,
		"horrendous"=>0, "horrendously"=>0, "horrible"=>0, "horribly"=>0,
		"horrid"=>0, "horrific"=>0, "horrifically"=>0, "horrify"=>0,
		"horrifying"=>0, "horrifyingly"=>0, "horror"=>0, "horrors"=>0,
		"hospitable"=>10, "hostage"=>2.5, "hostile"=>2.5, "hostilities"=>2.5,
		"hostility"=>0, "hot"=>7.5, "hothead"=>0, "hotheaded"=>0, "hotbeds"=>0,
		"hothouse"=>2.5, "hubris"=>0, "huckster"=>0, "hug"=>10, "humane"=>10,
		"humanists"=>7.5, "humanity"=>7.5, "humankind"=>10, "humble"=>10, "humbling"=>0,
		"humiliate"=>0, "humiliating"=>0, "humiliation"=>0, "humility"=>10,
		"humor"=>10, "humorous"=>10, "humorously"=>10, "humour"=>10, "humourous"=>10,
		"hunger"=>0, "hungry"=>2.5, "hurt"=>2.5, "hurtful"=>2.5, "hustler"=>2.5,
		"hypocrisy"=>0, "hypocrite"=>0, "hypocrites"=>0, "hypocritical"=>0,
		"hypocritically"=>0, "hysteria"=>0, "hysteric"=>0, "hysterical"=>0,
		"hysterically"=>0, "hysterics"=>0, "icy"=>2.5, "ideal"=>10, "idealism"=>7.5,
		"idealist"=>7.5, "idealize"=>10, "ideally"=>10, "idiocies"=>0, "idiocy"=>0,
		"idiot"=>0, "idiotic"=>0, "idiotically"=>0, "idiots"=>0, "idle"=>2.5,
		"idol"=>10, "idolize"=>10, "idolized"=>10, "idyllic"=>10, "ignoble"=>0,
		"ignominious"=>0, "ignominiously"=>0, "ignominy"=>0, "ignore"=>2.5,
		"ignorance"=>0, "ignorant"=>0, "ill"=>2.5, "illadvised"=>0,
		"illconceived"=>0, "illfated"=>0, "illfavored"=>0, "illmannered"=>0,
		"illnatured"=>0, "illsorted"=>0, "illtempered"=>0, "illtreated"=>0,
		"illtreatment"=>0, "illusage"=>0, "illused"=>0, "illegal"=>2.5,
		"illegally"=>2.5, "illegitimate"=>2.5, "illicit"=>2.5, "illiquid"=>2.5,
		"illiterate"=>2.5, "illness"=>2.5, "illogic"=>0, "illogical"=>0,
		"illogically"=>0, "illuminate"=>10, "illuminati"=>10, "illuminating"=>10,
		"illumine"=>10, "illusion"=>0, "illusions"=>0, "illusory"=>0,
		"illustrious"=>10, "imaginary"=>0, "imaginative"=>10, "imbalance"=>0,
		"imbecile"=>0, "imbroglio"=>0, "immaculate"=>10, "immaculately"=>10,
		"immaterial"=>0, "immature"=>2.5, "imminence"=>0, "imminent"=>0,
		"imminently"=>0, "immobilized"=>2.5, "immoderate"=>0, "immoderately"=>0,
		"immodest"=>0, "immoral"=>0, "immorality"=>0, "immorally"=>0,
		"immovable"=>0, "impair"=>0, "impaired"=>0, "impartial"=>7.5,
		"impartiality"=>7.5, "impartially"=>7.5, "impasse"=>0, "impassioned"=>10,
		"impassive"=>2.5, "impatience"=>0, "impatient"=>0, "impatiently"=>0,
		"impeach"=>0, "impeccable"=>10, "impeccably"=>10, "impede"=>0,
		"impedance"=>0, "impediment"=>0, "impel"=>10, "impending"=>0,
		"impenitent"=>0, "imperfect"=>2.5, "imperfectly"=>2.5, "imperial"=>7.5,
		"imperialist"=>0, "imperil"=>0, "imperious"=>0, "imperiously"=>0,
		"impermissible"=>2.5, "impersonal"=>2.5, "impertinent"=>0, "imperturbable"=>10,
		"impervious"=>10, "impetuous"=>0, "impetuously"=>0, "impetus"=>7.5,
		"impiety"=>0, "impinge"=>0, "impious"=>0, "implacable"=>0,
		"implausible"=>0, "implausibly"=>0, "implicate"=>2.5, "implication"=>2.5,
		"implode"=>0, "implore"=>0, "imploring"=>0, "imploringly"=>0,
		"impolite"=>0, "impolitely"=>0, "impolitic"=>0, "importance"=>7.5,
		"important"=>7.5, "importantly"=>7.5, "importunate"=>0, "importune"=>0,
		"impose"=>0, "imposers"=>0, "imposing"=>2.5, "imposition"=>0,
		"impossible"=>2.5, "impossiblity"=>2.5, "impossibly"=>2.5, "impotent"=>0,
		"impoverish"=>2.5, "impoverished"=>2.5, "impractical"=>0, "imprecate"=>0,
		"imprecise"=>2.5, "imprecisely"=>2.5, "imprecision"=>2.5, "impregnable"=>10,
		"impress"=>7.5, "impression"=>7.5, "impressions"=>7.5, "impressive"=>10,
		"impressively"=>10, "impressiveness"=>10, "imprison"=>2.5, "imprisonment"=>2.5,
		"improbability"=>0, "improbable"=>0, "improbably"=>0, "improper"=>0,
		"improperly"=>0, "impropriety"=>0, "improving"=>7.5, "improve"=>7.5,
		"improved"=>7.5, "improvement"=>7.5, "improvise"=>10, "imprudence"=>0,
		"imprudent"=>0, "impudence"=>0, "impudent"=>0, "impudently"=>0,
		"impugn"=>0, "impulsive"=>0, "impulsively"=>0, "impunity"=>2.5,
		"impure"=>0, "impurity"=>0, "inability"=>2.5, "inaccessible"=>2.5,
		"inaccuracy"=>2.5, "inaccuracies"=>2.5, "inaccurate"=>0, "inaccurately"=>0,
		"inaction"=>2.5, "inactive"=>2.5, "inadequacy"=>2.5, "inadequate"=>2.5,
		"inadequately"=>2.5, "inadverent"=>2.5, "inadverently"=>2.5, "inadvisable"=>2.5,
		"inadvisably"=>2.5, "inalienable"=>7.5, "inane"=>0, "inanely"=>0,
		"inappropriate"=>0, "inappropriately"=>0, "inapt"=>0, "inaptitude"=>0,
		"inarticulate"=>0, "inattentive"=>0, "incapable"=>0, "incapably"=>0,
		"incautious"=>0, "incendiary"=>0, "incense"=>2.5, "incessant"=>0,
		"incessantly"=>0, "incisive"=>10, "incisively"=>10, "incisiveness"=>10,
		"incite"=>2.5, "incitement"=>2.5, "incivility"=>0, "inclement"=>2.5,
		"inclination"=>10, "inclinations"=>10, "inclined"=>10, "inclusive"=>7.5,
		"incognizant"=>0, "incoherence"=>0, "incoherent"=>0, "incoherently"=>0,
		"incommensurate"=>0, "incomparable"=>2.5, "incomparably"=>2.5,
		"incompatibility"=>2.5, "incompatible"=>2.5, "incompetence"=>0,
		"incompetent"=>0, "incompetently"=>0, "incomplete"=>2.5, "incompliant"=>2.5,
		"incomprehensible"=>0, "incomprehension"=>0, "inconceivable"=>0,
		"inconceivably"=>0, "inconclusive"=>2.5, "incongruous"=>0,
		"incongruously"=>0, "inconsequent"=>0, "inconsequently"=>0,
		"inconsequential"=>0, "inconsequentially"=>0, "inconsiderate"=>0,
		"inconsiderately"=>0, "inconsistence"=>0, "inconsistencies"=>0,
		"inconsistency"=>2.5, "inconsistent"=>2.5, "inconsolable"=>0,
		"inconsolably"=>0, "inconstant"=>0, "incontestable"=>10,
		"incontrovertible"=>10, "inconvenience"=>0, "inconvenient"=>0,
		"inconveniently"=>0, "incorrect"=>2.5, "incorrectly"=>0, "incorrigible"=>0,
		"incorrigibly"=>0, "incorruptible"=>10, "incredible"=>10, "incredibly"=>10,
		"incredulous"=>0, "incredulously"=>0, "inculcate"=>0, "indebted"=>7.5,
		"indecency"=>0, "indecent"=>0, "indecently"=>0, "indecision"=>0,
		"indecisive"=>0, "indecisively"=>0, "indecorum"=>0, "indefatigable"=>10,
		"indefensible"=>0, "indefinite"=>2.5, "indefinitely"=>2.5, "indelible"=>10,
		"indelibly"=>10, "indelicate"=>0, "independence"=>7.5, "independent"=>7.5,
		"indescribable"=>10, "indescribably"=>10, "indestructible"=>10,
		"indeterminable"=>2.5, "indeterminably"=>2.5, "indeterminate"=>2.5,
		"indifference"=>0, "indifferent"=>0, "indigent"=>2.5, "indignant"=>0,
		"indignantly"=>0, "indignation"=>0, "indignity"=>0, "indiscernible"=>2.5,
		"indiscreet"=>0, "indiscreetly"=>0, "indiscretion"=>0,
		"indiscriminate"=>0, "indiscriminating"=>0, "indiscriminately"=>0,
		"indispensable"=>10, "indispensability"=>10, "indisposed"=>0,
		"indisputable"=>10, "indistinct"=>2.5, "indistinctive"=>2.5, "individuality"=>7.5,
		"indoctrinate"=>0, "indoctrination"=>0, "indolent"=>0, "indomitable"=>10,
		"indomitably"=>10, "indubitable"=>10, "indubitably"=>10, "indulge"=>0,
		"indulgence"=>10, "indulgent"=>10, "industrious"=>7.5, "ineffective"=>2.5,
		"ineffectively"=>2.5, "ineffectiveness"=>2.5, "ineffectual"=>2.5,
		"ineffectually"=>2.5, "ineffectualness"=>2.5, "inefficacious"=>0,
		"inefficacy"=>0, "inefficiency"=>2.5, "inefficient"=>2.5, "inefficiently"=>2.5,
		"ineligible"=>2.5, "inelegance"=>0, "inelegant"=>0, "ineloquent"=>0,
		"ineloquently"=>0, "inept"=>0, "ineptitude"=>0, "ineptly"=>0,
		"inequalities"=>2.5, "inequality"=>0, "inequitable"=>0, "inequitably"=>0,
		"inequities"=>0, "inertia"=>2.5, "inescapable"=>0, "inescapably"=>0,
		"inessential"=>0, "inestimable"=>10, "inestimably"=>10, "inevitable"=>0,
		"inevitably"=>0, "inexact"=>2.5, "inexcusable"=>0, "inexcusably"=>0,
		"inexorable"=>0, "inexorably"=>0, "inexpensive"=>7.5, "inexperience"=>2.5,
		"inexperienced"=>2.5, "inexpert"=>2.5, "inexpertly"=>2.5, "inexpiable"=>0,
		"inexplainable"=>0, "inexplicable"=>0, "inextricable"=>0,
		"inextricably"=>0, "infallible"=>10, "infallibly"=>10, "infallibility"=>10,
		"infamous"=>0, "infamously"=>0, "infamy"=>0, "infatuated"=>0,
		"infected"=>2.5, "inferior"=>0, "inferiority"=>0, "infernal"=>0,
		"infest"=>2.5, "infested"=>2.5, "infidel"=>0, "infidels"=>0,
		"infiltrator"=>2.5, "infiltrators"=>2.5, "infirm"=>0, "inflame"=>0,
		"inflammatory"=>0, "inflated"=>2.5, "inflationary"=>2.5, "inflexible"=>0,
		"inflict"=>0, "influential"=>7.5, "informative"=>7.5, "infraction"=>2.5,
		"infringe"=>0, "infringement"=>0, "infringements"=>0, "infuriate"=>0,
		"infuriated"=>0, "infuriating"=>0, "infuriatingly"=>0, "ingenious"=>10,
		"ingeniously"=>10, "ingenuity"=>10, "ingenuous"=>10, "ingenuously"=>10,
		"inglorious"=>0, "ingrate"=>0, "ingratiate"=>10, "ingratiating"=>10,
		"ingratiatingly"=>10, "ingratitude"=>0, "inhibit"=>2.5, "inhibition"=>2.5,
		"inhospitable"=>0, "inhospitality"=>0, "inhuman"=>0, "inhumane"=>0,
		"inhumanity"=>0, "inimical"=>0, "inimically"=>0, "iniquitous"=>0,
		"iniquity"=>0, "injudicious"=>0, "injure"=>2.5, "injurious"=>2.5,
		"injury"=>2.5, "injustice"=>0, "injustices"=>0, "innocence"=>7.5,
		"innocent"=>7.5, "innocently"=>7.5, "innocuous"=>10, "innovation"=>7.5,
		"innovative"=>7.5, "innuendo"=>0, "inoffensive"=>10, "inopportune"=>0,
		"inordinate"=>0, "inordinately"=>0, "inquisitive"=>10, "insane"=>0,
		"insanely"=>0, "insanity"=>0, "insatiable"=>0, "insecure"=>2.5,
		"insecurity"=>0, "insensible"=>2.5, "insensitive"=>0, "insensitively"=>0,
		"insensitivity"=>0, "insidious"=>0, "insidiously"=>0, "insight"=>10,
		"insightful"=>10, "insightfully"=>10, "insignificance"=>2.5, "insignificant"=>2.5,
		"insignificantly"=>2.5, "insincere"=>0, "insincerely"=>0, "insincerity"=>0,
		"insinuate"=>0, "insinuating"=>0, "insinuation"=>0, "insist"=>10,
		"insistence"=>7.5, "insistent"=>10, "insistently"=>10, "insociable"=>0,
		"isolation"=>2.5, "insolence"=>0, "insolent"=>0, "insolently"=>0,
		"insolvent"=>2.5, "insouciance"=>0, "inspiration"=>10, "inspirational"=>10,
		"inspire"=>10, "inspiring"=>10, "instability"=>2.5, "instable"=>2.5,
		"instigate"=>0, "instigator"=>0, "instigators"=>0, "instructive"=>7.5,
		"instrumental"=>7.5, "insubordinate"=>2.5, "insubstantial"=>0,
		"insubstantially"=>0, "insufferable"=>0, "insufferably"=>0,
		"insufficiency"=>2.5, "insufficient"=>2.5, "insufficiently"=>2.5, "insular"=>2.5,
		"insult"=>0, "insulted"=>0, "insulting"=>0, "insultingly"=>0,
		"insupportable"=>0, "insupportably"=>0, "insurmountable"=>2.5,
		"insurmountably"=>2.5, "insurrection"=>2.5, "intact"=>7.5, "integral"=>7.5,
		"integrity"=>10, "intelligent"=>10, "intelligence"=>7.5, "intelligible"=>10,
		"intercede"=>7.5, "interest"=>7.5, "interested"=>7.5, "interesting"=>10,
		"interests"=>7.5, "interfere"=>2.5, "interference"=>2.5, "intermittent"=>2.5,
		"interrupt"=>2.5, "interruption"=>2.5, "intimacy"=>10, "intimate"=>7.5,
		"intimidate"=>2.5, "intimidating"=>0, "intimidatingly"=>0,
		"intimidation"=>2.5, "intolerable"=>0, "intolerablely"=>0, "intolerance"=>0,
		"intolerant"=>0, "intoxicate"=>2.5, "intractable"=>2.5, "intransigence"=>0,
		"intransigent"=>0, "intricate"=>7.5, "intrigue"=>10, "intriguing"=>10,
		"intriguingly"=>10, "intrude"=>0, "intrusion"=>2.5, "intrusive"=>0,
		"intuitive"=>10, "inundate"=>0, "inundated"=>0, "invader"=>2.5, "invalid"=>0,
		"invalidate"=>0, "invalidity"=>0, "invaluable"=>10, "invaluablely"=>10,
		"invasive"=>2.5, "invective"=>0, "inveigle"=>0, "inventive"=>7.5,
		"invidious"=>0, "invidiously"=>0, "invidiousness"=>0, "invigorate"=>7.5,
		"invigorating"=>10, "invincibility"=>10, "invincible"=>10, "inviolable"=>10,
		"inviolate"=>10, "invulnerable"=>10, "involuntarily"=>2.5, "involuntary"=>2.5,
		"irate"=>0, "irately"=>0, "ire"=>0, "irk"=>0, "irksome"=>0, "ironic"=>0,
		"ironies"=>0, "irony"=>0, "irrational"=>0, "irrationality"=>0,
		"irrationally"=>0, "irreconcilable"=>0, "irredeemable"=>0,
		"irredeemably"=>0, "irreformable"=>0, "irrefutable"=>10, "irrefutably"=>10,
		"irregular"=>2.5, "irregularity"=>2.5, "irrelevance"=>0, "irrelevant"=>0,
		"irreparable"=>0, "irreplacible"=>0, "irrepressible"=>0,
		"irreproachable"=>10, "irresistible"=>10, "irresistibly"=>10, "irresolute"=>0,
		"irresolvable"=>2.5, "irresponsible"=>0, "irresponsibly"=>0,
		"irretrievable"=>2.5, "irreverence"=>0, "irreverent"=>0, "irreverently"=>0,
		"irreversible"=>0, "irritable"=>0, "irritably"=>0, "irritant"=>2.5,
		"irritate"=>0, "irritated"=>0, "irritating"=>0, "irritation"=>0,
		"isolate"=>2.5, "isolated"=>2.5, "itch"=>0, "jabber"=>0, "jaded"=>0,
		"jam"=>2.5, "jar"=>2.5, "jaundiced"=>0, "jauntily"=>10, "jaunty"=>10,
		"jealous"=>0, "jealously"=>0, "jealousness"=>0, "jealousy"=>0, "jeer"=>0,
		"jeering"=>0, "jeeringly"=>0, "jeers"=>0, "jeopardize"=>0, "jeopardy"=>0,
		"jerk"=>0, "jest"=>10, "jittery"=>0, "jobless"=>2.5, "joke"=>10, "joker"=>0,
		"jollify"=>7.5, "jolly"=>10, "jolt"=>2.5, "jovial"=>10, "joy"=>10, "joyful"=>10,
		"joyfully"=>10, "joyless"=>10, "joyous"=>10, "joyously"=>10, "jubilant"=>10,
		"jubilantly"=>10, "jubilate"=>10, "jubilation"=>10, "judicious"=>10, "jumpy"=>2.5,
		"junk"=>2.5, "junky"=>2.5, "just"=>7.5, "justice"=>7.5, "justifiable"=>10,
		"justifiably"=>10, "justification"=>10, "justify"=>10, "justly"=>10,
		"juvenile"=>2.5, "kaput"=>0, "keen"=>0, "keenly"=>10, "keenness"=>10,
		"kemp"=>10, "kick"=>0, "kid"=>10, "kill"=>2.5, "killer"=>2.5, "killjoy"=>0,
		"kind"=>10, "kindly"=>10, "kindliness"=>10, "kindness"=>10, "kingmaker"=>10,
		"kiss"=>7.5, "knave"=>0, "knife"=>2.5, "knock"=>2.5, "knowledgeable"=>10,
		"kook"=>0, "kooky"=>0, "lack"=>0, "lackadaisical"=>0, "lackey"=>0,
		"lackeys"=>0, "lacking"=>0, "lackluster"=>0, "laconic"=>0, "lag"=>2.5,
		"lambast"=>0, "lambaste"=>0, "lame"=>2.5, "lameduck"=>0, "lament"=>0,
		"lamentable"=>0, "lamentably"=>0, "languid"=>0, "languish"=>0,
		"lanky"=>2.5, "languor"=>0, "languorous"=>0, "languorously"=>0, "lapse"=>2.5,
		"large"=>7.5, "lark"=>10, "lascivious"=>0, "lastditch"=>0, "laud"=>10,
		"laudable"=>10, "laudably"=>10, "laugh"=>0, "laughable"=>0, "laughably"=>0,
		"laughingstock"=>0, "laughter"=>0, "lavish"=>10, "lavishly"=>10,
		"lawabiding"=>10, "lawbreaker"=>0, "lawbreaking"=>0, "lawful"=>7.5,
		"lawfully"=>7.5, "lawless"=>0, "lawlessness"=>0, "lax"=>0, "lazy"=>0,
		"leading"=>7.5, "leak"=>2.5, "leakage"=>2.5, "leaky"=>2.5, "lean"=>7.5,
		"learning"=>7.5, "learned"=>7.5, "least"=>2.5, "lech"=>0, "lecher"=>0,
		"lecherous"=>0, "lechery"=>0, "lecture"=>2.5, "leech"=>0, "leer"=>0,
		"leery"=>0, "leftleaning"=>0, "legendary"=>7.5, "legitimacy"=>7.5,
		"legitimate"=>7.5, "legitimately"=>7.5, "lenient"=>7.5, "leniently"=>7.5, "less"=>2.5,
		"lessdeveloped"=>2.5, "lessexpensive"=>7.5, "lessen"=>2.5, "lesser"=>2.5,
		"lesserknown"=>2.5, "letch"=>0, "lethal"=>2.5, "lethargic"=>2.5, "lethargy"=>2.5,
		"leverage"=>7.5, "levity"=>10, "lewd"=>0, "lewdly"=>0, "lewdness"=>0,
		"liable"=>2.5, "liability"=>0, "liar"=>0, "liars"=>0, "liberal"=>7.5,
		"liberation"=>7.5, "liberalism"=>7.5, "liberally"=>7.5, "liberate"=>10, "liberty"=>10,
		"licentious"=>0, "licentiously"=>0, "licentiousness"=>0, "lie"=>2.5,
		"lier"=>0, "lies"=>0, "lifethreatening"=>2.5, "lifeblood"=>10, "lifeless"=>2.5,
		"lifelong"=>7.5, "light"=>7.5, "lighthearted"=>10, "lighten"=>7.5, "likable"=>10,
		"like"=>10, "liking"=>10, "limit"=>2.5, "limitation"=>2.5, "limited"=>2.5,
		"limp"=>0, "lionhearted"=>10, "listless"=>0, "literate"=>7.5, "litigious"=>0,
		"little"=>0, "littleknown"=>0, "live"=>7.5, "lively"=>10, "livid"=>0,
		"lividly"=>0, "loath"=>0, "loathe"=>0, "loathing"=>0, "loathly"=>0,
		"loathsome"=>0, "loathsomely"=>0, "lofty"=>10, "logical"=>7.5, "lone"=>0,
		"loneliness"=>0, "lonely"=>0, "lonesome"=>0, "long"=>0, "longing"=>0,
		"longingly"=>0, "loophole"=>0, "loopholes"=>0, "loot"=>0, "lorn"=>0,
		"losing"=>0, "lose"=>2.5, "loser"=>2.5, "loss"=>2.5, "lost"=>2.5, "lousy"=>0,
		"lovable"=>10, "lovably"=>10, "love"=>10, "loveless"=>0, "loveliness"=>10,
		"lovelorn"=>0, "lover"=>10, "lovely"=>10, "low"=>2.5, "lowcost"=>7.5,
		"lowrated"=>0, "lowrisk"=>7.5, "lowerpriced"=>7.5, "lowly"=>0, "loyal"=>7.5,
		"loyalty"=>10, "lucid"=>10, "lucidly"=>10, "luck"=>10, "luckier"=>10,
		"luckiest"=>10, "luckily"=>10, "luckiness"=>10, "lucky"=>10, "lucrative"=>7.5,
		"ludicrous"=>0, "ludicrously"=>0, "lugubrious"=>0, "lukewarm"=>0,
		"lull"=>2.5, "luminous"=>7.5, "lunatic"=>0, "lunaticism"=>0, "lurch"=>0,
		"lure"=>0, "lurid"=>0, "lurk"=>0, "lurking"=>0, "lush"=>10, "lust"=>0,
		"luster"=>10, "lustrous"=>10, "luxuriant"=>10, "luxuriate"=>7.5, "luxurious"=>10,
		"luxuriously"=>10, "luxury"=>10, "lying"=>0, "lyrical"=>10, "macabre"=>0,
		"mad"=>0, "madden"=>0, "maddening"=>0, "maddeningly"=>0, "madder"=>0,
		"madly"=>0, "madman"=>0, "madness"=>0, "magic"=>10, "magical"=>10,
		"magnanimous"=>10, "magnanimously"=>10, "magnetic"=>7.5, "magnificence"=>10,
		"magnificent"=>10, "magnificently"=>10, "magnify"=>7.5, "majestic"=>10,
		"majesty"=>10, "maladjusted"=>0, "maladjustment"=>0, "malady"=>2.5,
		"malaise"=>2.5, "malcontent"=>0, "malcontented"=>0, "maledict"=>0,
		"malevolence"=>0, "malevolent"=>0, "malevolently"=>0, "malice"=>0,
		"malicious"=>0, "maliciously"=>0, "maliciousness"=>0, "malign"=>0,
		"malignant"=>2.5, "malodorous"=>0, "maltreatment"=>0, "manageable"=>7.5,
		"maneuver"=>2.5, "mangle"=>0, "mania"=>0, "maniac"=>0, "maniacal"=>0,
		"manic"=>0, "manifest"=>10, "manipulate"=>2.5, "manipulation"=>2.5,
		"manipulative"=>0, "manipulators"=>0, "manly"=>10, "mannerly"=>10, "mar"=>0,
		"marginal"=>2.5, "marginally"=>2.5, "martyrdom"=>0, "martyrdomseeking"=>0,
		"marvel"=>10, "marvellous"=>10, "marvelous"=>10, "marvelously"=>10,
		"marvelousness"=>10, "marvels"=>10, "massacre"=>0, "massacres"=>0,
		"master"=>10, "masterful"=>10, "masterfully"=>10, "masterpiece"=>10,
		"masterpieces"=>10, "masters"=>10, "mastery"=>10, "matchless"=>10, "mature"=>7.5,
		"maturely"=>7.5, "maturity"=>7.5, "maverick"=>0, "mawkish"=>0, "mawkishly"=>0,
		"mawkishness"=>0, "maxidevaluation"=>0, "maximize"=>10, "meager"=>0,
		"mean"=>0, "meaningful"=>10, "meaningless"=>0, "meanness"=>0, "meddle"=>0,
		"meddlesome"=>0, "mediocre"=>0, "mediocrity"=>0, "meek"=>10,
		"melancholy"=>0, "mellow"=>10, "melodramatic"=>0, "melodramatically"=>0,
		"memorable"=>10, "memorialize"=>10, "menace"=>0, "menacing"=>0,
		"menacingly"=>0, "mend"=>7.5, "mendacious"=>0, "mendacity"=>0, "menial"=>2.5,
		"mentor"=>7.5, "merciful"=>10, "mercifully"=>10, "merciless"=>0,
		"mercilessly"=>0, "mercy"=>10, "mere"=>0, "merely"=>0, "merit"=>10,
		"meritorious"=>10, "merrily"=>10, "merriment"=>10, "merriness"=>10, "merry"=>10,
		"mesmerize"=>10, "mesmerizing"=>10, "mesmerizingly"=>10, "mess"=>0, "messy"=>2.5,
		"meticulous"=>7.5, "meticulously"=>7.5, "midget"=>0, "miff"=>2.5, "might"=>10,
		"mightily"=>10, "mighty"=>10, "mild"=>7.5, "militancy"=>0, "mind"=>2.5,
		"mindful"=>10, "mindless"=>0, "mindlessly"=>0, "minister"=>7.5, "miracle"=>10,
		"miracles"=>10, "miraculous"=>10, "miraculously"=>10, "miraculousness"=>10,
		"mirage"=>0, "mire"=>0, "mirth"=>10, "misapprehend"=>2.5, "misbecoming"=>0,
		"misbecome"=>0, "misbegotten"=>0, "misbehave"=>0, "misbehavior"=>0,
		"miscalculate"=>2.5, "miscalculation"=>2.5, "mischief"=>0, "mischievous"=>0,
		"mischievously"=>0, "misconception"=>0, "misconceptions"=>0,
		"miscreant"=>0, "miscreants"=>0, "misdirection"=>0, "miser"=>0,
		"miserly"=>0, "miserable"=>0, "miserableness"=>0, "miserably"=>0,
		"miseries"=>0, "misery"=>0, "misfit"=>0, "misfortune"=>0, "misgiving"=>0,
		"misgivings"=>0, "misguidance"=>0, "misguide"=>0, "misguided"=>0,
		"mishandle"=>0, "mishap"=>0, "misinform"=>0, "misinformed"=>0,
		"misinterpret"=>0, "misjudge"=>0, "misjudgment"=>0, "mislead"=>0,
		"misleading"=>0, "misleadingly"=>0, "mislike"=>0, "mismanage"=>0,
		"misread"=>0, "misreading"=>0, "misrepresent"=>0, "misrepresentation"=>0,
		"miss"=>2.5, "misstatement"=>0, "mistake"=>0, "mistaken"=>0,
		"mistakenly"=>0, "mistakes"=>0, "mistrust"=>0, "mistrustful"=>0,
		"mistrustfully"=>0, "misunderstand"=>0, "misunderstood"=>0,
		"misunderstanding"=>0, "misunderstandings"=>0, "misuse"=>0, "moan"=>0,
		"mock"=>0, "mockeries"=>0, "mockery"=>0, "mocking"=>0, "mockingly"=>0,
		"moderate"=>10, "moderation"=>10, "modern"=>7.5, "modest"=>7.5, "modesty"=>7.5,
		"molest"=>0, "molestation"=>0, "mollify"=>10, "momentous"=>10,
		"monotonous"=>0, "monotony"=>0, "monster"=>0, "monstrosities"=>0,
		"monstrosity"=>0, "monstrous"=>0, "monstrously"=>0, "monumental"=>10,
		"monumentally"=>10, "moody"=>0, "moon"=>2.5, "moot"=>2.5, "mope"=>2.5,
		"moral"=>10, "morality"=>10, "moralize"=>10, "morbid"=>0, "morbidly"=>0,
		"mordant"=>0, "mordantly"=>0, "moribund"=>0, "mortification"=>0,
		"mortified"=>0, "mortify"=>0, "mortifying"=>0, "motionless"=>2.5,
		"motivate"=>10, "motivated"=>10, "motivation"=>10, "motley"=>0, "mourn"=>0,
		"mourner"=>0, "mournful"=>0, "mournfully"=>0, "moving"=>10, "muddle"=>2.5,
		"muddy"=>2.5, "mudslinger"=>0, "mudslinging"=>0, "mulish"=>0,
		"multipolarization"=>0, "mundane"=>0, "murder"=>2.5, "murderous"=>2.5,
		"murderously"=>2.5, "murky"=>2.5, "muscleflexing"=>0, "myriad"=>7.5,
		"mysterious"=>0, "mysteriously"=>0, "mystery"=>0, "mystify"=>2.5,
		"mistified"=>2.5, "myth"=>0, "nag"=>0, "nagging"=>0, "naive"=>0,
		"naively"=>0, "narrow"=>2.5, "narrower"=>0, "nastily"=>0, "nastiness"=>0,
		"nasty"=>0, "nationalism"=>0, "natural"=>7.5, "naturally"=>7.5, "naughty"=>0,
		"nauseate"=>2.5, "nauseating"=>0, "nauseatingly"=>0, "navigable"=>7.5,
		"neat"=>7.5, "neatly"=>7.5, "nebulous"=>0, "nebulously"=>0, "necessarily"=>7.5,
		"necessary"=>7.5, "need"=>2.5, "needless"=>2.5, "needlessly"=>2.5, "needy"=>2.5,
		"nefarious"=>0, "nefariously"=>0, "negate"=>2.5, "negation"=>2.5,
		"negative"=>2.5, "neglect"=>0, "neglected"=>0, "negligent"=>0,
		"negligence"=>0, "negligible"=>2.5, "nemesis"=>0, "nettle"=>2.5,
		"nettlesome"=>0, "nervous"=>0, "nervously"=>0, "nervousness"=>0,
		"neurotic"=>0, "neurotically"=>0, "neutralize"=>7.5, "nice"=>10, "nicely"=>10,
		"nifty"=>10, "niggle"=>2.5, "nightmare"=>0, "nightmarish"=>0,
		"nightmarishly"=>0, "nimble"=>10, "nix"=>0, "noble"=>10, "nobly"=>10,
		"noisy"=>2.5, "nonconfidence"=>0, "nonviolence"=>7.5, "nonviolent"=>7.5,
		"nonexistent"=>2.5, "nonsense"=>0, "normal"=>7.5, "nosey"=>0, "notable"=>10,
		"notably"=>10, "noteworthy"=>10, "noticeable"=>7.5, "notorious"=>0,
		"notoriously"=>0, "novel"=>10, "nourish"=>7.5, "nourishing"=>7.5,
		"nourishment"=>7.5, "nuisance"=>0, "numb"=>2.5, "nurture"=>10, "nurturing"=>10,
		"oasis"=>10, "obedience"=>10, "obedient"=>10, "obediently"=>10, "obey"=>10,
		"obese"=>0, "object"=>0, "objection"=>0, "objectionable"=>0,
		"objections"=>0, "objective"=>7.5, "objectively"=>7.5, "obliged"=>10,
		"oblique"=>2.5, "obliterate"=>0, "obliterated"=>0, "oblivious"=>0,
		"obnoxious"=>0, "obnoxiously"=>0, "obscene"=>0, "obscenely"=>0,
		"obscenity"=>0, "obscure"=>0, "obscurity"=>0, "obsess"=>0,
		"obsession"=>0, "obsessions"=>0, "obsessive"=>0, "obsessively"=>0,
		"obsessiveness"=>0, "obsolete"=>2.5, "obstacle"=>0, "obstinate"=>0,
		"obstinately"=>0, "obstruct"=>2.5, "obstruction"=>2.5, "obtrusive"=>0,
		"obtuse"=>0, "obviate"=>10, "obviously"=>0, "odd"=>2.5, "odder"=>0,
		"oddest"=>0, "oddities"=>0, "oddity"=>0, "oddly"=>0, "offbeat"=>10,
		"offence"=>2.5, "offend"=>0, "offending"=>0, "offenses"=>0, "offensive"=>2.5,
		"offensively"=>0, "offensiveness"=>0, "officious"=>0, "offset"=>7.5,
		"okay"=>10, "ominous"=>0, "ominously"=>0, "omission"=>2.5, "omit"=>2.5,
		"oneside"=>0, "onesided"=>0, "onerous"=>0, "onerously"=>0,
		"onslaught"=>2.5, "onward"=>7.5, "open"=>7.5, "openly"=>7.5, "openness"=>7.5,
		"opinionated"=>0, "opponent"=>0, "opportune"=>10, "opportunity"=>10,
		"opportunistic"=>2.5, "oppose"=>0, "opposition"=>0, "oppositions"=>0,
		"oppress"=>0, "oppression"=>0, "oppressive"=>0, "oppressively"=>0,
		"oppressiveness"=>0, "oppressors"=>0, "optimal"=>10, "optimism"=>10,
		"optimistic"=>7.5, "opulent"=>10, "ordeal"=>0, "orderly"=>7.5, "original"=>7.5,
		"originality"=>7.5, "orphan"=>2.5, "ostracize"=>0, "outbreak"=>2.5,
		"outburst"=>0, "outbursts"=>0, "outcast"=>0, "outcry"=>0, "outdated"=>2.5,
		"outdo"=>10, "outgoing"=>7.5, "outlaw"=>0, "outmoded"=>2.5, "outrage"=>0,
		"outraged"=>0, "outrageous"=>0, "outrageously"=>0, "outrageousness"=>0,
		"outrages"=>0, "outshine"=>10, "outsider"=>2.5, "outsmart"=>10,
		"outstanding"=>10, "outstandingly"=>10, "outstrip"=>10, "outwit"=>10,
		"ovation"=>10, "overacted"=>0, "overvaluation"=>2.5, "overachiever"=>10,
		"overact"=>0, "overawe"=>2.5, "overbalance"=>2.5, "overbalanced"=>2.5,
		"overbearing"=>0, "overbearingly"=>0, "overblown"=>0, "overcome"=>0,
		"overdo"=>0, "overdone"=>0, "overdue"=>0, "overemphasize"=>0,
		"overjoyed"=>10, "overkill"=>0, "overlook"=>0, "overplay"=>0,
		"overpower"=>2.5, "overreach"=>2.5, "overrun"=>2.5, "overshadow"=>2.5,
		"oversight"=>2.5, "oversimplification"=>2.5, "oversimplified"=>2.5,
		"oversimplify"=>2.5, "oversized"=>2.5, "overstate"=>0, "overstatement"=>0,
		"overstatements"=>0, "overtaxed"=>2.5, "overthrow"=>2.5, "overturn"=>2.5,
		"overture"=>10, "overwhelm"=>2.5, "overwhelming"=>0, "overwhelmingly"=>0,
		"overworked"=>0, "overzealous"=>0, "overzealously"=>0, "pacifist"=>10,
		"pacifists"=>10, "pain"=>2.5, "painful"=>2.5, "painfully"=>2.5, "painless"=>7.5,
		"painlessly"=>7.5, "pains"=>0, "painstaking"=>10, "painstakingly"=>10,
		"palatable"=>10, "palatial"=>10, "pale"=>2.5, "palliate"=>10, "paltry"=>0,
		"pamper"=>7.5, "pan"=>2.5, "pandemonium"=>0, "panic"=>0, "panicky"=>0,
		"paradise"=>10, "paradoxical"=>0, "paradoxically"=>0, "paralize"=>2.5,
		"paralyzed"=>2.5, "paramount"=>10, "paranoia"=>0, "paranoid"=>0,
		"parasite"=>2.5, "pardon"=>10, "pariah"=>0, "parody"=>0, "partiality"=>0,
		"partisan"=>0, "partisans"=>0, "passe"=>0, "passion"=>10, "passionate"=>10,
		"passionately"=>10, "passive"=>0, "passiveness"=>0, "pathetic"=>0,
		"pathetically"=>0, "patience"=>10, "patient"=>7.5, "patiently"=>10, "patriot"=>10,
		"patriotic"=>10, "patronize"=>0, "paucity"=>0, "pauper"=>0, "paupers"=>0,
		"payback"=>0, "peace"=>7.5, "peaceable"=>10, "peaceful"=>7.5, "peacefully"=>7.5,
		"peacekeepers"=>7.5, "peculiar"=>0, "peculiarly"=>0, "pedantic"=>0,
		"pedestrian"=>2.5, "peerless"=>10, "peeve"=>0, "peeved"=>0, "peevish"=>0,
		"peevishly"=>0, "penalize"=>0, "penalty"=>2.5, "penetrating"=>10,
		"penitent"=>10, "perceptive"=>10, "perfect"=>10, "perfection"=>10, "perfectly"=>10,
		"perfidious"=>0, "perfidity"=>0, "perfunctory"=>0, "peril"=>0,
		"perilous"=>2.5, "perilously"=>2.5, "peripheral"=>2.5, "perish"=>0,
		"permissible"=>7.5, "pernicious"=>0, "perplex"=>0, "perplexed"=>0,
		"perplexing"=>0, "perplexity"=>0, "persecute"=>0, "persecution"=>0,
		"perseverance"=>10, "persevere"=>10, "persistent"=>7.5, "personages"=>7.5,
		"personality"=>10, "perspicuous"=>10, "perspicuously"=>10, "persuade"=>10,
		"persuasive"=>10, "persuasively"=>10, "pertinacious"=>0, "pertinaciously"=>0,
		"pertinacity"=>0, "pertinent"=>7.5, "perturb"=>0, "perturbed"=>0,
		"pervasive"=>0, "perverse"=>0, "perversely"=>0, "perversion"=>0,
		"perversity"=>0, "pervert"=>0, "perverted"=>0, "pessimism"=>0,
		"pessimistic"=>0, "pessimistically"=>0, "pest"=>0, "pestilent"=>0,
		"petrify"=>0, "petrified"=>0, "pettifog"=>0, "petty"=>0, "phenomenal"=>10,
		"phenomenally"=>10, "phobia"=>0, "phobic"=>0, "phony"=>0, "picky"=>0,
		"picturesque"=>10, "piety"=>7.5, "pillage"=>0, "pillar"=>10, "pillory"=>0,
		"pinch"=>2.5, "pine"=>0, "pinnacle"=>10, "pious"=>10, "pique"=>2.5, "pithy"=>10,
		"pitiable"=>0, "pitiful"=>0, "pitifully"=>0, "pitiless"=>0,
		"pitilessly"=>0, "pittance"=>0, "pity"=>0, "placate"=>10, "placid"=>7.5,
		"plagiarize"=>0, "plague"=>2.5, "plain"=>7.5, "plainly"=>10, "plausibility"=>10,
		"plausible"=>10, "playful"=>10, "playfully"=>10, "plaything"=>0, "plead"=>0,
		"pleading"=>0, "pleadingly"=>0, "plea"=>2.5, "pleas"=>0, "pleasant"=>7.5,
		"pleasantly"=>7.5, "please"=>10, "pleased"=>10, "pleasing"=>10, "pleasingly"=>10,
		"pleasurable"=>10, "pleasurably"=>10, "pleasure"=>10, "plebeian"=>0,
		"pledge"=>10, "pledges"=>10, "plentiful"=>7.5, "plenty"=>10, "plight"=>0,
		"plot"=>0, "plotters"=>0, "ploy"=>0, "plunder"=>0, "plunderer"=>0,
		"plush"=>10, "poetic"=>10, "poeticize"=>10, "poignant"=>10, "pointless"=>2.5,
		"pointlessly"=>2.5, "poise"=>10, "poised"=>10, "poison"=>0, "poisonous"=>2.5,
		"poisonously"=>2.5, "polarisation"=>0, "polemize"=>0, "polished"=>7.5,
		"polite"=>7.5, "politeness"=>7.5, "pollute"=>2.5, "polluter"=>0, "polluters"=>0,
		"polution"=>2.5, "pompous"=>0, "poor"=>2.5, "poorly"=>0, "popular"=>7.5,
		"popularity"=>7.5, "portable"=>7.5, "posh"=>10, "positive"=>7.5, "positiveness"=>10,
		"positively"=>10, "posterity"=>7.5, "posturing"=>0, "potent"=>10, "potential"=>7.5,
		"pout"=>0, "poverty"=>0, "powerful"=>7.5, "powerfully"=>7.5, "powerless"=>2.5,
		"practicable"=>7.5, "practical"=>7.5, "pragmatic"=>10, "praise"=>10,
		"praiseworthy"=>10, "praising"=>10, "prate"=>0, "pratfall"=>0, "prattle"=>0,
		"preeminent"=>7.5, "preach"=>10, "preaching"=>10, "precarious"=>2.5,
		"precariously"=>2.5, "precaution"=>10, "precautions"=>10, "precedent"=>7.5,
		"precious"=>10, "precipitate"=>0, "precipitous"=>0, "precise"=>7.5,
		"precisely"=>7.5, "precision"=>7.5, "predatory"=>2.5, "predicament"=>0,
		"preemptive"=>7.5, "prefer"=>10, "preferable"=>10, "preferably"=>10,
		"preference"=>10, "preferences"=>10, "prejudge"=>0, "prejudice"=>0,
		"prejudicial"=>0, "premeditated"=>0, "premier"=>7.5, "premium"=>7.5,
		"preoccupy"=>2.5, "prepared"=>7.5, "preponderance"=>10, "preposterous"=>0,
		"preposterously"=>0, "press"=>7.5, "pressing"=>0, "prestige"=>10,
		"prestigious"=>7.5, "presume"=>0, "presumptuous"=>0, "presumptuously"=>0,
		"pretence"=>0, "pretend"=>0, "pretense"=>0, "pretentious"=>0,
		"pretentiously"=>0, "prettily"=>10, "pretty"=>10, "prevaricate"=>0,
		"priceless"=>10, "pricey"=>2.5, "prickle"=>0, "prickles"=>0, "pride"=>10,
		"prideful"=>0, "primitive"=>2.5, "principle"=>7.5, "principled"=>7.5,
		"prison"=>2.5, "prisoner"=>2.5, "privilege"=>10, "privileged"=>10, "prize"=>10,
		"pro"=>7.5, "proAmerican"=>10, "proBeijing"=>10, "proCuba"=>10, "propeace"=>10,
		"proactive"=>10, "problem"=>2.5, "problematic"=>0, "problems"=>2.5,
		"procrastinate"=>0, "procrastination"=>0, "prodigious"=>10,
		"prodigiously"=>10, "prodigy"=>10, "productive"=>7.5, "profane"=>0,
		"profanity"=>0, "profess"=>10, "proficient"=>10, "proficiently"=>10,
		"profit"=>7.5, "profitable"=>7.5, "profound"=>10, "profoundly"=>10, "profuse"=>10,
		"profusely"=>10, "profusion"=>10, "progress"=>7.5, "progressive"=>7.5,
		"prohibit"=>2.5, "prohibitive"=>2.5, "prohibitively"=>2.5, "prolific"=>7.5,
		"prominent"=>7.5, "prominence"=>7.5, "promise"=>10, "promising"=>10, "promoter"=>10,
		"prompt"=>7.5, "promptly"=>7.5, "propaganda"=>0, "propagandize"=>0, "proper"=>7.5,
		"properly"=>7.5, "propitious"=>10, "propitiously"=>10, "proscription"=>0,
		"proscriptions"=>0, "prosecute"=>0, "prospect"=>7.5, "prospects"=>7.5,
		"prosper"=>10, "prosperity"=>7.5, "prosperous"=>7.5, "protect"=>7.5, "protection"=>7.5,
		"protective"=>7.5, "protector"=>10, "protest"=>0, "protests"=>2.5,
		"protracted"=>2.5, "proud"=>10, "providence"=>10, "provocation"=>0,
		"provocative"=>0, "provoke"=>0, "prowess"=>10, "prudence"=>7.5, "prudent"=>10,
		"prudently"=>10, "pry"=>2.5, "pugnacious"=>0, "pugnaciously"=>0,
		"pugnacity"=>0, "punch"=>0, "punctual"=>10, "pundits"=>10, "punish"=>0,
		"punishable"=>2.5, "punitive"=>2.5, "puny"=>0, "puppet"=>0, "puppets"=>0,
		"pure"=>7.5, "purification"=>7.5, "purify"=>7.5, "purity"=>7.5, "purposeful"=>10,
		"puzzle"=>0, "puzzled"=>0, "puzzlement"=>0, "puzzling"=>0, "quack"=>0,
		"quaint"=>10, "qualified"=>7.5, "qualify"=>7.5, "qualms"=>0, "quandary"=>0,
		"quarrel"=>0, "quarrellous"=>0, "quarrellously"=>0, "quarrels"=>0,
		"quarrelsome"=>0, "quash"=>0, "quasially"=>10, "queer"=>2.5, "quench"=>7.5,
		"questionable"=>0, "quibble"=>0, "quicken"=>10, "quit"=>2.5, "quitter"=>0,
		"racism"=>2.5, "racist"=>0, "racists"=>0, "rack"=>0, "radiance"=>10,
		"radiant"=>10, "radical"=>0, "radicalization"=>0, "radically"=>0,
		"radicals"=>0, "rage"=>0, "ragged"=>0, "raging"=>0, "rail"=>0,
		"rally"=>10, "rampage"=>0, "rampant"=>0, "ramshackle"=>0, "rancor"=>0,
		"rank"=>0, "rankle"=>0, "rant"=>0, "ranting"=>0, "rantingly"=>0,
		"rapprochement"=>7.5, "rapport"=>10, "rapt"=>10, "rapture"=>10, "raptureous"=>10,
		"raptureously"=>10, "rapturous"=>10, "rapturously"=>10, "rascal"=>0, "rash"=>0,
		"rat"=>2.5, "rational"=>10, "rationality"=>7.5, "rationalize"=>0, "rattle"=>0,
		"ravage"=>0, "rave"=>10, "raving"=>0, "reconquest"=>10, "reactionary"=>0,
		"readily"=>7.5, "ready"=>7.5, "reaffirm"=>7.5, "reaffirmation"=>7.5, "real"=>7.5,
		"realist"=>10, "realistic"=>10, "realistically"=>10, "reason"=>7.5,
		"reasonable"=>7.5, "reasonably"=>7.5, "reasoned"=>7.5, "reassurance"=>10,
		"reassure"=>10, "rebellious"=>0, "rebuff"=>0, "rebuke"=>0,
		"recalcitrant"=>0, "recant"=>0, "receptive"=>10, "recession"=>2.5,
		"recessionary"=>2.5, "reckless"=>0, "recklessly"=>0, "recklessness"=>0,
		"reclaim"=>7.5, "recognition"=>7.5, "recoil"=>0, "recommend"=>10,
		"recommendation"=>10, "recommendations"=>10, "recommended"=>10, "recompense"=>7.5,
		"reconcile"=>7.5, "reconciliation"=>7.5, "recordsetting"=>7.5, "recourses"=>2.5,
		"recover"=>7.5, "rectification"=>10, "rectify"=>10, "rectifying"=>10, "redeem"=>10,
		"redeeming"=>10, "redemption"=>10, "redundancy"=>2.5, "redundant"=>2.5,
		"reestablish"=>7.5, "refine"=>7.5, "refined"=>7.5, "refinement"=>7.5, "reform"=>7.5,
		"refresh"=>7.5, "refreshing"=>10, "refuge"=>10, "refusal"=>2.5, "refuse"=>0,
		"refutation"=>0, "refute"=>0, "regal"=>10, "regally"=>10, "regard"=>10,
		"regress"=>2.5, "regression"=>2.5, "regressive"=>2.5, "regret"=>0,
		"regretful"=>0, "regretfully"=>0, "regrettable"=>0, "regrettably"=>0,
		"rehabilitate"=>7.5, "rehabilitation"=>7.5, "reinforce"=>7.5, "reinforcement"=>7.5,
		"reject"=>0, "rejection"=>0, "rejoice"=>10, "rejoicing"=>10, "rejoicingly"=>10,
		"relapse"=>2.5, "relax"=>7.5, "relaxed"=>7.5, "relent"=>10, "relentless"=>0,
		"relentlessly"=>0, "relentlessness"=>0, "relevant"=>7.5, "relevance"=>7.5,
		"reliable"=>7.5, "reliability"=>7.5, "reliably"=>7.5, "relief"=>10, "relieve"=>7.5,
		"relish"=>10, "reluctance"=>0, "reluctant"=>2.5, "reluctantly"=>2.5,
		"remarkable"=>10, "remarkably"=>10, "remedy"=>7.5, "reminiscent"=>10,
		"remorse"=>0, "remorseful"=>0, "remorsefully"=>0, "remorseless"=>0,
		"remorselessly"=>0, "remorselessness"=>0, "remunerate"=>10, "renaissance"=>10,
		"renewal"=>7.5, "renovate"=>7.5, "renovation"=>7.5, "renounce"=>0, "renown"=>10,
		"renowned"=>10, "renunciation"=>0, "repair"=>7.5, "reparation"=>7.5, "repay"=>10,
		"repel"=>2.5, "repent"=>10, "repentance"=>10, "repetitive"=>2.5,
		"reprehensible"=>0, "reprehensibly"=>0, "reprehension"=>0,
		"reprehensive"=>0, "repress"=>2.5, "repression"=>2.5, "repressive"=>2.5,
		"reprimand"=>0, "reproach"=>0, "reproachful"=>0, "reprove"=>0,
		"reprovingly"=>0, "repudiate"=>0, "repudiation"=>0, "repugn"=>0,
		"repugnance"=>0, "repugnant"=>0, "repugnantly"=>0, "repulse"=>2.5,
		"repulsed"=>2.5, "repulsing"=>0, "repulsive"=>0, "repulsively"=>0,
		"repulsiveness"=>0, "reputable"=>7.5, "rescue"=>7.5, "resent"=>0,
		"resentful"=>0, "resentment"=>0, "reservations"=>2.5, "resignation"=>2.5,
		"resigned"=>2.5, "resilient"=>7.5, "resistance"=>2.5, "resistant"=>2.5,
		"resolute"=>7.5, "resolve"=>7.5, "resolved"=>7.5, "resound"=>7.5, "resounding"=>10,
		"resourceful"=>10, "resourcefulness"=>10, "respect"=>7.5, "respectable"=>10,
		"respectful"=>10, "respectfully"=>10, "respite"=>10, "resplendent"=>10,
		"responsibility"=>7.5, "responsible"=>7.5, "responsibly"=>7.5, "responsive"=>7.5,
		"restful"=>7.5, "restless"=>2.5, "restlessness"=>2.5, "restoration"=>7.5,
		"restore"=>7.5, "restraint"=>7.5, "restrict"=>2.5, "restricted"=>2.5,
		"restriction"=>2.5, "restrictive"=>2.5, "resurgent"=>7.5, "retaliate"=>2.5,
		"retaliatory"=>2.5, "retard"=>2.5, "reticent"=>0, "retire"=>2.5, "retract"=>2.5,
		"retreat"=>2.5, "reunite"=>7.5, "revel"=>10, "revelation"=>7.5, "revenge"=>0,
		"revengeful"=>0, "revengefully"=>0, "revere"=>10, "reverence"=>10,
		"reverent"=>10, "reverently"=>10, "revert"=>2.5, "revival"=>7.5, "revive"=>7.5,
		"revile"=>0, "reviled"=>0, "revitalize"=>7.5, "revoke"=>2.5, "revolt"=>2.5,
		"revolting"=>0, "revoltingly"=>0, "revolution"=>7.5, "revulsion"=>0,
		"revulsive"=>0, "reward"=>10, "rewarding"=>10, "rewardingly"=>10,
		"rhapsodize"=>2.5, "rhetoric"=>2.5, "rhetorical"=>0, "rich"=>7.5, "riches"=>7.5,
		"richly"=>10, "richness"=>10, "rid"=>0, "ridicule"=>0, "ridiculous"=>0,
		"ridiculously"=>0, "rife"=>0, "rift"=>0, "rifts"=>0, "right"=>10,
		"righten"=>10, "righteous"=>10, "righteously"=>10, "righteousness"=>10,
		"rightful"=>10, "rightfully"=>10, "rightly"=>10, "rightness"=>10, "rights"=>7.5,
		"rigid"=>2.5, "rigor"=>2.5, "rigorous"=>2.5, "rile"=>0, "riled"=>0, "ripe"=>7.5,
		"risk"=>2.5, "riskfree"=>7.5, "risky"=>2.5, "rival"=>2.5, "rivalry"=>2.5,
		"roadblocks"=>0, "robust"=>7.5, "rocky"=>2.5, "rogue"=>0, "rollercoaster"=>0,
		"romantic"=>10, "romantically"=>10, "romanticize"=>10, "rosy"=>10, "rot"=>2.5,
		"rotten"=>0, "rough"=>2.5, "rousing"=>10, "rubbish"=>0, "rude"=>0, "rue"=>0,
		"ruffian"=>0, "ruffle"=>2.5, "ruin"=>2.5, "ruinous"=>2.5, "rumbling"=>0,
		"rumor"=>0, "rumors"=>0, "rumours"=>0, "rumple"=>0, "rundown"=>0,
		"runaway"=>0, "rupture"=>2.5, "rusty"=>0, "ruthless"=>0, "ruthlessly"=>0,
		"ruthlessness"=>0, "sabotage"=>0, "sacred"=>10, "sacrifice"=>0, "sad"=>0,
		"sadden"=>0, "sadly"=>0, "sadness"=>0, "safe"=>7.5, "safeguard"=>10,
		"sag"=>2.5, "sagacity"=>10, "sage"=>10, "sagely"=>10, "saint"=>10,
		"saintliness"=>10, "saintly"=>10, "salable"=>7.5, "salacious"=>0, "salivate"=>7.5,
		"salutary"=>10, "salute"=>10, "salvation"=>10, "sanctimonious"=>0,
		"sanctify"=>10, "sanction"=>10, "sanctity"=>10, "sanctuary"=>10, "sanguine"=>10,
		"sane"=>10, "sanity"=>10, "sap"=>0, "sarcasm"=>0, "sarcastic"=>0,
		"sarcastically"=>0, "sardonic"=>0, "sardonically"=>0, "sass"=>0,
		"satirical"=>0, "satirize"=>0, "satisfaction"=>10, "satisfactorily"=>10,
		"satisfactory"=>10, "satisfy"=>7.5, "satisfying"=>7.5, "savage"=>0, "savaged"=>0,
		"savagely"=>0, "savagery"=>0, "savages"=>0, "savor"=>7.5, "savvy"=>10,
		"scandal"=>2.5, "scandalize"=>0, "scandalized"=>0, "scandalous"=>0,
		"scandalously"=>0, "scandals"=>0, "scant"=>2.5, "scapegoat"=>0, "scar"=>0,
		"scarred"=>0, "scarce"=>2.5, "scarcely"=>0, "scarcity"=>2.5, "scare"=>0,
		"scared"=>0, "scarier"=>0, "scariest"=>0, "scarily"=>0, "scars"=>0,
		"scary"=>0, "scathing"=>0, "scathingly"=>0, "scenic"=>7.5, "scheme"=>2.5,
		"scheming"=>0, "scoff"=>0, "scoffingly"=>0, "scold"=>0, "scolding"=>0,
		"scoldingly"=>0, "scorching"=>0, "scorchingly"=>0, "scorn"=>0,
		"scornful"=>0, "scornfully"=>0, "scoundrel"=>0, "scourge"=>0, "scowl"=>0,
		"scream"=>0, "screech"=>0, "screw"=>2.5, "scruples"=>10, "scrupulous"=>10,
		"scrupulously"=>10, "scum"=>0, "scummy"=>0, "seamless"=>10, "seasoned"=>7.5,
		"secondclass"=>0, "secondtier"=>2.5, "secretive"=>2.5, "secure"=>7.5,
		"securely"=>7.5, "security"=>7.5, "sedentary"=>2.5, "seductive"=>10, "seedy"=>0,
		"seethe"=>0, "seething"=>0, "selective"=>7.5, "selfcoup"=>0,
		"selfcriticism"=>0, "selfdefeating"=>2.5, "selfdestructive"=>0,
		"selfdetermination"=>10, "selfhumiliation"=>0, "selfinterest"=>0,
		"selfinterested"=>0, "selfrespect"=>10, "selfsatisfaction"=>10,
		"selfserving"=>0, "selfsufficiency"=>7.5, "selfsufficient"=>7.5, "selfish"=>0,
		"selfishly"=>0, "selfishness"=>0, "semblance"=>7.5, "senile"=>0,
		"sensation"=>10, "sensational"=>10, "sensationalize"=>0, "sensationally"=>10,
		"sensations"=>10, "sense"=>7.5, "senseless"=>0, "senselessly"=>0,
		"sensible"=>10, "sensibly"=>10, "sensitive"=>7.5, "sensitively"=>10,
		"sensitivity"=>10, "sentiment"=>10, "sentimentality"=>10, "sentimentally"=>10,
		"sentiments"=>10, "serene"=>10, "serenity"=>10, "serious"=>0, "seriously"=>0,
		"seriousness"=>0, "sermonize"=>0, "servitude"=>0, "settle"=>7.5, "setup"=>0,
		"sever"=>2.5, "severe"=>0, "severely"=>0, "severity"=>0, "sexy"=>10,
		"shabby"=>0, "shadow"=>0, "shadowy"=>2.5, "shady"=>0, "shake"=>2.5,
		"shaky"=>2.5, "shallow"=>2.5, "sham"=>0, "shambles"=>0, "shame"=>0,
		"shameful"=>0, "shamefully"=>0, "shamefulness"=>0, "shameless"=>0,
		"shamelessly"=>0, "shamelessness"=>0, "shark"=>0, "sharp"=>2.5,
		"sharply"=>2.5, "shatter"=>0, "sheer"=>0, "shelter"=>7.5, "shield"=>7.5,
		"shimmer"=>10, "shimmering"=>10, "shimmeringly"=>10, "shine"=>7.5, "shiny"=>10,
		"shirk"=>0, "shirker"=>0, "shipwreck"=>2.5, "shiver"=>0, "shock"=>0,
		"shocking"=>0, "shockingly"=>0, "shoddy"=>0, "shortlived"=>2.5,
		"shortage"=>2.5, "shortchange"=>0, "shortcoming"=>0, "shortcomings"=>0,
		"shortsighted"=>0, "shortsightedness"=>0, "showdown"=>2.5, "shred"=>2.5,
		"shrew"=>0, "shrewd"=>10, "shrewdly"=>10, "shrewdness"=>10, "shriek"=>0,
		"shrill"=>0, "shrilly"=>0, "shrivel"=>0, "shroud"=>0, "shrouded"=>0,
		"shrug"=>2.5, "shun"=>0, "shunned"=>0, "shy"=>0, "shyly"=>0, "shyness"=>0,
		"sick"=>2.5, "sicken"=>2.5, "sickly"=>0, "sickening"=>0, "sickeningly"=>0,
		"sickness"=>2.5, "sidetrack"=>0, "sidetracked"=>0, "siege"=>2.5,
		"significant"=>7.5, "significance"=>7.5, "signify"=>7.5, "sillily"=>0, "silly"=>0,
		"simmer"=>0, "simple"=>7.5, "simplicity"=>10, "simplified"=>7.5, "simplify"=>7.5,
		"simplistic"=>0, "simplistically"=>0, "sin"=>0, "sinful"=>0,
		"sinfully"=>0, "sincere"=>10, "sincerely"=>10, "sincerity"=>7.5, "sinister"=>0,
		"sinisterly"=>0, "sinking"=>2.5, "skeletons"=>0, "skeptical"=>0,
		"skeptically"=>0, "skepticism"=>0, "sketchy"=>2.5, "skill"=>7.5, "skilled"=>7.5,
		"skillful"=>10, "skillfully"=>10, "skimpy"=>2.5, "skittish"=>0,
		"skittishly"=>0, "skulk"=>0, "slack"=>2.5, "slander"=>0, "slanderer"=>0,
		"slanderous"=>0, "slanderously"=>0, "slanders"=>0, "slap"=>0,
		"slashing"=>0, "slaughter"=>2.5, "slaughtered"=>2.5, "slaves"=>0,
		"sleazy"=>0, "sleek"=>7.5, "slender"=>7.5, "slight"=>2.5, "slightly"=>2.5,
		"slim"=>7.5, "slime"=>0, "sloppy"=>0, "sloppily"=>0, "sloth"=>0,
		"slothful"=>0, "slow"=>2.5, "slowly"=>2.5, "slowmoving"=>2.5, "slug"=>2.5,
		"sluggish"=>2.5, "slump"=>2.5, "slur"=>0, "sly"=>0, "smack"=>0, "smart"=>10,
		"smarter"=>10, "smartest"=>10, "smartly"=>10, "smash"=>2.5, "smear"=>2.5,
		"smelling"=>2.5, "smile"=>10, "smiling"=>10, "smilingly"=>10, "smitten"=>10,
		"smokescreen"=>0, "smolder"=>0, "smoldering"=>0, "smooth"=>7.5,
		"smother"=>0, "smoulder"=>0, "smouldering"=>0, "smug"=>0, "smugly"=>0,
		"smut"=>0, "smuttier"=>0, "smuttiest"=>0, "smutty"=>0, "snare"=>2.5,
		"snarl"=>2.5, "snatch"=>2.5, "sneak"=>2.5, "sneakily"=>2.5, "sneaky"=>2.5,
		"sneer"=>0, "sneering"=>0, "sneeringly"=>0, "snub"=>0, "socal"=>0,
		"socalled"=>0, "sob"=>0, "sober"=>2.5, "sobering"=>0, "sociable"=>10,
		"softspoken"=>7.5, "soften"=>10, "solace"=>10, "solemn"=>2.5, "solicitous"=>10,
		"solicitously"=>10, "solicitude"=>10, "solid"=>7.5, "solidarity"=>10, "somber"=>0,
		"soothe"=>10, "soothingly"=>10, "sophisticated"=>10, "sore"=>0, "sorely"=>0,
		"soreness"=>2.5, "sorrow"=>2.5, "sorrowful"=>0, "sorrowfully"=>0, "sorry"=>0,
		"sound"=>7.5, "sounding"=>2.5, "soundness"=>7.5, "sour"=>2.5, "sourly"=>2.5,
		"spacious"=>7.5, "spade"=>0, "spank"=>0, "spare"=>7.5, "sparing"=>7.5,
		"sparingly"=>7.5, "sparkle"=>10, "sparkling"=>7.5, "special"=>7.5, "spectacular"=>10,
		"spectacularly"=>10, "speedy"=>7.5, "spellbind"=>10, "spellbinding"=>10,
		"spellbindingly"=>10, "spellbound"=>10, "spilling"=>0, "spinster"=>2.5,
		"spirit"=>7.5, "spirited"=>7.5, "spiritless"=>0, "spiritual"=>10, "spite"=>0,
		"spiteful"=>0, "spitefully"=>0, "spitefulness"=>0, "splendid"=>10,
		"splendidly"=>10, "splendor"=>10, "split"=>2.5, "splitting"=>2.5, "spoil"=>0,
		"spook"=>0, "spookier"=>0, "spookiest"=>0, "spookily"=>0, "spooky"=>0,
		"spoonfed"=>0, "spoonfeed"=>0, "sporadic"=>2.5, "spot"=>2.5, "spotless"=>10,
		"spotty"=>2.5, "sprightly"=>10, "spur"=>10, "spurious"=>0, "spurn"=>0,
		"sputter"=>0, "squabble"=>0, "squabbling"=>0, "squander"=>0,
		"squarely"=>10, "squash"=>0, "squirm"=>0, "stab"=>2.5, "stability"=>7.5,
		"stabilize"=>7.5, "stable"=>7.5, "stagger"=>2.5, "staggering"=>0,
		"staggeringly"=>0, "stagnant"=>2.5, "stagnate"=>0, "stagnation"=>0,
		"staid"=>0, "stain"=>2.5, "stainless"=>7.5, "stake"=>2.5, "stale"=>0,
		"stalemate"=>0, "stammer"=>0, "stampede"=>2.5, "stand"=>7.5, "standstill"=>0,
		"star"=>10, "stark"=>0, "starkly"=>0, "stars"=>10, "startle"=>0,
		"startling"=>0, "startlingly"=>0, "starvation"=>2.5, "starve"=>2.5,
		"stately"=>10, "static"=>2.5, "statuesque"=>10, "staunch"=>10, "staunchly"=>10,
		"staunchness"=>10, "steadfast"=>10, "steadfastly"=>10, "steadfastness"=>10,
		"steadiness"=>7.5, "steady"=>7.5, "steal"=>2.5, "stealing"=>2.5, "steep"=>2.5,
		"steeply"=>2.5, "stellar"=>10, "stellarly"=>10, "stench"=>0, "stereotype"=>0,
		"stereotypical"=>0, "stereotypically"=>0, "stern"=>0, "stew"=>0,
		"sticky"=>2.5, "stiff"=>2.5, "stifle"=>0, "stifling"=>0, "stiflingly"=>0,
		"stigma"=>0, "stigmatize"=>0, "stimulate"=>7.5, "stimulating"=>10,
		"stimulative"=>7.5, "sting"=>2.5, "stinging"=>0, "stingingly"=>0, "stink"=>0,
		"stinking"=>0, "stirring"=>10, "stirringly"=>10, "stodgy"=>0, "stole"=>2.5,
		"stolen"=>2.5, "stood"=>7.5, "stooge"=>0, "stooges"=>0, "storm"=>2.5,
		"stormy"=>2.5, "straggle"=>2.5, "straggler"=>2.5, "straight"=>7.5,
		"straightforward"=>10, "strain"=>2.5, "strained"=>2.5, "strange"=>0,
		"strangely"=>0, "stranger"=>0, "strangest"=>0, "strangle"=>2.5,
		"streamlined"=>7.5, "strenuous"=>2.5, "stress"=>0, "stressful"=>0,
		"stressfully"=>0, "stricken"=>0, "strict"=>0, "strictly"=>0, "stride"=>10,
		"strident"=>0, "stridently"=>0, "strides"=>7.5, "strife"=>0, "strike"=>2.5,
		"striking"=>10, "strikingly"=>10, "stringent"=>2.5, "stringently"=>2.5,
		"striving"=>10, "strong"=>7.5, "struck"=>2.5, "struggle"=>0, "strut"=>0,
		"stubborn"=>0, "stubbornly"=>0, "stubbornness"=>0, "studious"=>10,
		"studiously"=>10, "stuffy"=>0, "stumble"=>2.5, "stump"=>2.5, "stun"=>2.5,
		"stunned"=>10, "stunning"=>10, "stunningly"=>10, "stunt"=>2.5, "stunted"=>2.5,
		"stupendous"=>10, "stupendously"=>10, "stupid"=>0, "stupidity"=>0,
		"stupidly"=>0, "stupified"=>0, "stupify"=>0, "stupor"=>0, "sturdy"=>7.5,
		"sty"=>0, "stylish"=>10, "stylishly"=>10, "suave"=>10, "subdued"=>2.5,
		"subjected"=>2.5, "subjection"=>2.5, "subjugate"=>0, "subjugation"=>0,
		"sublime"=>10, "submissive"=>2.5, "subordinate"=>2.5, "subscribe"=>7.5,
		"subservience"=>0, "subservient"=>0, "subside"=>2.5, "substandard"=>2.5,
		"substantial"=>7.5, "substantially"=>7.5, "substantive"=>7.5, "subtle"=>7.5,
		"subtract"=>2.5, "subversion"=>2.5, "subversive"=>2.5, "subversively"=>2.5,
		"subvert"=>2.5, "succeed"=>7.5, "success"=>7.5, "successful"=>7.5, "successfully"=>7.5,
		"succumb"=>0, "sucker"=>0, "suffer"=>2.5, "sufferer"=>0, "sufferers"=>0,
		"suffering"=>0, "suffice"=>7.5, "sufficient"=>7.5, "sufficiently"=>7.5,
		"suffocate"=>0, "sugarcoat"=>0, "sugarcoated"=>0, "suggest"=>7.5,
		"suggestions"=>7.5, "suicidal"=>2.5, "suicide"=>2.5, "suit"=>7.5, "suitable"=>7.5,
		"sulk"=>0, "sullen"=>0, "sully"=>0, "sumptuous"=>10, "sumptuously"=>10,
		"sumptuousness"=>10, "sunder"=>0, "sunny"=>7.5, "super"=>10, "superb"=>10,
		"superbly"=>10, "superficial"=>0, "superficiality"=>0, "superficially"=>0,
		"superfluous"=>0, "superior"=>7.5, "superiority"=>0, "superlative"=>10,
		"superstition"=>0, "superstitious"=>0, "support"=>7.5, "supporter"=>10,
		"supportive"=>10, "supposed"=>2.5, "suppress"=>2.5, "suppression"=>2.5,
		"supremacy"=>0, "supreme"=>10, "supremely"=>10, "supurb"=>10, "supurbly"=>10,
		"sure"=>10, "surely"=>10, "surge"=>10, "surging"=>10, "surmise"=>10, "surmount"=>10,
		"surpass"=>0, "surprising"=>2.5, "surrender"=>2.5, "survival"=>7.5, "survive"=>7.5,
		"survivor"=>7.5, "susceptible"=>2.5, "suspect"=>2.5, "suspicion"=>2.5,
		"suspicions"=>0, "suspicious"=>0, "suspiciously"=>0, "sustainability"=>7.5,
		"sustainable"=>7.5, "sustained"=>7.5, "swagger"=>0, "swamped"=>0, "swear"=>0,
		"sweeping"=>10, "sweet"=>7.5, "sweeten"=>7.5, "sweetheart"=>7.5, "sweetly"=>7.5,
		"sweetness"=>7.5, "swift"=>7.5, "swiftness"=>7.5, "swindle"=>0, "swipe"=>0,
		"swoon"=>2.5, "swore"=>0, "sworn"=>10, "sympathetic"=>0,
		"sympathetically"=>0, "sympathies"=>0, "sympathize"=>0, "sympathy"=>0,
		"symptom"=>2.5, "syndrome"=>2.5, "taboo"=>0, "tact"=>10, "taint"=>0,
		"tainted"=>0, "talent"=>10, "talented"=>10, "tamper"=>2.5, "tangled"=>2.5,
		"tantalize"=>7.5, "tantalizing"=>10, "tantalizingly"=>10, "tantrum"=>0,
		"tardy"=>2.5, "tarnish"=>2.5, "taste"=>7.5, "tattered"=>0, "taunt"=>0,
		"taunting"=>0, "tauntingly"=>0, "taunts"=>0, "tawdry"=>0, "tease"=>2.5,
		"teasingly"=>0, "taxing"=>2.5, "tedious"=>0, "tediously"=>0, "temerity"=>0,
		"temper"=>2.5, "temperance"=>7.5, "temperate"=>7.5, "tempest"=>2.5, "tempt"=>10,
		"temptation"=>0, "tempting"=>10, "temptingly"=>10, "tenacious"=>10,
		"tenaciously"=>10, "tenacity"=>10, "tender"=>7.5, "tenderly"=>7.5, "tenderness"=>7.5,
		"tense"=>2.5, "tension"=>2.5, "tentative"=>2.5, "tentatively"=>2.5, "tenuous"=>2.5,
		"tenuously"=>2.5, "tepid"=>2.5, "terrible"=>0, "terribleness"=>0,
		"terribly"=>0, "terrific"=>10, "terrifically"=>10, "terrified"=>0,
		"terrify"=>0, "terrifying"=>0, "terrifyingly"=>0, "terror"=>0,
		"terrorgenic"=>0, "terrorism"=>2.5, "terrorize"=>0, "thank"=>10,
		"thankful"=>10, "thankfully"=>10, "thankless"=>0, "thinkable"=>10, "thirst"=>0,
		"thorny"=>0, "thorough"=>7.5, "thoughtful"=>10, "thoughtfully"=>10,
		"thoughtfulness"=>10, "thoughtless"=>0, "thoughtlessly"=>0,
		"thoughtlessness"=>0, "thrash"=>2.5, "threat"=>2.5, "threaten"=>2.5,
		"threatening"=>2.5, "threats"=>2.5, "thrift"=>7.5, "thrifty"=>7.5, "thrill"=>10,
		"thrilling"=>10, "thrillingly"=>10, "thrills"=>10, "thrive"=>7.5, "thriving"=>7.5,
		"throttle"=>0, "throw"=>2.5, "thumb"=>2.5, "thumbs"=>2.5, "thwart"=>0,
		"tickle"=>7.5, "tidy"=>10, "timehonored"=>10, "timely"=>7.5, "timid"=>0,
		"timidity"=>0, "timidly"=>0, "timidness"=>0, "tingle"=>10, "tiny"=>2.5,
		"tire"=>2.5, "tired"=>0, "tiresome"=>0, "tiring"=>0, "tiringly"=>0,
		"titillate"=>7.5, "titillating"=>10, "titillatingly"=>10, "toast"=>10,
		"togetherness"=>10, "toil"=>0, "tolerable"=>10, "tolerably"=>10, "tolerance"=>10,
		"tolerant"=>7.5, "tolerantly"=>10, "tolerate"=>7.5, "toleration"=>7.5, "toll"=>2.5,
		"too"=>2.5, "top"=>7.5, "topple"=>2.5, "torment"=>0, "tormented"=>0,
		"torrent"=>0, "torrid"=>10, "torridly"=>10, "torture"=>2.5, "tortured"=>2.5,
		"tortuous"=>0, "torturous"=>0, "torturously"=>0, "totalitarian"=>2.5,
		"tradition"=>7.5, "traditional"=>7.5, "touchy"=>0, "toughness"=>0, "toxic"=>2.5,
		"traduce"=>0, "tragedy"=>2.5, "tragic"=>0, "tragically"=>0, "traitor"=>0,
		"traitorous"=>0, "traitorously"=>0, "tramp"=>0, "trample"=>0,
		"tranquil"=>10, "tranquility"=>10, "transgress"=>2.5, "transgression"=>2.5,
		"trauma"=>0, "traumatic"=>0, "traumatically"=>0, "traumatize"=>0,
		"traumatized"=>0, "travesties"=>0, "travesty"=>0, "treacherous"=>2.5,
		"treacherously"=>2.5, "treachery"=>0, "treason"=>0, "treasonous"=>0,
		"treasure"=>10, "treat"=>7.5, "tremendous"=>10, "tremendously"=>10, "trendy"=>10,
		"trepidation"=>10, "trial"=>2.5, "tribute"=>10, "trick"=>0, "tricky"=>0,
		"trickery"=>0, "trim"=>7.5, "triumph"=>10, "triumphal"=>10, "triumphant"=>10,
		"triumphantly"=>10, "trivial"=>0, "trivialize"=>0, "trivially"=>0,
		"trouble"=>0, "troublemaker"=>0, "troublesome"=>0, "troublesomely"=>0,
		"troubling"=>0, "troublingly"=>0, "truant"=>2.5, "truculent"=>10,
		"truculently"=>10, "TRUE"=>10, "truly"=>10, "trump"=>10, "trumpet"=>10, "trust"=>7.5,
		"trusting"=>10, "trustingly"=>10, "trustworthiness"=>10, "trustworthy"=>10,
		"truth"=>10, "truthful"=>10, "truthfully"=>10, "truthfulness"=>10, "try"=>2.5,
		"trying"=>2.5, "tumultuous"=>2.5, "turbulent"=>2.5, "turmoil"=>0, "twinkly"=>10,
		"twist"=>0, "twisted"=>0, "twists"=>2.5, "tyrannical"=>0,
		"tyrannically"=>0, "tyranny"=>0, "tyrant"=>0, "ugh"=>0, "ugliness"=>0,
		"ugly"=>0, "ulterior"=>0, "ultimate"=>10, "ultimately"=>10, "ultimatum"=>0,
		"ultimatums"=>0, "ultra"=>10, "ultrahardline"=>0, "unabashed"=>10,
		"unabashedly"=>10, "unable"=>2.5, "unacceptable"=>0, "unacceptablely"=>0,
		"unaccustomed"=>2.5, "unanimous"=>10, "unassailable"=>10, "unattractive"=>0,
		"unauthentic"=>2.5, "unavailable"=>2.5, "unavoidable"=>2.5, "unavoidably"=>2.5,
		"unbiased"=>7.5, "unbearable"=>0, "unbearablely"=>0, "unbelievable"=>0,
		"unbelievably"=>0, "unbosom"=>10, "unbound"=>7.5, "unbroken"=>7.5,
		"uncertain"=>2.5, "uncivil"=>0, "uncivilized"=>0, "unclean"=>0,
		"unclear"=>2.5, "uncollectible"=>2.5, "uncomfortable"=>2.5, "uncommon"=>10,
		"uncommonly"=>10, "uncompetitive"=>2.5, "uncompromising"=>0,
		"uncompromisingly"=>0, "unconcerned"=>10, "unconditional"=>7.5,
		"unconfirmed"=>2.5, "unconstitutional"=>2.5, "uncontrolled"=>2.5,
		"unconventional"=>7.5, "unconvincing"=>0, "unconvincingly"=>0, "uncouth"=>0,
		"undaunted"=>10, "undecided"=>2.5, "undefined"=>2.5, "undependability"=>0,
		"undependable"=>0, "underdog"=>0, "underestimate"=>0, "underlings"=>0,
		"undermine"=>0, "underpaid"=>2.5, "understand"=>10, "understandable"=>10,
		"understanding"=>7.5, "understood"=>10, "understate"=>10, "understated"=>10,
		"understatedly"=>10, "undesirable"=>0, "undetermined"=>2.5, "undid"=>2.5,
		"undignified"=>0, "undisputable"=>10, "undisputably"=>10, "undisputed"=>7.5,
		"undo"=>2.5, "undocumented"=>2.5, "undone"=>2.5, "undoubted"=>10,
		"undoubtedly"=>10, "undue"=>0, "unease"=>0, "uneasily"=>0, "uneasiness"=>0,
		"uneasy"=>0, "uneconomical"=>2.5, "unencumbered"=>7.5, "unequal"=>0,
		"unequivocal"=>10, "unequivocally"=>10, "unethical"=>0, "uneven"=>2.5,
		"uneventful"=>2.5, "unexpected"=>2.5, "unexpectedly"=>0, "unexplained"=>2.5,
		"unfair"=>0, "unfairly"=>0, "unfaithful"=>0, "unfaithfully"=>0,
		"unfamiliar"=>2.5, "unfavorable"=>0, "unfazed"=>10, "unfeeling"=>0,
		"unfettered"=>10, "unfinished"=>2.5, "unfit"=>0, "unforeseen"=>2.5,
		"unforgettable"=>10, "unfortunate"=>0, "unfortunately"=>0, "unfounded"=>0,
		"unfriendly"=>0, "unfulfilled"=>2.5, "unfunded"=>2.5, "ungrateful"=>0,
		"ungovernable"=>0, "unhappily"=>0, "unhappiness"=>0, "unhappy"=>0,
		"unhealthy"=>2.5, "uniform"=>7.5, "uniformly"=>7.5, "unilateralism"=>0,
		"unimaginable"=>0, "unimaginably"=>0, "unimportant"=>0, "uninformed"=>2.5,
		"uninsured"=>2.5, "unipolar"=>0, "unique"=>7.5, "unity"=>7.5, "universal"=>7.5,
		"unjust"=>0, "unjustifiable"=>0, "unjustifiably"=>0, "unjustified"=>2.5,
		"unjustly"=>0, "unkind"=>0, "unkindly"=>0, "unlamentable"=>0,
		"unlamentably"=>0, "unlawful"=>2.5, "unlawfully"=>2.5, "unlawfulness"=>2.5,
		"unleash"=>0, "unlicensed"=>2.5, "unlikely"=>2.5, "unlimited"=>7.5,
		"unlucky"=>0, "unmoved"=>2.5, "unnatural"=>2.5, "unnaturally"=>0,
		"unnecessary"=>2.5, "unneeded"=>2.5, "unnerve"=>0, "unnerved"=>0,
		"unnerving"=>0, "unnervingly"=>0, "unnoticed"=>2.5, "unobserved"=>2.5,
		"unorthodox"=>0, "unorthodoxy"=>0, "unparalleled"=>10, "unpleasant"=>0,
		"unpleasantries"=>0, "unpopular"=>0, "unprecedent"=>0, "unprecedented"=>0,
		"unpredictable"=>2.5, "unprepared"=>2.5, "unpretentious"=>10, "unproductive"=>2.5,
		"unprofitable"=>2.5, "unqualified"=>0, "unquestionable"=>10,
		"unquestionably"=>10, "unravel"=>0, "unraveled"=>2.5, "unrealistic"=>0,
		"unreasonable"=>2.5, "unreasonably"=>0, "unrelenting"=>0,
		"unrelentingly"=>0, "unreliability"=>0, "unreliable"=>0, "unresolved"=>2.5,
		"unrest"=>0, "unrestricted"=>7.5, "unruly"=>0, "unsafe"=>2.5,
		"unsatisfactory"=>2.5, "unsavory"=>0, "unscathed"=>7.5, "unscrupulous"=>0,
		"unscrupulously"=>0, "unseemly"=>0, "unselfish"=>10, "unsettle"=>0,
		"unsettled"=>2.5, "unsettling"=>0, "unsettlingly"=>0, "unskilled"=>2.5,
		"unsophisticated"=>0, "unsound"=>0, "unspeakable"=>0, "unspeakablely"=>0,
		"unspecified"=>2.5, "unstable"=>2.5, "unsteadily"=>2.5, "unsteadiness"=>2.5,
		"unsteady"=>2.5, "unsuccessful"=>2.5, "unsuccessfully"=>2.5, "unsupported"=>2.5,
		"unsure"=>2.5, "unsuspecting"=>0, "unsustainable"=>2.5, "untenable"=>0,
		"untested"=>2.5, "unthinkable"=>0, "unthinkably"=>0, "untimely"=>0,
		"untouched"=>7.5, "untrained"=>7.5, "untrue"=>0, "untrustworthy"=>0,
		"untruthful"=>0, "unusual"=>2.5, "unusually"=>0, "unwanted"=>0,
		"unwarranted"=>0, "unwelcome"=>0, "unwieldy"=>0, "unwilling"=>0,
		"unwillingly"=>0, "unwillingness"=>0, "unwise"=>0, "unwisely"=>0,
		"unworkable"=>0, "unworthy"=>0, "unyielding"=>0, "upbeat"=>10,
		"upbraid"=>0, "upfront"=>7.5, "upgrade"=>7.5, "upheaval"=>0, "upheld"=>10,
		"uphold"=>10, "uplift"=>7.5, "uplifting"=>10, "upliftingly"=>10, "upliftment"=>10,
		"upright"=>7.5, "uprising"=>2.5, "uproar"=>0, "uproarious"=>0,
		"uproariously"=>0, "uproarous"=>0, "uproarously"=>0, "uproot"=>2.5,
		"upscale"=>7.5, "upset"=>2.5, "upsetting"=>0, "upsettingly"=>0, "upside"=>10,
		"upward"=>7.5, "urge"=>10, "urgency"=>0, "urgent"=>2.5, "urgently"=>2.5,
		"usable"=>7.5, "useful"=>7.5, "usefulness"=>7.5, "useless"=>2.5, "usurp"=>0,
		"usurper"=>0, "utilitarian"=>7.5, "utmost"=>10, "utter"=>0, "utterly"=>0,
		"uttermost"=>10, "vagrant"=>0, "vague"=>2.5, "vagueness"=>2.5, "vain"=>0,
		"vainly"=>0, "valiant"=>10, "valiantly"=>10, "valid"=>7.5, "validity"=>7.5,
		"valor"=>10, "valuable"=>10, "value"=>7.5, "values"=>7.5, "vanish"=>2.5,
		"vanity"=>2.5, "vanquish"=>10, "vast"=>7.5, "vastly"=>7.5, "vastness"=>7.5,
		"vehement"=>0, "vehemently"=>0, "venerable"=>10, "venerably"=>10,
		"venerate"=>7.5, "vengeance"=>0, "vengeful"=>0, "vengefully"=>0,
		"vengefulness"=>0, "venom"=>0, "venomous"=>0, "venomously"=>0, "vent"=>0,
		"verifiable"=>7.5, "veritable"=>10, "versatile"=>7.5, "versatility"=>7.5,
		"vestiges"=>0, "veto"=>0, "vex"=>0, "vexation"=>0, "vexing"=>0,
		"vexingly"=>0, "viable"=>7.5, "viability"=>7.5, "vibrant"=>10, "vibrantly"=>10,
		"vice"=>0, "vicious"=>0, "viciously"=>0, "viciousness"=>0,
		"victimize"=>0, "victorious"=>7.5, "victory"=>7.5, "vie"=>0, "vigilance"=>7.5,
		"vigilant"=>7.5, "vigorous"=>7.5, "vigorously"=>7.5, "vile"=>0, "vileness"=>0,
		"vilify"=>0, "villainous"=>0, "villainously"=>0, "villains"=>0,
		"villian"=>0, "villianous"=>0, "villianously"=>0, "villify"=>0,
		"vindicate"=>10, "vindictive"=>0, "vindictively"=>0, "vindictiveness"=>0,
		"vintage"=>7.5, "violate"=>0, "violation"=>2.5, "violator"=>0, "violent"=>2.5,
		"violently"=>2.5, "viper"=>2.5, "virtue"=>10, "virtuous"=>10, "virtuously"=>10,
		"virulence"=>0, "virulent"=>0, "virulently"=>0, "virus"=>0,
		"visionary"=>10, "vital"=>10, "vitality"=>10, "vivacious"=>10, "vivid"=>10,
		"vocally"=>2.5, "vociferous"=>0, "vociferously"=>0, "void"=>2.5,
		"volatile"=>2.5, "volatility"=>2.5, "voluntarily"=>7.5, "voluntary"=>7.5,
		"vomit"=>2.5, "vouch"=>10, "vouchsafe"=>10, "vow"=>10, "vulgar"=>0,
		"vulnerable"=>10, "wail"=>0, "wallow"=>2.5, "wane"=>2.5, "waning"=>0,
		"want"=>10, "wanton"=>0, "war"=>2.5, "warlike"=>0, "warfare"=>2.5, "warm"=>7.5,
		"warmhearted"=>10, "warmly"=>10, "warmth"=>7.5, "warning"=>2.5, "warp"=>2.5,
		"warped"=>2.5, "wary"=>0, "warily"=>0, "wariness"=>0, "waste"=>2.5,
		"wasteful"=>2.5, "wastefulness"=>2.5, "watchdog"=>0, "wayward"=>0, "weak"=>2.5,
		"weaken"=>0, "weakening"=>0, "weakness"=>0, "weaknesses"=>0, "wealthy"=>7.5,
		"weariness"=>0, "wearisome"=>0, "weary"=>2.5, "wedge"=>2.5, "wee"=>0,
		"weed"=>2.5, "weep"=>2.5, "weird"=>0, "weirdly"=>0, "welcome"=>7.5,
		"welfare"=>7.5, "well"=>7.5, "wellbeing"=>10, "wellconnected"=>10,
		"welleducated"=>7.5, "wellestablished"=>7.5, "wellinformed"=>10,
		"wellintentioned"=>10, "wellmanaged"=>10, "wellpositioned"=>7.5,
		"wellpublicized"=>7.5, "wellreceived"=>10, "wellregarded"=>10, "wellrun"=>10,
		"wellwishers"=>10, "whatever"=>2.5, "wheedle"=>0, "whimper"=>0,
		"whimsical"=>10, "whine"=>0, "whips"=>0, "white"=>7.5, "wholeheartedly"=>10,
		"wholesome"=>10, "wicked"=>0, "wickedly"=>0, "wickedness"=>0, "wide"=>7.5,
		"wideopen"=>7.5, "wideranging"=>7.5, "widespread"=>2.5, "wild"=>2.5, "wildly"=>2.5,
		"wiles"=>0, "will"=>10, "willful"=>10, "willfully"=>10, "willing"=>10,
		"willingness"=>10, "wilt"=>0, "wily"=>0, "wince"=>0, "wink"=>10,
		"winnable"=>10, "winners"=>10, "wisdom"=>10, "wise"=>10, "wisely"=>10, "wish"=>10,
		"wishes"=>10, "wishing"=>10, "withheld"=>2.5, "withhold"=>2.5, "witty"=>10,
		"woe"=>0, "woebegone"=>0, "woeful"=>0, "woefully"=>0, "wonder"=>10,
		"wonderful"=>10, "wonderfully"=>10, "wonderous"=>10, "wonderously"=>10,
		"wondrous"=>10, "woo"=>10, "workable"=>10, "worldfamous"=>10, "worn"=>2.5,
		"worried"=>0, "worriedly"=>0, "worrier"=>0, "worries"=>0, "worrisome"=>0,
		"worry"=>0, "worrying"=>0, "worryingly"=>0, "worse"=>0, "worsen"=>0,
		"worsening"=>0, "worship"=>7.5, "worst"=>0, "worth"=>10, "worthwhile"=>10,
		"worthiness"=>10, "worthless"=>0, "worthlessly"=>0, "worthlessness"=>0,
		"worthy"=>10, "wound"=>2.5, "wounds"=>2.5, "wow"=>10, "wreck"=>2.5, "wrangle"=>0,
		"wrath"=>0, "wrest"=>0, "wrestle"=>2.5, "wretch"=>0, "wretched"=>0,
		"wretchedly"=>0, "wretchedness"=>0, "writhe"=>2.5, "wrong"=>2.5,
		"wrongful"=>2.5, "wrongly"=>0, "wrought"=>2.5, "wry"=>10, "yawn"=>0,
		"yearn"=>10, "yearning"=>10, "yearningly"=>10, "yelp"=>0, "yep"=>10, "yes"=>10,
		"youthful"=>7.5, "zeal"=>10, "zealot"=>0, "zealous"=>0, "zealously"=>0,
		"zenith"=>10, "zest"=>10}
end