-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimDF-raw.csv
We can't make this file beautiful and searchable because it's too large.
6631 lines (6631 loc) · 967 KB
/
simDF-raw.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
,Unnamed: 0,Unnamed: 0.1,TargetWord,Prime,w2v_small_SIM,w2v_uk1_SIM,w2v_big_SIM,w2v_ukfull_SIM,gloveWG100_SIM,gloveTW100_SIM,w2v15_WGU_SIM,w2v15_WG_SIM
0,0,0,abandon,disown,0.564423143864,0.578073143959,0.65043848753,0.605383992195,0.187725932632,0.468533174543,0.63216650486,0.63216650486
1,1,1,ability,capability,0.690149009228,0.530327558517,0.588292121887,0.548643112183,0.679719069414,0.613401264573,0.652654409409,0.652654409409
2,2,2,abnormal,normal,0.342803269625,0.438403517008,0.509439051151,0.435360431671,0.592695592302,0.379913418698,0.664252400398,0.664252400398
3,3,3,above,below,0.776690781116,0.810413002968,0.846324265003,0.817637205124,0.93010517962,0.780781659162,0.803382992744,0.803382992744
4,4,4,abuse,use,0.236475870013,0.0949261784554,0.193303003907,0.117951020598,0.43483186392,0.550969144039,0.205995127559,0.205995127559
5,5,5,accept,reject,0.827614068985,0.748614668846,0.760192453861,0.782593071461,0.818989085782,0.708856408181,0.820846915245,0.820846915245
6,6,6,account,checking,0.060966104269,0.212325170636,0.311860322952,0.212137818336,0.474751054914,0.521236287395,0.435830622911,0.435830622911
7,7,7,accuse,blame,0.554243803024,0.641318619251,0.630566477776,0.629627585411,0.640919397083,0.559234446472,0.651722550392,0.651722550392
8,8,8,ache,stomach,0.806799292564,0.797398984432,0.800364851952,0.825881481171,0.585827277091,0.578985149196,0.765487194061,0.765487194061
9,9,9,achieve,goal,0.630702495575,0.304275095463,0.310520708561,0.323345094919,0.553948534323,0.48165294508,0.419979721308,0.419979721308
10,10,10,act,perform,0.275314122438,0.147537872195,0.547010302544,0.145925924182,0.440059656973,0.487209904509,0.465682566166,0.465682566166
11,11,11,action,reaction,0.102520771325,0.250626951456,0.328924298286,0.22833815217,0.61446492068,0.490972736441,0.596342980862,0.596342980862
12,12,12,active,hyper,-0.0159279704094,0.212788820267,0.310517311096,0.232226088643,0.197099259273,0.558770614255,0.285628169775,0.285628169775
13,13,13,actor,actress,0.78046810627,0.894714832306,0.904684484005,0.903684914112,0.858066636437,0.75325087992,0.925548315048,0.925548315048
14,14,14,actress,actor,0.78046810627,0.894714832306,0.904684484005,0.903684914112,0.858066636437,0.75325087992,0.925548315048,0.925548315048
15,15,15,add,sum,0.0911723747849,0.171118542552,0.184608757496,0.186520501971,0.315315323023,0.480147936374,0.265867054462,0.265867054462
16,16,16,addition,subtraction,-0.0263687651604,0.012071011588,0.12562482059,0.0130249951035,0.115787161128,0.535298766706,0.243213951588,0.243213951588
17,17,17,adjective,adverb,0.709780931473,0.784347712994,0.882502913475,0.870520114899,0.800038330078,0.804242560882,0.76960760355,0.76960760355
18,18,18,adolescent,puberty,0.482768058777,0.37608063221,0.471097826958,0.334540039301,0.44706204721,0.124069452305,0.740447700024,0.740447700024
19,19,19,adventure,explorer,0.484090894461,0.0969971492887,0.379061251879,0.15490527451,0.351965091235,0.41444429168,0.419855952263,0.419855952263
20,20,20,advice,suggest,0.118940673769,0.0533965528011,0.0499991513789,0.0954573228955,0.471536211956,0.605836611431,0.466546982527,0.466546982527
21,21,21,africa,continent,0.542561709881,0.525137484074,0.264945745468,0.52923822403,0.783862634153,0.590422331281,0.603281617165,0.603281617165
22,22,22,after,before,0.710465192795,0.834100365639,0.849039137363,0.828389406204,0.924608608422,0.923431902225,0.832905113697,0.832905113697
23,23,23,again,repeat,0.284123510122,0.314929515123,0.358831882477,0.292152971029,0.547769778022,0.678752327709,0.584837079048,0.584837079048
24,24,24,against,for,0.171613991261,0.238598525524,0.290193021297,0.324269652367,0.686739885777,0.658074480403,0.463946610689,0.463946610689
25,25,25,age,years,0.34704092145,0.488820284605,0.519841074944,0.476972192526,0.724325820069,0.732497969331,0.499731600285,0.499731600285
26,26,26,agreement,contract,0.426305443048,0.70688945055,0.741470754147,0.704666614532,0.714527797463,0.743425561373,0.667134940624,0.667134940624
27,27,27,air,fan,0.0770239755511,0.190563768148,0.229829639196,0.136077418923,0.3236722987,0.310087852784,0.193915694952,0.193915694952
28,28,28,airplane,flying,0.583828628063,0.483419597149,0.623985469341,0.601695775986,0.730005379331,0.6394097416,0.786259710789,0.786259710789
29,29,29,alcohol,drunk,0.391493797302,0.41281285882,0.406769126654,0.35533747077,0.622560199127,0.498051912125,0.627448439598,0.627448439598
30,30,30,alert,awareness,0.284963428974,0.214550420642,0.194663584232,0.289385437965,0.439766390699,0.451379040502,0.315627276897,0.315627276897
31,31,31,alive,dead,0.551740109921,0.572700858116,0.642503917217,0.625712573528,0.710351765903,0.659841470982,0.678016543388,0.678016543388
32,32,32,all,most,0.30019903183,0.446646571159,0.441839724779,0.40758267045,0.821101895616,0.73516656213,0.578434288502,0.578434288502
33,33,33,alligator,crocodile,0.675609409809,0.598607122898,0.784382104874,0.749412953854,0.705994502117,0.774570480349,0.724068820477,0.724068820477
34,34,34,allow,disallow,0.395083010197,0.373724997044,0.501187860966,0.370953917503,0.287380143477,0.279208958485,0.598507881165,0.598507881165
35,35,35,alone,lonely,0.311679661274,0.296204984188,0.368722051382,0.266566336155,0.331079481222,0.759357417783,0.336009532213,0.336009532213
36,36,36,alright,okay,0.878437876701,0.85445946455,0.896453917027,0.868854165077,0.718698992905,0.810602645221,0.784811198711,0.784811198711
37,37,37,aluminum,foil,0.483084619045,0.766849637032,0.762932658195,0.714205145836,0.457800312792,0.617470612944,0.51496386528,0.51496386528
38,38,38,always,forever,0.413120359182,0.369008302689,0.484215855598,0.429941266775,0.565525852421,0.758027794419,0.630414187908,0.630414187908
39,39,39,am,be,0.114789195359,0.105012848973,0.0875628143549,0.0426616854966,0.504083347265,0.687904191099,0.305798918009,0.305798918009
40,40,40,ambulance,emergency,0.420966714621,0.689987182617,0.752707898617,0.702093482018,0.565559085647,0.627983411517,0.665818452835,0.665818452835
41,41,41,america,usa,0.221836566925,0.505381822586,0.801106333733,0.613592267036,0.645224378889,0.683930636131,0.40616196394,0.40616196394
42,42,42,american,flag,0.120341993868,0.20568087697,0.0517652370036,0.216246277094,0.430318805908,0.535601663725,0.285563677549,0.285563677549
43,43,43,amount,quantity,0.393668055534,0.566236674786,0.729689955711,0.549608886242,0.700807076394,0.523569562064,0.582306206226,0.582306206226
44,44,44,amuse,entertain,0.45363175869,0.666502416134,0.776392877102,0.772212386131,0.684610492157,0.482370807453,0.719624042511,0.719624042511
45,45,45,angel,saint,0.22931586206,0.286800414324,0.45531848073,0.40976023674,0.382204507621,0.389387379234,0.157912045717,0.157912045717
46,46,46,anger,fury,0.769098639488,0.685846984386,0.76217520237,0.675998806953,0.69736526886,0.504052993364,0.828754723072,0.828754723072
47,47,47,angry,mad,0.343863129616,0.537460148335,0.648546338081,0.56348067522,0.404221828531,0.725501712937,0.338246107101,0.338246107101
48,48,48,animal,beast,0.375278264284,0.239054560661,0.342915117741,0.24077861011,0.421210111313,0.331087197631,0.555511057377,0.555511057377
49,49,49,ankle,sprain,0.751252770424,0.694033622742,0.74745196104,0.738455533981,0.775700937043,0.706648869194,0.898826122284,0.898826122284
50,50,50,annoy,frustrate,0.423800230026,0.586392223835,0.604903876781,0.601831078529,0.597516960733,0.611581936466,0.515132009983,0.515132009983
51,51,51,annoying,irritating,0.764796257019,0.866738438606,0.915277600288,0.876769959927,0.830519781193,0.849365925059,0.853043138981,0.853043138981
52,52,52,annually,yearly,0.584268093109,0.619569897652,0.671690940857,0.690331935883,0.730545718874,0.510056799267,0.809098541737,0.809098541737
53,53,53,answer,explanation,0.486131906509,0.396287232637,0.441748827696,0.43064147234,0.722389107859,0.627062897448,0.622698128223,0.622698128223
54,54,54,ant,anteater,0.522605538368,0.51802277565,0.648704886436,0.578255832195,0.205731973474,0.0947399263298,0.424780935049,0.424780935049
55,55,55,anxiety,stress,0.254172325134,0.798089504242,0.810023248196,0.794375121593,0.709513812238,0.704835129091,0.813418865204,0.813418865204
56,56,56,apart,together,-0.0914966315031,0.165739625692,0.203054577112,0.162303969264,0.710402016181,0.73448109667,0.584632277489,0.584632277489
57,57,57,apartment,rent,0.250619292259,0.508799791336,0.584093570709,0.525853991508,0.555523573237,0.713948212062,0.533567130566,0.533567130566
58,58,58,ape,monkey,0.63274949789,0.529060840607,0.628068387508,0.596161186695,0.665354403389,0.224337049665,0.747256398201,0.747256398201
59,59,59,apology,sorry,0.275305598974,0.292074799538,0.324465751648,0.309932619333,0.482798102467,0.366543075369,0.394906193018,0.394906193018
60,60,60,appear,seem,0.672217011452,0.641715764999,0.64929497242,0.642810106277,0.798488594844,0.715831878789,0.734152555466,0.734152555466
61,61,61,apple,pie,0.517546534538,0.59335154295,0.793371975422,0.665480673313,0.489114239659,0.359991052797,0.597537457943,0.597537457943
62,62,62,april,march,0.955902993679,0.9845713377,0.266989648342,0.987978041172,0.974989859175,0.842695726274,0.908851385117,0.908851385117
63,63,63,area,region,0.408787637949,0.603068590164,0.657970190048,0.600966393948,0.745877571679,0.616641484572,0.698634088039,0.698634088039
64,64,64,argue,debate,0.126587614417,0.281137168407,0.271372199059,0.310501128435,0.600688992733,0.380884388217,0.484346330166,0.484346330166
65,65,65,argument,disagreement,0.490877360106,0.45871335268,0.483193278313,0.451835751534,0.581980605598,0.496682817891,0.633916914463,0.633916914463
66,66,66,arm,shoulder,0.342451423407,0.822229087353,0.822890520096,0.78740477562,0.697208986143,0.723912234282,0.707617878914,0.707617878914
67,67,67,armor,knight,0.330394774675,0.239713460207,0.494123876095,0.277600765228,0.351539775882,0.537780842277,0.175995528698,0.175995528698
68,68,68,arms,octopus,0.101506866515,0.0884522423148,0.172776475549,0.121566295624,0.0710117048402,0.350222758798,0.154926195741,0.154926195741
69,69,69,army,corporal,0.039726857096,0.559974312782,0.553935229778,0.546123504639,0.442024852304,0.121312122577,0.469263494015,0.469263494015
70,70,70,around,surrounding,0.436023563147,0.383176594973,0.453279256821,0.363588511944,0.621049211567,0.485481633965,0.483447641134,0.483447641134
71,71,71,arrogant,cocky,0.632932901382,0.634626030922,0.715937256813,0.693990707397,0.770259915693,0.748279921222,0.670020878315,0.670020878315
72,72,72,arrow,bow,0.441746234894,0.531907379627,0.51711666584,0.562777578831,0.571031664871,0.43623085194,0.51256018877,0.51256018877
73,73,73,art,sculpture,0.593832433224,0.800278961658,0.756166398525,0.815129756927,0.752566659809,0.641022302563,0.632042467594,0.632042467594
74,74,74,artist,con,0.0912835747004,0.0593640469015,0.142385348678,0.135726436973,0.251786731495,0.1302651704,0.109192810953,0.109192810953
75,75,75,ashtray,ash,0.553195059299,0.373128920794,0.537476539612,0.31339353323,0.113710693905,0.162948659069,0.257350713015,0.257350713015
76,76,76,asia,europe,0.764309763908,0.770068228245,0.721008241177,0.78913384676,0.777293217892,0.667378544925,0.756497383118,0.756497383118
77,77,77,ask,inquire,0.43882355094,0.453937411308,0.550490736961,0.549027085304,0.490397852244,0.22888268698,0.668792784214,0.668792784214
78,78,78,asleep,unconscious,0.513031840324,0.398725658655,0.400845974684,0.381784856319,0.605480996251,0.410535492356,0.731746315956,0.731746315956
79,79,79,ass,donkey,0.730194568634,0.303409725428,0.573234677315,0.338565975428,0.32006506788,0.525836278598,0.330415576696,0.330415576696
80,80,80,assistant,helper,0.0898734927177,0.305961608887,0.362907081842,0.273025691509,0.0353665758275,0.441586451129,0.171717375517,0.171717375517
81,81,81,assume,presume,0.356534719467,0.719665706158,0.794381916523,0.758848845959,0.498477164426,0.387823256817,0.790711522102,0.790711522102
82,82,82,atom,neutron,0.713727533817,0.536733090878,0.581318676472,0.544380009174,0.586153671876,0.2909306137,0.7983071208,0.7983071208
83,83,83,attack,assault,0.718986988068,0.806906282902,0.821253180504,0.762036204338,0.747295163204,0.562030226098,0.73924446106,0.73924446106
84,84,84,attempt,try,0.523945569992,0.508239030838,0.54214900732,0.453610807657,0.761943357114,0.641924946667,0.563802838326,0.563802838326
85,85,85,attic,basement,0.490519464016,0.756471931934,0.782402276993,0.793352782726,0.750394759737,0.666104767802,0.77415317297,0.77415317297
86,86,86,aunt,relative,0.045452143997,0.150107055902,0.156967505813,0.106904551387,0.250822123567,0.379221893564,0.276148170233,0.276148170233
87,87,87,australia,kangaroo,0.116612747312,0.224883034825,0.189829647541,0.273408263922,0.301272185129,0.325636359953,0.281081110239,0.281081110239
88,88,88,auto,car,0.383848816156,0.658842980862,0.585076212883,0.620510816574,0.666209968756,0.51889171542,0.667951405048,0.667951405048
89,89,89,average,norm,0.113452851772,0.191770613194,0.249226301908,0.2047816962,0.208507044856,0.346137810266,0.173089325428,0.173089325428
90,90,90,awake,asleep,0.711154818535,0.703330695629,0.749113976955,0.720674991608,0.728711802668,0.816432783188,0.760093212128,0.760093212128
91,91,91,award,merit,0.506704390049,0.415744960308,0.385630726814,0.487631589174,0.611496536018,0.460818586812,0.532097458839,0.532097458839
92,92,92,aware,unaware,0.703109383583,0.778018951416,0.784972429276,0.76059448719,0.785285711572,0.642168883298,0.826881706715,0.826881706715
93,93,93,away,further,0.0364618264139,0.109215058386,0.195347964764,0.102447502315,0.575237116655,0.576590380517,0.379547476768,0.379547476768
94,94,94,ax,hatchet,0.297351658344,0.189699158072,0.33977201581,0.155140042305,0.560301543734,0.341431695678,0.544837534428,0.544837534428
95,95,95,baby,child,0.44182023406,0.572665810585,0.669354021549,0.581863462925,0.726617550036,0.645682780973,0.738395392895,0.738395392895
96,96,96,back,retreat,0.44176736474,0.129681944847,0.190374463797,0.141255363822,0.438337142205,0.300343839828,0.448863327503,0.448863327503
97,97,97,backpack,knapsack,0.756948232651,0.480899572372,0.568260133266,0.572351098061,0.654185367145,0.309124512261,0.769386827946,0.769386827946
98,98,98,backward,forward,0.221614584327,0.444429904222,0.50243973732,0.522144854069,0.436379849722,0.509936320751,0.0946470573545,0.0946470573545
99,99,99,bacon,eggs,0.243163466454,0.673241972923,0.787983715534,0.595956504345,0.476989212794,0.729205649627,0.550779879093,0.550779879093
100,100,100,bad,villain,0.412650167942,0.185516282916,0.284848570824,0.259770601988,0.343511998087,0.343437180764,0.444812715054,0.444812715054
101,101,101,bag,sack,0.534312963486,0.697557687759,0.719302713871,0.772189736366,0.423119659264,0.470314578378,0.46472454071,0.46472454071
102,102,102,bake,broil,,0.372401595116,0.596305370331,0.673888266087,0.54870417638,0.327865330633,0.935203194618,0.935203194618
103,103,103,ball,bowling,0.524528384209,0.481451094151,0.60299384594,0.502847671509,0.537382154357,0.662734281521,0.35342758894,0.35342758894
104,104,104,ballet,tutu,0.2463773489,0.176505848765,0.485969722271,0.229708731174,0.150600480447,0.495449545722,0.0835881009698,0.0835881009698
105,105,105,balloon,helium,0.625688195229,0.754018783569,0.610313713551,0.737389147282,0.544447880209,0.495444116364,0.758820176125,0.758820176125
106,106,106,band,rubber,0.227708637714,0.207671955228,0.188424274325,0.213744714856,0.256385182781,0.375421616101,0.252464175224,0.252464175224
107,107,107,bank,teller,0.223521634936,0.163037091494,0.329362273216,0.254506379366,0.435250308156,0.512437257328,0.342112272978,0.342112272978
108,108,108,bar,saloon,0.162586763501,0.424206167459,0.498110324144,0.4580321908,0.425504691772,0.458560918428,0.581571221352,0.581571221352
109,109,109,bargain,sale,0.151249915361,0.518781006336,0.533529162407,0.485288828611,0.461236947864,0.420891035865,0.377347230911,0.377347230911
110,110,110,base,foundation,0.317650258541,0.14802223444,0.390032619238,0.103279963136,0.254451026597,0.297630054099,0.189684540033,0.189684540033
111,111,111,baseball,catcher,0.417022883892,0.367041558027,0.513322949409,0.356043457985,0.567990055501,0.577960177148,0.60157585144,0.60157585144
112,112,112,basic,instinct,0.1691326648,0.234940990806,0.184459865093,0.250912904739,0.296811728386,0.273454833103,0.483005970716,0.483005970716
113,113,113,basket,wicker,0.202555775642,0.414009004831,0.512795090675,0.534149706364,0.25591048485,0.233189848553,0.37201705575,0.37201705575
114,114,114,basketball,dunk,0.409807443619,0.382985919714,0.329636514187,0.357963144779,0.283725586826,0.495665347761,0.316241443157,0.316241443157
115,115,115,bass,treble,0.505675077438,0.786048412323,0.658018827438,0.718027353287,0.396018726755,0.345110430827,0.293913722038,0.293913722038
116,116,116,bat,ball,0.565290808678,0.413447976112,0.610365152359,0.458631813526,0.638999891277,0.52102741448,0.60251635313,0.60251635313
117,117,117,bath,robe,0.57858479023,0.224711224437,0.309825122356,0.212155729532,0.191153510151,0.339555319248,0.46369561553,0.46369561553
118,118,118,bathroom,toilet,0.723137497902,0.772024989128,0.813064157963,0.786292970181,0.779338416473,0.763045023357,0.833220243454,0.833220243454
119,119,119,beach,coast,0.300884604454,0.624110400677,0.686802625656,0.652745306492,0.57164513194,0.649085372433,0.402818322182,0.402818322182
120,120,120,beam,laser,0.596463382244,0.656450271606,0.738246440887,0.684577822685,0.622563365755,0.563062614816,0.665079176426,0.665079176426
121,121,121,bean,kidney,0.334095299244,0.309457719326,0.300493896008,0.256368368864,0.278650978912,0.361255666545,0.20509314537,0.20509314537
122,122,122,bear,cub,0.120936207473,0.26518908143,0.168162867427,0.259235531092,0.440390442284,0.600164362493,0.247983053327,0.247983053327
123,123,123,beard,mustache,0.810681521893,0.560619354248,0.872244536877,0.775673151016,0.798477355286,0.789832878572,0.86629140377,0.86629140377
124,124,124,beast,beauty,0.713304579258,0.407583385706,0.359917134047,0.366893261671,0.475203041827,0.455890618067,0.603772044182,0.603772044182
125,125,125,beat,rhythm,0.301343947649,0.377957850695,0.301876425743,0.351987928152,0.393130350728,0.5302754334,0.283657222986,0.283657222986
126,126,126,beautiful,gorgeous,0.752345860004,0.811584055424,0.808915674686,0.799252748489,0.87216144169,0.88944765899,0.894124984741,0.894124984741
127,127,127,bed,loft,0.345250070095,0.470012187958,0.589202940464,0.515319406986,0.416013746444,0.442197760702,0.627326786518,0.627326786518
128,128,128,bedroom,room,0.235171958804,0.619002461433,0.733113765717,0.663843274117,0.765999111399,0.800352304495,0.726957142353,0.726957142353
129,129,129,bee,hive,0.596865594387,0.357755988836,0.470453619957,0.443963259459,0.45915385505,0.418889049739,0.348151892424,0.348151892424
130,130,130,beef,roast,0.695671379566,0.776041924953,0.819090545177,0.810772359371,0.574788483763,0.726460504276,0.814291119576,0.814291119576
131,131,131,beer,mug,0.555714190006,0.690017640591,0.757016301155,0.650820851326,0.42825964298,0.484112611837,0.363483905792,0.363483905792
132,132,132,before,after,0.710465192795,0.834100365639,0.849039137363,0.828389406204,0.924608608422,0.923431902225,0.832905113697,0.832905113697
133,133,133,beg,plead,0.426389366388,0.487278997898,0.516186654568,0.522111058235,0.322985407191,0.356298872212,0.407853782177,0.407853782177
134,134,134,begin,originate,0.0422812514007,0.171496897936,0.144183069468,0.130723074079,0.231281896288,0.233855333161,0.242160856724,0.242160856724
135,135,135,beginner,novice,0.704411029816,0.708687186241,0.731179475784,0.731984257698,0.559504564285,0.595804007572,0.695475161076,0.695475161076
136,136,136,beginning,ending,0.566795527935,0.448507159948,0.530771374702,0.523661077023,0.707236927274,0.722599881297,0.558596670628,0.558596670628
137,137,137,behind,ahead,0.410164505243,0.484258472919,0.496714532375,0.483226925135,0.751602032212,0.692696790965,0.605283677578,0.605283677578
138,138,138,being,human,0.0878183618188,0.118640728295,0.268885135651,0.137280911207,0.55213215127,0.610816160748,0.254241198301,0.254241198301
139,139,139,belief,superstition,0.297274112701,0.561839461327,0.654544949532,0.638851225376,0.460345413805,0.421294407137,0.579053938389,0.579053938389
140,140,140,believe,disbelieve,0.110433019698,0.468731611967,0.53470402956,0.535814464092,0.232136387967,0.190784469,0.718428015709,0.718428015709
141,141,141,bell,chime,0.187179103494,0.257666260004,0.619987010956,0.391321182251,0.383398294252,0.306821756978,0.289924025536,0.289924025536
142,142,142,below,above,0.776690781116,0.810413002968,0.846324265003,0.817637205124,0.93010517962,0.780781659162,0.803382992744,0.803382992744
143,143,143,belt,sash,0.369909256697,0.325039923191,0.449035018682,0.424687206745,0.337593055141,0.460657507817,0.569055497646,0.569055497646
144,144,144,bend,flexible,0.0233229678124,-0.0194578357041,0.0805055350065,0.0305159669369,0.135097768272,0.296100043279,0.27105358243,0.27105358243
145,145,145,best,favorite,0.257556736469,0.282571196556,0.35973533988,0.322640657425,0.711659600621,0.760435080469,0.708505988121,0.708505988121
146,146,146,better,worse,0.359413564205,0.694827318192,0.679300606251,0.707356333733,0.717665379204,0.757568213655,0.752998650074,0.752998650074
147,147,147,bible,proverb,0.624358654022,0.530073463917,0.543518722057,0.512928366661,0.414483391349,0.493072771883,0.569879770279,0.569879770279
148,148,148,bicycle,tricycle,0.725697636604,0.540256679058,0.798386216164,0.612668395042,0.457081140525,0.548785190346,0.733086526394,0.733086526394
149,149,149,big,huge,0.550218999386,0.531913816929,0.701029419899,0.579674422741,0.805307315692,0.805302732305,0.699425697327,0.699425697327
150,150,150,bike,pedal,0.64587187767,0.57876431942,0.653034687042,0.659906089306,0.432572099662,0.533756663279,0.680501520634,0.680501520634
151,151,151,billy,idol,0.349614530802,0.419483751059,0.293536037207,0.458997607231,0.422439607789,0.457749787009,0.417074501514,0.417074501514
152,152,152,biology,science,0.672194480896,0.744312703609,0.701349318027,0.744696199894,0.738251624794,0.809478746025,0.802578151226,0.802578151226
153,153,153,bird,wings,0.31673514843,0.29319024086,0.322330623865,0.329738348722,0.330506723123,0.457121334172,0.405312716961,0.405312716961
154,154,154,bit,drill,0.199953496456,0.206837251782,0.22122053802,0.20259141922,0.27144511703,0.366511961046,0.35383144021,0.35383144021
155,155,155,bitch,snob,,0.613206386566,0.641121566296,0.653137743473,0.338564715059,0.24299842255,0.583953022957,0.583953022957
156,156,156,bite,bit,0.474347293377,0.461598157883,0.510285317898,0.475495904684,0.533189958747,0.480291161661,0.610512375832,0.610512375832
157,157,157,black,white,0.487035512924,0.867752969265,0.928216457367,0.894724190235,0.865227244352,0.939096645145,0.488437116146,0.488437116146
158,158,158,blame,scapegoat,0.44937556982,0.419986724854,0.495278865099,0.425746321678,0.459142564591,0.323683759721,0.643252909184,0.643252909184
159,159,159,blanket,quilt,0.439453810453,0.542529523373,0.52886235714,0.499886751175,0.323645467095,0.635319532905,0.575237631798,0.575237631798
160,160,160,bleach,clorox,0.292229115963,,,0.40885078907,0.579858817927,0.419545120079,0.165916845202,0.165916845202
161,161,161,blonde,brunette,0.65587836504,0.745677053928,0.907192349434,0.899603068829,0.695261156961,0.849200895436,0.596683502197,0.596683502197
162,162,162,blood,cut,0.357889950275,0.242139235139,0.290844619274,0.221654295921,0.359462179316,0.566990423712,0.236816570163,0.236816570163
163,163,163,blow,whistle,0.323647081852,0.60397207737,0.638793647289,0.602322340012,0.501409438586,0.61056724125,0.57896989584,0.57896989584
164,164,164,blue,sapphire,0.523832976818,0.677788436413,0.74322104454,0.693027794361,0.365822911792,0.548650994921,0.509258627892,0.509258627892
165,165,165,blush,embarrass,0.558546125889,0.319213062525,0.362931400537,0.297235548496,0.174784583433,0.184857129721,0.241314336658,0.241314336658
166,166,166,board,bulletin,0.305558651686,0.471314281225,0.47648704052,0.482739180326,0.450937710727,0.448823202717,0.212960585952,0.212960585952
167,167,167,boat,hull,0.36723318696,0.366031050682,0.592415809631,0.320307821035,0.42939751775,0.293892110031,0.311347782612,0.311347782612
168,168,168,body,physiology,0.119796268642,0.321667343378,0.356223851442,0.272656649351,0.296883919501,0.181704652194,0.306914806366,0.306914806366
169,169,169,bomb,explosion,0.803625404835,0.623430252075,0.653841555119,0.641819596291,0.781137813632,0.667212334214,0.861086547375,0.861086547375
170,170,170,bone,hip,0.450456142426,0.427026152611,0.519840300083,0.528853237629,0.543179379921,0.548237041256,0.707464516163,0.707464516163
171,171,171,book,magazine,0.727320551872,0.511577427387,0.601597189903,0.548527359962,0.721005886386,0.609228888277,0.672301113605,0.672301113605
172,172,172,boots,hiking,0.459711790085,0.474926948547,0.539631724358,0.426765978336,0.367451996153,0.501658022288,0.25268253684,0.25268253684
173,173,173,booze,whiskey,0.514891862869,0.573457896709,0.663607120514,0.630334556103,0.553034545984,0.633964414355,0.709555447102,0.709555447102
174,174,174,bored,busy,0.415003418922,0.554004132748,0.463129669428,0.482755869627,0.464722261392,0.675336372468,0.645976126194,0.645976126194
175,175,175,boring,monotonous,0.736858308315,0.70566034317,0.702762067318,0.695763885975,0.634467694841,0.441031376011,0.684744596481,0.684744596481
176,176,176,borrow,lend,0.541940033436,0.62631714344,0.62702357769,0.637862145901,0.753531220656,0.776060425587,0.805804252625,0.805804252625
177,177,177,boss,secretary,0.152519658208,0.318731158972,0.51939791441,0.297522693872,0.416397759969,0.38727054672,0.264049232006,0.264049232006
178,178,178,bother,nag,0.295809447765,-0.0257371738553,0.306056469679,0.11965149641,0.107826438965,0.293123681693,0.447924762964,0.447924762964
179,179,179,bow,arrow,0.441746234894,0.531907379627,0.51711666584,0.562777578831,0.571031664871,0.43623085194,0.51256018877,0.51256018877
180,180,180,box,carton,0.59111058712,0.42092448473,0.581605255604,0.41423869133,0.348867391309,0.478595192752,0.475134640932,0.475134640932
181,181,181,boxer,fighter,0.41679507494,0.381748169661,0.499361723661,0.537225842476,0.420121458503,0.46347363411,0.383885860443,0.383885860443
182,182,182,boy,girl,0.78963047266,0.921689331532,0.944389760494,0.92632573843,0.917572974362,0.868402337257,0.904681563377,0.904681563377
183,183,183,boyfriend,girlfriend,0.870384573936,0.922906458378,0.941797912121,0.949228584766,0.924075641241,0.912347237585,0.882829129696,0.882829129696
184,184,184,boys,hardy,0.222151726484,0.158448293805,0.21610468626,0.178391754627,0.253953062806,0.382146527355,0.316958487034,0.316958487034
185,185,185,bra,underwear,0.415834337473,0.690538883209,0.833072781563,0.746189653873,0.525025261761,0.609536192854,0.814019143581,0.814019143581
186,186,186,bracelet,charm,0.488035738468,0.277878940105,0.368172436953,0.372999995947,0.409768371481,0.787838521565,0.346708744764,0.346708744764
187,187,187,brain,thinking,0.20334379375,0.150699719787,0.17334228754,0.171904146671,0.420906473721,0.616514604875,0.299464374781,0.299464374781
188,188,188,branch,twig,0.0192284919322,0.17815862596,0.277761757374,0.199510499835,0.0629926459831,0.349809710609,0.167256012559,0.167256012559
189,189,189,brave,daring,0.729053676128,0.667273044586,0.698754072189,0.645882308483,0.625964220606,0.536359391567,0.707706689835,0.707706689835
190,190,190,bravery,valor,0.528696835041,0.317371457815,0.533841729164,0.297651052475,0.663248758402,0.140436826417,0.470284372568,0.470284372568
191,191,191,bread,stale,0.590635538101,0.621113359928,0.614170253277,0.648888170719,0.505360575352,0.568645320602,0.680739939213,0.680739939213
192,192,192,break,shatter,0.531009435654,0.273616760969,0.374443799257,0.387519836426,0.320896499356,0.266433754855,0.606816828251,0.606816828251
193,193,193,breakfast,cereal,0.140833392739,0.406591385603,0.465338200331,0.387561619282,0.556686944462,0.690005485336,0.505462825298,0.505462825298
194,194,194,breathe,air,0.280246585608,0.386078774929,0.462591320276,0.407354444265,0.30671687074,0.41770476683,0.301640659571,0.301640659571
195,195,195,brick,block,0.378444284201,0.587952852249,0.573304891586,0.608742415905,0.508969174918,0.441484688068,0.421070516109,0.421070516109
196,196,196,bride,groom,0.67887789011,0.735771417618,0.779214441776,0.732681870461,0.791912514015,0.795686915875,0.668686628342,0.668686628342
197,197,197,britain,england,0.472653359175,0.592539131641,0.647882223129,0.559204161167,0.663819531553,0.712262132873,0.402332335711,0.402332335711
198,198,198,broccoli,cauliflower,0.860950648785,0.894833445549,0.882286727428,0.872015237808,0.847110032925,0.707107681419,0.939945161343,0.939945161343
199,199,199,broken,promise,0.027714991942,-0.0867419317365,-0.0142657179385,-0.0691607221961,0.383378353435,0.608884736949,0.241701304913,0.241701304913
200,200,200,brother,sister,0.844757556915,0.834863483906,0.863043725491,0.85098272562,0.74323303647,0.905741898086,0.73442029953,0.73442029953
201,201,201,brothers,righteous,0.40135627985,0.31847563386,0.273959845304,0.299654424191,0.277567530196,0.352474288369,0.322383344173,0.322383344173
202,202,202,brush,bristle,0.557506620884,0.608889222145,0.758936107159,0.661233186722,0.45440043529,0.557855779647,0.490527659655,0.490527659655
203,203,203,bubble,burst,0.506599068642,0.550270974636,0.579666793346,0.546140193939,0.619857181937,0.58933863118,0.586615025997,0.586615025997
204,204,204,bucket,pail,0.697162210941,0.627728402615,0.775115311146,0.811663269997,0.558198419863,0.425309329458,0.739648401737,0.739648401737
205,205,205,buffalo,bison,0.645563066006,0.514085650444,0.81040418148,0.656397223473,0.519526939278,0.580377462429,0.355280548334,0.355280548334
206,206,206,bug,cricket,0.149581298232,0.234347075224,0.108711436391,0.157657325268,0.114960277392,0.237460509372,0.0703503265977,0.0703503265977
207,207,207,build,construction,0.275395065546,0.318820923567,0.327747583389,0.329272896051,0.676882114316,0.57546077164,0.582206428051,0.582206428051
208,208,208,builder,contractor,0.358638554811,0.480547845364,0.66761392355,0.503300428391,0.551883497992,0.467785824729,0.702372074127,0.702372074127
209,209,209,building,architect,0.335394531488,0.413353800774,0.39208906889,0.420434772968,0.526175147238,0.482898284733,0.501782953739,0.501782953739
210,210,210,bum,hobo,0.327497571707,0.576198518276,0.521142244339,0.531449317932,0.296214579411,0.373714124203,0.498920589685,0.498920589685
211,211,211,bump,lump,0.144990265369,0.243617117405,0.277822881937,0.311650186777,0.399988119508,0.449257511647,0.411793261766,0.411793261766
212,212,212,bush,shrub,-0.0168841648847,0.223776429892,0.733524501324,0.260810613632,0.0745022734002,0.253457565054,0.21751704812,0.21751704812
213,213,213,business,corporation,0.412393599749,0.555687665939,0.473181992769,0.536981940269,0.578706993852,0.540553400106,0.376900166273,0.376900166273
214,214,214,busy,occupied,0.0617947988212,0.214218020439,0.246326640248,0.223276942968,0.265046428256,0.409202311137,0.0665866881609,0.0665866881609
215,215,215,butter,peanut,0.769518136978,0.844286561012,0.865421414375,0.840071022511,0.781306719317,0.920668867385,0.926981151104,0.926981151104
216,216,216,butterfly,cocoon,0.28453785181,0.453403949738,0.556532979012,0.400165677071,0.32030632428,0.395338150172,0.391695618629,0.391695618629
217,217,217,cab,taxi,0.524307370186,0.627979755402,0.686925888062,0.651716709137,0.755679635783,0.77906697371,0.840586066246,0.840586066246
218,218,218,cabbage,coleslaw,,0.852972626686,0.894510984421,0.846125006676,0.572555711608,0.575258407378,0.906066656113,0.906066656113
219,219,219,cabin,lodge,0.0612594820559,0.295948058367,0.441795796156,0.363095641136,0.543316165979,0.560101284888,0.508561789989,0.508561789989
220,220,220,cabinet,file,0.100039102137,0.0849429219961,0.158904969692,0.0754500180483,0.295767131622,0.451374617695,0.191361993551,0.191361993551
221,221,221,cactus,prickly,0.628092646599,0.673472881317,0.801607489586,0.710617959499,0.479053419059,0.347022588577,0.461301296949,0.461301296949
222,222,222,cake,frosting,,0.629460453987,0.684059083462,0.664599657059,0.760118876928,0.676022804782,0.915221571922,0.915221571922
223,223,223,calculate,compute,0.699672818184,0.688588380814,0.779696047306,0.746480107307,0.722206186794,0.323268343306,0.73931145668,0.73931145668
224,224,224,call,phone,0.204284459352,0.608504295349,0.661923646927,0.635814189911,0.648938752258,0.722524717933,0.396735548973,0.396735548973
225,225,225,calm,soothe,0.465963482857,0.538646221161,0.566078603268,0.585203707218,0.422002223976,0.184782712505,0.443253755569,0.443253755569
226,226,226,camera,tourist,0.113114975393,-0.000376218435122,0.055565290153,-0.00387195521034,0.216075057482,0.189648670147,0.212384909391,0.212384909391
227,227,227,camp,tent,0.492873042822,0.505473732948,0.547684729099,0.480275481939,0.603836548287,0.453396010631,0.62523663044,0.62523663044
228,228,228,can,opener,-0.00331389601342,-0.154116272926,-0.0724815130234,-0.0582073330879,0.204328730121,0.354695043065,-0.0419537760317,-0.0419537760317
229,229,229,cancer,tumor,0.674819111824,0.664263129234,0.760070979595,0.696672976017,0.705687145541,0.534966661478,0.849243283272,0.849243283272
230,230,230,candle,wick,0.691643297672,0.253695189953,0.660966157913,0.222577542067,0.424136220678,0.55554467115,0.505936980247,0.505936980247
231,231,231,candy,chocolate,0.793031811714,0.627666175365,0.593136191368,0.636481285095,0.769908502832,0.736946229971,0.873546242714,0.873546242714
232,232,232,cans,recycle,0.53177523613,0.562363266945,0.587797105312,0.600019037724,0.461241289538,0.512413285326,0.551451265812,0.551451265812
233,233,233,can't,inability,,0.0582066103816,,0.0248787030578,,,0.199850037694,0.199850037694
234,234,234,capability,ability,0.690149009228,0.530327558517,0.588292121887,0.548643112183,0.679719069414,0.613401264573,0.652654409409,0.652654409409
235,235,235,car,valve,0.362564653158,0.322126597166,0.323175400496,0.316456526518,0.310556782484,0.247597311679,0.459815263748,0.459815263748
236,236,236,card,credit,0.572737872601,0.745631039143,0.777019917965,0.752101540565,0.631730165789,0.773226772642,0.678257644176,0.678257644176
237,237,237,cards,deal,0.0362019278109,0.0379530675709,0.0560757257044,0.118803068995,0.334904064825,0.566097337917,0.188989236951,0.188989236951
238,238,238,care,handle,0.121124014258,-0.00934267789125,0.0299120489508,0.00992006715387,0.474433589224,0.64707837696,0.47916418314,0.47916418314
239,239,239,careful,cautious,0.623279213905,0.522489190102,0.548100411892,0.537764132023,0.632036666278,0.650484463867,0.571362555027,0.571362555027
240,240,240,caring,loving,0.535090863705,0.563273668289,0.636181771755,0.590938925743,0.733150532675,0.731918609219,0.700353205204,0.700353205204
241,241,241,carpet,rug,0.669637858868,0.729313850403,0.85708630085,0.730884790421,0.620289305283,0.440181431251,0.720924675465,0.720924675465
242,242,242,carrot,celery,0.588518857956,0.904365003109,0.89450854063,0.903998732567,0.724864196079,0.605963524614,0.916745603085,0.916745603085
243,243,243,carry,haul,0.105919167399,0.346411019564,0.354020923376,0.319639235735,0.544426967719,0.250377159168,0.319122433662,0.319122433662
244,244,244,cars,parkway,0.24311003089,0.26333925128,0.424607515335,0.269309580326,0.164775363656,0.35264612626,0.290447384119,0.290447384119
245,245,245,cash,money,0.573616981506,0.772509753704,0.765923023224,0.783031225204,0.848483627881,0.841279093562,0.536568403244,0.536568403244
246,246,246,castle,moat,0.326138317585,0.687700033188,0.779672622681,0.749138653278,0.517701757672,0.363833640573,0.682234168053,0.682234168053
247,247,247,cat,claw,0.374108791351,0.291441917419,0.368190556765,0.454187184572,0.453512153052,0.357695760423,0.516964375973,0.516964375973
248,248,248,catholic,protestant,0.669440209866,0.781621456146,0.86865234375,0.82143342495,0.76515219811,0.616008339709,0.846805930138,0.846805930138
249,249,249,cats,litter,0.517383217812,0.444799274206,0.466527730227,0.461955726147,0.397237322552,0.521867485021,0.334397226572,0.334397226572
250,250,250,cause,effect,0.141937956214,0.437731951475,0.485361367464,0.378090053797,0.634709583538,0.456167102358,0.50858771801,0.50858771801
251,251,251,cautious,careful,0.623279213905,0.522489190102,0.548100411892,0.537764132023,0.632036666278,0.650484463867,0.571362555027,0.571362555027
252,252,252,cave,cavern,0.610484957695,0.688046455383,0.842813611031,0.696145176888,0.580616806563,0.376458602878,0.714997291565,0.714997291565
253,253,253,cell,sickle,0.512591779232,0.655337572098,0.640081882477,0.621890127659,0.340084424909,0.368789919856,0.602401018143,0.602401018143
254,254,254,center,middle,0.0526746548712,0.11830163002,0.391776502132,0.150755792856,0.501913897693,0.552059909424,0.321933865547,0.321933865547
255,255,255,cereal,fiber,0.302021980286,0.324624747038,0.437808275223,0.419168710709,0.365972635203,0.314433424354,0.490017652512,0.490017652512
256,256,256,ceremony,ritual,0.409295976162,0.357351183891,0.377930045128,0.351733654737,0.553209631331,0.26559015234,0.545867979527,0.545867979527
257,257,257,chain,link,0.254556596279,0.0903332680464,0.118211336434,0.0352504104376,0.454664471398,0.294959325323,0.363844245672,0.363844245672
258,258,258,chair,recliner,0.0759887173772,0.347676515579,0.516744315624,0.337698817253,0.44269592289,0.671406862072,0.649855911732,0.649855911732
259,259,259,chalk,blackboard,0.544907033443,0.176505580544,0.395429164171,0.190124586225,0.514771947499,0.523600880977,0.535540103912,0.535540103912
260,260,260,chance,opportunity,0.577000498772,0.596704900265,0.641888678074,0.629604637623,0.818923863147,0.556483173335,0.429026603699,0.429026603699
261,261,261,change,alter,0.49700024724,0.489708513021,0.578608214855,0.514843642712,0.618424021539,0.52344694411,0.644452929497,0.644452929497
262,262,262,chaos,havoc,0.555790305138,0.451303601265,0.446590125561,0.411276906729,0.56787392917,0.431632172016,0.645128250122,0.645128250122
263,263,263,characteristic,trait,0.466143548489,0.653316676617,0.640607178211,0.621228158474,0.613645455431,0.676024910736,0.780195295811,0.780195295811
264,264,264,cheap,expensive,0.671090364456,0.464959442616,0.455768346786,0.469710201025,0.774930150929,0.796015972735,0.806059837341,0.806059837341
265,265,265,cheat,affair,0.187051907182,-0.0117133213207,0.038008864969,0.0390641205013,0.0936060585482,0.318430965986,0.349922209978,0.349922209978
266,266,266,check,mark,0.0912504717708,0.140546217561,0.333753883839,0.0562860220671,0.352109195101,0.544121889003,0.201950833201,0.201950833201
267,267,267,cheese,swiss,-0.0082178208977,0.232397451997,0.557077825069,0.252254933119,0.286404310392,0.52473470107,0.163564279675,0.163564279675
268,268,268,chemistry,elements,0.0633494108915,0.193446144462,0.351764976978,0.276084035635,0.349003482482,0.350374940854,0.395982354879,0.395982354879
269,269,269,chest,treasure,0.283007770777,0.211071044207,0.259599238634,0.159039184451,0.160156919975,0.300919189311,0.137547507882,0.137547507882
270,270,270,chew,gum,0.469693779945,0.48405367136,0.60971313715,0.508301615715,0.563213731331,0.750375400009,0.423551499844,0.423551499844
271,271,271,chicken,roost,0.505161345005,0.145661011338,0.102174408734,0.124388098717,0.204438224748,0.14928018211,0.0669934079051,0.0669934079051
272,272,272,chief,commander,0.550363361835,0.579328715801,0.609151303768,0.559229850769,0.698316353416,0.55508407346,0.449530482292,0.449530482292
273,273,273,child,kid,0.347940683365,0.374318391085,0.438953429461,0.373838037252,0.550972417822,0.717878816252,0.582392156124,0.582392156124
274,274,274,children,toys,0.308735460043,0.332009166479,0.437205702066,0.367296099663,0.481323695883,0.61357375412,0.44868132472,0.44868132472
275,275,275,china,japan,0.690127193928,0.892077505589,0.385201096535,0.89263433218,0.740821228009,0.707717202954,0.541146218777,0.541146218777
276,276,276,chip,dip,0.304946154356,0.239200606942,0.208277389407,0.225683182478,0.357338901148,0.616698672719,0.332397460938,0.332397460938
277,277,277,chocolate,pudding,0.769396185875,0.851035773754,0.873117923737,0.859365046024,0.649716230667,0.659930247211,0.942184627056,0.942184627056
278,278,278,choice,selection,0.190864801407,0.628182530403,0.61454898119,0.624238014221,0.699097994623,0.402824805772,0.604594111443,0.604594111443
279,279,279,choose,pick,0.435736268759,0.447062283754,0.464825302362,0.438538938761,0.61847840525,0.755039054555,0.601368248463,0.601368248463
280,280,280,christ,jesus,0.589015185833,0.892246961594,0.73243945837,0.868057131767,0.866566230291,0.830870821866,0.862996459007,0.862996459007
281,281,281,christmas,reindeer,0.156955614686,0.312437951565,0.341924935579,0.359120637178,0.294283284376,0.43261617835,0.548159003258,0.548159003258
282,282,282,church,temple,0.577363729477,0.638717651367,0.733607888222,0.647664368153,0.573718755567,0.562695513764,0.641936123371,0.641936123371
283,283,283,cigarette,nicotine,0.483332663774,0.523579180241,0.494399785995,0.501873195171,0.613622017871,0.465130054892,0.707173228264,0.707173228264
284,284,284,circle,diameter,0.362005352974,0.520668447018,0.465672820807,0.425527751446,0.481779201767,0.244754233777,0.27664911747,0.27664911747
285,285,285,circus,juggler,,0.488763988018,0.628330826759,0.463214755058,0.3796999969,0.178426251768,0.612435042858,0.612435042858
286,286,286,city,county,0.616511762142,0.632618784904,0.62649255991,0.600919306278,0.600260988999,0.582126991131,0.370670765638,0.370670765638
287,287,287,clam,oyster,0.710741460323,0.515142977238,0.690518498421,0.574053347111,0.643020887333,0.419120803327,0.599424779415,0.599424779415
288,288,288,class,subject,0.0535762608051,0.150728657842,0.140437439084,0.116366624832,0.466183725017,0.694550975509,0.193560272455,0.193560272455
289,289,289,clay,pottery,0.804749131203,0.480959773064,0.547641396523,0.584427237511,0.396985653527,0.528944765673,0.257640331984,0.257640331984
290,290,290,clean,shower,0.206432208419,0.425160109997,0.431546956301,0.381108999252,0.393867291472,0.734579460432,0.533129394054,0.533129394054
291,291,291,cleaner,vacuum,0.251357644796,0.673819839954,0.734300494194,0.715494096279,0.52462031015,0.795687415151,0.68351817131,0.68351817131
292,292,292,clear,vivid,0.381148070097,0.304286390543,0.337813466787,0.2640234828,0.371431959176,0.382271595794,0.145749136806,0.145749136806
293,293,293,cliff,ledge,0.652351915836,0.605627417564,0.80948227644,0.691658616066,0.622434837025,0.483588424685,0.512554645538,0.512554645538
294,294,294,climate,weather,0.29563832283,0.497299402952,0.512752771378,0.42742472887,0.631598151143,0.492556160011,0.433467894793,0.433467894793
295,295,295,climb,stairs,0.627376675606,0.661123692989,0.59210306406,0.627231001854,0.584515741515,0.614148110762,0.47169187665,0.47169187665
296,296,296,clipper,toenail,0.14450570941,-0.019860168919,0.242780923843,0.0486661791801,0.093697590706,0.538638655326,0.368977993727,0.368977993727
297,297,297,clock,time,0.263960123062,0.250136435032,0.304217100143,0.226075157523,0.52665312103,0.552294210703,0.419336110353,0.419336110353
298,298,298,close,open,0.293927818537,0.382325083017,0.451020866632,0.417521089315,0.600295870924,0.726918863558,0.442014664412,0.442014664412
299,299,299,closed,caption,-0.0156120359898,-0.0206439699978,0.0639093592763,0.0110362246633,0.0725503730075,0.172878129209,-0.0191599279642,-0.0191599279642
300,300,300,closing,opening,0.642785668373,0.50567561388,0.738622546196,0.516113996506,0.777358734329,0.844218064126,0.498080909252,0.498080909252
301,301,301,cloth,rag,0.625168859959,0.62577277422,0.690789580345,0.638499438763,0.478984335183,0.497605586131,0.771614551544,0.771614551544
302,302,302,clothes,attire,0.68706458807,0.663693964481,0.720208704472,0.689130306244,0.611137443881,0.495396873114,0.764038801193,0.764038801193
303,303,303,cloudy,sunny,0.75561696291,0.809791266918,0.840450823307,0.834306120872,0.670325055155,0.708326057467,0.570667743683,0.570667743683
304,304,304,clown,circus,0.703508913517,0.601245880127,0.634374260902,0.584504961967,0.69239459854,0.612602713391,0.682182371616,0.682182371616
305,305,305,club,member,-0.0224662218243,0.307311683893,0.317288309336,0.288132965565,0.509718824664,0.452282451962,0.29374474287,0.29374474287
306,306,306,clue,hint,0.592552661896,0.455180346966,0.489588677883,0.464902043343,0.613312803838,0.600582167036,0.669905900955,0.669905900955
307,307,307,coat,trench,0.252345710993,0.336786776781,0.35312178731,0.29636412859,0.472338998095,0.660806916232,0.7177323699,0.7177323699
308,308,308,cocaine,crack,0.265821427107,0.480865478516,0.458466261625,0.520688712597,0.578300360462,0.467180625275,0.468526512384,0.468526512384
309,309,309,code,morse,-0.0279678143561,0.25410887599,0.501142919064,0.275954842567,0.311382057071,0.351836496754,0.0224980916828,0.0224980916828
310,310,310,coffee,caffeine,0.600737690926,0.492727130651,0.532700061798,0.44945320487,0.49461673362,0.630194443185,0.513729214668,0.513729214668
311,311,311,coke,rum,0.315530180931,0.606930017471,0.701073944569,0.598157525063,0.46251670097,0.495607808406,0.633235692978,0.633235692978
312,312,312,cold,cough,0.208470389247,0.457493752241,0.467490196228,0.431238293648,0.425734070464,0.581976825995,0.438533514738,0.438533514738
313,313,313,collar,lapel,0.624279499054,0.660552620888,0.739464819431,0.609445691109,0.469304832315,0.391547069761,0.77023100853,0.77023100853
314,314,314,college,degree,0.393899470568,0.388163208961,0.430692046881,0.412492334843,0.611114045558,0.616867942941,0.719626963139,0.719626963139
315,315,315,cologne,musk,0.0217250715941,0.155105024576,0.464656054974,0.0237778183073,0.0492832348071,0.357324401903,0.125688925385,0.125688925385
316,316,316,color,hue,0.397597759962,0.429534286261,0.540500044823,0.440095543861,0.432468691641,0.210915837317,0.348733365536,0.348733365536
317,317,317,come,leave,0.447121590376,0.451978862286,0.509133458138,0.486438721418,0.776955707728,0.708357275033,0.673601567745,0.673601567745
318,318,318,comfortable,cozy,0.566921293736,0.657375514507,0.747982025146,0.765201866627,0.56369940663,0.63739389108,0.570654034615,0.570654034615
319,319,319,comment,remark,0.45367115736,0.535793185234,0.468638747931,0.436574608088,0.609452591361,0.330894126415,0.48217639327,0.48217639327
320,320,320,communism,fascism,0.623306334019,0.843767046928,0.878252983093,0.890441536903,0.757599905579,0.803391451062,0.707503199577,0.707503199577
321,321,321,communist,russia,0.135970965028,0.575199604034,0.291782110929,0.55652564764,0.504336265612,0.461121801078,0.463240563869,0.463240563869
322,322,322,compact,disc,0.63119405508,0.638549864292,0.605036735535,0.645407855511,0.582185736437,0.503511323657,0.805412054062,0.805412054062
323,323,323,company,agency,0.239645317197,0.370521336794,0.685117304325,0.391902625561,0.554496985084,0.552645076523,0.280979216099,0.280979216099
324,324,324,computer,system,0.333891451359,0.540761232376,0.567133963108,0.508338570595,0.63494398891,0.647858891525,0.577842533588,0.577842533588
325,325,325,con,pro,0.499399662018,0.337673544884,0.392840862274,0.338757634163,0.182285359084,0.358842635944,0.125397071242,0.125397071242
326,326,326,conceited,vain,0.371895998716,0.50093960762,0.448878735304,0.490548998117,0.318084469413,0.440152837719,0.337637156248,0.337637156248
327,327,327,concert,ticket,0.251866281033,0.235926747322,0.280655622482,0.317933261395,0.328320950127,0.699578750021,0.449507564306,0.449507564306
328,328,328,concrete,slab,0.125074997544,0.732879340649,0.727018713951,0.728353857994,0.64295770727,0.542650194947,0.691350102425,0.691350102425
329,329,329,condom,protection,0.132098332047,0.153399378061,0.154543086886,0.0398250184953,0.233194406139,0.326622873008,0.254109889269,0.254109889269
330,330,330,conference,meeting,0.554747223854,0.736830294132,0.728512525558,0.735925078392,0.864815517003,0.743943542891,0.688481509686,0.688481509686
331,331,331,confess,admit,0.68386900425,0.775644719601,0.791842222214,0.783458769321,0.70333716412,0.583194257544,0.69286608696,0.69286608696
332,332,332,confusion,chaos,0.662519693375,0.528950095177,0.617874324322,0.479168862104,0.67900178975,0.676790063075,0.741456210613,0.741456210613
333,333,333,congress,senate,0.411793977022,0.6403657794,0.651395320892,0.696959853172,0.789780726588,0.782921873142,0.775246977806,0.775246977806
334,334,334,conservative,liberal,0.607407987118,0.809954941273,0.835284650326,0.811037898064,0.934922270194,0.819256855293,0.917522549629,0.917522549629
335,335,335,construction,builder,0.20447525382,0.387536436319,0.388759076595,0.439479798079,0.4781652564,0.490745373747,0.59402602911,0.59402602911
336,336,336,continent,africa,0.542561709881,0.525137484074,0.264945745468,0.52923822403,0.783862634153,0.590422331281,0.603281617165,0.603281617165
337,337,337,control,dominate,0.0699656233191,0.173933982849,0.163971692324,0.116694390774,0.438111069134,0.309279727514,0.423197448254,0.423197448254
338,338,338,cook,kitchen,0.33088862896,0.225653499365,0.356125712395,0.182618528605,0.518845893135,0.606906308076,0.443827182055,0.443827182055
339,339,339,cool,refreshing,0.664551734924,0.661948919296,0.692285299301,0.632850170135,0.573665498642,0.398039478384,0.680018663406,0.680018663406
340,340,340,cop,policeman,-0.166393086314,0.611220479012,0.742478787899,0.645317614079,0.525529271298,0.519244776625,0.463420599699,0.463420599699
341,341,341,copy,imitate,0.101510077715,0.119363449514,0.0173433981836,0.0531375035644,0.196577450459,0.263532358751,0.311580598354,0.311580598354
342,342,342,coral,reef,0.712816953659,0.810450017452,0.847698330879,0.829720318317,0.748679225705,0.706280495418,0.79000967741,0.79000967741
343,343,343,corn,flake,0.511052727699,0.438389927149,0.558038830757,0.52346432209,0.325658927174,0.516158442219,0.353670805693,0.353670805693
344,344,344,cotton,polyester,0.643919229507,0.719663262367,0.693717718124,0.715829074383,0.54555856379,0.681290542663,0.606829285622,0.606829285622
345,345,345,couch,cushion,0.365985691547,0.430384963751,0.479009628296,0.405710190535,0.262769935294,0.414920594395,0.269170343876,0.269170343876
346,346,346,cough,sneeze,0.457986563444,0.592534124851,0.662051558495,0.706026494503,0.665510670046,0.627383176275,0.685025632381,0.685025632381
347,347,347,country,republic,0.167075097561,0.347359031439,0.473456978798,0.347695857286,0.657315176394,0.521395448512,0.313224375248,0.313224375248
348,348,348,course,obstacle,-0.0514666140079,0.148075699806,0.202256500721,0.132019117475,0.426824978512,0.288714888255,0.335985153913,0.335985153913
349,349,349,court,case,0.383503854275,0.340631008148,0.442970484495,0.344471246004,0.783120122519,0.642382240374,0.840279757977,0.840279757977
350,350,350,cover,lid,0.104871399701,0.329270333052,0.342646986246,0.306470006704,0.364471991306,0.300960551325,0.477093249559,0.477093249559
351,351,351,cow,beef,0.413679778576,0.584083974361,0.631153404713,0.601415932178,0.667960708825,0.426159858767,0.508021533489,0.508021533489
352,352,352,cowboy,cowgirl,,0.706478118896,0.647854447365,0.753612160683,0.494866404845,0.684944649198,0.781250119209,0.781250119209
353,353,353,crab,lobster,0.756550252438,0.881357908249,0.915832519531,0.89848959446,0.86403711684,0.82526103686,0.931760489941,0.931760489941
354,354,354,crack,crevice,0.212096720934,0.451431900263,0.571041584015,0.493497908115,0.241228966612,-0.0349740893956,0.285765171051,0.285765171051
355,355,355,cracker,saltine,,,,,0.429727895882,0.587923342681,0.722012102604,0.722012102604
356,356,356,crackle,snap,0.449199080467,0.344943940639,0.482893794775,0.338364362717,0.364575343878,0.324094310042,0.344759881496,0.344759881496
357,357,357,crafts,arts,0.647686779499,0.711678504944,0.696261167526,0.739128768444,0.633390137672,0.556880304153,0.655093848705,0.655093848705
358,358,358,crash,impact,0.196610629559,0.0942727699876,0.177632793784,0.108746282756,0.486554807276,0.363511374713,0.271554142237,0.271554142237
359,359,359,crayon,crayola,,0.471517026424,0.431869775057,0.583237230778,0.635537329934,0.484066627009,0.783374071121,0.783374071121
360,360,360,crazy,nuts,0.481886476278,0.255752235651,0.257037252188,0.302395194769,0.436531024959,0.600073592462,0.43792450428,0.43792450428
361,361,361,create,invent,0.50432819128,0.610590219498,0.672672390938,0.591454982758,0.479296048378,0.574321346412,0.656096100807,0.656096100807
362,362,362,creator,inventor,0.691803216934,0.558012902737,0.660876274109,0.518013477325,0.512681059452,0.517777026334,0.674767076969,0.674767076969
363,363,363,crime,rape,0.470786958933,0.49914637208,0.575791418552,0.523197352886,0.567731104077,0.625788724257,0.729390799999,0.729390799999
364,364,364,criminal,fugitive,0.437428057194,0.336159646511,0.376106470823,0.349993079901,0.521851995991,0.426757955168,0.578707993031,0.578707993031
365,365,365,crooked,uneven,0.159346103668,0.36265078187,0.441567569971,0.403539329767,0.179266029137,0.298282850771,0.36000135541,0.36000135541
366,366,366,crops,harvest,0.478082478046,0.540624260902,0.650754034519,0.56926637888,0.712018443157,0.485997391752,0.807462632656,0.807462632656
367,367,367,crowd,mob,0.378339469433,0.503390967846,0.634948611259,0.517353832722,0.489230709649,0.417961153477,0.429397433996,0.429397433996
368,368,368,crunchy,crisp,0.783246219158,0.754212796688,0.79167509079,0.759925544262,0.612085405081,0.620013378154,0.835599303246,0.835599303246
369,369,369,cry,laugh,0.625318706036,0.565230667591,0.655037999153,0.668534457684,0.750495911675,0.800781248324,0.701252818108,0.701252818108
370,370,370,cuddle,snuggle,0.543976426125,0.631461679935,0.628834247589,0.719511389732,0.617904770125,0.860714533767,0.8193166852,0.8193166852
371,371,371,cup,saucer,0.231990903616,0.206884101033,0.505745649338,0.266440689564,0.179457421214,0.261217077107,0.274820923805,0.274820923805
372,372,372,cure,antidote,0.343223243952,0.395570755005,0.494004458189,0.390146046877,0.525561912415,0.44462923757,0.539289355278,0.539289355278
373,373,373,curtains,drapes,0.745675086975,0.856677055359,0.859315991402,0.851231276989,0.801748851746,0.615315406775,0.867642581463,0.867642581463
374,374,374,cut,bandaid,,0.0924886763096,0.312078654766,0.281742572784,,0.354478943974,0.151052176952,0.151052176952
375,375,375,cute,adorable,0.848348736763,0.713321983814,0.811027884483,0.803394734859,0.81883155485,0.819467947627,0.882338762283,0.882338762283
376,376,376,dad,mummy,0.696366548538,0.642536580563,0.680355012417,0.636373639107,0.235689131994,0.685334512174,0.254901826382,0.254901826382
377,377,377,dagger,cloak,0.507156074047,0.573115825653,0.736602365971,0.634330093861,0.559622318574,0.531242100174,0.681089401245,0.681089401245
378,378,378,daily,everyday,0.473708063364,0.394391298294,0.431520909071,0.399925142527,0.398925022075,0.606801816601,0.142292186618,0.142292186618
379,379,379,dam,beaver,0.558928668499,0.248407393694,0.366904497147,0.357605665922,0.3672815105,0.309059447375,0.305184721947,0.305184721947
380,380,380,dance,ballet,0.767732322216,0.735314011574,0.789698541164,0.715080976486,0.710692894372,0.621697308541,0.835309445858,0.835309445858
381,381,381,dancer,singer,0.713672220707,0.766847491264,0.809366285801,0.75816899538,0.670738642907,0.729437748124,0.762001514435,0.762001514435
382,382,382,danger,caution,0.263876646757,0.334309667349,0.290533453226,0.28136536479,0.394785188476,0.470802357783,0.480107098818,0.480107098818
383,383,383,dangerous,harmful,0.548205494881,0.630806684494,0.678759753704,0.645115435123,0.635262889189,0.584331538966,0.717242956161,0.717242956161
384,384,384,daring,adventurous,0.560928046703,0.525496959686,0.61947542429,0.599304735661,0.605588846998,0.617872849161,0.585332930088,0.585332930088
385,385,385,dark,tan,0.201997846365,0.4797103405,0.593991696835,0.478446245193,0.377901499628,0.268514597591,0.156199485064,0.156199485064
386,386,386,data,information,0.761785209179,0.541079699993,0.540800333023,0.53212594986,0.792040216323,0.685376499022,0.570880830288,0.570880830288
387,387,387,date,calendar,0.264402806759,0.245357468724,0.43276014924,0.226093217731,0.59905221896,0.524504380674,0.447422742844,0.447422742844
388,388,388,day,night,0.560871899128,0.78417468071,0.809011399746,0.77930867672,0.826170976078,0.850806626651,0.636573255062,0.636573255062
389,389,389,days,glory,0.144308149815,0.153000131249,0.0674324482679,0.102015636861,0.38475222242,0.440318260751,0.401723831892,0.401723831892
390,390,390,dead,corpse,0.590619027615,0.704607009888,0.712715983391,0.675595581532,0.57763876464,0.406418149681,0.634292185307,0.634292185307
391,391,391,deaf,mute,0.519412696362,0.217597126961,0.285167872906,0.115381218493,0.566468732026,0.481140372594,0.612845599651,0.612845599651
392,392,392,death,burial,0.248444393277,0.259701192379,0.358636766672,0.306922733784,0.406735985187,0.458746088619,0.425813406706,0.425813406706
393,393,393,decay,deteriorate,0.346321165562,0.506379306316,0.440327942371,0.483792513609,0.344713127196,0.215506626775,0.386617958546,0.386617958546
394,394,394,decide,determine,0.703682780266,0.66568005085,0.674387454987,0.664952516556,0.755723703232,0.57846646784,0.679670989513,0.679670989513
395,395,395,decision,choice,0.0985840186477,0.203367471695,0.236897498369,0.257969796658,0.682000299513,0.547185084863,0.479800999165,0.479800999165
396,396,396,deep,shallow,0.432472020388,0.7905356884,0.784324526787,0.811811745167,0.694257650634,0.571258183403,0.729726552963,0.729726552963
397,397,397,deer,antlers,0.727526664734,0.590733706951,0.695526540279,0.651345312595,0.453675906593,0.49194341421,0.265029758215,0.265029758215
398,398,398,defeat,conquer,0.525655448437,0.421794325113,0.476305782795,0.458762466908,0.417291276243,0.523467819684,0.385477244854,0.385477244854
399,399,399,defense,offense,0.255002230406,0.197365090251,0.330295920372,0.276513695717,0.503101129217,0.831591323998,0.420138180256,0.420138180256
400,400,400,definition,meaning,0.67730730772,0.57376152277,0.657072722912,0.611290693283,0.600394025802,0.618988389402,0.742933392525,0.742933392525
401,401,401,deodorant,ban,0.134915143251,-0.00646361662075,0.20392921567,0.0805530622602,0.0916679891404,0.212925547144,0.268356531858,0.268356531858
402,402,402,dependable,reliable,0.672575652599,0.796867907047,0.85753595829,0.806281089783,0.769614377859,0.733208287024,0.714611053467,0.714611053467
403,403,403,dependent,independent,0.134178206325,0.166346698999,0.190078556538,0.0818513035774,0.38274489461,0.481488376743,0.172844216228,0.172844216228
404,404,404,descend,ascend,0.758694171906,0.842665612698,0.858672201633,0.89057469368,0.622942377049,0.267118530728,0.469633668661,0.469633668661
405,405,405,desert,mirage,0.304787993431,0.379893213511,0.40365678072,0.386412411928,0.381116413488,0.466712356778,0.305529356003,0.305529356003
406,406,406,desk,office,0.375740587711,0.571892023087,0.584865808487,0.540783047676,0.542284901173,0.737435158543,0.249659448862,0.249659448862
407,407,407,destroy,annihilate,0.721153795719,0.645993232727,0.758099377155,0.766591131687,0.5059808771,0.537325513823,0.718953192234,0.718953192234
408,408,408,destruction,elimination,0.403934150934,0.595325767994,0.610668182373,0.621814787388,0.450866139142,0.432843710219,0.608617126942,0.608617126942
409,409,409,devil,demon,0.690242528915,0.619357585907,0.786666691303,0.661238014698,0.606455448732,0.742325726738,0.379949271679,0.379949271679
410,410,410,diamond,jewel,0.3666254282,0.545027196407,0.579287111759,0.556098401546,0.547957432755,0.590455449375,0.578597843647,0.578597843647
411,411,411,diary,journal,0.344357997179,0.225692525506,0.437657862902,0.223203539848,0.497647114644,0.534543995135,0.347695231438,0.347695231438
412,412,412,dictionary,define,0.0468632429838,0.0772703811526,0.238118693233,0.106452420354,0.380060650877,0.366862522656,0.38402685523,0.38402685523
413,413,413,die,suffocate,0.477090358734,0.384852021933,0.53155374527,0.517331659794,0.306407250638,0.232033581397,0.55334174633,0.55334174633
414,414,414,different,change,0.238813817501,0.20284871757,0.258735865355,0.198896482587,0.688027783664,0.750632250145,0.546900808811,0.546900808811
415,415,415,dill,pickles,0.43266043067,0.744917809963,0.860873818398,0.690149307251,0.712999062906,0.63702449232,0.647546231747,0.647546231747
416,416,416,dime,quarter,0.033834528178,0.192784741521,0.317771106958,0.257681787014,0.195806488597,0.251484304948,0.331775814295,0.331775814295
417,417,417,dinner,lunch,0.709486961365,0.860299229622,0.888906061649,0.877310872078,0.803325925806,0.947163807675,0.859481275082,0.859481275082
418,418,418,dinosaur,fossil,0.275269776583,0.354408890009,0.330981522799,0.30131649971,0.666165206096,0.443589515453,0.815708100796,0.815708100796
419,419,419,direct,indirect,0.635727226734,0.654808461666,0.573164761066,0.637222409248,0.705510848158,0.443883404122,0.76264321804,0.76264321804
420,420,420,direction,compass,0.123382985592,0.449833750725,0.421894967556,0.403913855553,0.355103554745,0.198636742652,0.358918398619,0.358918398619
421,421,421,directions,instructions,0.330388218164,0.476677387953,0.52786386013,0.496213763952,0.610376456519,0.616670061535,0.678318500519,0.678318500519
422,422,422,dirt,soil,0.529830217361,0.441294580698,0.538486480713,0.471555769444,0.474377532483,0.446951706944,0.53779655695,0.53779655695
423,423,423,dirty,clean,0.482269763947,0.571008503437,0.669872999191,0.623156368732,0.57855910148,0.716288829456,0.670769035816,0.670769035816
424,424,424,disagree,agree,0.819484055042,0.799890220165,0.784632086754,0.812509417534,0.704758136245,0.821864796782,0.790451467037,0.790451467037
425,425,425,disagreement,agreement,0.260661780834,0.459467738867,0.474500209093,0.441051185131,0.538327120625,0.442828415594,0.594599545002,0.594599545002
426,426,426,disappear,reappear,0.653895378113,0.746145129204,0.761963784695,0.76617115736,0.604075017352,0.647566623422,0.642300844193,0.642300844193
427,427,427,disc,compact,0.63119405508,0.638549864292,0.605036735535,0.645407855511,0.582185736437,0.503511323657,0.805412054062,0.805412054062
428,428,428,disease,infection,0.83181655407,0.885351121426,0.906176626682,0.869434833527,0.822370143744,0.720483926037,0.910304307938,0.910304307938
429,429,429,disgusting,gross,-0.000756174093112,0.0527746342123,0.168677195907,0.0793313458562,0.145733455224,0.833633878512,0.1438973248,0.1438973248
430,430,430,dish,china,-0.0561016388237,-0.0112098157406,0.418549716473,0.133632957935,0.200010500644,0.246483378989,0.128675729036,0.128675729036
431,431,431,dishes,plates,0.467229217291,0.446416199207,0.453171312809,0.456672877073,0.487844679173,0.650080473442,0.618428170681,0.618428170681
432,432,432,ditch,gully,0.633272469044,0.758737266064,0.803099513054,0.757926940918,0.403646125808,0.11266094883,0.462097853422,0.462097853422
433,433,433,dive,scuba,0.58321416378,0.706747889519,0.69298774004,0.70626938343,0.66229992068,0.653169645899,0.583599805832,0.583599805832
434,434,434,divide,separate,0.173444718122,0.117850676179,0.26527172327,0.174538269639,0.431722418324,0.499536812238,0.468289375305,0.468289375305
435,435,435,do,make,0.379475980997,0.287247151136,0.346261650324,0.30696824193,0.86379799606,0.681785906655,0.630785703659,0.630785703659
436,436,436,doctor,medical,0.448902010918,0.451992869377,0.520239710808,0.46271187067,0.699599284408,0.473795929943,0.678429543972,0.678429543972
437,437,437,doe,deer,0.282102704048,0.12973664701,0.25402238965,0.121664069593,0.17878310358,0.275691420358,0.222922176123,0.222922176123
438,438,438,dog,breed,0.447774022818,0.591081798077,0.507567346096,0.60654592514,0.608972708568,0.525929840601,0.559606790543,0.559606790543
439,439,439,doll,porcelain,0.656053125858,0.464994311333,0.486829042435,0.5197737813,0.52650276924,0.462524774333,0.620645940304,0.620645940304
440,440,440,dollar,buck,0.139878600836,0.259513795376,0.36063632369,0.303165286779,0.205636985463,0.494155086377,0.112193502486,0.112193502486
441,441,441,dollars,cents,0.573155283928,0.653997957706,0.702798485756,0.676057398319,0.669426526579,0.761929230713,0.375488042831,0.375488042831
442,442,442,dolphin,flipper,0.589329183102,0.388853281736,0.389805853367,0.377041310072,0.437859652089,0.255727674966,0.538351416588,0.538351416588
443,443,443,done,finished,0.271177738905,0.382454872131,0.468691915274,0.447197377682,0.466436185615,0.800081968815,0.205340400338,0.205340400338
444,444,444,donkey,ass,0.730194568634,0.303409725428,0.573234677315,0.338565975428,0.32006506788,0.525836278598,0.330415576696,0.330415576696
445,445,445,don't,do,,0.531172335148,0.196908533573,0.637319028378,,,0.888280034065,0.888280034065
446,446,446,door,knock,0.666113197803,0.440013080835,0.440348178148,0.437498182058,0.422760914862,0.598584403834,0.591687858105,0.591687858105
447,447,447,dots,connect,0.106985360384,0.143151134253,0.209476009011,0.145195424557,0.389665347048,0.456692734329,0.477471798658,0.477471798658
448,448,448,doughnut,pastry,0.637645244598,0.400229126215,0.659315705299,0.399402052164,0.5086751762,0.550711360345,0.678275823593,0.678275823593
449,449,449,down,lay,0.350590199232,0.428826808929,0.416524231434,0.390948265791,0.463625195843,0.629702390427,0.357834786177,0.357834786177
450,450,450,drain,clog,0.427620172501,0.538838803768,0.47007215023,0.441732257605,0.396372132053,0.322649310798,0.492514640093,0.492514640093
451,451,451,draw,sketch,0.342964619398,0.293806642294,0.265563547611,0.313508301973,0.254513661909,0.584136251188,0.238033935428,0.238033935428
452,452,452,dream,sleep,0.309644579887,0.300255954266,0.302498817444,0.368425160646,0.404277204925,0.650809269109,0.451315253973,0.451315253973
453,453,453,dress,formal,0.058959338814,0.202064678073,0.209460034966,0.151605129242,0.450062710939,0.625384992659,0.322031319141,0.322031319141
454,454,454,drink,slurp,,0.40565007925,0.504553079605,0.366483896971,0.244692972212,0.395628126455,0.747602641582,0.747602641582
455,455,455,drip,leak,0.478415071964,0.566977918148,0.609154999256,0.620250821114,0.199261981482,0.440752183622,0.455504238605,0.455504238605
456,456,456,drive,steer,0.267196029425,0.465835779905,0.541904985905,0.493365943432,0.536313215077,0.408860629517,0.670036554337,0.670036554337
457,457,457,driver,screw,0.358641952276,0.257960647345,0.378464192152,0.287438809872,0.246134819706,0.366074901477,0.272295117378,0.272295117378
458,458,458,driving,reckless,0.537916839123,0.396258562803,0.460563361645,0.350730806589,0.536993052771,0.590096349867,0.55604827404,0.55604827404
459,459,459,drop,drip,0.156822219491,0.447972089052,0.410231947899,0.392464637756,0.165994061038,0.4334068773,0.276770502329,0.276770502329
460,460,460,drug,heroine,0.34039363265,0.0772439911962,0.13805116713,0.116840600967,0.268923057482,0.547410129465,0.214233830571,0.214233830571
461,461,461,drugs,illegal,0.52085018158,0.435665756464,0.42223623395,0.422760128975,0.586705519113,0.673795880592,0.581757545471,0.581757545471
462,462,462,drunk,intoxicated,0.584702968597,0.617985129356,0.715959429741,0.659275949001,0.779640781526,0.604504558445,0.858866631985,0.858866631985
463,463,463,dry,wet,0.714171588421,0.853527784348,0.893110752106,0.87432795763,0.821540190316,0.750356760594,0.726996302605,0.726996302605
464,464,464,duck,quack,0.57863843441,0.485181450844,0.533983111382,0.44662463665,0.334281574149,0.576481806216,0.466525256634,0.466525256634
465,465,465,dull,boring,0.70845669508,0.791029751301,0.755124390125,0.775562882423,0.69878808931,0.628929047096,0.755169808865,0.755169808865
466,466,466,dumb,smart,0.336942076683,0.408152848482,0.509897351265,0.323624521494,0.61205398852,0.682722225075,0.671645283699,0.671645283699
467,467,467,dusk,dawn,0.613775968552,0.617157399654,0.768335461617,0.703029692173,0.756823948234,0.618523803433,0.719427525997,0.719427525997
468,468,468,dust,lint,0.147141963243,0.308552652597,0.606372833252,0.448336750269,0.30764543129,0.463123012283,0.738043487072,0.738043487072
469,469,469,duty,obligation,0.399133950472,0.605815291405,0.65257024765,0.632516026497,0.577529344088,0.364312883121,0.411502093077,0.411502093077
470,470,470,ear,lobe,0.287047028542,0.436238318682,0.499872326851,0.49271607399,0.430095237602,0.452367296188,0.690712928772,0.690712928772
471,471,471,early,late,0.615716695786,0.79225987196,0.831361472607,0.814363658428,0.908206202913,0.882754254185,0.791833758354,0.791833758354
472,472,472,earth,world,0.294181376696,0.356550633907,0.456012487411,0.371001183987,0.521347092491,0.80491122647,0.315686911345,0.315686911345
473,473,473,earthquake,disaster,0.515425384045,0.590922296047,0.638105511665,0.637410104275,0.722920973257,0.482114750206,0.67889291048,0.67889291048
474,474,474,east,west,0.652133047581,0.961583435535,0.979509234428,0.957892775536,0.907223241858,0.885837877797,0.643463373184,0.643463373184
475,475,475,easy,simple,0.53711014986,0.608332872391,0.574360847473,0.605584979057,0.764938585144,0.706899238542,0.736159324646,0.736159324646
476,476,476,eat,feed,0.755583643913,0.541778743267,0.551680505276,0.535157382488,0.679443199583,0.663794302303,0.714520871639,0.714520871639
477,477,477,egg,yolk,0.807277202606,0.78434997797,0.826816439629,0.829792678356,0.725443512132,0.653034357893,0.931305706501,0.931305706501
478,478,478,eggs,boiled,0.745274841785,0.76303756237,0.79932820797,0.736474275589,0.555187699926,0.69994829074,0.744692862034,0.744692862034
479,479,479,egypt,pyramid,-0.0797884985805,0.141554832458,0.174951508641,0.257592916489,0.248784273608,0.285738938898,0.162566542625,0.162566542625
480,480,480,eight,figure,0.0801376327872,0.0149771049619,0.0671888887882,0.00682974932715,0.445948116326,0.391062807265,0.243872195482,0.243872195482
481,481,481,elect,vote,0.341724425554,0.538115441799,0.575746059418,0.537050426006,0.664702981011,0.416271139714,0.690258264542,0.690258264542
482,482,482,electric,shock,0.306418061256,0.440584093332,0.348731249571,0.410564094782,0.380500460029,0.446621072706,0.314643710852,0.314643710852
483,483,483,electricity,energy,0.531687855721,0.762608349323,0.800420105457,0.741577982903,0.693256296845,0.681572500085,0.719749629498,0.719749629498
484,484,484,elephant,tusk,0.228633493185,0.49286839366,0.659925699234,0.571243524551,0.226409910169,0.390866689833,0.711656212807,0.711656212807
485,485,485,elevator,escalator,0.593183338642,0.489120602608,0.658320128918,0.603530824184,0.713335072111,0.701943510692,0.787984669209,0.787984669209
486,486,486,eleven,ten,0.775768399239,0.845178365707,0.871216595173,0.852013528347,0.891347284654,0.50240837284,0.682238638401,0.682238638401
487,487,487,embarrass,humiliate,0.662088155746,0.71862757206,0.77257078886,0.801098823547,0.841192790284,0.559331118888,0.781139492989,0.781139492989
488,488,488,emergency,ambulance,0.420966714621,0.689987182617,0.752707898617,0.702093482018,0.565559085647,0.627983411517,0.665818452835,0.665818452835
489,489,489,emotion,feeling,0.657245218754,0.538953483105,0.559577167034,0.526911973953,0.656626330467,0.535986131854,0.716573894024,0.716573894024
490,490,490,empire,roman,0.384339213371,0.688354671001,0.400204747915,0.678414821625,0.603548355502,0.304982168779,0.392173498869,0.392173498869
491,491,491,employer,employee,0.86220061779,0.864358305931,0.885441601276,0.87120115757,0.764385193714,0.725308402033,0.811709821224,0.811709821224
492,492,492,empty,vacancy,-0.0326001644135,0.046549346298,0.121030643582,0.0375018566847,0.268106859036,0.157675452878,0.329263150692,0.329263150692
493,493,493,encourage,discourage,0.69985461235,0.64335745573,0.661531984806,0.679206192493,0.802105217569,0.598308950052,0.80885463953,0.80885463953
494,494,494,end,outcome,0.256581604481,0.304295659065,0.357216864824,0.293822795153,0.450286533873,0.485779396371,0.33567610383,0.33567610383
495,495,495,ending,conclusion,0.111279048026,0.137477770448,0.140463709831,0.154984995723,0.521318419864,0.510551234168,0.31787571311,0.31787571311
496,496,496,enemy,adversary,0.558932006359,0.725178956985,0.774595022202,0.717583060265,0.585642173454,0.311890393613,0.669454097748,0.669454097748
497,497,497,energy,kinetic,0.48769724369,0.660928726196,0.715576887131,0.612403035164,0.474974392336,0.345674602705,0.499436378479,0.499436378479
498,498,498,england,london,0.54067337513,0.461458742619,0.795033097267,0.462550610304,0.617704883915,0.698224274715,0.455109924078,0.455109924078
499,499,499,english,language,0.803937077522,0.750100791454,0.581735610962,0.764967679977,0.721490384467,0.809404079281,0.567912697792,0.567912697792
500,500,500,enlarge,magnify,0.460535883904,0.269038110971,0.421062469482,0.374169796705,0.464411860784,0.430253250086,0.476828634739,0.476828634739
501,501,501,enough,plenty,0.384340524673,0.301203817129,0.331754863262,0.270414739847,0.735591544152,0.721645591689,0.614170670509,0.614170670509
502,502,502,enter,exit,0.386174649,0.493175923824,0.408266216516,0.407815307379,0.487918004469,0.307444552447,0.453141778708,0.453141778708
503,503,503,environment,surroundings,0.371671617031,0.462792605162,0.565066039562,0.44317471981,0.482899679101,0.437038781887,0.424729526043,0.424729526043
504,504,504,erupt,volcano,0.166111394763,0.497790753841,0.523758709431,0.519093155861,0.427258920953,0.620525881526,0.598934412003,0.598934412003
505,505,505,even,level,0.0672775879502,-0.0165350120515,0.022001940757,-0.0695553272963,0.60732816313,0.491889297279,0.431354433298,0.431354433298
506,506,506,evidence,proof,0.707139968872,0.552659034729,0.578259050846,0.570872724056,0.74420062916,0.722063258006,0.78472507,0.78472507
507,507,507,evil,devil,0.515003085136,0.58016204834,0.676636219025,0.643349587917,0.600840130041,0.7737874128,0.372523665428,0.372523665428
508,508,508,exact,precise,0.542336881161,0.668640553951,0.718099892139,0.695817410946,0.820959172382,0.370336390973,0.72190964222,0.72190964222
509,509,509,example,sample,0.0739811584353,0.200542762876,0.203562542796,0.221279621124,0.450770546798,0.421374952669,0.243669345975,0.243669345975
510,510,510,excited,overwhelm,0.124677360058,0.0410605631769,0.178364783525,0.0451658368111,0.145625161113,0.0515396087001,0.214549705386,0.214549705386
511,511,511,excuse,pardon,0.353702634573,0.405426651239,0.448116153479,0.450016260147,0.35191028609,0.52031382412,0.443616509438,0.443616509438
512,512,512,exercise,stretch,0.144356995821,0.250008374453,0.302212804556,0.194174721837,0.297448809854,0.541421054192,0.27329236269,0.27329236269
513,513,513,exhale,inhale,0.810896992683,0.664403319359,0.741744577885,0.734645426273,0.742051599375,0.824797611663,0.630384624004,0.630384624004
514,514,514,exit,entrance,0.400566756725,0.47035998106,0.506191551685,0.505776584148,0.542878764435,0.429123779317,0.388897031546,0.388897031546
515,515,515,expensive,valuable,0.281737625599,0.281553655863,0.347296267748,0.311958640814,0.495649086263,0.482986747673,0.524059772491,0.524059772491
516,516,516,experiment,lab,0.22772282362,0.288165718317,0.439149290323,0.334744364023,0.619146665551,0.56848206111,0.659482598305,0.659482598305
517,517,517,explain,elaborate,0.478628128767,0.236340746284,0.243775427341,0.254620909691,0.485277628153,0.541789139663,0.524148106575,0.524148106575
518,518,518,explode,implode,0.57415419817,0.538196742535,0.615746319294,0.47441264987,0.507636165939,0.509505925709,0.568534851074,0.568534851074
519,519,519,explosion,dynamite,0.50369143486,0.197206556797,0.441128879786,0.22521020472,0.399500421017,0.312100699093,0.6556609869,0.6556609869
520,520,520,extinct,dinosaur,0.678367972374,0.422176599503,0.491449981928,0.449462741613,0.546659748982,0.636923718515,0.779261887074,0.779261887074
521,521,521,extrovert,introvert,,0.780216097832,0.79915702343,0.82244849205,0.818845197109,0.829244902221,0.587460517883,0.587460517883
522,522,522,eye,squint,0.482358694077,0.419658988714,0.570417225361,0.480172753334,0.287986373094,0.47053283347,0.674941599369,0.674941599369
523,523,523,eyes,eyebrows,0.656467020512,0.705332458019,0.74693530798,0.731585323811,0.571114781869,0.581833719216,0.676823079586,0.676823079586
524,524,524,face,mask,0.3764975667,0.400238245726,0.521258592606,0.412071079016,0.478649835334,0.462652621365,0.551840782166,0.551840782166
525,525,525,fad,trend,0.210460647941,0.252363950014,0.362614691257,0.375798374414,0.412639390297,0.365919391869,0.684912025928,0.684912025928
526,526,526,fail,pass,0.523921847343,0.346351325512,0.444462060928,0.379583746195,0.463101320356,0.594938025901,0.445246070623,0.445246070623
527,527,527,failure,success,0.293906331062,0.302587211132,0.377757042646,0.310568869114,0.593481882565,0.785575882065,0.489200890064,0.489200890064
528,528,528,faint,swoon,0.345946460962,0.461397171021,0.492145121098,0.56059896946,0.236934912033,0.458943321742,0.434637844563,0.434637844563
529,529,529,fair,just,0.387394607067,0.0945893675089,0.258382678032,0.120287023485,0.502888896267,0.606650111039,0.467955976725,0.467955976725
530,530,530,faith,believe,0.149247124791,0.350875735283,0.337935388088,0.331291258335,0.626193171026,0.6358726048,0.572636902332,0.572636902332
531,531,531,fake,unnatural,0.207597881556,0.33446636796,0.427893161774,0.319993138313,0.105239172169,0.177585612897,0.236938491464,0.236938491464
532,532,532,fall,drop,0.578933238983,0.517022430897,0.575961947441,0.546855986118,0.79394867552,0.681036089903,0.717589735985,0.717589735985
533,533,533,false,untrue,0.585249781609,0.544895708561,0.605374753475,0.560144484043,0.650302051612,0.568150710209,0.724804759026,0.724804759026
534,534,534,family,friends,0.379091978073,0.646115124226,0.706945180893,0.669933736324,0.71973324655,0.839298964153,0.811162531376,0.811162531376
535,535,535,fantasy,reality,0.523170530796,0.437898665667,0.572991788387,0.457833230495,0.596068033656,0.5780504949,0.724968075752,0.724968075752
536,536,536,far,distance,0.201649993658,0.298706412315,0.268895804882,0.275213181973,0.571837291804,0.509741007661,0.469110995531,0.469110995531
537,537,537,farm,agriculture,0.60658377409,0.400932848454,0.579251170158,0.386049419641,0.64623613956,0.591204897205,0.57356607914,0.57356607914
538,538,538,fashion,fad,0.19802300632,0.242058649659,0.305449664593,0.285152822733,0.321916738786,0.283852070136,0.624441087246,0.624441087246
539,539,539,fast,speed,0.386811882257,0.400716692209,0.432566046715,0.432310312986,0.713339298238,0.592200287124,0.656146407127,0.656146407127
540,540,540,fat,skinny,0.343723356724,0.441562145948,0.392268449068,0.475796192884,0.449238474274,0.794827191333,0.403519362211,0.403519362211
541,541,541,father,mother,0.89741396904,0.895120859146,0.927759885788,0.900353968143,0.865666117432,0.862898570601,0.909424185753,0.909424185753
542,542,542,fear,terror,0.610587835312,0.54181098938,0.590694665909,0.553398132324,0.596520806603,0.43183126858,0.435347646475,0.435347646475
543,543,543,feel,touch,0.309288740158,0.30457007885,0.407255500555,0.270540237427,0.687313539726,0.615261617341,0.592977106571,0.592977106571
544,544,544,feeling,emotion,0.657245218754,0.538953483105,0.559577167034,0.526911973953,0.656626330467,0.535986131854,0.716573894024,0.716573894024
545,545,545,feet,hands,0.460140407085,0.573494553566,0.521154940128,0.556285738945,0.553872339594,0.765619752057,0.4160772264,0.4160772264
546,546,546,female,sex,0.548208594322,0.519954442978,0.479734867811,0.515837132931,0.613532876192,0.596780288044,0.676320910454,0.676320910454
547,547,547,fence,gate,0.605404794216,0.630882978439,0.800441741943,0.675698399544,0.591136630929,0.631027520128,0.740830659866,0.740830659866
548,548,548,few,many,0.484249383211,0.504545688629,0.523917019367,0.497155576944,0.903663118994,0.8859408019,0.58918684721,0.58918684721
549,549,549,fiction,facts,0.310171693563,0.36978250742,0.394692748785,0.394594848156,0.350243551657,0.441783673727,0.420596987009,0.420596987009
550,550,550,field,meadow,0.00538833392784,0.177663713694,0.265679121017,0.165556296706,0.189011808417,0.286867000419,0.335975140333,0.335975140333
551,551,551,fight,conflict,0.293236166239,0.355497419834,0.393840551376,0.360522806644,0.602109004421,0.464529029089,0.382218182087,0.382218182087
552,552,552,fighter,warrior,0.423625916243,0.668614506721,0.592680752277,0.696023404598,0.514604832733,0.72509640275,0.473303198814,0.473303198814
553,553,553,film,movie,0.78392124176,0.776391148567,0.892207384109,0.799846887589,0.905512148786,0.713457157647,0.943200588226,0.943200588226
554,554,554,find,discovery,-0.0462998747826,-0.0174554139376,0.0038162721321,0.00462830998003,0.493337544787,0.460950073909,0.256825864315,0.256825864315
555,555,555,finger,hand,0.347807079554,0.659430861473,0.69964069128,0.701512813568,0.68938340189,0.767981107325,0.735184729099,0.735184729099
556,556,556,finish,accomplish,0.442158907652,0.19453778863,0.198100864887,0.213906034827,0.39123993918,0.432877028388,0.381060004234,0.381060004234
557,557,557,finished,accomplished,0.418645948172,0.303615182638,0.376126974821,0.381352335215,0.4316901665,0.625610496809,0.483473926783,0.483473926783
558,558,558,fire,torch,0.18604850769,0.428361833096,0.55645108223,0.474197745323,0.330242051439,0.47516066619,0.377940833569,0.377940833569
559,559,559,first,original,0.218014627695,0.332253366709,0.387460052967,0.320427447557,0.641573874448,0.51661703116,0.420065224171,0.420065224171
560,560,560,fish,cod,0.655126690865,0.769097030163,0.818805932999,0.751695632935,0.563718617414,0.41175735752,0.767466783524,0.767466783524
561,561,561,fishing,sinker,,0.231451779604,0.325452685356,0.19377052784,0.134885032475,0.205766181155,0.230989336967,0.230989336967
562,562,562,fist,fight,0.195808291435,0.24973385036,0.338495850563,0.295763969421,0.395476267707,0.593394269571,0.378690212965,0.378690212965
563,563,563,five,four,0.910732865334,0.949140131474,0.957692861557,0.948251903057,0.982218409965,0.950229197754,0.96581196785,0.96581196785
564,564,564,fix,repair,0.220783472061,0.391489297152,0.519166231155,0.446684122086,0.620536334487,0.515626000945,0.504181027412,0.504181027412
565,565,565,flag,american,0.120341993868,0.20568087697,0.0517652370036,0.216246277094,0.430318805908,0.535601663725,0.285563677549,0.285563677549
566,566,566,flakes,frosted,0.518912136555,0.587987363338,0.58725130558,0.539812803268,0.625329625711,0.755913161146,0.810485541821,0.810485541821
567,567,567,flirt,tease,0.77538728714,0.453203052282,0.555039346218,0.57527422905,0.563960863799,0.622286905249,0.73149317503,0.73149317503
568,568,568,float,raft,0.422189056873,0.167285010219,0.210406720638,0.230763301253,0.424044041376,0.427781867309,0.485214024782,0.485214024782
569,569,569,floor,mop,0.239783734083,0.285163611174,0.303957402706,0.260080426931,0.225290837152,0.437291988452,0.267041265965,0.267041265965
570,570,570,flop,flip,0.65304094553,0.528668820858,0.557132005692,0.582262098789,0.573034430149,0.652490188778,0.580962836742,0.580962836742
571,571,571,florida,state,0.0183668620884,0.455109238625,0.356620788574,0.380770623684,0.628001327908,0.756876568851,0.428879857063,0.428879857063
572,572,572,flower,tulip,0.602872431278,0.477416604757,0.796303927898,0.578216016293,0.364615624936,0.594722519391,0.528046369553,0.528046369553
573,573,573,flowers,bouquet,0.636944413185,0.639274716377,0.71754950285,0.703057050705,0.649676783007,0.728210536104,0.83043974638,0.83043974638
574,574,574,flute,clarinet,0.78906917572,0.923611581326,0.941206455231,0.945635855198,0.87924172068,0.702775676281,0.862900793552,0.862900793552
575,575,575,fly,airplane,0.492404967546,0.349787712097,0.504330098629,0.468737214804,0.636991288604,0.477672858706,0.592765033245,0.592765033245
576,576,576,fog,mist,0.788408100605,0.818277001381,0.90303426981,0.840409576893,0.724365417914,0.597348290485,0.771864831448,0.771864831448
577,577,577,fold,crease,0.285898476839,0.405841231346,0.58576631546,0.525697648525,0.252958848524,0.399624368661,0.181091919541,0.181091919541
578,578,578,folder,binder,0.380373299122,0.191117301583,0.330480188131,0.299704223871,0.284460451793,0.588958113084,0.31579837203,0.31579837203
579,579,579,follower,leader,0.400095552206,0.31540876627,0.465485036373,0.371554791927,0.370158450101,0.355192468972,0.485428154469,0.485428154469
580,580,580,food,provision,0.23171018064,0.103580929339,0.22519762814,0.178665369749,0.399292940036,0.187038948482,0.191291809082,0.191291809082
581,581,581,foot,toe,0.461809933186,0.606258571148,0.687528729439,0.667940795422,0.572750286672,0.567787064694,0.67080783844,0.67080783844
582,582,582,football,arena,0.338776618242,0.463293254375,0.386117726564,0.501835286617,0.529204029118,0.417839632778,0.583282768726,0.583282768726
583,583,583,for,against,0.171613991261,0.238598525524,0.290193021297,0.324269652367,0.686739885777,0.658074480403,0.463946610689,0.463946610689
584,584,584,force,inertia,0.151177972555,0.268121391535,0.41222551465,0.297771453857,0.232464872978,0.143084819682,0.386119961739,0.386119961739
585,585,585,foreign,legion,0.195550128818,0.208118736744,0.23397308588,0.184305906296,0.120024175579,0.316548000659,0.156488373876,0.156488373876
586,586,586,foresight,hindsight,0.407191962004,0.209904074669,0.293051332235,0.239347606897,0.463971987208,0.518824819488,0.582243621349,0.582243621349
587,587,587,forest,wilderness,0.433375298977,0.580689966679,0.652849495411,0.577186584473,0.626822607334,0.592174406454,0.662452697754,0.662452697754
588,588,588,forever,always,0.413120359182,0.369008302689,0.484215855598,0.429941266775,0.565525852421,0.758027794419,0.630414187908,0.630414187908
589,589,589,forgive,repentance,0.365514069796,0.568045914173,0.563118755817,0.570191502571,0.333719248721,0.498272840633,0.560620069504,0.560620069504
590,590,590,fork,knife,0.610929310322,0.675405085087,0.659711718559,0.677732527256,0.444089902764,0.725630956,0.523151218891,0.523151218891
591,591,591,fortune,fame,0.526531875134,0.357066214085,0.505527973175,0.414311230183,0.445451843774,0.500286270106,0.3881983459,0.3881983459
592,592,592,forward,advance,0.331273347139,0.160005196929,0.156306326389,0.16870982945,0.53808551425,0.562232207961,0.236959144473,0.236959144473
593,593,593,found,lost,0.270927429199,0.36934903264,0.412414759398,0.362263858318,0.497380837073,0.76543131062,0.353670448065,0.353670448065
594,594,594,four,three,0.947980523109,0.983218550682,0.986396431923,0.984195113182,0.988259107509,0.963116437546,0.959262788296,0.959262788296
595,595,595,fox,sly,0.353502482176,0.478550195694,0.39366671443,0.494362622499,0.21942051519,0.232968673109,0.416232526302,0.416232526302
596,596,596,fragile,delicate,0.487749069929,0.706169784069,0.671922206879,0.672610521317,0.644600724679,0.574979744792,0.688219606876,0.688219606876
597,597,597,frame,picture,0.309094935656,0.482146918774,0.510813832283,0.473760247231,0.489263748761,0.55995023768,0.491836249828,0.491836249828
598,598,598,france,paris,0.251832872629,0.730648040771,0.716266691685,0.724962115288,0.748158653125,0.756932350073,0.432468026876,0.432468026876
599,599,599,frankenstein,monster,0.645108759403,0.556372642517,0.457457184792,0.560980260372,0.616194320288,0.344711218544,0.745058476925,0.745058476925
600,600,600,fraternity,greek,0.0711357593536,0.307488113642,0.155174329877,0.270046591759,0.194649116667,0.334321297131,0.280764639378,0.280764639378
601,601,601,freedom,liberty,0.625719547272,0.63679420948,0.767667531967,0.663087189198,0.716819240925,0.719962055409,0.461822330952,0.461822330952
602,602,602,friend,trustworthy,0.456905394793,0.153607875109,0.206539571285,0.248385831714,0.277942447727,0.329540779355,0.209789961576,0.209789961576
603,603,603,fries,french,0.232629284263,0.397478044033,0.444331258535,0.408268868923,0.302257225089,0.555625375729,0.297541826963,0.297541826963
604,604,604,fright,scare,0.565024852753,0.500169098377,0.502823531628,0.454233258963,0.404239571592,0.408271941235,0.473734229803,0.473734229803
605,605,605,frightened,scared,0.894821107388,0.851023554802,0.902881801128,0.871344387531,0.856542967014,0.51326564328,0.796257555485,0.796257555485
606,606,606,frog,toad,0.819805085659,0.726128041744,0.801174938679,0.788999021053,0.701051324259,0.731369657845,0.756567835808,0.756567835808
607,607,607,front,side,0.234582155943,0.539268016815,0.566245019436,0.54722070694,0.704530227853,0.777629389389,0.674649596214,0.674649596214
608,608,608,fruit,banana,0.642525970936,0.793590426445,0.82555603981,0.786047041416,0.651985467129,0.676143808771,0.705801904202,0.705801904202
609,609,609,fudge,topping,0.140296712518,0.553727805614,0.520032644272,0.524678051472,0.460015792303,0.54211891996,0.492729276419,0.492729276419
610,610,610,full,capacity,0.183279365301,0.112893633544,0.150744363666,0.166293725371,0.558656699942,0.474620337592,0.431612730026,0.431612730026
611,611,611,fun,weekend,0.260036528111,0.46310338378,0.464343428612,0.46413230896,0.472924741348,0.77929705994,0.308713883162,0.308713883162
612,612,612,fungus,bacteria,0.539142489433,0.735336482525,0.77879691124,0.765926480293,0.673664609248,0.477292296883,0.846011936665,0.846011936665
613,613,613,funny,clown,0.660070478916,0.417264461517,0.525378227234,0.493256092072,0.380649184618,0.598627045633,0.700347363949,0.700347363949
614,614,614,furniture,patio,0.363674044609,0.590725064278,0.636694312096,0.637841165066,0.50025755566,0.522336475889,0.668538749218,0.668538749218
615,615,615,future,destiny,0.366105824709,0.17071172595,0.278490304947,0.151760160923,0.4399138838,0.69279258815,0.631336331367,0.631336331367
616,616,616,gain,loss,0.0830995664001,0.314603388309,0.337823987007,0.340890318155,0.589394054661,0.497184410395,0.666051328182,0.666051328182
617,617,617,gamble,bet,0.68132352829,0.523047924042,0.739307641983,0.542887091637,0.409583377059,0.348665968219,0.369055718184,0.369055718184
618,618,618,game,dice,0.56292617321,0.571281075478,0.678565561771,0.554317116737,0.263916404401,0.0727160373154,0.0604537129402,0.0604537129402
619,619,619,gander,goose,0.513138830662,0.391779959202,0.502830922604,0.553662002087,0.549204851214,0.447656184411,0.570028305054,0.570028305054
620,620,620,garbage,dump,0.662355720997,0.628016650677,0.661032140255,0.645719468594,0.735100018738,0.599098694853,0.682741343975,0.682741343975
621,621,621,garden,hoe,0.475450187922,0.344690442085,0.403867274523,0.432028442621,0.254798133975,0.219622356938,0.359633773565,0.359633773565
622,622,622,gas,fuel,0.733223199844,0.779817581177,0.819576144218,0.771696388721,0.751057484288,0.694649980459,0.741973042488,0.741973042488
623,623,623,gather,accumulate,0.529528081417,0.397393405437,0.375745773315,0.406585663557,0.218178101622,0.415033043185,0.353392869234,0.353392869234
624,624,624,geek,nerd,0.440438687801,0.67416536808,0.852843701839,0.746862232685,0.795619308954,0.755445834179,0.866934835911,0.866934835911
625,625,625,general,specific,0.019580623135,0.291403472424,0.499374389648,0.352231681347,0.437209078709,0.35332686091,0.176207199693,0.176207199693
626,626,626,geometry,angle,0.304902881384,0.358833998442,0.476203233004,0.43860912323,0.418490776359,0.251537478616,0.525973141193,0.525973141193
627,627,627,george,curious,0.0344073474407,0.101648621261,0.15119124949,0.0768039450049,0.149167931045,0.332832162003,0.193289265037,0.193289265037
628,628,628,get,acquire,0.475988298655,0.270116358995,0.291152596474,0.272224515676,0.437895505235,0.296445096672,0.279219150543,0.279219150543
629,629,629,ghost,ghoul,0.38476100564,0.564806163311,0.671066522598,0.653106451035,0.167043221193,0.335264327451,0.44861587882,0.44861587882
630,630,630,gift,present,-0.0495451465249,0.0615506619215,0.00894785765558,0.0355045758188,0.362628866339,0.713796782805,0.307942837477,0.307942837477
631,631,631,gin,tonic,0.322256356478,0.604733586311,0.586533606052,0.57399982214,0.545716020674,0.590096557791,0.586104869843,0.586104869843
632,632,632,girl,gal,-4.9125024816e-05,0.203969046474,0.556185722351,0.353015393019,0.213565808887,0.635254483409,0.502317249775,0.502317249775
633,633,633,girlfriend,boyfriend,0.870384573936,0.922906458378,0.941797912121,0.949228584766,0.924075641241,0.912347237585,0.882829129696,0.882829129696
634,634,634,girls,guys,0.206820115447,0.431238949299,0.471898049116,0.484599232674,0.558298193041,0.808995615958,0.459130316973,0.459130316973
635,635,635,give,generous,0.179393470287,0.231799155474,0.214892372489,0.205836892128,0.49334574125,0.433778980819,0.41644513607,0.41644513607
636,636,636,glass,window,0.595101416111,0.456527918577,0.48181861639,0.453586220741,0.674490514238,0.626409762454,0.613256454468,0.613256454468
637,637,637,glasses,lens,0.584696471691,0.314510583878,0.373486101627,0.350421845913,0.395722867477,0.549922868222,0.27879974246,0.27879974246
638,638,638,glory,hope,0.166261464357,0.297518581152,0.34633359313,0.314088404179,0.531620563908,0.473930924175,0.368124425411,0.368124425411
639,639,639,gloves,boxing,0.361732244492,0.322724968195,0.398635834455,0.335856795311,0.500169335583,0.500539472884,0.390957981348,0.390957981348
640,640,640,glue,paste,0.793047308922,0.568790733814,0.586659669876,0.544440567493,0.440285398647,0.26037512739,0.617691934109,0.617691934109
641,641,641,go,attend,0.189108803868,0.301129668951,0.382691025734,0.317754924297,0.512324954157,0.565815842071,0.296956509352,0.296956509352
642,642,642,goal,ambition,0.501975893974,0.501798331738,0.523382127285,0.480846911669,0.355569398459,0.397795578729,0.313510000706,0.313510000706
643,643,643,god,demi,0.316543310881,-0.0294977165759,0.163951829076,0.015634547919,0.188721063497,0.370398116186,0.141052782536,0.141052782536
644,644,644,gold,necklace,0.563285708427,0.690242707729,0.694172739983,0.670472860336,0.456556814245,0.614278803426,0.45606932044,0.45606932044
645,645,645,gone,going,0.416408240795,0.377122849226,0.444296181202,0.431220412254,0.847357855633,0.834177951022,0.517280519009,0.517280519009
646,646,646,goo,slimy,0.466069042683,0.359182834625,0.638207674026,0.40350368619,0.239489481053,0.0561192322205,0.563602805138,0.563602805138
647,647,647,good,righteousness,0.385900557041,0.113835386932,0.108757577837,0.157063797116,0.143731809912,0.230267086496,0.278155207634,0.278155207634
648,648,648,goose,gander,0.513138830662,0.391779959202,0.502830922604,0.553662002087,0.549204851214,0.447656184411,0.570028305054,0.570028305054
649,649,649,government,oligarchy,0.106867179275,0.374190658331,0.553823232651,0.427779793739,0.174410273586,0.280299601338,0.371853917837,0.371853917837
650,650,650,grab,tag,0.429958760738,0.206662610173,0.321115851402,0.190547242761,0.349848134962,0.315665863347,0.20106446743,0.20106446743
651,651,651,graduation,diploma,0.483477205038,0.493618756533,0.541391193867,0.469302028418,0.625754522205,0.479528857114,0.696349680424,0.696349680424
652,652,652,grand,canyon,0.429419159889,0.552651882172,0.291967272758,0.557343006134,0.376918253107,0.464228555048,0.516618967056,0.516618967056
653,653,653,grandma,grandpa,0.799950838089,0.825861752033,0.879353165627,0.885311663151,0.810136102259,0.885253257737,0.85664409399,0.85664409399
654,654,654,grape,raisin,0.30721694231,0.749238669872,0.734902441502,0.785702526569,0.380480719501,0.473503232159,0.743668913841,0.743668913841
655,655,655,graph,chart,0.574213504791,0.646249175072,0.618521213531,0.62366938591,0.273406131109,0.385315934617,0.363961875439,0.363961875439
656,656,656,grasp,hold,0.207800775766,0.296589225531,0.349594444036,0.310589343309,0.310694042351,0.422530606137,0.46726551652,0.46726551652
657,657,657,grass,weed,0.428557991982,0.662136912346,0.738981604576,0.639043152332,0.496005967326,0.509700799988,0.479294151068,0.479294151068
658,658,658,grave,tomb,0.0910799205303,0.560715854168,0.662751972675,0.637062072754,0.551159433206,0.307616477162,0.585497200489,0.585497200489
659,659,659,great,exceptional,0.0737912356853,0.30914825201,0.314573824406,0.240064367652,0.542686532121,0.56693153406,0.495904028416,0.495904028416
660,660,660,greed,selfish,0.682594835758,0.609096646309,0.724598050117,0.67402535677,0.52143595749,0.500068818736,0.715954959393,0.715954959393
661,661,661,green,bean,0.392181307077,0.359828293324,0.564513087273,0.409619390965,0.457179089067,0.614686540496,0.74943780899,0.74943780899
662,662,662,grill,charcoal,0.535899043083,0.43310585618,0.506092905998,0.491742312908,0.598384831134,0.502475630911,0.6802495718,0.6802495718
663,663,663,groceries,list,0.042158164084,0.0415338352323,0.160441398621,0.127223268151,0.134834804778,0.328971828814,0.264912337065,0.264912337065
664,664,664,gross,disgusting,-0.000756174093112,0.0527746342123,0.168677195907,0.0793313458562,0.145733455224,0.833633878512,0.1438973248,0.1438973248
665,665,665,ground,hole,0.171164572239,0.483418673277,0.513364315033,0.496662944555,0.445481971646,0.605335806139,0.341749548912,0.341749548912
666,666,666,group,gang,0.15906354785,0.244599059224,0.380479097366,0.267531245947,0.485412549521,0.448306792789,0.279414117336,0.279414117336
667,667,667,grow,develop,0.44319498539,0.468055397272,0.49553668499,0.475839853287,0.621855630077,0.673120027358,0.525131583214,0.525131583214
668,668,668,growth,development,0.512140214443,0.447820276022,0.525290548801,0.45370477438,0.669907809456,0.715176668654,0.429456681013,0.429456681013
669,669,669,guard,sentry,0.340340226889,0.677979469299,0.668477475643,0.753093361855,0.275026499836,0.313928426158,0.529697060585,0.529697060585
670,670,670,guess,hypothesis,0.399430960417,0.0983253866434,0.15841832757,0.0941326320171,0.240263144365,0.147273831142,0.220004022121,0.220004022121
671,671,671,guilt,shame,0.520071268082,0.466800272465,0.489938527346,0.421167731285,0.644822195923,0.516077369392,0.660785377026,0.660785377026
672,672,672,guilty,innocence,0.493520528078,0.501785159111,0.472974777222,0.476874828339,0.584033431649,0.419010025341,0.627684473991,0.627684473991
673,673,673,gum,bubble,0.34424033761,0.28030231595,0.454775750637,0.334336936474,0.410333766889,0.601778956905,0.501617193222,0.501617193222
674,674,674,gun,violence,0.16159427166,0.215695440769,0.310169309378,0.196341961622,0.380718481275,0.517008584567,0.366365015507,0.366365015507
675,675,675,habit,tendency,0.421908944845,0.427344560623,0.475054860115,0.441795319319,0.509809666439,0.466366595695,0.636210739613,0.636210739613
676,676,676,hair,spray,0.504766464233,0.524707436562,0.576763033867,0.54927021265,0.407402078343,0.537979113183,0.53693985939,0.53693985939
677,677,677,hall,corridor,0.294310212135,0.313865333796,0.560550808907,0.349418133497,0.166448058285,0.440141678936,0.140050753951,0.140050753951
678,678,678,halloween,witch,0.338671445847,0.380163580179,0.486468166113,0.381595820189,0.459582797877,0.571563717149,0.507426202297,0.507426202297
679,679,679,hallway,passage,0.192961528897,0.456101864576,0.43459585309,0.368046760559,0.187736610452,0.179722035078,0.233851641417,0.233851641417
680,680,680,hamburger,mcdonald's,,,,0.196745574474,,,0.46369767189,0.46369767189
681,681,681,hammer,tools,-0.0250071175396,0.144603088498,0.108405999839,0.0884416624904,0.33420386388,0.405904779222,0.294808924198,0.294808924198
682,682,682,hand,finger,0.347807079554,0.659430861473,0.69964069128,0.701512813568,0.68938340189,0.767981107325,0.735184729099,0.735184729099
683,683,683,hands,gloves,0.289023011923,0.358999341726,0.464242249727,0.413604110479,0.428610725886,0.463878441103,0.585394263268,0.585394263268
684,684,684,happy,delight,0.422927290201,0.372112005949,0.402613699436,0.41029086709,0.471186178031,0.282542691582,0.485749065876,0.485749065876
685,685,685,hard,erect,0.11599753052,0.0734055638313,0.14648424089,0.134599298239,0.178564096309,0.151710882562,0.226952791214,0.226952791214
686,686,686,harvest,reap,0.397714912891,0.380473524332,0.456090539694,0.353358149529,0.418678351605,0.637925843581,0.360685586929,0.360685586929
687,687,687,hat,cap,0.0922131165862,0.5420768857,0.719501435757,0.583884119987,0.551283899056,0.514808700039,0.47417935729,0.47417935729
688,688,688,hate,dislike,0.620199024677,0.59632396698,0.684373021126,0.625533223152,0.519507014533,0.786313566007,0.650590062141,0.650590062141
689,689,689,have,must,0.26257699728,0.23550273478,0.258096218109,0.253583878279,0.779156014796,0.836133907567,0.444649845362,0.444649845362
690,690,690,hay,pitchfork,0.110195755959,0.185872167349,0.236549660563,0.12579497695,-0.0952672397463,-0.149245287236,0.175730884075,0.175730884075
691,691,691,head,hat,0.290119439363,0.338281869888,0.570821404457,0.390222042799,0.454733153337,0.492921762326,0.256521821022,0.256521821022
692,692,692,headache,aspirin,0.533195972443,0.575135052204,0.497320771217,0.525557637215,0.445491965304,0.405499328753,0.623352706432,0.623352706432
693,693,693,health,mental,0.608142912388,0.746446073055,0.773819029331,0.750444352627,0.661350017142,0.535656238652,0.755622982979,0.755622982979
694,694,694,healthy,fitness,0.286992102861,0.334205895662,0.382293462753,0.387055665255,0.467389347694,0.552567814672,0.589083194733,0.589083194733
695,695,695,hear,listen,0.596943736076,0.663300693035,0.698628246784,0.680568695068,0.851084138602,0.845709449815,0.858555495739,0.858555495739
696,696,696,heart,transplant,0.400832861662,0.387392818928,0.443512141705,0.459988206625,0.598277245116,0.344104779559,0.697309315205,0.697309315205
697,697,697,heat,warmth,0.448667615652,0.480345070362,0.494061499834,0.482980638742,0.39963483994,0.309324569356,0.332243800163,0.332243800163
698,698,698,heaven,angel,0.364531368017,0.537065684795,0.561616659164,0.533040940762,0.463061695048,0.578248112324,0.242058113217,0.242058113217
699,699,699,heavy,load,0.472220212221,0.368939518929,0.451512664557,0.37670481205,0.473816267621,0.510638862845,0.365705728531,0.365705728531
700,700,700,hell,heaven,0.764877259731,0.675428450108,0.602246105671,0.693671405315,0.783452047343,0.649747418767,0.717329084873,0.717329084873
701,701,701,hello,goodbye,0.710172951221,0.610520243645,0.799705684185,0.645700395107,0.790502381786,0.683782708194,0.805102407932,0.805102407932
702,702,702,help,benefit,0.499471783638,0.379911482334,0.446872591972,0.45195248723,0.640056252305,0.594844987115,0.704150080681,0.704150080681
703,703,703,helper,assistant,0.0898734927177,0.305961608887,0.362907081842,0.273025691509,0.0353665758275,0.441586451129,0.171717375517,0.171717375517
704,704,704,her,him,0.663355886936,0.648787379265,0.705902993679,0.6706828475,0.764626516281,0.731830001727,0.571681857109,0.571681857109
705,705,705,here,there,0.119787156582,0.314872950315,0.301874399185,0.33586832881,0.794003046821,0.888947740561,0.513292372227,0.513292372227
706,706,706,hidden,unseen,0.595264911652,0.557240366936,0.446046948433,0.466687113047,0.530459356366,0.418351088048,0.6242608428,0.6242608428
707,707,707,high,low,0.564117014408,0.775880038738,0.828870892525,0.814456403255,0.823393862241,0.787483760127,0.826725542545,0.826725542545
708,708,708,higher,lower,0.771338820457,0.659391462803,0.785794556141,0.666231691837,0.871305794968,0.839203331161,0.857106983662,0.857106983662
709,709,709,highway,freeway,0.658882856369,0.560327351093,0.619869172573,0.672811090946,0.767125957953,0.707942198532,0.789626896381,0.789626896381
710,710,710,hill,steep,0.442042976618,0.581840276718,0.767581403255,0.548362016678,0.442437849724,0.500787401687,0.288642704487,0.288642704487
711,711,711,hint,subtle,0.485412031412,0.350805342197,0.518626570702,0.383769065142,0.663627545205,0.582911323497,0.688212096691,0.688212096691
712,712,712,hip,waist,0.537566781044,0.505778610706,0.466129273176,0.431089818478,0.400931939094,0.342125994306,0.660781741142,0.660781741142
713,713,713,hit,miss,-0.0446615926921,0.3167783916,0.507864356041,0.310152351856,0.440742635696,0.553495160032,0.370748907328,0.370748907328
714,714,714,hitchhike,hiker,,0.321427851915,0.37918561697,0.346254169941,0.13230918162,0.390334520203,0.447600871325,0.447600871325
715,715,715,hog,pig,0.674943447113,0.455466002226,0.62302929163,0.61792755127,0.713453699221,0.548315947874,0.635826826096,0.635826826096
716,716,716,hold,grip,0.184257254004,0.398311674595,0.33253762126,0.362513691187,0.528837825489,0.523336223176,0.517437696457,0.517437696457
717,717,717,hole,ditch,0.719608902931,0.675830066204,0.63924819231,0.670821547508,0.522066302883,0.494569886846,0.338836044073,0.338836044073
718,718,718,holy,pious,0.275749146938,0.639566838741,0.735236525536,0.598128795624,0.446014750573,0.0694694500886,0.615748167038,0.615748167038
719,719,719,home,welcome,0.0621823370457,0.2409196347,0.198737218976,0.245479986072,0.450528186349,0.627569199017,0.313997060061,0.313997060061
720,720,720,homeless,hopeless,0.334406018257,0.208441913128,0.271608620882,0.177859812975,0.329977803893,0.380434939432,0.378294318914,0.378294318914
721,721,721,homework,assignment,0.232195422053,0.450215876102,0.419499844313,0.474422901869,0.446619247375,0.754962334909,0.489459633827,0.489459633827
722,722,722,honest,truthful,0.589327991009,0.750527381897,0.775251448154,0.787529706955,0.737040157883,0.770471534447,0.797954320908,0.797954320908
723,723,723,honesty,earnestness,0.557243108749,0.580921530724,0.69396173954,0.691000342369,0.55873770307,0.282420640992,0.705360889435,0.705360889435
724,724,724,honor,prestige,0.394048899412,0.306209921837,0.385678440332,0.30021712184,0.397111827773,0.230961171198,0.414369553328,0.414369553328
725,725,725,hoop,hula,0.316680163145,0.570816993713,0.399405062199,0.497800886631,0.42511354994,0.429568214192,0.633507430553,0.633507430553
726,726,726,horn,bugle,0.265347212553,0.491580277681,0.759751260281,0.645138025284,0.302326874405,0.333749827716,0.319567203522,0.319567203522
727,727,727,horse,trot,0.438390702009,0.345141142607,0.453356653452,0.420106321573,0.334701238038,0.338915394483,0.379881262779,0.379881262779
728,728,728,hose,nylon,0.625477075577,0.65090495348,0.674362361431,0.660885572433,0.421895289531,0.361202517506,0.703386843204,0.703386843204
729,729,729,hospital,general,0.203878611326,0.209802120924,0.287780046463,0.218995571136,0.373942366027,0.574329220609,0.0902242437005,0.0902242437005
730,730,730,hostess,host,0.0973624438047,0.245221108198,0.260839223862,0.283566236496,0.254441598392,0.304733014627,0.31266400218,0.31266400218
731,731,731,hot,fire,0.327900499105,0.33326330781,0.391146987677,0.342990010977,0.441991915103,0.59316603426,0.297695249319,0.297695249319
732,732,732,hotel,suite,0.155579209328,0.461551845074,0.511679589748,0.49198397994,0.546173446657,0.459736018231,0.757552742958,0.757552742958
733,733,733,hound,fox,0.471715927124,0.622451066971,0.737078368664,0.529500722885,0.252751353796,0.313024924348,0.48770108819,0.48770108819
734,734,734,hours,minutes,0.424849450588,0.681359648705,0.760548830032,0.641212880611,0.770328779767,0.883228542623,0.708517611027,0.708517611027
735,735,735,house,doll,0.179681494832,0.254727691412,0.340716391802,0.25332826376,0.360878369231,0.451497338091,0.321100234985,0.321100234985
736,736,736,hug,embrace,0.232069268823,0.211511686444,0.293368726969,0.193476304412,0.411836303335,0.374978223117,0.362771719694,0.362771719694
737,737,737,hula,hoop,0.316680163145,0.570816993713,0.399405062199,0.497800886631,0.42511354994,0.429568214192,0.633507430553,0.633507430553
738,738,738,human,being,0.0878183618188,0.118640728295,0.268885135651,0.137280911207,0.55213215127,0.610816160748,0.254241198301,0.254241198301
739,739,739,hundred,percent,0.177657648921,0.259413510561,0.322734564543,0.267985165119,0.323404010776,0.530955888937,0.0681294724345,0.0681294724345
740,740,740,hunger,famine,0.719148516655,0.694550573826,0.71109688282,0.679822564125,0.570262940649,0.471661627434,0.461205780506,0.461205780506
741,741,741,hungry,starving,0.791511118412,0.702733278275,0.771969139576,0.749940514565,0.700759719138,0.867833021174,0.804902672768,0.804902672768
742,742,742,hunter,bounty,0.384481310844,0.422263741493,0.55876749754,0.468745708466,0.36666633049,0.354655154015,0.35650613904,0.35650613904
743,743,743,hurricane,typhoon,0.532277345657,0.632515907288,0.820349872112,0.648984193802,0.763207443107,0.648882862599,0.726070582867,0.726070582867
744,744,744,hurry,rush,0.609888613224,0.52730089426,0.62730973959,0.539905250072,0.540635311007,0.448917088384,0.630586445332,0.630586445332
745,745,745,hurt,ouch,-0.0185130070895,0.210356727242,0.373994112015,0.268584698439,0.0471000682789,0.677156897588,0.301979154348,0.301979154348
746,746,746,husband,spouse,0.769682466984,0.592749893665,0.559626817703,0.610898196697,0.628207832242,0.590233337759,0.569762349129,0.569762349129
747,747,747,hypnotize,trance,0.319550216198,0.291479945183,0.39740255475,0.462910622358,0.0932829751582,0.148653742936,0.517078876495,0.517078876495
748,748,748,ice,igloo,0.374238759279,0.466210693121,0.438748329878,0.408421754837,0.212920141432,0.388420950305,0.665334880352,0.665334880352
749,749,749,id,ego,0.209949120879,0.0762990117073,0.221887782216,0.111222743988,0.244923151874,0.259483179905,0.160412147641,0.160412147641
750,750,750,idea,suggestion,0.510724365711,0.586094379425,0.614537060261,0.603081762791,0.727345652111,0.494590460078,0.654326498508,0.654326498508
751,751,751,idiot,moron,0.507969737053,0.650478482246,0.718294918537,0.658633708954,0.498608434067,0.697852766811,0.552795529366,0.552795529366
752,752,752,ignore,disregard,0.553151428699,0.448803216219,0.504667103291,0.445900946856,0.595760205518,0.462850439529,0.593436062336,0.593436062336
753,753,753,ill,sick,0.568378090858,0.734948575497,0.743357300758,0.744932055473,0.763778590169,0.712867319583,0.793206691742,0.793206691742
754,754,754,illegal,legal,0.0341396890581,0.237091317773,0.358934760094,0.277470827103,0.566870817477,0.502799564327,0.504465579987,0.504465579987
755,755,755,immature,childish,0.690126121044,0.315424621105,0.344498634338,0.313829421997,0.467107025283,0.749597168242,0.553155779839,0.553155779839
756,756,756,important,special,0.11254068464,0.156097739935,0.169502228498,0.119662061334,0.581806646601,0.630470254955,0.228092342615,0.228092342615
757,757,757,in,out,0.0413607433438,0.135768443346,0.129476487637,0.137233808637,0.72409538026,0.77930560006,0.673381626606,0.673381626606
758,758,758,increase,decrease,0.727057874203,0.797556638718,0.861444652081,0.83718341589,0.881235673534,0.791890422824,0.82874917984,0.82874917984
759,759,759,independent,dependent,0.134178206325,0.166346698999,0.190078556538,0.0818513035774,0.38274489461,0.481488376743,0.172844216228,0.172844216228
760,760,760,indian,tribe,0.278948694468,0.482861310244,0.268980413675,0.464795023203,0.511448526158,0.485274145749,0.579103648663,0.579103648663
761,761,761,indoors,outdoors,0.796019256115,0.714448750019,0.705390751362,0.720070242882,0.74590384266,0.606251670558,0.628743350506,0.628743350506
762,762,762,inferior,superior,0.505300283432,0.585240781307,0.658185660839,0.587624907494,0.712636108436,0.754587798348,0.45177924633,0.45177924633
763,763,763,inhale,exhale,0.810896992683,0.664403319359,0.741744577885,0.734645426273,0.742051599375,0.824797611663,0.630384624004,0.630384624004
764,764,764,innocent,guilty,0.338189005852,0.623548984528,0.639374136925,0.632251143456,0.671553826511,0.646471075243,0.804727256298,0.804727256298
765,765,765,insane,crazy,0.60537302494,0.598086237907,0.697169244289,0.637318849564,0.591737153653,0.808861580975,0.671622335911,0.671622335911
766,766,766,instrument,tuba,-0.131302163005,0.415730506182,0.505720674992,0.47123208642,0.339478875592,0.189068663421,0.433422803879,0.433422803879
767,767,767,insurance,claim,0.220557630062,0.326752066612,0.248257860541,0.321406602859,0.47281588057,0.555763001958,0.284988373518,0.284988373518
768,768,768,iron,ore,0.71659296751,0.688701331615,0.698444843292,0.722691178322,0.632652551896,0.191974909278,0.629266560078,0.629266560078
769,769,769,irregular,regular,0.196818307042,0.315051704645,0.333672821522,0.362240433693,0.431776850789,0.475762519537,0.367513507605,0.367513507605
770,770,770,irritating,annoying,0.764796257019,0.866738438606,0.915277600288,0.876769959927,0.830519781193,0.849365925059,0.853043138981,0.853043138981
771,771,771,island,paradise,0.247899204493,0.572251260281,0.629388332367,0.566296756268,0.541829075552,0.74848141566,0.611322343349,0.611322343349
772,772,772,it,damn,0.100403435528,0.336548984051,0.446943938732,0.357438892126,0.317775649657,0.798717362348,0.58263105154,0.58263105154
773,773,773,italian,mafia,0.259199529886,0.403245598078,0.370837777853,0.487773656845,0.466245080553,0.399191604934,0.422843158245,0.422843158245
774,774,774,itch,rash,0.345361232758,0.553393602371,0.589178204536,0.594551742077,0.37165522891,0.515200088445,0.438625156879,0.438625156879
775,775,775,item,product,-0.0145321162418,0.415657192469,0.447168588638,0.416763544083,0.531962568749,0.531453495509,0.322000712156,0.322000712156
776,776,776,jacket,vest,0.48582097888,0.750343322754,0.774383366108,0.768866896629,0.744819181629,0.760833690339,0.861002266407,0.861002266407
777,777,777,jail,prisoner,0.564092338085,0.526664674282,0.572144985199,0.547804415226,0.597408698181,0.46879435433,0.640668749809,0.640668749809
778,778,778,jane,tarzan,0.425819694996,0.299338340759,0.193769335747,0.29912224412,0.333576809346,0.523158816907,0.30443033576,0.30443033576
779,779,779,jeans,pocket,0.383414924145,0.39778637886,0.524299740791,0.452949792147,0.403469185793,0.538499599187,0.415138393641,0.415138393641
780,780,780,jelly,jar,0.747433841228,0.704727053642,0.788500666618,0.720054447651,0.51063095766,0.441181830489,0.833348751068,0.833348751068
781,781,781,jesus,christ,0.589015185833,0.892246961594,0.73243945837,0.868057131767,0.866566230291,0.830870821866,0.862996459007,0.862996459007
782,782,782,jewish,rabbi,0.341537743807,0.412578523159,0.471676975489,0.451306253672,0.596990917832,0.361274542716,0.754047930241,0.754047930241
783,783,783,job,task,0.0824934318662,0.251791715622,0.490219950676,0.376577615738,0.58486114676,0.496753068549,0.452753454447,0.452753454447
784,784,784,jogger,runner,,0.307001233101,0.448662787676,0.32487860322,0.145272812137,0.303476198215,0.28544023633,0.28544023633
785,785,785,join,participate,0.646448254585,0.596145451069,0.643577754498,0.601515054703,0.748352317646,0.672217571437,0.658189117908,0.658189117908
786,786,786,journey,quest,0.345172852278,0.354865401983,0.370981007814,0.390560418367,0.605832388711,0.392471405826,0.529524147511,0.529524147511
787,787,787,judge,court,0.713080108166,0.680089354515,0.729627013206,0.71653932333,0.871140740359,0.666312490044,0.929681479931,0.929681479931
788,788,788,juice,prune,0.44377297163,0.490482062101,0.571136891842,0.522266328335,0.389374779215,0.420436338799,0.650185465813,0.650185465813
789,789,789,jump,skip,0.545116186142,0.528014719486,0.516354560852,0.490019410849,0.420324255071,0.521922713412,0.436285257339,0.436285257339
790,790,790,jungle,safari,0.301751285791,0.505703210831,0.64135825634,0.559103310108,0.392445892952,0.517627391443,0.47504940629,0.47504940629
791,791,791,juvenile,delinquent,0.283794820309,0.377680778503,0.471148759127,0.502345025539,0.494527328368,0.627801563361,0.539293527603,0.539293527603
792,792,792,keep,save,0.402420610189,0.444090604782,0.555200219154,0.409702032804,0.646311967483,0.692308722339,0.660063624382,0.660063624382
793,793,793,keeper,grounds,0.136904463172,0.132459610701,0.13195091486,0.0944124534726,0.181963016052,0.280252329565,0.12709222734,0.12709222734
794,794,794,ketchup,fries,0.596724331379,0.743044376373,0.80048340559,0.768256723881,0.479860630662,0.73499526367,0.842475175858,0.842475175858
795,795,795,key,latch,0.0426127724349,0.0560176298022,0.167935580015,0.102733500302,0.104990236245,0.132257450148,0.211320385337,0.211320385337
796,796,796,kidnap,abduct,0.664474487305,0.628249168396,0.802690029144,0.805306613445,0.76370297278,0.668655289162,0.866331160069,0.866331160069
797,797,797,kids,children,0.448197960854,0.650082886219,0.673381567001,0.626247525215,0.756242508837,0.841548089597,0.752829790115,0.752829790115
798,798,798,kill,slay,0.589488506317,0.587273299694,0.685018420219,0.674771010876,0.384425603759,0.459162911845,0.426175177097,0.426175177097
799,799,799,killer,murderer,0.520304322243,0.478296875954,0.55090367794,0.468530625105,0.731383974831,0.516417162551,0.762905061245,0.762905061245
800,800,800,kind,type,0.604856312275,0.447504132986,0.527720212936,0.452095657587,0.602276664613,0.731786581604,0.68724155426,0.68724155426
801,801,801,king,throne,0.596614480019,0.60376983881,0.797370731831,0.650330364704,0.691999052963,0.520348854747,0.743748545647,0.743748545647
802,802,802,kiss,lips,0.597229063511,0.602656185627,0.672495305538,0.585749864578,0.509040415192,0.678455038998,0.695940256119,0.695940256119
803,803,803,kitchen,cabinet,0.0574997924268,0.354718178511,0.552306711674,0.315767854452,0.266608366436,0.615228117458,0.127029642463,0.127029642463
804,804,804,klutz,clumsy,,0.159969136119,0.544648110867,0.204215422273,0.339864380696,0.364936545806,0.5063560009,0.5063560009
805,805,805,knee,kneel,0.392275243998,0.389352470636,0.328096449375,0.326623260975,0.114755237725,0.237522528189,0.21509116888,0.21509116888
806,806,806,knife,blade,0.708761453629,0.738746643066,0.694323301315,0.71103143692,0.685379439782,0.711072750634,0.750858485699,0.750858485699
807,807,807,knight,armor,0.330394774675,0.239713460207,0.494123876095,0.277600765228,0.351539775882,0.537780842277,0.175995528698,0.175995528698
808,808,808,knit,crochet,0.569212317467,0.542488515377,0.703866660595,0.722861468792,0.401843014276,0.754253856791,0.875934839249,0.875934839249
809,809,809,know,intuition,0.194174140692,0.108215339482,0.120013192296,0.0977662801743,0.229432203211,0.312080950028,0.374090850353,0.374090850353
810,810,810,knowledge,experience,0.698936462402,0.679017364979,0.710875153542,0.677419126034,0.719432389175,0.672592024006,0.745731472969,0.745731472969
811,811,811,lace,frill,,0.643058359623,0.761331737041,0.751721680164,0.285780721299,0.430692121693,0.646285057068,0.646285057068
812,812,812,ladder,rung,0.260881900787,0.395397663116,0.362921386957,0.397481381893,0.478869941732,0.254988447338,0.639275372028,0.639275372028
813,813,813,lady,gentleman,0.663499355316,0.708975315094,0.879873931408,0.74789839983,0.500405241168,0.57698289919,0.571852326393,0.571852326393
814,814,814,lake,pond,0.688018202782,0.559638142586,0.778242230415,0.545529663563,0.750776881581,0.705909378388,0.521916687489,0.521916687489
815,815,815,lamb,mutton,0.683054447174,0.804923176765,0.906121492386,0.830685853958,0.696383103052,0.635965973302,0.766223728657,0.766223728657
816,816,816,land,acre,0.373060286045,0.407039403915,0.426865577698,0.410439878702,0.594472112591,0.353906862747,0.520413041115,0.520413041115
817,817,817,large,vast,0.651427686214,0.669950842857,0.667748749256,0.577757298946,0.747395427448,0.395413970317,0.56821089983,0.56821089983
818,818,818,last,first,0.554458737373,0.684493601322,0.717696428299,0.683330357075,0.83454926594,0.904880010629,0.803502738476,0.803502738476
819,819,819,late,tardy,0.289336800575,0.198947668076,0.318823218346,0.354432940483,0.0274977225447,0.274911233508,0.126090750098,0.126090750098
820,820,820,later,now,0.204262211919,0.193041399121,0.169841989875,0.213916286826,0.683631163148,0.743002664459,0.349502921104,0.349502921104
821,821,821,laugh,giggle,0.699215352535,0.737425029278,0.844439923763,0.874137282372,0.679688815912,0.716119017256,0.827468574047,0.827468574047
822,822,822,law,rights,0.364509165287,0.503469645977,0.583310306072,0.564381837845,0.668589574478,0.686141456372,0.472005307674,0.472005307674
823,823,823,lawn,mow,0.364892601967,0.479096323252,0.582152664661,0.510047376156,0.483919880573,0.558717955612,0.55552649498,0.55552649498
824,824,824,lawsuit,libel,0.577539026737,0.62868064642,0.658258974552,0.658185184002,0.65538207374,0.648368864803,0.768857479095,0.768857479095
825,825,825,lawyer,attorney,0.316211700439,0.491331666708,0.725149571896,0.553131937981,0.848366138462,0.868285995358,0.819969117641,0.819969117641
826,826,826,layer,ozone,0.718244194984,0.478167593479,0.45335739851,0.481023430824,0.517978580931,0.442362627585,0.640377938747,0.640377938747
827,827,827,leader,chairperson,0.303549110889,0.521453261375,0.564678907394,0.563605546951,0.312722521516,0.33540305554,0.350337088108,0.350337088108
828,828,828,leaf,tree,0.543071687222,0.723808884621,0.737475574017,0.670542895794,0.636457367422,0.737631996637,0.625415027142,0.625415027142
829,829,829,learn,teach,0.659862220287,0.768788278103,0.790884315968,0.788162887096,0.822716986166,0.886767730567,0.880229175091,0.880229175091
830,830,830,leather,suede,0.366848766804,0.820926249027,0.897025763988,0.813784301281,0.687357590943,0.63657178227,0.89749288559,0.89749288559
831,831,831,leave,vacate,0.52626568079,0.56426846981,0.619506001472,0.54949849844,0.426060598008,0.244594086251,0.635749638081,0.635749638081
832,832,832,leaves,rake,0.320454359055,0.42992323637,0.431949079037,0.389969557524,0.232121431922,0.362250074038,0.456638395786,0.456638395786
833,833,833,ledge,balcony,0.587950706482,0.508810758591,0.505822002888,0.459648638964,0.62106087522,0.50723767255,0.742524683475,0.742524683475
834,834,834,left,gone,0.476079702377,0.424627661705,0.486422389746,0.430325984955,0.652510532934,0.778049256112,0.582609713078,0.582609713078
835,835,835,leg,crutch,0.167964041233,0.507283329964,0.591548681259,0.618137896061,0.24825436327,0.179410766439,0.348419457674,0.348419457674
836,836,836,legend,myth,0.624839246273,0.557114005089,0.660405397415,0.587440729141,0.612608600296,0.352643778652,0.538190305233,0.538190305233
837,837,837,legs,knees,0.750105917454,0.815267264843,0.841861188412,0.851785600185,0.757684981648,0.749067893905,0.892521977425,0.892521977425
838,838,838,lemon,lime,0.640925586224,0.820157587528,0.812810003757,0.802652418613,0.836536944665,0.787986085664,0.965165197849,0.965165197849
839,839,839,lend,borrow,0.541940033436,0.62631714344,0.62702357769,0.637862145901,0.753531220656,0.776060425587,0.805804252625,0.805804252625
840,840,840,length,width,0.614183723927,0.67823022604,0.689733505249,0.741998612881,0.800198052941,0.722970306727,0.784083724022,0.784083724022
841,841,841,less,more,0.83278799057,0.809154331684,0.807907819748,0.792753219604,0.906405052186,0.867403593994,0.903562009335,0.903562009335
842,842,842,lesson,diminish,0.0568508468568,-0.157564014196,-0.0354944057763,-0.079901188612,0.148688385545,0.142996821986,0.473177731037,0.473177731037
843,843,843,let,allow,0.507185876369,0.241773188114,0.287009000778,0.215046867728,0.741026789222,0.721919475479,0.614082336426,0.614082336426
844,844,844,letter,note,0.273740679026,0.28055241704,0.385660529137,0.274310201406,0.66559219985,0.533412403893,0.441457778215,0.441457778215
845,845,845,letters,alphabet,0.156468659639,0.499861866236,0.526865541935,0.497006058693,0.514351939398,0.591794334313,0.591542720795,0.591542720795
846,846,846,lettuce,salad,0.667182505131,0.850311219692,0.907581150532,0.880817651749,0.706726437338,0.741115651107,0.942458152771,0.942458152771
847,847,847,liar,traitor,0.770730853081,0.652811169624,0.749181866646,0.721314251423,0.600241216986,0.484679452123,0.759083330631,0.759083330631
848,848,848,liberty,statue,0.215511083603,0.186190053821,0.0854816809297,0.219026342034,0.384833541951,0.501739109028,0.444439351559,0.444439351559
849,849,849,lid,cover,0.104871399701,0.329270333052,0.342646986246,0.306470006704,0.364471991306,0.300960551325,0.477093249559,0.477093249559
850,850,850,lie,slander,0.221851050854,0.25374224782,0.211081653833,0.191281303763,0.249057103313,0.443792610725,0.187693968415,0.187693968415
851,851,851,life,death,0.330212652683,0.435569256544,0.475871264935,0.421860218048,0.675519363721,0.659604427518,0.546948730946,0.546948730946
852,852,852,light,dim,0.290435045958,0.358769983053,0.617640137672,0.354193806648,0.41142518923,0.467841104418,0.550886034966,0.550886034966
853,853,853,lightning,thunder,0.53750449419,0.73281699419,0.822795927525,0.732344031334,0.646247918032,0.703314839763,0.416816651821,0.416816651821
854,854,854,like,attract,0.233172774315,0.26474031806,0.265167057514,0.247485697269,0.417169526925,0.429178791689,0.376352578402,0.376352578402
855,855,855,line,border,0.319239705801,0.363979041576,0.348958849907,0.367715477943,0.492712429633,0.434928311586,0.241985365748,0.241985365748
856,856,856,lion,roar,0.141048595309,0.283367931843,0.505625009537,0.319245398045,0.337710699042,0.487668131734,0.292787373066,0.292787373066
857,857,857,listen,hear,0.596943736076,0.663300693035,0.698628246784,0.680568695068,0.851084138602,0.845709449815,0.858555495739,0.858555495739
858,858,858,little,lots,0.394655972719,0.345201343298,0.412583500147,0.334839820862,0.662231013575,0.660365391169,0.571061551571,0.571061551571
859,859,859,live,survive,0.638981282711,0.426066935062,0.451410293579,0.455863267183,0.526660440615,0.499678371601,0.566109657288,0.566109657288
860,860,860,load,unload,0.456742703915,0.506301760674,0.596972644329,0.527081012726,0.546009012312,0.328827517289,0.662016868591,0.662016868591
861,861,861,lobster,crab,0.756550252438,0.881357908249,0.915832519531,0.89848959446,0.86403711684,0.82526103686,0.931760489941,0.931760489941
862,862,862,lock,key,-0.0180057939142,0.073353625834,0.162059158087,0.0754715800285,0.426351384949,0.552533937492,0.376185625792,0.376185625792
863,863,863,log,cabin,0.470710337162,0.367199867964,0.307247906923,0.368485957384,0.569374389757,0.297103440948,0.590756237507,0.590756237507
864,864,864,lonely,alone,0.311679661274,0.296204984188,0.368722051382,0.266566336155,0.331079481222,0.759357417783,0.336009532213,0.336009532213
865,865,865,long,lasting,0.299315094948,0.386494964361,0.40817502141,0.409854441881,0.455958944557,0.450732446658,0.44736546278,0.44736546278
866,866,866,look,glance,0.471650362015,0.680783331394,0.642721235752,0.645501375198,0.439695462537,0.341058390623,0.435018151999,0.435018151999
867,867,867,looks,appearance,0.173501864076,0.166367962956,0.203552633524,0.175827920437,0.508751810272,0.536050159238,0.376398861408,0.376398861408
868,868,868,loose,tight,0.552416265011,0.685242235661,0.714821994305,0.717880427837,0.595144414616,0.657742063608,0.581337690353,0.581337690353
869,869,869,lose,win,0.476594716311,0.494484096766,0.542324721813,0.511621296406,0.72997507553,0.641776379055,0.631714344025,0.631714344025
870,870,870,loser,winner,0.505671024323,0.448613643646,0.595168828964,0.545813500881,0.600369519126,0.452846850137,0.733320295811,0.733320295811
871,871,871,lost,confusion,0.0411354079843,0.172156885266,0.141252502799,0.111807487905,0.25983164856,0.426505098286,0.194009795785,0.194009795785
872,872,872,lot,parking,0.0159853696823,0.0528200827539,0.0399031601846,0.0161985028535,0.50234014123,0.491783249628,0.382916241884,0.382916241884
873,873,873,lots,abundance,0.355973988771,0.393595725298,0.346402078867,0.379966080189,0.418803545249,0.331547285629,0.671417891979,0.671417891979
874,874,874,loud,noisy,0.495576500893,0.573487818241,0.636903107166,0.649462282658,0.683925304294,0.611639660765,0.755113840103,0.755113840103
875,875,875,love,like,0.225958168507,0.460331648588,0.507577300072,0.51699590683,0.689701504074,0.787491129064,0.712620854378,0.712620854378
876,876,876,loving,caring,0.535090863705,0.563273668289,0.636181771755,0.590938925743,0.733150532675,0.731918609219,0.700353205204,0.700353205204
877,877,877,low,high,0.564117014408,0.775880038738,0.828870892525,0.814456403255,0.823393862241,0.787483760127,0.826725542545,0.826725542545
878,878,878,luck,chance,0.452655315399,0.366700917482,0.470701754093,0.39763495326,0.64946358829,0.576059327815,0.416118144989,0.416118144989
879,879,879,luggage,baggage,0.758141696453,0.796465814114,0.846445322037,0.819915175438,0.839575941216,0.736680052216,0.846092641354,0.846092641354
880,880,880,lunch,noon,0.379342645407,0.499048769474,0.422199934721,0.474973738194,0.490376052077,0.497130947368,0.339748561382,0.339748561382
881,881,881,machine,copier,0.586807310581,0.475142627954,0.476017087698,0.444580554962,0.328551541209,0.398513976534,0.538038611412,0.538038611412
882,882,882,mad,pissed,0.464241921902,0.489738821983,0.615194320679,0.555393278599,0.180406121399,0.850086665163,0.481353491545,0.481353491545
883,883,883,magazine,issue,0.161300420761,0.45557320118,0.377467781305,0.432498276234,0.497190157417,0.662295256598,0.354239583015,0.354239583015
884,884,884,magic,magician,0.642236828804,0.582314610481,0.609580636024,0.643471896648,0.563810523173,0.533817291289,0.547057628632,0.547057628632
885,885,885,maid,cleaner,0.062817953527,0.141367673874,0.283381909132,0.170295834541,0.12590774534,0.341985666734,0.284283161163,0.284283161163
886,886,886,mail,mailman,0.116089068353,0.249238029122,0.493299663067,0.362341105938,0.0777980096081,0.332888177339,0.263780146837,0.263780146837
887,887,887,major,minor,0.406173199415,0.609968185425,0.595451176167,0.607185840607,0.697829517713,0.760643810998,0.5143622756,0.5143622756
888,888,888,make,create,0.58016705513,0.589267551899,0.625150024891,0.574330568314,0.764619650158,0.704583482056,0.598411381245,0.598411381245
889,889,889,maker,manufacturer,0.790829479694,0.491445541382,0.665617763996,0.533172369003,0.874537597705,0.51148860489,0.888968765736,0.888968765736
890,890,890,male,female,0.794430613518,0.903710007668,0.935235977173,0.911802530289,0.946497584631,0.757248517222,0.93023443222,0.93023443222
891,891,891,mall,plaza,0.54093003273,0.581441044807,0.600302457809,0.625817477703,0.690346446146,0.618791889632,0.71641933918,0.71641933918
892,892,892,man,mister,0.287285029888,0.308094680309,0.293170839548,0.30217218399,0.196855685084,0.409168068796,0.650972545147,0.650972545147
893,893,893,manners,etiquette,0.677492618561,0.420388549566,0.548848569393,0.470457583666,0.654759771128,0.63989463694,0.783139824867,0.783139824867
894,894,894,many,variety,0.389882087708,0.431569457054,0.403413116932,0.433763504028,0.685338570691,0.46778276831,0.498234719038,0.498234719038
895,895,895,map,atlas,0.435312390327,0.454029083252,0.547964274883,0.491366565228,0.457192817074,0.417720628287,0.02805669792,0.02805669792
896,896,896,marker,highlight,0.0364482849836,0.065516911447,0.177419677377,0.0724115520716,0.258929587025,0.210572092824,0.387678980827,0.387678980827
897,897,897,market,stock,0.62998265028,0.537676036358,0.584035813808,0.580018222332,0.799161062227,0.706580121849,0.790050566196,0.790050566196
898,898,898,marriage,threshold,0.114033058286,0.101143360138,0.082193814218,0.041997846216,0.252743478582,0.254832217396,0.305153459311,0.305153459311
899,899,899,marry,single,0.267484039068,-0.0188715141267,0.0141352964565,0.0017631725641,0.246223306982,0.485416777627,0.216353207827,0.216353207827
900,900,900,massage,rub,0.259836733341,0.405422687531,0.360557496548,0.327538371086,0.3920520934,0.631494330789,0.523351311684,0.523351311684
901,901,901,material,cloth,0.18836119771,0.249067172408,0.30178925395,0.294920414686,0.38014598929,0.365391579501,0.13662570715,0.13662570715
902,902,902,math,calculator,0.308941960335,0.37843477726,0.400683134794,0.344148099422,0.343374744476,0.543598907592,0.53674864769,0.53674864769
903,903,903,maybe,might,0.155658870935,0.312171012163,0.377546846867,0.295724838972,0.741052888137,0.807257049293,0.649088144302,0.649088144302
904,904,904,maze,labyrinth,0.69575959444,0.654931426048,0.825070917606,0.772917985916,0.596290525304,0.564408677758,0.651901364326,0.651901364326
905,905,905,me,self,0.0519650056958,0.0252106487751,0.114799670875,0.0138730956241,0.453892400067,0.510422521496,0.396151393652,0.396151393652
906,906,906,mean,harsh,0.159171059728,0.167584717274,0.103548616171,0.114536076784,0.374653109806,0.541421582591,0.287371307611,0.287371307611
907,907,907,meaning,definition,0.67730730772,0.57376152277,0.657072722912,0.611290693283,0.600394025802,0.618988389402,0.742933392525,0.742933392525
908,908,908,meat,raw,0.654854476452,0.62491196394,0.68978446722,0.619412064552,0.623280989178,0.587030930579,0.663506567478,0.663506567478
909,909,909,medicine,ointment,0.412485748529,0.187618777156,0.407823592424,0.342805057764,0.192220168072,0.285930596651,0.49848818779,0.49848818779
910,910,910,meet,introduce,0.268099725246,0.56699514389,0.622714102268,0.57084852457,0.526963893172,0.569653337047,0.480051070452,0.480051070452
911,911,911,meeting,conference,0.554747223854,0.736830294132,0.728512525558,0.735925078392,0.864815517003,0.743943542891,0.688481509686,0.688481509686
912,912,912,men,women,0.739213645458,0.813122212887,0.844235539436,0.817807674408,0.861237595082,0.74757521294,0.835992753506,0.835992753506
913,913,913,messy,slob,0.380161553621,0.443087011576,0.440986037254,0.431031197309,0.148510385096,0.385403898889,0.505174636841,0.505174636841
914,914,914,metal,steel,0.870440721512,0.822701632977,0.854775011539,0.801334381104,0.762036344122,0.619510022385,0.70298409462,0.70298409462
915,915,915,middle,center,0.0526746548712,0.11830163002,0.391776502132,0.150755792856,0.501913897693,0.552059909424,0.321933865547,0.321933865547
916,916,916,mile,kilometer,0.727688193321,0.760177731514,0.767806708813,0.770485639572,0.851086650525,0.378185725956,0.774090409279,0.774090409279
917,917,917,milk,dairy,0.810048162937,0.743400216103,0.759624302387,0.766068935394,0.761276275288,0.714798206754,0.802149474621,0.802149474621
918,918,918,mind,psychology,0.0853949338198,0.155290752649,0.187663376331,0.142030417919,0.444429854589,0.523319210336,0.282783687115,0.282783687115
919,919,919,mine,own,0.0498353838921,0.178254321218,0.238744184375,0.131638661027,0.322771088114,0.712770940277,0.111663118005,0.111663118005
920,920,920,minimum,maximum,0.458778232336,0.7699457407,0.836832225323,0.794300913811,0.835951270165,0.696182993217,0.757622539997,0.757622539997
921,921,921,minor,major,0.406173199415,0.609968185425,0.595451176167,0.607185840607,0.697829517713,0.760643810998,0.5143622756,0.5143622756
922,922,922,minus,plus,0.394755244255,0.551186859608,0.555108606815,0.593191921711,0.531752866365,0.460389633167,0.522063195705,0.522063195705
923,923,923,minute,hour,0.620000600815,0.694238960743,0.721931159496,0.666176497936,0.655061639024,0.826441018756,0.367581188679,0.367581188679
924,924,924,mirror,reflection,0.401111066341,0.188279047608,0.231831401587,0.186119422317,0.555468827343,0.687756008343,0.452781438828,0.452781438828
925,925,925,mist,fog,0.788408100605,0.818277001381,0.90303426981,0.840409576893,0.724365417914,0.597348290485,0.771864831448,0.771864831448
926,926,926,mistake,folly,0.426949471235,0.296398282051,0.453397601843,0.338892698288,0.358242215872,0.26232895313,0.490994632244,0.490994632244
927,927,927,misunderstand,confuse,0.674084544182,0.683173596859,0.721604824066,0.661595880985,0.580583062719,0.549899154551,0.770782530308,0.770782530308
928,928,928,mix,blend,0.614466667175,0.841124117374,0.864329755306,0.86625623703,0.817716365801,0.550964376443,0.935855388641,0.935855388641
929,929,929,mixture,combination,0.667062819004,0.678712844849,0.727102458477,0.666541039944,0.525769051538,0.627105594586,0.541384875774,0.541384875774
930,930,930,mob,gangster,0.516032278538,0.331628143787,0.490397453308,0.390815466642,0.624725070611,0.519154221388,0.466964751482,0.466964751482
931,931,931,modern,contemporary,0.500412583351,0.77268832922,0.76178830862,0.772222220898,0.801661568661,0.751039829387,0.842953383923,0.842953383923
932,932,932,mold,shape,0.437887430191,0.23197427392,0.506632506847,0.17243565619,0.47777222149,0.561963228193,0.7249314785,0.7249314785
933,933,933,mom,dad,0.906351923943,0.890488743782,0.917792916298,0.904994249344,0.862673045666,0.928729784136,0.908242702484,0.908242702484
934,934,934,money,wallet,0.268362462521,0.353768348694,0.307132452726,0.304875165224,0.362411705912,0.515814844243,0.456581264734,0.456581264734
935,935,935,monk,monastery,0.541718304157,0.666153728962,0.766859233379,0.684347510338,0.583460647492,0.497443752166,0.657858908176,0.657858908176
936,936,936,monkey,primate,0.439213246107,0.344321548939,0.463999122381,0.324795424938,0.303845427277,0.379341335031,0.437407046556,0.437407046556
937,937,937,monster,frankenstein,0.645108759403,0.556372642517,0.457457184792,0.560980260372,0.616194320288,0.344711218544,0.745058476925,0.745058476925
938,938,938,monthly,weekly,0.586510658264,0.803639054298,0.856294393539,0.835959255695,0.80297074289,0.792513979483,0.306028276682,0.306028276682
939,939,939,moon,crescent,0.310491234064,0.232048481703,0.625896453857,0.266815871,0.400397975661,0.491788456804,0.292760938406,0.292760938406
940,940,940,more,extra,0.291436880827,0.165921971202,0.213309079409,0.13126064837,0.65137227646,0.650449795378,0.453408002853,0.453408002853
941,941,941,morning,dew,0.242149606347,0.367865234613,0.355397552252,0.332341700792,0.236213138828,0.445236853761,0.312484771013,0.312484771013
942,942,942,most,least,0.344687908888,0.182132139802,0.214850455523,0.187482431531,0.756767318768,0.76595033358,0.443927288055,0.443927288055
943,943,943,motel,hotel,0.588859140873,0.748959958553,0.772516131401,0.797655522823,0.705735190141,0.584285061692,0.79040157795,0.79040157795
944,944,944,mother,father,0.89741396904,0.895120859146,0.927759885788,0.900353968143,0.865666117432,0.862898570601,0.909424185753,0.909424185753
945,945,945,motion,movement,-0.0657248571515,0.436226755381,0.485045462847,0.455334693193,0.413033818621,0.635500986208,0.269415259361,0.269415259361
946,946,946,motorcycle,helmet,0.473429441452,0.6173864007,0.662537992001,0.621473789215,0.474202190904,0.708195021549,0.507145047188,0.507145047188
947,947,947,mountain,hill,0.420744776726,0.398739844561,0.754343509674,0.406720250845,0.685805073559,0.731418926746,0.454833716154,0.454833716154
948,948,948,mountains,smoky,0.0314401686192,0.396780848503,0.352453500032,0.351136386395,0.437108930549,0.522226396198,0.466418415308,0.466418415308
949,949,949,mouse,squeak,0.266152411699,0.354703038931,0.292636483908,0.284527868032,0.2449246055,0.319172433799,0.435158252716,0.435158252716
950,950,950,mouth,jaw,0.617854773998,0.669836103916,0.751227140427,0.644274950027,0.558162167749,0.585823685631,0.740162849426,0.740162849426
951,951,951,move,shift,0.362150132656,0.471933662891,0.426004081964,0.458754092455,0.663394406462,0.477895393258,0.37644982338,0.37644982338
952,952,952,movement,motion,-0.0657248571515,0.436226755381,0.485045462847,0.455334693193,0.413033818621,0.635500986208,0.269415259361,0.269415259361
953,953,953,movie,production,0.091416247189,0.255618423223,0.280469417572,0.274270057678,0.522981448555,0.437286245015,0.459753155708,0.459753155708
954,954,954,mud,dirt,0.770609021187,0.677415251732,0.753944456577,0.705743193626,0.717605682289,0.667088382546,0.823950648308,0.823950648308
955,955,955,multiply,divide,0.372637867928,0.494640380144,0.469455122948,0.487189590931,0.462665543206,0.489235041476,0.513545095921,0.513545095921
956,956,956,murder,kill,0.405989050865,0.426640063524,0.476119250059,0.406657040119,0.562095868351,0.654237889016,0.48470389843,0.48470389843
957,957,957,murderer,killer,0.520304322243,0.478296875954,0.55090367794,0.468530625105,0.731383974831,0.516417162551,0.762905061245,0.762905061245
958,958,958,muscle,flex,0.429849088192,0.441689759493,0.548814356327,0.387557029724,0.502560388123,0.511512326426,0.650096178055,0.650096178055
959,959,959,music,tune,0.449700593948,0.541315197945,0.651950001717,0.553075015545,0.640838160483,0.731332897687,0.696364402771,0.696364402771
960,960,960,mustache,beard,0.810681521893,0.560619354248,0.872244536877,0.775673151016,0.798477355286,0.789832878572,0.86629140377,0.86629140377
961,961,961,nail,tack,0.512636184692,0.417522907257,0.519280433655,0.424780458212,0.226927453964,0.335228316442,0.50989061594,0.50989061594
962,962,962,naked,strip,0.251490592957,0.280592352152,0.288845449686,0.263382852077,0.309048473231,0.676492410201,0.262058317661,0.262058317661
963,963,963,name,initial,-0.00165320350789,-0.00184689590242,0.0601967424154,0.0242918077856,0.418381456149,0.294998192582,0.273859977722,0.273859977722
964,964,964,narrow,wide,0.411442577839,0.404693633318,0.436989247799,0.369893074036,0.634932163152,0.500261337285,0.347511380911,0.347511380911
965,965,965,nature,natural,0.25841525197,0.572085797787,0.546807587147,0.548234760761,0.719840157499,0.513160749353,0.513305485249,0.513305485249
966,966,966,navy,army,0.650882482529,0.717240989208,0.591738641262,0.726277291775,0.670873006814,0.760137538374,0.483374387026,0.483374387026
967,967,967,near,far,0.13922804594,0.199250966311,0.13069717586,0.17929443717,0.595492179658,0.616332203918,0.242574483156,0.242574483156
968,968,968,neat,organize,0.0603850521147,0.0833781957626,0.159353911877,0.092474244535,0.153936045837,0.311152938133,0.0982225835323,0.0982225835323
969,969,969,neck,scarf,0.675775289536,0.665871798992,0.631031930447,0.689273953438,0.524242100331,0.532699502041,0.635157704353,0.635157704353
970,970,970,necklace,bead,0.613808631897,0.754689693451,0.772361755371,0.762069284916,0.571233780499,0.776188224504,0.672903239727,0.672903239727
971,971,971,need,necessary,0.556836485863,0.468976020813,0.497188389301,0.492670208216,0.789034242463,0.550701841262,0.45066344738,0.45066344738
972,972,972,needle,injection,0.339358657598,0.485386431217,0.539396107197,0.55444675684,0.363065028069,0.492107373018,0.501557230949,0.501557230949
973,973,973,negative,positive,0.582168102264,0.779691636562,0.814406692982,0.808094084263,0.812529991326,0.837678114997,0.757226347923,0.757226347923
974,974,974,neighborhood,community,0.105531685054,0.271872222424,0.365636706352,0.292233169079,0.668730681487,0.544593821252,0.517039299011,0.517039299011
975,975,975,nephew,niece,0.844755828381,0.814473330975,0.918857038021,0.850664019585,0.812458014846,0.922701736485,0.650740563869,0.650740563869
976,976,976,nervous,anxiety,0.519782543182,0.452124923468,0.479766219854,0.517942368984,0.571112028795,0.530489626999,0.659874379635,0.659874379635
977,977,977,neuron,axon,,0.39005318284,0.775194168091,0.503490447998,0.555732657336,0.258827358923,0.634734869003,0.634734869003
978,978,978,neutron,electron,0.710188984871,0.801639556885,0.810813724995,0.787098646164,0.505858513455,0.391286127841,0.663311421871,0.663311421871
979,979,979,never,ever,0.50529551506,0.753670871258,0.709740936756,0.770348548889,0.848898798238,0.88555086698,0.839198708534,0.839198708534
980,980,980,new,old,0.123601511121,0.251249074936,0.210605487227,0.222922474146,0.643248816877,0.759303914765,0.334799230099,0.334799230099
981,981,981,news,update,0.122263461351,0.508104205132,0.432012021542,0.509505331516,0.553657569345,0.641576479646,0.253745824099,0.253745824099
982,982,982,newspaper,column,0.198061913252,0.413753211498,0.363649427891,0.327750951052,0.555150747187,0.649752013885,0.352999061346,0.352999061346
983,983,983,newton,fig,0.284485757351,0.0307076405734,0.171648383141,0.0424416661263,0.1743587175,0.347210608903,0.147604092956,0.147604092956
984,984,984,nice,friendliness,0.185273379087,0.208381578326,0.248999044299,0.166906744242,0.150375618498,-0.00187443270567,0.363194912672,0.363194912672
985,985,985,night,moonlight,0.332318216562,0.392486393452,0.485696315765,0.431135684252,0.297170829077,0.379896680169,0.438684165478,0.438684165478
986,986,986,no,refuse,0.0690837353468,0.142611309886,0.125363484025,0.143288597465,0.507113748617,0.355225456456,0.281440645456,0.281440645456
987,987,987,noise,sound,0.173291862011,0.54934245348,0.553324997425,0.578913986683,0.660659251823,0.755646962748,0.6701207757,0.6701207757
988,988,988,none,all,0.310020267963,0.40306186676,0.439699977636,0.343825429678,0.746039789144,0.713514488531,0.539194464684,0.539194464684
989,989,989,noodles,oodles,,0.337739616632,0.280431360006,0.406303286552,0.230455750895,0.540915533542,0.378917038441,0.378917038441
990,990,990,normal,standard,0.31700283289,0.320954561234,0.394766062498,0.320301860571,0.517294738279,0.384170133811,0.269466727972,0.269466727972
991,991,991,nose,snot,0.481042087078,0.635433137417,0.722840666771,0.720255851746,0.230676933975,0.353150590555,0.549511909485,0.549511909485
992,992,992,not,maybe,0.41126537323,0.343249320984,0.333731949329,0.389149039984,0.675498520727,0.819409217658,0.687160551548,0.687160551548
993,993,993,note,message,0.119337141514,0.314514189959,0.3648224473,0.312409102917,0.615538197893,0.643832778375,0.441768884659,0.441768884659
994,994,994,nothing,worthless,0.408651173115,0.376846909523,0.392258107662,0.315966308117,0.359914647048,0.466087283879,0.481573849916,0.481573849916
995,995,995,novel,mystery,0.564413666725,0.366742402315,0.422822773457,0.395019978285,0.673880693618,0.509996169566,0.723445296288,0.723445296288
996,996,996,novice,beginner,0.704411029816,0.708687186241,0.731179475784,0.731984257698,0.559504564285,0.595804007572,0.695475161076,0.695475161076
997,997,997,now,happening,0.138263493776,0.250968426466,0.275912046432,0.26907607913,0.509713008186,0.691328860246,0.515865266323,0.515865266323
998,998,998,number,digit,0.144306570292,0.368133127689,0.368891716003,0.39077347517,0.4734392346,0.531273405575,0.451124638319,0.451124638319