-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwb_english.csv
We can't make this file beautiful and searchable because it's too large.
12973 lines (12973 loc) · 711 KB
/
wb_english.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
"","X1","X2","X3","X4"
"1","about",1,"[0.06-1)",1
"2","other",0.797631201396727,"[0.06-1)",1
"3","which",0.660708907583671,"[0.06-1)",1
"4","their",0.638157422204859,"[0.06-1)",1
"5","there",0.571574768100135,"[0.06-1)",1
"6","first",0.471301472179129,"[0.06-1)",1
"7","would",0.466803841908007,"[0.06-1)",1
"8","these",0.441011645029754,"[0.06-1)",1
"9","click",0.437541000228863,"[0.06-1)",1
"10","price",0.408932354973781,"[0.06-1)",1
"11","state",0.369358092939343,"[0.06-1)",1
"12","email",0.361895605590639,"[0.06-1)",1
"13","world",0.352100982680348,"[0.06-1)",1
"14","music",0.33750498068446,"[0.06-1)",1
"15","after",0.304017082901344,"[0.06-1)",1
"16","video",0.29787224876197,"[0.06-1)",1
"17","where",0.293843928053626,"[0.06-1)",1
"18","books",0.283443829142534,"[0.06-1)",1
"19","links",0.277098816318295,"[0.06-1)",1
"20","years",0.275398992240866,"[0.06-1)",1
"21","order",0.274412533893676,"[0.06-1)",1
"22","items",0.269418898786116,"[0.06-1)",1
"23","group",0.262357595392199,"[0.06-1)",1
"24","under",0.255390671056363,"[0.06-1)",1
"25","games",0.249386496586612,"[0.06-1)",1
"26","could",0.246436007742008,"[0.06-1)",1
"27","great",0.245764304670299,"[0.06-1)",1
"28","hotel",0.242900896643115,"[0.06-1)",1
"29","store",0.237467053636076,"[0.06-1)",1
"30","terms",0.226378260194737,"[0.06-1)",1
"31","right",0.223047829979207,"[0.06-1)",1
"32","local",0.220702233471793,"[0.06-1)",1
"33","those",0.220108140541757,"[0.06-1)",1
"34","using",0.219647355239291,"[0.06-1)",1
"35","phone",0.209209014134071,"[0.06-1)",1
"36","forum",0.207443650991444,"[0.06-1)",1
"37","based",0.205753816854736,"[0.06-1)",1
"38","black",0.199464719982663,"[0.06-1)",1
"39","check",0.199302447640797,"[0.06-1)",1
"40","index",0.197945312359752,"[0.06-1)",1
"41","being",0.197910133584411,"[0.06-1)",1
"42","women",0.197696039902557,"[0.06-1)",1
"43","today",0.195047339382226,"[0.06-1)",1
"44","south",0.194484812382384,"[0.06-1)",1
"45","pages",0.190751306196365,"[0.06-1)",1
"46","found",0.189124857438736,"[0.06-1)",1
"47","house",0.188557926061112,"[0.06-1)",1
"48","photo",0.185146289162216,"[0.06-1)",1
"49","power",0.184715159840445,"[0.06-1)",1
"50","while",0.184387968291147,"[0.06-1)",1
"51","three",0.182123747207836,"[0.06-1)",1
"52","total",0.181497747605441,"[0.06-1)",1
"53","place",0.180128890141813,"[0.06-1)",1
"54","think",0.17759069931579,"[0.06-1)",1
"55","north",0.177552356040255,"[0.06-1)",1
"56","posts",0.176747466801699,"[0.06-1)",1
"57","media",0.176429860867491,"[0.06-1)",1
"58","water",0.175407616441343,"[0.06-1)",1
"59","since",0.174693882253069,"[0.06-1)",1
"60","guide",0.173940565726846,"[0.06-1)",1
"61","board",0.173110925401378,"[0.06-1)",1
"62","white",0.171075170308762,"[0.06-1)",1
"63","small",0.169859054188476,"[0.06-1)",1
"64","times",0.165440004929642,"[0.06-1)",1
"65","sites",0.165280927249358,"[0.06-1)",1
"66","level",0.165124339106321,"[0.06-1)",1
"67","hours",0.161602191697945,"[0.06-1)",1
"68","image",0.161301701943689,"[0.06-1)",1
"69","title",0.160324908283337,"[0.06-1)",1
"70","shall",0.156483692521034,"[0.06-1)",1
"71","class",0.15576952303057,"[0.06-1)",1
"72","still",0.155236168614046,"[0.06-1)",1
"73","money",0.155049970955154,"[0.06-1)",1
"74","every",0.154333285841919,"[0.06-1)",1
"75","visit",0.152488082245272,"[0.06-1)",1
"76","tools",0.151260071940975,"[0.06-1)",1
"77","reply",0.150625963816316,"[0.06-1)",1
"78","value",0.148411347618581,"[0.06-1)",1
"79","press",0.146447990453768,"[0.06-1)",1
"80","learn",0.146265029845435,"[0.06-1)",1
"81","print",0.145305234165001,"[0.06-1)",1
"82","stock",0.143711340957153,"[0.06-1)",1
"83","point",0.14308550846515,"[0.06-1)",1
"84","sales",0.141223948429453,"[0.06-1)",1
"85","large",0.13520760180182,"[0.06-1)",1
"86","table",0.134781828164304,"[0.06-1)",1
"87","start",0.131987380481894,"[0.06-1)",1
"88","model",0.13141050888908,"[0.06-1)",1
"89","human",0.130895326301079,"[0.06-1)",1
"90","movie",0.129140546544855,"[0.06-1)",1
"91","march",0.129026560139232,"[0.06-1)",1
"92","yahoo",0.126949803493097,"[0.06-1)",1
"93","going",0.126583334480417,"[0.06-1)",1
"94","study",0.124703768911416,"[0.06-1)",1
"95","staff",0.123542006057342,"[0.06-1)",1
"96","again",0.122912885158904,"[0.06-1)",1
"97","never",0.121914577462198,"[0.06-1)",1
"98","users",0.121721769568357,"[0.06-1)",1
"99","topic",0.121462110996538,"[0.06-1)",1
"100","below",0.118771981772225,"[0.06-1)",1
"101","party",0.117961595009375,"[0.06-1)",1
"102","login",0.117548012278711,"[0.06-1)",1
"103","legal",0.115794271867605,"[0.06-1)",1
"104","above",0.115668612189756,"[0.06-1)",1
"105","quote",0.11350645316667,"[0.06-1)",1
"106","story",0.112847453745405,"[0.06-1)",1
"107","rates",0.11175164080354,"[0.06-1)",1
"108","young",0.111142010682958,"[0.06-1)",1
"109","field",0.110284005610259,"[0.06-1)",1
"110","paper",0.109998928325135,"[0.06-1)",1
"111","girls",0.107868042585264,"[0.06-1)",1
"112","night",0.106405694601736,"[0.06-1)",1
"113","texas",0.105482721084688,"[0.06-1)",1
"114","poker",0.105201963399391,"[0.06-1)",1
"115","issue",0.104690303987546,"[0.06-1)",1
"116","range",0.104598815531653,"[0.06-1)",1
"117","court",0.104113834274844,"[0.06-1)",1
"118","audio",0.103538910944644,"[0.06-1)",1
"119","light",0.103282073685336,"[0.06-1)",1
"120","write",0.103237662264659,"[0.06-1)",1
"121","offer",0.102898401269232,"[0.06-1)",1
"122","given",0.102339191206867,"[0.06-1)",1
"123","files",0.102324120295072,"[0.06-1)",1
"124","event",0.102316606033664,"[0.06-1)",1
"125","china",0.101466213043091,"[0.06-1)",1
"126","needs",0.100751895191206,"[0.06-1)",1
"127","might",0.100426009548479,"[0.06-1)",1
"128","month",0.100289029568159,"[0.06-1)",1
"129","major",0.0999338498813899,"[0.06-1)",1
"130","areas",0.0994399163986329,"[0.06-1)",1
"131","space",0.099047771078093,"[0.06-1)",1
"132","cards",0.0987129413611446,"[0.06-1)",1
"133","child",0.097614798655871,"[0.06-1)",1
"134","enter",0.0973268902761631,"[0.06-1)",1
"135","share",0.0972454015430628,"[0.06-1)",1
"136","added",0.0965249299529078,"[0.06-1)",1
"137","radio",0.0923473413518464,"[0.06-1)",1
"138","until",0.092187944123887,"[0.06-1)",1
"139","color",0.0920865138224594,"[0.06-1)",1
"140","track",0.0916133753937852,"[0.06-1)",1
"141","least",0.090671488241111,"[0.06-1)",1
"142","trade",0.0897395722801867,"[0.06-1)",1
"143","green",0.0882733375535038,"[0.06-1)",1
"144","close",0.0879188703276234,"[0.06-1)",1
"145","drive",0.0878750980022967,"[0.06-1)",1
"146","short",0.0870239526073756,"[0.06-1)",1
"147","means",0.0863648203129701,"[0.06-1)",1
"148","daily",0.0862760439364555,"[0.06-1)",1
"149","beach",0.086117024133429,"[0.06-1)",1
"150","costs",0.0824065930393716,"[0.06-1)",1
"151","style",0.0823522177634978,"[0.06-1)",1
"152","front",0.0822397867072742,"[0.06-1)",1
"153","parts",0.0820369407775266,"[0.06-1)",1
"154","early",0.0815280195305844,"[0.06-1)",1
"155","miles",0.0815274717345693,"[0.06-1)",1
"156","sound",0.081526094907978,"[0.06-1)",1
"157","works",0.0803611031550714,"[0.06-1)",1
"158","rules",0.0796086523421932,"[0.06-1)",1
"159","final",0.0796008617372591,"[0.06-1)",1
"160","adult",0.0795470701249966,"[0.06-1)",1
"161","thing",0.0794399270936979,"[0.06-1)",1
"162","cheap",0.0791123108394535,"[0.06-1)",1
"163","third",0.0778402159987077,"[0.06-1)",1
"164","gifts",0.0777775911757027,"[0.06-1)",1
"165","cover",0.077035224048399,"[0.06-1)",1
"166","often",0.0754454181161747,"[0.06-1)",1
"167","watch",0.0750015647646439,"[0.06-1)",1
"168","deals",0.0743355670862523,"[0.06-1)",1
"169","words",0.0741074614018648,"[0.06-1)",1
"170","linux",0.0740618834691373,"[0.06-1)",1
"171","james",0.0738022085938653,"[0.06-1)",1
"172","heart",0.0735687317369435,"[0.06-1)",1
"173","error",0.0728735606600605,"[0.06-1)",1
"174","clear",0.0721000718716523,"[0.06-1)",1
"175","makes",0.0715962853971784,"[0.06-1)",1
"176","india",0.0712394509099473,"[0.06-1)",1
"177","taken",0.0709361895687108,"[0.06-1)",1
"178","known",0.0704272935921204,"[0.06-1)",1
"179","cases",0.0703132647975196,"[0.06-1)",1
"180","quick",0.0697662244475189,"[0.06-1)",1
"181","whole",0.0694547714364087,"[0.06-1)",1
"182","later",0.069173898811769,"[0.06-1)",1
"183","basic",0.0691594311277289,"[0.06-1)",1
"184","shows",0.0691304207637658,"[0.06-1)",1
"185","along",0.068021882161796,"[0.06-1)",1
"186","among",0.068011149598799,"[0.06-1)",1
"187","death",0.0678360839374987,"[0.06-1)",1
"188","speed",0.0677699881093864,"[0.06-1)",1
"189","brand",0.0675024745339945,"[0.06-1)",1
"190","stuff",0.0663913363464712,"[0.06-1)",1
"191","japan",0.0661192439463523,"[0.06-1)",1
"192","doing",0.0658838392061335,"[0.06-1)",1
"193","loans",0.0658833395053043,"[0.06-1)",1
"194","shoes",0.065829765544137,"[0.06-1)",1
"195","entry",0.0657989406058741,"[0.06-1)",1
"196","notes",0.0651798332881627,"[0.06-1)",1
"197","force",0.064561522394122,"[0.06-1)",1
"198","river",0.0642713152275653,"[0.06-1)",1
"199","album",0.0635136187787396,"[0.06-1)",1
"200","views",0.0630400189623503,"[0.06-1)",1
"201","plans",0.0630092828779053,"[0.06-1)",1
"202","build",0.062933834574078,"[0.06-1)",1
"203","types",0.0628259587025747,"[0.06-1)",1
"204","lines",0.0626104278713539,"[0.06-1)",1
"205","apply",0.062231484271742,"[0.06-1)",1
"206","asked",0.0615722085069516,"[0.06-1)",1
"207","cross",0.0605110624120091,"[0.06-1)",1
"208","weeks",0.0599736769667735,"[0.008-0.06)",0.5
"209","lower",0.0591871804685261,"[0.008-0.06)",0.5
"210","union",0.0591847031588688,"[0.008-0.06)",0.5
"211","names",0.0586263245725985,"[0.008-0.06)",0.5
"212","leave",0.0578428164972546,"[0.008-0.06)",0.5
"213","teens",0.0577629466970202,"[0.008-0.06)",0.5
"214","woman",0.0575622797237431,"[0.008-0.06)",0.5
"215","cable",0.057129416529764,"[0.008-0.06)",0.5
"216","score",0.0565036949012401,"[0.008-0.06)",0.5
"217","shown",0.0560478299808378,"[0.008-0.06)",0.5
"218","flash",0.0557509995365695,"[0.008-0.06)",0.5
"219","ideas",0.0548689908902713,"[0.008-0.06)",0.5
"220","allow",0.0546594181558867,"[0.008-0.06)",0.5
"221","homes",0.05441561061608,"[0.008-0.06)",0.5
"222","super",0.0543746946556889,"[0.008-0.06)",0.5
"223","cause",0.0537236920780364,"[0.008-0.06)",0.5
"224","focus",0.0534971164726969,"[0.008-0.06)",0.5
"225","rooms",0.0533558234139309,"[0.008-0.06)",0.5
"226","voice",0.0526605830473734,"[0.008-0.06)",0.5
"227","comes",0.0523803878311987,"[0.008-0.06)",0.5
"228","brown",0.052262382624453,"[0.008-0.06)",0.5
"229","forms",0.0518136806260509,"[0.008-0.06)",0.5
"230","glass",0.0518121725566643,"[0.008-0.06)",0.5
"231","happy",0.0517405743132224,"[0.008-0.06)",0.5
"232","smith",0.0516476275134742,"[0.008-0.06)",0.5
"233","thank",0.0515470751529815,"[0.008-0.06)",0.5
"234","prior",0.0513143507004077,"[0.008-0.06)",0.5
"235","sport",0.0510981603945199,"[0.008-0.06)",0.5
"236","ready",0.0510848445494222,"[0.008-0.06)",0.5
"237","round",0.0504075877065073,"[0.008-0.06)",0.5
"238","built",0.0501354765574176,"[0.008-0.06)",0.5
"239","blood",0.050009457388434,"[0.008-0.06)",0.5
"240","earth",0.0497743640441643,"[0.008-0.06)",0.5
"241","basis",0.0488300028425233,"[0.008-0.06)",0.5
"242","award",0.0486268096492305,"[0.008-0.06)",0.5
"243","peter",0.0485367999165094,"[0.008-0.06)",0.5
"244","extra",0.0484027561880436,"[0.008-0.06)",0.5
"245","pussy",0.0482635931753896,"[0.008-0.06)",0.5
"246","rated",0.0481783570936567,"[0.008-0.06)",0.5
"247","quite",0.047913998236387,"[0.008-0.06)",0.5
"248","horse",0.0476498733336655,"[0.008-0.06)",0.5
"249","stars",0.047567559645852,"[0.008-0.06)",0.5
"250","lists",0.0474831982443633,"[0.008-0.06)",0.5
"251","owner",0.0474341264816947,"[0.008-0.06)",0.5
"252","takes",0.0471041258474741,"[0.008-0.06)",0.5
"253","bring",0.0469605258501328,"[0.008-0.06)",0.5
"254","input",0.046621088777415,"[0.008-0.06)",0.5
"255","agent",0.0465493397270345,"[0.008-0.06)",0.5
"256","valid",0.0465420463774117,"[0.008-0.06)",0.5
"257","grand",0.0461383378329532,"[0.008-0.06)",0.5
"258","trial",0.0460961159659904,"[0.008-0.06)",0.5
"259","units",0.0460672873855263,"[0.008-0.06)",0.5
"260","wrote",0.0459933398145319,"[0.008-0.06)",0.5
"261","ships",0.0459474953203506,"[0.008-0.06)",0.5
"262","metal",0.0457978524482185,"[0.008-0.06)",0.5
"263","funds",0.0454229488442175,"[0.008-0.06)",0.5
"264","guest",0.0450735161245705,"[0.008-0.06)",0.5
"265","seems",0.0450600217566643,"[0.008-0.06)",0.5
"266","trust",0.0449625931377336,"[0.008-0.06)",0.5
"267","grade",0.0442436010859228,"[0.008-0.06)",0.5
"268","panel",0.0438435567424875,"[0.008-0.06)",0.5
"269","floor",0.0438235597424206,"[0.008-0.06)",0.5
"270","match",0.0436382139389393,"[0.008-0.06)",0.5
"271","plant",0.0434059924478852,"[0.008-0.06)",0.5
"272","sense",0.0429022369499717,"[0.008-0.06)",0.5
"273","stage",0.0428115057894629,"[0.008-0.06)",0.5
"274","goods",0.0428024190600289,"[0.008-0.06)",0.5
"275","maybe",0.0423038806670205,"[0.008-0.06)",0.5
"276","spain",0.0420247891946023,"[0.008-0.06)",0.5
"277","youth",0.0419212761270759,"[0.008-0.06)",0.5
"278","break",0.0417718672094919,"[0.008-0.06)",0.5
"279","dance",0.0416944233630383,"[0.008-0.06)",0.5
"280","apple",0.0412079315913249,"[0.008-0.06)",0.5
"281","enjoy",0.0408739423173698,"[0.008-0.06)",0.5
"282","block",0.0405097802432649,"[0.008-0.06)",0.5
"283","civil",0.0403472543827076,"[0.008-0.06)",0.5
"284","steel",0.0403124098281498,"[0.008-0.06)",0.5
"285","songs",0.040165673861657,"[0.008-0.06)",0.5
"286","fixed",0.0401190492472579,"[0.008-0.06)",0.5
"287","wrong",0.040071301324959,"[0.008-0.06)",0.5
"288","hands",0.0400149720802637,"[0.008-0.06)",0.5
"289","paris",0.0398060612660639,"[0.008-0.06)",0.5
"290","fully",0.0396311113592786,"[0.008-0.06)",0.5
"291","worth",0.0391896179325447,"[0.008-0.06)",0.5
"292","peace",0.039011065777857,"[0.008-0.06)",0.5
"293","coast",0.0388970989363769,"[0.008-0.06)",0.5
"294","grant",0.0388100629534517,"[0.008-0.06)",0.5
"295","agree",0.0387214430900842,"[0.008-0.06)",0.5
"296","blogs",0.0382953939242147,"[0.008-0.06)",0.5
"297","scale",0.0377486282873942,"[0.008-0.06)",0.5
"298","stand",0.0377365498743662,"[0.008-0.06)",0.5
"299","frame",0.037563147980427,"[0.008-0.06)",0.5
"300","chief",0.037253056307628,"[0.008-0.06)",0.5
"301","gives",0.0372119349237311,"[0.008-0.06)",0.5
"302","heard",0.0370386104711929,"[0.008-0.06)",0.5
"303","begin",0.0370372890763411,"[0.008-0.06)",0.5
"304","royal",0.0370146981969293,"[0.008-0.06)",0.5
"305","clean",0.0369939626504493,"[0.008-0.06)",0.5
"306","bible",0.0367485867184805,"[0.008-0.06)",0.5
"307","suite",0.0365439245840879,"[0.008-0.06)",0.5
"308","vegas",0.0365284183701026,"[0.008-0.06)",0.5
"309","piece",0.0361111755142785,"[0.008-0.06)",0.5
"310","sheet",0.0361082245893166,"[0.008-0.06)",0.5
"311","seven",0.0360509334409044,"[0.008-0.06)",0.5
"312","older",0.0360486370995735,"[0.008-0.06)",0.5
"313","cells",0.0359720035347255,"[0.008-0.06)",0.5
"314","looks",0.0357836619717869,"[0.008-0.06)",0.5
"315","calls",0.0355917687016496,"[0.008-0.06)",0.5
"316","whose",0.0355694574264537,"[0.008-0.06)",0.5
"317","naked",0.0351428824742305,"[0.008-0.06)",0.5
"318","lives",0.0348486679189686,"[0.008-0.06)",0.5
"319","stone",0.0346407051505508,"[0.008-0.06)",0.5
"320","tests",0.0345112443226751,"[0.008-0.06)",0.5
"321","buyer",0.0342573881497176,"[0.008-0.06)",0.5
"322","label",0.0337154238797551,"[0.008-0.06)",0.5
"323","canon",0.0335400851356199,"[0.008-0.06)",0.5
"324","waste",0.0334950835299498,"[0.008-0.06)",0.5
"325","chair",0.0332297016310152,"[0.008-0.06)",0.5
"326","phase",0.033196226566495,"[0.008-0.06)",0.5
"327","motor",0.0331087707696594,"[0.008-0.06)",0.5
"328","shirt",0.0330160929768829,"[0.008-0.06)",0.5
"329","crime",0.0329017992511736,"[0.008-0.06)",0.5
"330","count",0.0328887948020249,"[0.008-0.06)",0.5
"331","claim",0.0326764741206661,"[0.008-0.06)",0.5
"332","patch",0.0326066977880778,"[0.008-0.06)",0.5
"333","alone",0.0320578192237707,"[0.008-0.06)",0.5
"334","jones",0.0320339485233117,"[0.008-0.06)",0.5
"335","saint",0.0317339706974749,"[0.008-0.06)",0.5
"336","drugs",0.0316508353156389,"[0.008-0.06)",0.5
"337","joint",0.0316507546135474,"[0.008-0.06)",0.5
"338","fresh",0.03161393815637,"[0.008-0.06)",0.5
"339","dates",0.0313370647687091,"[0.008-0.06)",0.5
"340","upper",0.0312549499830202,"[0.008-0.06)",0.5
"341","prime",0.0312279612472078,"[0.008-0.06)",0.5
"342","limit",0.0312131984706716,"[0.008-0.06)",0.5
"343","began",0.0311962233155865,"[0.008-0.06)",0.5
"344","louis",0.0311878539380769,"[0.008-0.06)",0.5
"345","steps",0.0311838522555802,"[0.008-0.06)",0.5
"346","shops",0.0311732737602124,"[0.008-0.06)",0.5
"347","creek",0.0311065510643389,"[0.008-0.06)",0.5
"348","urban",0.0310482947515193,"[0.008-0.06)",0.5
"349","tours",0.03094153729688,"[0.008-0.06)",0.5
"350","labor",0.0308676679824591,"[0.008-0.06)",0.5
"351","admin",0.0308423674691871,"[0.008-0.06)",0.5
"352","heavy",0.0307060477787065,"[0.008-0.06)",0.5
"353","solid",0.0305090132147197,"[0.008-0.06)",0.5
"354","theme",0.0303406743580564,"[0.008-0.06)",0.5
"355","porno",0.0301006369917164,"[0.008-0.06)",0.5
"356","touch",0.0300236520874599,"[0.008-0.06)",0.5
"357","goals",0.0299712674631765,"[0.008-0.06)",0.5
"358","serve",0.0299150882102473,"[0.008-0.06)",0.5
"359","magic",0.0298979002951028,"[0.008-0.06)",0.5
"360","mount",0.029874658907923,"[0.008-0.06)",0.5
"361","smart",0.029865119757673,"[0.008-0.06)",0.5
"362","avoid",0.0297604882732826,"[0.008-0.06)",0.5
"363","birth",0.0295794115289244,"[0.008-0.06)",0.5
"364","virus",0.0295793569123574,"[0.008-0.06)",0.5
"365","abuse",0.0295660549251946,"[0.008-0.06)",0.5
"366","facts",0.0293801287187925,"[0.008-0.06)",0.5
"367","faith",0.0292944997238464,"[0.008-0.06)",0.5
"368","chain",0.0292878218295678,"[0.008-0.06)",0.5
"369","moved",0.029112664053759,"[0.008-0.06)",0.5
"370","reach",0.0290918143831092,"[0.008-0.06)",0.5
"371","sorry",0.0290167320917979,"[0.008-0.06)",0.5
"372","gamma",0.0288788130325948,"[0.008-0.06)",0.5
"373","truth",0.0288130310459495,"[0.008-0.06)",0.5
"374","films",0.0286941299644709,"[0.008-0.06)",0.5
"375","owned",0.0285719918324332,"[0.008-0.06)",0.5
"376","draft",0.0285584493693411,"[0.008-0.06)",0.5
"377","chart",0.0285534515458765,"[0.008-0.06)",0.5
"378","jesus",0.0284732149179535,"[0.008-0.06)",0.5
"379","clubs",0.0284346719251215,"[0.008-0.06)",0.5
"380","equal",0.0283943820173189,"[0.008-0.06)",0.5
"381","codes",0.0281263393948826,"[0.008-0.06)",0.5
"382","kinds",0.0281088955155287,"[0.008-0.06)",0.5
"383","teams",0.0280283156999236,"[0.008-0.06)",0.5
"384","funny",0.0279455903499263,"[0.008-0.06)",0.5
"385","tried",0.0278803602351592,"[0.008-0.06)",0.5
"386","named",0.0277970153539544,"[0.008-0.06)",0.5
"387","laser",0.027781686847605,"[0.008-0.06)",0.5
"388","harry",0.0276082132184734,"[0.008-0.06)",0.5
"389","taxes",0.0274506713234458,"[0.008-0.06)",0.5
"390","mouse",0.0274444197644587,"[0.008-0.06)",0.5
"391","brain",0.0274002219190131,"[0.008-0.06)",0.5
"392","dream",0.0273234236892916,"[0.008-0.06)",0.5
"393","false",0.0272890943238432,"[0.008-0.06)",0.5
"394","falls",0.0270747471232977,"[0.008-0.06)",0.5
"395","stats",0.0269794648539318,"[0.008-0.06)",0.5
"396","carry",0.0269467356723785,"[0.008-0.06)",0.5
"397","hello",0.0268684008422279,"[0.008-0.06)",0.5
"398","clips",0.0267755657211316,"[0.008-0.06)",0.5
"399","brief",0.0265743623642565,"[0.008-0.06)",0.5
"400","ended",0.0265655519783479,"[0.008-0.06)",0.5
"401","eight",0.0265483175983629,"[0.008-0.06)",0.5
"402","wants",0.0265242618537144,"[0.008-0.06)",0.5
"403","alert",0.0264708786429452,"[0.008-0.06)",0.5
"404","queen",0.0263845681636708,"[0.008-0.06)",0.5
"405","sweet",0.0263397956215131,"[0.008-0.06)",0.5
"406","truck",0.0261965909829029,"[0.008-0.06)",0.5
"407","votes",0.0261341601709866,"[0.008-0.06)",0.5
"408","ocean",0.0260274361384256,"[0.008-0.06)",0.5
"409","signs",0.0260035727745204,"[0.008-0.06)",0.5
"410","depth",0.0259876434859343,"[0.008-0.06)",0.5
"411","train",0.0259363242922932,"[0.008-0.06)",0.5
"412","feeds",0.0257543492276842,"[0.008-0.06)",0.5
"413","route",0.0256284009787204,"[0.008-0.06)",0.5
"414","frank",0.0255901310687233,"[0.008-0.06)",0.5
"415","anime",0.0255431803852676,"[0.008-0.06)",0.5
"416","speak",0.0255350482229968,"[0.008-0.06)",0.5
"417","query",0.0255021160634557,"[0.008-0.06)",0.5
"418","rural",0.0252694788343546,"[0.008-0.06)",0.5
"419","judge",0.0251935887069556,"[0.008-0.06)",0.5
"420","bytes",0.0251467586690509,"[0.008-0.06)",0.5
"421","fight",0.025094529742742,"[0.008-0.06)",0.5
"422","filed",0.0250412125609568,"[0.008-0.06)",0.5
"423","banks",0.0249297588967302,"[0.008-0.06)",0.5
"424","kelly",0.0248711113010427,"[0.008-0.06)",0.5
"425","leads",0.0248687163238222,"[0.008-0.06)",0.5
"426","wales",0.0243096913056472,"[0.008-0.06)",0.5
"427","minor",0.0242779794595504,"[0.008-0.06)",0.5
"428","noted",0.0242551073455772,"[0.008-0.06)",0.5
"429","spent",0.0242264833734462,"[0.008-0.06)",0.5
"430","helps",0.0241356258611779,"[0.008-0.06)",0.5
"431","cycle",0.024117115736009,"[0.008-0.06)",0.5
"432","sleep",0.0240406941160478,"[0.008-0.06)",0.5
"433","scene",0.0239435874903104,"[0.008-0.06)",0.5
"434","drink",0.0238478242690861,"[0.008-0.06)",0.5
"435","intel",0.0236364638610988,"[0.008-0.06)",0.5
"436","rings",0.0234996819677305,"[0.008-0.06)",0.5
"437","henry",0.0234517710109032,"[0.008-0.06)",0.5
"438","guess",0.0234308862878299,"[0.008-0.06)",0.5
"439","ahead",0.0231307837405789,"[0.008-0.06)",0.5
"440","devel",0.0229492692485122,"[0.008-0.06)",0.5
"441","delta",0.0228671185952271,"[0.008-0.06)",0.5
"442","cisco",0.0227386645055636,"[0.008-0.06)",0.5
"443","alpha",0.0226885664405394,"[0.008-0.06)",0.5
"444","bonus",0.0226776855161216,"[0.008-0.06)",0.5
"445","adobe",0.0224488396549757,"[0.008-0.06)",0.5
"446","trees",0.0223178911370294,"[0.008-0.06)",0.5
"447","dress",0.0222696679690805,"[0.008-0.06)",0.5
"448","refer",0.0220909389219296,"[0.008-0.06)",0.5
"449","babes",0.0220227285359855,"[0.008-0.06)",0.5
"450","layer",0.021938146222711,"[0.008-0.06)",0.5
"451","spend",0.0217759594739725,"[0.008-0.06)",0.5
"452","clock",0.02170386723591,"[0.008-0.06)",0.5
"453","ratio",0.0215677904668765,"[0.008-0.06)",0.5
"454","proof",0.0214431644279371,"[0.008-0.06)",0.5
"455","empty",0.0213624280991849,"[0.008-0.06)",0.5
"456","ideal",0.0212240704771006,"[0.008-0.06)",0.5
"457","specs",0.0212182582961673,"[0.008-0.06)",0.5
"458","parks",0.0211740498534774,"[0.008-0.06)",0.5
"459","cream",0.0211119589685525,"[0.008-0.06)",0.5
"460","boxes",0.021021463392937,"[0.008-0.06)",0.5
"461","hills",0.0210071766772234,"[0.008-0.06)",0.5
"462","aware",0.020950204261314,"[0.008-0.06)",0.5
"463","shape",0.0209297426128415,"[0.008-0.06)",0.5
"464","firms",0.0207847030206155,"[0.008-0.06)",0.5
"465","usage",0.0207383229580089,"[0.008-0.06)",0.5
"466","mixed",0.0207013548787201,"[0.008-0.06)",0.5
"467","exist",0.0206639156296447,"[0.008-0.06)",0.5
"468","wheel",0.0206588688958216,"[0.008-0.06)",0.5
"469","angel",0.0206190770585029,"[0.008-0.06)",0.5
"470","width",0.0205280467296347,"[0.008-0.06)",0.5
"471","noise",0.020519134447146,"[0.008-0.06)",0.5
"472","array",0.0205016049746647,"[0.008-0.06)",0.5
"473","greek",0.0204275188243212,"[0.008-0.06)",0.5
"474","sharp",0.0203012216814669,"[0.008-0.06)",0.5
"475","occur",0.0201178184343901,"[0.008-0.06)",0.5
"476","knows",0.020085932141348,"[0.008-0.06)",0.5
"477","coach",0.019983925512863,"[0.008-0.06)",0.5
"478","plate",0.0197887723673326,"[0.008-0.06)",0.5
"479","logic",0.0195559036292013,"[0.008-0.06)",0.5
"480","sizes",0.0193614645749048,"[0.008-0.06)",0.5
"481","plain",0.0193580922056872,"[0.008-0.06)",0.5
"482","costa",0.0193213474837022,"[0.008-0.06)",0.5
"483","trail",0.0192778857391518,"[0.008-0.06)",0.5
"484","buddy",0.0192471121567653,"[0.008-0.06)",0.5
"485","setup",0.0191849642097555,"[0.008-0.06)",0.5
"486","blues",0.0190645827747601,"[0.008-0.06)",0.5
"487","scope",0.0190338083772009,"[0.008-0.06)",0.5
"488","crazy",0.0187757385768598,"[0.008-0.06)",0.5
"489","bears",0.0186893555472204,"[0.008-0.06)",0.5
"490","mouth",0.0186514361614591,"[0.008-0.06)",0.5
"491","meter",0.0186470048829803,"[0.008-0.06)",0.5
"492","fruit",0.0185591912253552,"[0.008-0.06)",0.5
"493","lewis",0.0184556373991967,"[0.008-0.06)",0.5
"494","sugar",0.0183008972525377,"[0.008-0.06)",0.5
"495","stick",0.0182591547070881,"[0.008-0.06)",0.5
"496","genre",0.0182142916807672,"[0.008-0.06)",0.5
"497","slide",0.0182102101113516,"[0.008-0.06)",0.5
"498","exact",0.0181823744111647,"[0.008-0.06)",0.5
"499","bound",0.0181813195777667,"[0.008-0.06)",0.5
"500","storm",0.0181312035789444,"[0.008-0.06)",0.5
"501","micro",0.0181130806607802,"[0.008-0.06)",0.5
"502","dolls",0.0179868226462127,"[0.008-0.06)",0.5
"503","paint",0.017874200839591,"[0.008-0.06)",0.5
"504","delay",0.0178614026291206,"[0.008-0.06)",0.5
"505","pilot",0.0178602939943282,"[0.008-0.06)",0.5
"506","novel",0.0177880362762194,"[0.008-0.06)",0.5
"507","ultra",0.0177667488578612,"[0.008-0.06)",0.5
"508","plays",0.0177332085795297,"[0.008-0.06)",0.5
"509","truly",0.0176839909009582,"[0.008-0.06)",0.5
"510","lodge",0.0175597398414339,"[0.008-0.06)",0.5
"511","boobs",0.0174946238508367,"[0.008-0.06)",0.5
"512","broad",0.0174203420590592,"[0.008-0.06)",0.5
"513","swiss",0.017383097636245,"[0.008-0.06)",0.5
"514","foods",0.0172414630201423,"[0.008-0.06)",0.5
"515","guard",0.0172310573413745,"[0.008-0.06)",0.5
"516","newly",0.0172020420863755,"[0.008-0.06)",0.5
"517","raise",0.0172000962692804,"[0.008-0.06)",0.5
"518","drama",0.0170695887597331,"[0.008-0.06)",0.5
"519","bands",0.0169901363278911,"[0.008-0.06)",0.5
"520","lunch",0.0169616387075195,"[0.008-0.06)",0.5
"521","dildo",0.0169471579807171,"[0.008-0.06)",0.5
"522","audit",0.0169443766116646,"[0.008-0.06)",0.5
"523","polls",0.0168694671369532,"[0.008-0.06)",0.5
"524","tower",0.0168634095890548,"[0.008-0.06)",0.5
"525","yours",0.0168519083182569,"[0.008-0.06)",0.5
"526","shell",0.0167920004656657,"[0.008-0.06)",0.5
"527","solar",0.0166489164726065,"[0.008-0.06)",0.5
"528","catch",0.0166303199391376,"[0.008-0.06)",0.5
"529","doubt",0.0165571842800941,"[0.008-0.06)",0.5
"530","tasks",0.0165262990190556,"[0.008-0.06)",0.5
"531","doors",0.0164905276132045,"[0.008-0.06)",0.5
"532","forth",0.016425409992262,"[0.008-0.06)",0.5
"533","split",0.0163021575192234,"[0.008-0.06)",0.5
"534","twice",0.0162590821665051,"[0.008-0.06)",0.5
"535","shift",0.0161498376201369,"[0.008-0.06)",0.5
"536","marks",0.016097885852526,"[0.008-0.06)",0.5
"537","loved",0.0160746330529293,"[0.008-0.06)",0.5
"538","birds",0.016053789088488,"[0.008-0.06)",0.5
"539","saved",0.0160067104229277,"[0.008-0.06)",0.5
"540","shots",0.0159864476765797,"[0.008-0.06)",0.5
"541","treat",0.0158488432740162,"[0.008-0.06)",0.5
"542","piano",0.0158306168289265,"[0.008-0.06)",0.5
"543","risks",0.015656017446377,"[0.008-0.06)",0.5
"544","ports",0.0156283284772657,"[0.008-0.06)",0.5
"545","teach",0.0155533171059742,"[0.008-0.06)",0.5
"546","rapid",0.0155458900680381,"[0.008-0.06)",0.5
"547","hairy",0.0155376951374738,"[0.008-0.06)",0.5
"548","dutch",0.0154890782411391,"[0.008-0.06)",0.5
"549","boots",0.0154627718048276,"[0.008-0.06)",0.5
"550","holds",0.0154585638836525,"[0.008-0.06)",0.5
"551","pulse",0.0154016558663818,"[0.008-0.06)",0.5
"552","metro",0.0152752470448757,"[0.008-0.06)",0.5
"553","strip",0.0152530539697128,"[0.008-0.06)",0.5
"554","pearl",0.0152497068708471,"[0.008-0.06)",0.5
"555","penis",0.0150628978324744,"[0.008-0.06)",0.5
"556","heads",0.0149996037527307,"[0.008-0.06)",0.5
"557","logos",0.0149716482221656,"[0.008-0.06)",0.5
"558","milfs",0.0149655466549445,"[0.008-0.06)",0.5
"559","honda",0.0148858912451148,"[0.008-0.06)",0.5
"560","bills",0.014875935541645,"[0.008-0.06)",0.5
"561","opera",0.0148566591541932,"[0.008-0.06)",0.5
"562","asset",0.0148188221008687,"[0.008-0.06)",0.5
"563","blank",0.0147958211896182,"[0.008-0.06)",0.5
"564","humor",0.0147428007306745,"[0.008-0.06)",0.5
"565","lived",0.0147144449503424,"[0.008-0.06)",0.5
"566","tight",0.0146583154229443,"[0.008-0.06)",0.5
"567","meant",0.0145369166524923,"[0.008-0.06)",0.5
"568","plane",0.0145098512904516,"[0.008-0.06)",0.5
"569","meets",0.0144777913656369,"[0.008-0.06)",0.5
"570","grace",0.0143813784518174,"[0.008-0.06)",0.5
"571","villa",0.0143369189359539,"[0.008-0.06)",0.5
"572","inner",0.0143079737858021,"[0.008-0.06)",0.5
"573","roman",0.0142094316410431,"[0.008-0.06)",0.5
"574","taste",0.014111733199968,"[0.008-0.06)",0.5
"575","trips",0.0140804908933127,"[0.008-0.06)",0.5
"576","sides",0.0140773720427866,"[0.008-0.06)",0.5
"577","turns",0.0140713878604259,"[0.008-0.06)",0.5
"578","cache",0.014062480468973,"[0.008-0.06)",0.5
"579","lease",0.0140051485619288,"[0.008-0.06)",0.5
"580","proud",0.0139944795823978,"[0.008-0.06)",0.5
"581","giant",0.0139385342840166,"[0.008-0.06)",0.5
"582","seats",0.0139156638003887,"[0.008-0.06)",0.5
"583","alarm",0.0139067180958217,"[0.008-0.06)",0.5
"584","usual",0.0138946021848521,"[0.008-0.06)",0.5
"585","angle",0.013871038804479,"[0.008-0.06)",0.5
"586","vinyl",0.0138659390844343,"[0.008-0.06)",0.5
"587","worst",0.0138378351924484,"[0.008-0.06)",0.5
"588","honor",0.0136845036641138,"[0.008-0.06)",0.5
"589","eagle",0.013682861906414,"[0.008-0.06)",0.5
"590","pants",0.0136740180984271,"[0.008-0.06)",0.5
"591","nurse",0.0136721986330915,"[0.008-0.06)",0.5
"592","quiet",0.0136516098176869,"[0.008-0.06)",0.5
"593","comic",0.0136100001453779,"[0.008-0.06)",0.5
"594","crown",0.0135734706289702,"[0.008-0.06)",0.5
"595","maker",0.0135611688586385,"[0.008-0.06)",0.5
"596","crack",0.0135593379808858,"[0.008-0.06)",0.5
"597","picks",0.0135546841602759,"[0.008-0.06)",0.5
"598","smoke",0.0135055626720761,"[0.008-0.06)",0.5
"599","craft",0.0134734130782709,"[0.008-0.06)",0.5
"600","apart",0.0134562023382924,"[0.008-0.06)",0.5
"601","blind",0.0134385122768008,"[0.008-0.06)",0.5
"602","coins",0.0134093723003877,"[0.008-0.06)",0.5
"603","gross",0.0134019191769271,"[0.008-0.06)",0.5
"604","actor",0.0132733672665466,"[0.008-0.06)",0.5
"605","finds",0.0132717426274723,"[0.008-0.06)",0.5
"606","fifth",0.0132508481223272,"[0.008-0.06)",0.5
"607","prize",0.0132096598942738,"[0.008-0.06)",0.5
"608","dirty",0.0131256343439133,"[0.008-0.06)",0.5
"609","alive",0.0130955748527607,"[0.008-0.06)",0.5
"610","prove",0.0130809025603877,"[0.008-0.06)",0.5
"611","wings",0.0130790032081331,"[0.008-0.06)",0.5
"612","ridge",0.0130374122847949,"[0.008-0.06)",0.5
"613","modem",0.0130301205655173,"[0.008-0.06)",0.5
"614","skill",0.0129083207301257,"[0.008-0.06)",0.5
"615","moves",0.012870761650672,"[0.008-0.06)",0.5
"616","throw",0.0128405872201769,"[0.008-0.06)",0.5
"617","trend",0.0128365382576669,"[0.008-0.06)",0.5
"618","busty",0.0128029604813939,"[0.008-0.06)",0.5
"619","worse",0.0127800639122415,"[0.008-0.06)",0.5
"620","boats",0.0127173143678223,"[0.008-0.06)",0.5
"621","tells",0.0126632912465296,"[0.008-0.06)",0.5
"622","fiber",0.0126598903462696,"[0.008-0.06)",0.5
"623","graph",0.0126569785495944,"[0.008-0.06)",0.5
"624","talks",0.0126222684985224,"[0.008-0.06)",0.5
"625","bonds",0.0125791344533739,"[0.008-0.06)",0.5
"626","fraud",0.0125363370745263,"[0.008-0.06)",0.5
"627","roger",0.0125156805997926,"[0.008-0.06)",0.5
"628","crash",0.0124742828723703,"[0.008-0.06)",0.5
"629","inter",0.0124471531116909,"[0.008-0.06)",0.5
"630","grove",0.012382059130755,"[0.008-0.06)",0.5
"631","spray",0.0123483435903056,"[0.008-0.06)",0.5
"632","roads",0.0123039068992761,"[0.008-0.06)",0.5
"633","faces",0.0122690444109202,"[0.008-0.06)",0.5
"634","cocks",0.0122632933679349,"[0.008-0.06)",0.5
"635","mayor",0.0122527352518831,"[0.008-0.06)",0.5
"636","yield",0.0122459261148093,"[0.008-0.06)",0.5
"637","hence",0.0122213405079438,"[0.008-0.06)",0.5
"638","radar",0.0122132222036078,"[0.008-0.06)",0.5
"639","lakes",0.0121847628963503,"[0.008-0.06)",0.5
"640","diary",0.0121643909168684,"[0.008-0.06)",0.5
"641","kings",0.0121577073163813,"[0.008-0.06)",0.5
"642","flags",0.0121221511161076,"[0.008-0.06)",0.5
"643","baker",0.0121154789280375,"[0.008-0.06)",0.5
"644","shock",0.0121056300121837,"[0.008-0.06)",0.5
"645","walls",0.0120954101927782,"[0.008-0.06)",0.5
"646","ebony",0.0120898458243278,"[0.008-0.06)",0.5
"647","drawn",0.0120868745200498,"[0.008-0.06)",0.5
"648","beast",0.0120544151606408,"[0.008-0.06)",0.5
"649","dodge",0.0120388844914763,"[0.008-0.06)",0.5
"650","pizza",0.0120350352462635,"[0.008-0.06)",0.5
"651","yards",0.0120102213910584,"[0.008-0.06)",0.5
"652","woods",0.0119404328308805,"[0.008-0.06)",0.5
"653","jokes",0.0119201831272948,"[0.008-0.06)",0.5
"654","globe",0.0118647595394042,"[0.008-0.06)",0.5
"655","kerry",0.0118320442157858,"[0.008-0.06)",0.5
"656","ghost",0.0118118858115359,"[0.008-0.06)",0.5
"657","pride",0.0117613744539825,"[0.008-0.06)",0.5
"658","chile",0.0117163117103644,"[0.008-0.06)",0.5
"659","maria",0.0116960098357296,"[0.008-0.06)",0.5
"660","brass",0.0116558055210544,"[0.008-0.06)",0.5
"661","plaza",0.011636030247946,"[0.008-0.06)",0.5
"662","quest",0.0116231660084917,"[0.008-0.06)",0.5
"663","trans",0.0116110590644212,"[0.008-0.06)",0.5
"664","booty",0.0115908207732525,"[0.008-0.06)",0.5
"665","acres",0.0115827106206429,"[0.008-0.06)",0.5
"666","venue",0.0115787725216122,"[0.008-0.06)",0.5
"667","vital",0.0115482589792982,"[0.008-0.06)",0.5
"668","excel",0.0115212164420915,"[0.008-0.06)",0.5
"669","modes",0.0115194695271209,"[0.008-0.06)",0.5
"670","enemy",0.0114810398432861,"[0.008-0.06)",0.5
"671","wells",0.0114724756395153,"[0.008-0.06)",0.5
"672","opens",0.0114698679022354,"[0.008-0.06)",0.5
"673","lucky",0.0114563556005311,"[0.008-0.06)",0.5
"674","thick",0.0114373253952169,"[0.008-0.06)",0.5
"675","vista",0.0114052108538353,"[0.008-0.06)",0.5
"676","chips",0.0113982949291454,"[0.008-0.06)",0.5
"677","terry",0.0113975588282502,"[0.008-0.06)",0.5
"678","flood",0.0113955160056108,"[0.008-0.06)",0.5
"679","arena",0.0113851673889278,"[0.008-0.06)",0.5
"680","grown",0.0113565947726732,"[0.008-0.06)",0.5
"681","jerry",0.011337607771509,"[0.008-0.06)",0.5
"682","smile",0.0113256312550612,"[0.008-0.06)",0.5
"683","lands",0.0113237090779727,"[0.008-0.06)",0.5
"684","armed",0.0113038237565577,"[0.008-0.06)",0.5
"685","laura",0.0112504275030263,"[0.008-0.06)",0.5
"686","candy",0.0112265845184372,"[0.008-0.06)",0.5
"687","pills",0.0112225559352432,"[0.008-0.06)",0.5
"688","tiger",0.0112192813867426,"[0.008-0.06)",0.5
"689","folks",0.0112175336565994,"[0.008-0.06)",0.5
"690","balls",0.0111546919976717,"[0.008-0.06)",0.5
"691","boost",0.0111475478246423,"[0.008-0.06)",0.5
"692","icons",0.0111268383636868,"[0.008-0.06)",0.5
"693","moral",0.0111218878202354,"[0.008-0.06)",0.5
"694","keeps",0.0111062935676049,"[0.008-0.06)",0.5
"695","pound",0.0111027467514421,"[0.008-0.06)",0.5
"696","roses",0.0110739230620138,"[0.008-0.06)",0.5
"697","bread",0.0110662620695297,"[0.008-0.06)",0.5
"698","tough",0.0110544926069328,"[0.008-0.06)",0.5
"699","gonna",0.0110391950771437,"[0.008-0.06)",0.5
"700","chest",0.0110182109030081,"[0.008-0.06)",0.5
"701","billy",0.0110172612268808,"[0.008-0.06)",0.5
"702","craig",0.0109891491831686,"[0.008-0.06)",0.5
"703","solve",0.0109658246483794,"[0.008-0.06)",0.5
"704","nancy",0.0109078715797824,"[0.008-0.06)",0.5
"705","tones",0.0109017398511736,"[0.008-0.06)",0.5
"706","sight",0.0108911132606199,"[0.008-0.06)",0.5
"707","towns",0.0108724458071312,"[0.008-0.06)",0.5
"708","worry",0.0107958130574559,"[0.008-0.06)",0.5
"709","reads",0.010739169156121,"[0.008-0.06)",0.5
"710","roles",0.0107370521527713,"[0.008-0.06)",0.5
"711","glory",0.0107267149485053,"[0.008-0.06)",0.5
"712","fault",0.0106890849490317,"[0.008-0.06)",0.5
"713","jimmy",0.0106217068543545,"[0.008-0.06)",0.5
"714","rugby",0.0105908688733293,"[0.008-0.06)",0.5
"715","fluid",0.0105510533960041,"[0.008-0.06)",0.5
"716","barry",0.0105332924144927,"[0.008-0.06)",0.5
"717","devil",0.0104908732757507,"[0.008-0.06)",0.5
"718","grass",0.0104904184094168,"[0.008-0.06)",0.5
"719","sized",0.010414316337131,"[0.008-0.06)",0.5
"720","manga",0.0104131571616349,"[0.008-0.06)",0.5
"721","theft",0.0103891821190779,"[0.008-0.06)",0.5
"722","swing",0.0103807891015618,"[0.008-0.06)",0.5
"723","dated",0.0103588153078394,"[0.008-0.06)",0.5
"724","shoot",0.0103491204596149,"[0.008-0.06)",0.5
"725","elite",0.0103313643691394,"[0.008-0.06)",0.5
"726","poems",0.0103221732976073,"[0.008-0.06)",0.5
"727","robot",0.010317079283771,"[0.008-0.06)",0.5
"728","winds",0.0102943147725865,"[0.008-0.06)",0.5
"729","gnome",0.0102791802773257,"[0.008-0.06)",0.5
"730","roots",0.0102788134496371,"[0.008-0.06)",0.5
"731","noble",0.0102749894747762,"[0.008-0.06)",0.5
"732","shore",0.0102454851161923,"[0.008-0.06)",0.5
"733","loves",0.0102439656343887,"[0.008-0.06)",0.5
"734","loose",0.0102358864583395,"[0.008-0.06)",0.5
"735","slots",0.0101506324428085,"[0.008-0.06)",0.5
"736","rocks",0.0101304993089105,"[0.008-0.06)",0.5
"737","genes",0.0101056577378356,"[0.008-0.06)",0.5
"738","horny",0.0100787578558412,"[0.008-0.06)",0.5
"739","hosts",0.00996853102643997,"[0.008-0.06)",0.5
"740","atlas",0.00996232267160286,"[0.008-0.06)",0.5
"741","feels",0.00995544506002714,"[0.008-0.06)",0.5
"742","ralph",0.00993751126191573,"[0.008-0.06)",0.5
"743","corps",0.00990445764165113,"[0.008-0.06)",0.5
"744","liver",0.00989567660195767,"[0.008-0.06)",0.5
"745","decor",0.00986266618584306,"[0.008-0.06)",0.5
"746","texts",0.00986010246788577,"[0.008-0.06)",0.5
"747","fails",0.0097945960095933,"[0.008-0.06)",0.5
"748","aging",0.00979348982031888,"[0.008-0.06)",0.5
"749","intro",0.00973160598924491,"[0.008-0.06)",0.5
"750","clerk",0.00972008596947625,"[0.008-0.06)",0.5
"751","mills",0.00970924987955376,"[0.008-0.06)",0.5
"752","jeans",0.00969782768050208,"[0.008-0.06)",0.5
"753","fonts",0.00968796735223137,"[0.008-0.06)",0.5
"754","favor",0.0096743238077318,"[0.008-0.06)",0.5
"755","sigma",0.0096715416235066,"[0.008-0.06)",0.5
"756","aside",0.0095934806913635,"[0.008-0.06)",0.5
"757","essay",0.00957853287063765,"[0.008-0.06)",0.5
"758","camps",0.00954733376813229,"[0.008-0.06)",0.5
"759","trace",0.0095352798102835,"[0.008-0.06)",0.5
"760","packs",0.00952388777261955,"[0.008-0.06)",0.5
"761","spoke",0.00943800118311875,"[0.008-0.06)",0.5
"762","arrow",0.00942595700734166,"[0.008-0.06)",0.5
"763","rough",0.00942110020874403,"[0.008-0.06)",0.5
"764","weird",0.00942048312305447,"[0.008-0.06)",0.5
"765","holes",0.00939835363135764,"[0.008-0.06)",0.5
"766","blade",0.00939730042830491,"[0.008-0.06)",0.5
"767","meals",0.009387392820021,"[0.008-0.06)",0.5
"768","robin",0.00931248660600023,"[0.008-0.06)",0.5
"769","strap",0.00930492587975098,"[0.008-0.06)",0.5
"770","crowd",0.00930048237368256,"[0.008-0.06)",0.5
"771","cloud",0.00924179157384506,"[0.008-0.06)",0.5
"772","valve",0.00923212362631773,"[0.008-0.06)",0.5
"773","knife",0.00920958817864547,"[0.008-0.06)",0.5
"774","shelf",0.00920087235276333,"[0.008-0.06)",0.5
"775","liked",0.00919737933799481,"[0.008-0.06)",0.5
"776","adopt",0.0091889023576966,"[0.008-0.06)",0.5
"777","outer",0.00916675248668374,"[0.008-0.06)",0.5
"778","tales",0.00914813801941674,"[0.008-0.06)",0.5
"779","nodes",0.00913704351976691,"[0.008-0.06)",0.5
"780","seeds",0.00912742366742542,"[0.008-0.06)",0.5
"781","cited",0.00912662724375475,"[0.008-0.06)",0.5
"782","tired",0.00909588626827387,"[0.008-0.06)",0.5
"783","steam",0.00908209028649036,"[0.008-0.06)",0.5
"784","acute",0.00907192671399704,"[0.008-0.06)",0.5
"785","stood",0.00906168325458486,"[0.008-0.06)",0.5
"786","carol",0.00905608220336561,"[0.008-0.06)",0.5
"787","stack",0.00904073657839074,"[0.008-0.06)",0.5
"788","curve",0.00902492059880176,"[0.008-0.06)",0.5
"789","amber",0.00902029856992486,"[0.008-0.06)",0.5
"790","trunk",0.00898349678585498,"[0.008-0.06)",0.5
"791","waves",0.00897179824327785,"[0.008-0.06)",0.5
"792","camel",0.00897097573408265,"[0.008-0.06)",0.5
"793","lamps",0.00896743380895565,"[0.008-0.06)",0.5
"794","juice",0.00894523584275693,"[0.008-0.06)",0.5
"795","chase",0.00894402938724762,"[0.008-0.06)",0.5
"796","sauce",0.00894132627476865,"[0.008-0.06)",0.5
"797","beads",0.00882450795938887,"[0.008-0.06)",0.5
"798","flows",0.00880155432815156,"[0.008-0.06)",0.5
"799","fewer",0.00879798387198211,"[0.008-0.06)",0.5
"800","proxy",0.0087818899185224,"[0.008-0.06)",0.5
"801","voted",0.0087598672144416,"[0.008-0.06)",0.5
"802","bikes",0.00875567152085617,"[0.008-0.06)",0.5
"803","gates",0.00875056690977555,"[0.008-0.06)",0.5
"804","slave",0.00871640873058181,"[0.008-0.06)",0.5
"805","combo",0.00863492651886264,"[0.008-0.06)",0.5
"806","haven",0.00861573246384759,"[0.008-0.06)",0.5
"807","charm",0.00860385702880727,"[0.008-0.06)",0.5
"808","basin",0.00859581127483638,"[0.008-0.06)",0.5
"809","ranch",0.0085916343302217,"[0.008-0.06)",0.5
"810","drunk",0.0085749795379847,"[0.008-0.06)",0.5
"811","toner",0.00856618219483841,"[0.008-0.06)",0.5
"812","latex",0.00856161559770114,"[0.008-0.06)",0.5
"813","alien",0.00855161261421818,"[0.008-0.06)",0.5
"814","broke",0.0085273669343442,"[0.008-0.06)",0.5
"815","nylon",0.00848608659178231,"[0.008-0.06)",0.5
"816","discs",0.00848186725819028,"[0.008-0.06)",0.5
"817","rocky",0.00848131783182996,"[0.008-0.06)",0.5
"818","fleet",0.00844879407378228,"[0.008-0.06)",0.5
"819","bunch",0.00844146404139057,"[0.008-0.06)",0.5
"820","cents",0.00839714555039408,"[0.008-0.06)",0.5
"821","omega",0.00838740342215638,"[0.008-0.06)",0.5
"822","civic",0.0083829648071238,"[0.008-0.06)",0.5
"823","saver",0.00836216975304099,"[0.008-0.06)",0.5
"824","grill",0.00835888134660547,"[0.008-0.06)",0.5
"825","grain",0.00835113639133927,"[0.008-0.06)",0.5
"826","wanna",0.00834109264922424,"[0.008-0.06)",0.5
"827","seeks",0.00829372459737616,"[0.008-0.06)",0.5
"828","gains",0.00826386645386596,"[0.008-0.06)",0.5
"829","spots",0.00824111987647956,"[0.008-0.06)",0.5
"830","salon",0.00821612994398396,"[0.008-0.06)",0.5
"831","turbo",0.00819956563591015,"[0.008-0.06)",0.5
"832","aimed",0.00817648320739549,"[0.008-0.06)",0.5
"833","reset",0.00816887194044248,"[0.008-0.06)",0.5
"834","brush",0.00816695709990777,"[0.008-0.06)",0.5
"835","spare",0.00815948848816701,"[0.008-0.06)",0.5
"836","skirt",0.00813663349281931,"[0.008-0.06)",0.5
"837","honey",0.00813382766858751,"[0.008-0.06)",0.5
"838","gauge",0.00811297799793772,"[0.008-0.06)",0.5
"839","faced",0.00810131206226625,"[0.008-0.06)",0.5
"840","sixth",0.00808655662228377,"[0.008-0.06)",0.5
"841","farms",0.00807716827897245,"[0.008-0.06)",0.5
"842","cheat",0.00807312094680776,"[0.008-0.06)",0.5
"843","sandy",0.00806816062128468,"[0.008-0.06)",0.5
"844","macro",0.00805867690277431,"[0.008-0.06)",0.5
"845","laugh",0.00800700963041535,"[0.008-0.06)",0.5
"846","pitch",0.00798914512197846,"[0.0008-0.008)",0.1
"847","autos",0.00798706806208811,"[0.0008-0.008)",0.1
"848","perry",0.00797714741104193,"[0.0008-0.008)",0.1
"849","dozen",0.00796931278678517,"[0.0008-0.008)",0.1
"850","teeth",0.00796377776454988,"[0.0008-0.008)",0.1
"851","cloth",0.00795945734955032,"[0.0008-0.008)",0.1
"852","stamp",0.00795646648112892,"[0.0008-0.008)",0.1
"853","lotus",0.00795566516642239,"[0.0008-0.008)",0.1
"854","cargo",0.00794684744396007,"[0.0008-0.008)",0.1
"855","likes",0.00792978180471179,"[0.0008-0.008)",0.1
"856","tapes",0.00792311858354076,"[0.0008-0.008)",0.1
"857","zones",0.00792275583171532,"[0.0008-0.008)",0.1
"858","races",0.00791962964463545,"[0.0008-0.008)",0.1
"859","maple",0.00791088447253821,"[0.0008-0.008)",0.1
"860","depot",0.00789766807850275,"[0.0008-0.008)",0.1
"861","blend",0.00789167166855241,"[0.0008-0.008)",0.1
"862","probe",0.00786136273457149,"[0.0008-0.008)",0.1
"863","debug",0.00781024651891814,"[0.0008-0.008)",0.1
"864","chuck",0.00780513538645639,"[0.0008-0.008)",0.1
"865","ebook",0.00779167117993793,"[0.0008-0.008)",0.1
"866","bingo",0.00777593345692253,"[0.0008-0.008)",0.1
"867","minds",0.0077683474603214,"[0.0008-0.008)",0.1
"868","sunny",0.00774200597158631,"[0.0008-0.008)",0.1
"869","cedar",0.00773190679773167,"[0.0008-0.008)",0.1
"870","hopes",0.00771374638162594,"[0.0008-0.008)",0.1
"871","mason",0.00771303147521941,"[0.0008-0.008)",0.1
"872","burns",0.00771161796585918,"[0.0008-0.008)",0.1
"873","pumps",0.00770867111676042,"[0.0008-0.008)",0.1
"874","pairs",0.00768880209879826,"[0.0008-0.008)",0.1
"875","chose",0.00767064820407367,"[0.0008-0.008)",0.1
"876","blast",0.00765216497960194,"[0.0008-0.008)",0.1
"877","tommy",0.00760382768748321,"[0.0008-0.008)",0.1
"878","brake",0.00759894561853371,"[0.0008-0.008)",0.1
"879","congo",0.00759005290018837,"[0.0008-0.008)",0.1
"880","olive",0.00757962521175923,"[0.0008-0.008)",0.1
"881","cyber",0.00757226094211657,"[0.0008-0.008)",0.1
"882","clone",0.00756853397279997,"[0.0008-0.008)",0.1
"883","dicks",0.00756536621191538,"[0.0008-0.008)",0.1
"884","relay",0.00756076863821773,"[0.0008-0.008)",0.1
"885","tears",0.00756007900216308,"[0.0008-0.008)",0.1
"886","oasis",0.00755705634200867,"[0.0008-0.008)",0.1
"887","angry",0.00755461653029288,"[0.0008-0.008)",0.1
"888","lover",0.00752774844003142,"[0.0008-0.008)",0.1
"889","rolls",0.00751622923543541,"[0.0008-0.008)",0.1
"890","daddy",0.00750871252850881,"[0.0008-0.008)",0.1
"891","ferry",0.00750688735696465,"[0.0008-0.008)",0.1
"892","loads",0.0074799817687617,"[0.0008-0.008)",0.1
"893","motel",0.00747532713297914,"[0.0008-0.008)",0.1
"894","rally",0.00746333757376903,"[0.0008-0.008)",0.1
"895","dying",0.00743727405890467,"[0.0008-0.008)",0.1
"896","stuck",0.00743487989685679,"[0.0008-0.008)",0.1
"897","stops",0.00743322428122205,"[0.0008-0.008)",0.1
"898","vocal",0.00740407126204668,"[0.0008-0.008)",0.1
"899","organ",0.00739968807875372,"[0.0008-0.008)",0.1
"900","lemon",0.00739111327773855,"[0.0008-0.008)",0.1
"901","toxic",0.00738984079324528,"[0.0008-0.008)",0.1
"902","bench",0.00733020439314372,"[0.0008-0.008)",0.1
"903","rider",0.00732661029696767,"[0.0008-0.008)",0.1
"904","butts",0.00731116603610318,"[0.0008-0.008)",0.1
"905","bobby",0.00730748634679978,"[0.0008-0.008)",0.1
"906","sheep",0.00730609729261879,"[0.0008-0.008)",0.1
"907","wines",0.00728730267219803,"[0.0008-0.008)",0.1
"908","salad",0.00727436099134273,"[0.0008-0.008)",0.1
"909","paste",0.00726567858753889,"[0.0008-0.008)",0.1
"910","relax",0.00721993843545575,"[0.0008-0.008)",0.1
"911","sword",0.00720260868027164,"[0.0008-0.008)",0.1
"912","sells",0.00719583622596666,"[0.0008-0.008)",0.1
"913","coral",0.00718841407906646,"[0.0008-0.008)",0.1
"914","pixel",0.00718427952342914,"[0.0008-0.008)",0.1
"915","float",0.00718057456377385,"[0.0008-0.008)",0.1
"916","colin",0.00717946918967208,"[0.0008-0.008)",0.1
"917","paths",0.00717846978801369,"[0.0008-0.008)",0.1
"918","acids",0.00716857929835525,"[0.0008-0.008)",0.1
"919","dairy",0.00715881434528359,"[0.0008-0.008)",0.1
"920","admit",0.00715775054498652,"[0.0008-0.008)",0.1
"921","fancy",0.00715488032211606,"[0.0008-0.008)",0.1
"922","squad",0.00712849888992154,"[0.0008-0.008)",0.1
"923","wages",0.00712252041376931,"[0.0008-0.008)",0.1
"924","males",0.00709853640431323,"[0.0008-0.008)",0.1
"925","chaos",0.00708406872027317,"[0.0008-0.008)",0.1
"926","wheat",0.00708025452748393,"[0.0008-0.008)",0.1
"927","bases",0.00706213650035556,"[0.0008-0.008)",0.1
"928","unity",0.00705752751424093,"[0.0008-0.008)",0.1
"929","bride",0.00705178543815472,"[0.0008-0.008)",0.1
"930","begun",0.00704011787213796,"[0.0008-0.008)",0.1
"931","socks",0.00703661752081567,"[0.0008-0.008)",0.1
"932","fever",0.00699635369853764,"[0.0008-0.008)",0.1
"933","drums",0.00697848755975548,"[0.0008-0.008)",0.1
"934","rover",0.00695914595849233,"[0.0008-0.008)",0.1
"935","flame",0.00695138062391009,"[0.0008-0.008)",0.1
"936","tanks",0.0069505899064479,"[0.0008-0.008)",0.1
"937","spell",0.00693389843144203,"[0.0008-0.008)",0.1
"938","annex",0.00690117414092456,"[0.0008-0.008)",0.1
"939","sluts",0.00687256484190102,"[0.0008-0.008)",0.1
"940","hints",0.00684238307485217,"[0.0008-0.008)",0.1
"941","wired",0.00682425689599739,"[0.0008-0.008)",0.1
"942","argue",0.00680963025329225,"[0.0008-0.008)",0.1
"943","arise",0.006796170122637,"[0.0008-0.008)",0.1
"944","bitch",0.0067679276513021,"[0.0008-0.008)",0.1
"945","chess",0.00676089760244243,"[0.0008-0.008)",0.1
"946","oscar",0.00675415612469783,"[0.0008-0.008)",0.1
"947","menus",0.00675246301112158,"[0.0008-0.008)",0.1
"948","canal",0.00674815889957484,"[0.0008-0.008)",0.1
"949","amino",0.00674444578819314,"[0.0008-0.008)",0.1
"950","herbs",0.00674298581399234,"[0.0008-0.008)",0.1
"951","lying",0.00673401483907343,"[0.0008-0.008)",0.1
"952","drill",0.0067241854873631,"[0.0008-0.008)",0.1
"953","hobby",0.00671478084059895,"[0.0008-0.008)",0.1
"954","tries",0.0067144865632754,"[0.0008-0.008)",0.1
"955","trick",0.00669132261749659,"[0.0008-0.008)",0.1
"956","drops",0.00667435398379264,"[0.0008-0.008)",0.1
"957","wider",0.00667357630909271,"[0.0008-0.008)",0.1
"958","screw",0.00666588107935764,"[0.0008-0.008)",0.1
"959","blame",0.00666040393437989,"[0.0008-0.008)",0.1
"960","fifty",0.00662991158655465,"[0.0008-0.008)",0.1
"961","uncle",0.00662547378669472,"[0.0008-0.008)",0.1
"962","randy",0.00661135092068198,"[0.0008-0.008)",0.1
"963","brick",0.00659830815841914,"[0.0008-0.008)",0.1
"964","naval",0.00659609088883446,"[0.0008-0.008)",0.1
"965","donna",0.00656925948134187,"[0.0008-0.008)",0.1
"966","cabin",0.00656398775986976,"[0.0008-0.008)",0.1
"967","fired",0.00654741530006954,"[0.0008-0.008)",0.1
"968","tires",0.00652722265856874,"[0.0008-0.008)",0.1
"969","retro",0.00652152704732309,"[0.0008-0.008)",0.1
"970","anger",0.00651407392386251,"[0.0008-0.008)",0.1
"971","suits",0.00651039749524967,"[0.0008-0.008)",0.1
"972","handy",0.00646974402044904,"[0.0008-0.008)",0.1
"973","crops",0.00646539425923439,"[0.0008-0.008)",0.1
"974","guild",0.00645912639679445,"[0.0008-0.008)",0.1
"975","tribe",0.00643227868584903,"[0.0008-0.008)",0.1
"976","batch",0.0063869184042168,"[0.0008-0.008)",0.1
"977","alter",0.00638389166819918,"[0.0008-0.008)",0.1
"978","edges",0.00637963483666564,"[0.0008-0.008)",0.1
"979","twins",0.00637059620241749,"[0.0008-0.008)",0.1
"980","amend",0.00636392564469269,"[0.0008-0.008)",0.1
"981","chick",0.00633511581319936,"[0.0008-0.008)",0.1
"982","thong",0.00631571225881546,"[0.0008-0.008)",0.1
"983","medal",0.0063151717993542,"[0.0008-0.008)",0.1
"984","walks",0.00631275399729972,"[0.0008-0.008)",0.1
"985","sucks",0.00631198447432621,"[0.0008-0.008)",0.1
"986","booth",0.00629583101326369,"[0.0008-0.008)",0.1
"987","indie",0.00629483242677794,"[0.0008-0.008)",0.1
"988","bones",0.00629109567538963,"[0.0008-0.008)",0.1
"989","breed",0.00629060657180478,"[0.0008-0.008)",0.1
"990","polar",0.00628944087492754,"[0.0008-0.008)",0.1
"991","danny",0.00624818743306281,"[0.0008-0.008)",0.1
"992","patio",0.0062177586687036,"[0.0008-0.008)",0.1
"993","beans",0.00620144543380336,"[0.0008-0.008)",0.1
"994","snake",0.00620052510389119,"[0.0008-0.008)",0.1
"995","berry",0.00615610716183244,"[0.0008-0.008)",0.1
"996","ought",0.006132737792548,"[0.0008-0.008)",0.1
"997","fixes",0.00612481268412804,"[0.0008-0.008)",0.1
"998","sends",0.00612415320946112,"[0.0008-0.008)",0.1
"999","timer",0.00610455808950649,"[0.0008-0.008)",0.1