correct-horse-battery-staple 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. data.tar.gz.sig +1 -1
  2. data/.gemtest +0 -0
  3. data/Gemfile +53 -0
  4. data/Gemfile.lock +109 -0
  5. data/History.txt +6 -0
  6. data/Manifest.txt +57 -0
  7. data/README.txt +115 -0
  8. data/Rakefile +47 -0
  9. data/bin/chbs +234 -0
  10. data/bin/chbs-mkpass +16 -0
  11. data/correct-horse-battery-staple.gemspec +59 -0
  12. data/lib/correct_horse_battery_staple.rb +117 -0
  13. data/lib/correct_horse_battery_staple/assembler.rb +45 -0
  14. data/lib/correct_horse_battery_staple/backend.rb +6 -0
  15. data/lib/correct_horse_battery_staple/backend/isam_kd.rb +410 -0
  16. data/lib/correct_horse_battery_staple/backend/redis.rb +95 -0
  17. data/lib/correct_horse_battery_staple/backend/redis/d_range.rb +105 -0
  18. data/lib/correct_horse_battery_staple/corpus.rb +33 -0
  19. data/lib/correct_horse_battery_staple/corpus/base.rb +278 -0
  20. data/lib/correct_horse_battery_staple/corpus/isam.rb +258 -0
  21. data/lib/correct_horse_battery_staple/corpus/isam_kd.rb +60 -0
  22. data/lib/correct_horse_battery_staple/corpus/redis.rb +188 -0
  23. data/lib/correct_horse_battery_staple/corpus/redis2.rb +88 -0
  24. data/lib/correct_horse_battery_staple/corpus/serialized.rb +121 -0
  25. data/lib/correct_horse_battery_staple/corpus/sqlite.rb +266 -0
  26. data/lib/correct_horse_battery_staple/generator.rb +40 -0
  27. data/lib/correct_horse_battery_staple/memoize.rb +25 -0
  28. data/lib/correct_horse_battery_staple/parser.rb +5 -0
  29. data/lib/correct_horse_battery_staple/parser/base.rb +5 -0
  30. data/lib/correct_horse_battery_staple/parser/regex.rb +58 -0
  31. data/lib/correct_horse_battery_staple/range_parser.rb +29 -0
  32. data/lib/correct_horse_battery_staple/statistical_array.rb +74 -0
  33. data/lib/correct_horse_battery_staple/stats.rb +22 -0
  34. data/lib/correct_horse_battery_staple/word.rb +90 -0
  35. data/lib/correct_horse_battery_staple/writer.rb +29 -0
  36. data/lib/correct_horse_battery_staple/writer/base.rb +22 -0
  37. data/lib/correct_horse_battery_staple/writer/csv.rb +15 -0
  38. data/lib/correct_horse_battery_staple/writer/file.rb +54 -0
  39. data/lib/correct_horse_battery_staple/writer/isam.rb +50 -0
  40. data/lib/correct_horse_battery_staple/writer/isam_kd.rb +12 -0
  41. data/lib/correct_horse_battery_staple/writer/json.rb +19 -0
  42. data/lib/correct_horse_battery_staple/writer/marshal.rb +10 -0
  43. data/lib/correct_horse_battery_staple/writer/redis.rb +41 -0
  44. data/lib/correct_horse_battery_staple/writer/sqlite.rb +115 -0
  45. data/script/generate_all +34 -0
  46. data/script/load_redis +17 -0
  47. data/script/perftest +74 -0
  48. data/spec/corpus/serialized_spec.rb +62 -0
  49. data/spec/corpus_spec.rb +50 -0
  50. data/spec/correct_horse_battery_staple_spec.rb +73 -0
  51. data/spec/fixtures/100.json +101 -0
  52. data/spec/fixtures/corpus1.csv +101 -0
  53. data/spec/fixtures/corpus100.json +101 -0
  54. data/spec/fixtures/wiktionary1000.htm +648 -0
  55. data/spec/range_parser_spec.rb +54 -0
  56. data/spec/spec_helper.rb +20 -0
  57. data/spec/statistical_array_spec.rb +52 -0
  58. data/spec/support/spec_pry.rb +1 -0
  59. data/spec/word_spec.rb +95 -0
  60. metadata +264 -0
  61. metadata.gz.sig +1 -0
@@ -0,0 +1,50 @@
1
+ require File.join(File.dirname(__FILE__), "spec_helper")
2
+
3
+ describe CorrectHorseBatteryStaple::Corpus do
4
+
5
+ subject { corpus }
6
+
7
+ let :json_file do
8
+ File.join(FIXTURES_DIR, "100.json")
9
+ end
10
+
11
+ let :corpus do
12
+ CorrectHorseBatteryStaple::Corpus::Serialized.read_json json_file
13
+ end
14
+
15
+
16
+ context 'filtering' do
17
+ it { should respond_to(:filter) }
18
+ it { should respond_to(:result) }
19
+
20
+ let :evens do
21
+ corpus.filter {|entry| entry[:word].length % 2 == 0}
22
+ end
23
+
24
+ let :no_ys do
25
+ evens.filter {|entry| ! entry[:word].include?('y') }
26
+ end
27
+
28
+ it 'should return the same corpus from a call to #filter' do
29
+ evens.should equal(corpus)
30
+ end
31
+
32
+ it 'should allow multiple calls to #filter' do
33
+ no_ys.should == evens
34
+ end
35
+
36
+ it 'should implement #result' do
37
+ evens.should respond_to(:result)
38
+ end
39
+
40
+ it 'should return a new object from #result' do
41
+ evens.result.should_not equal(corpus)
42
+ end
43
+
44
+ it 'should reduce the count with one filter' do
45
+ evens.result.length.should_not == corpus.length
46
+ end
47
+ end
48
+ end
49
+
50
+ # -*- mode: Ruby; compile-command: "rspec corpus_spec.rb" -*-
@@ -0,0 +1,73 @@
1
+ require File.join(File.dirname(__FILE__), "spec_helper")
2
+
3
+ describe CorrectHorseBatteryStaple do
4
+
5
+ subject { CorrectHorseBatteryStaple }
6
+
7
+ let :small_corpus do
8
+ CorrectHorseBatteryStaple.load_corpus(File.join(FIXTURES_DIR, "corpus100.json"))
9
+ end
10
+
11
+ context 'static methods' do
12
+
13
+ it { should respond_to(:default_corpus) }
14
+ it { should respond_to(:generate) }
15
+ it { should respond_to(:load_corpus) }
16
+ it { should respond_to(:find_corpus) }
17
+
18
+ context '.default_corpus' do
19
+ let :defcorp do
20
+ CorrectHorseBatteryStaple.default_corpus
21
+ end
22
+
23
+ before do
24
+ CorrectHorseBatteryStaple.should_receive(:load_corpus).
25
+ with(CorrectHorseBatteryStaple::DEFAULT_CORPUS_NAME).
26
+ and_return(27)
27
+ end
28
+
29
+ it 'should call load_corpus' do
30
+ defcorp.should == 27
31
+ end
32
+ end
33
+
34
+ context '.generate' do
35
+ subject { CorrectHorseBatteryStaple.generate(3) }
36
+
37
+ before do
38
+ CorrectHorseBatteryStaple.should_receive(:default_corpus).
39
+ at_least(1).times.
40
+ and_return(small_corpus)
41
+ end
42
+
43
+ it 'should return a string of 3 words separated by dashes' do
44
+ subject.split(/-/).should have(3).items
45
+ end
46
+
47
+ it 'should not return the same string twice' do
48
+ CorrectHorseBatteryStaple.generate(3).should_not ==
49
+ CorrectHorseBatteryStaple.generate(3)
50
+ end
51
+
52
+ it 'should respond to different string sizes' do
53
+ CorrectHorseBatteryStaple.generate(4).split(/-/).should have(4).items
54
+ end
55
+ end
56
+
57
+ context '.load_corpus' do
58
+ context 'given a file path' do
59
+ it 'should load a file by path'
60
+ it 'should detect the format from extension'
61
+ end
62
+
63
+ context 'in a standard search directory' do
64
+ it 'should load a corpus by name'
65
+ it 'should load a corpus by name w/extension'
66
+ it 'should detect the format from extension'
67
+ end
68
+ end
69
+
70
+ end
71
+
72
+ end
73
+
@@ -0,0 +1,101 @@
1
+ {"stats": {"freq_mean":89608.51,"freq_stddev":478786.70244193514,"prob_mean":1.0,"prob_stddev":5.343094115078301,"corpus_size":100,"weighted_corpus_size":8960851.0}, "corpus": [{"word":"saluted","frequency":10116,"rank":100,"distance":-0.16602906804756226,"probability":"0.1128910635831351E-2","distance_probability":-0.1869461903254404,"percentile":-0.5},
2
+ {"word":"peg","frequency":4619,"rank":99,"distance":-0.177510172205142,"probability":"0.515464435241697E-3","distance_probability":-0.1870610013670162,"percentile":0.5},
3
+ {"word":"list","frequency":57295,"rank":98,"distance":-0.06749040822393938,"probability":"0.6393923969944372E-2","distance_probability":-0.18596080372720417,"percentile":1.5},
4
+ {"word":"philosophy","frequency":37611,"rank":97,"distance":-0.1086026611323985,"probability":"0.4197257604216385E-2","distance_probability":-0.18637192625628876,"percentile":2.5},
5
+ {"word":"offended","frequency":17392,"rank":96,"distance":-0.15083232184953602,"probability":"0.1940887087621477E-2","distance_probability":-0.18679422286346012,"percentile":3.5000000000000004},
6
+ {"word":"feudal","frequency":7916,"rank":95,"distance":-0.17062401604586597,"probability":"0.883398239743078E-3","distance_probability":-0.18699213980542345,"percentile":4.5},
7
+ {"word":"fundamental","frequency":13496,"rank":94,"distance":-0.15896955703198656,"probability":"0.150610695345788E-2","distance_probability":-0.18687559521528463,"percentile":5.5},
8
+ {"word":"nurse","frequency":29567,"rank":93,"distance":-0.12540346190437804,"probability":"0.3299575006882717E-2","distance_probability":-0.18653993426400856,"percentile":6.5},
9
+ {"word":"doll","frequency":7199,"rank":92,"distance":-0.17212155137076768,"probability":"0.803383517927036E-3","distance_probability":-0.18700711515867244,"percentile":7.5},
10
+ {"word":"matt","frequency":8196,"rank":91,"distance":-0.1700392044824455,"probability":"0.914645271972495E-3","distance_probability":-0.18698629168978922,"percentile":8.5},
11
+ {"word":"develop","frequency":12373,"rank":90,"distance":-0.16131506912384797,"probability":"0.1380784034909184E-2","distance_probability":-0.18689905033620327,"percentile":9.5},
12
+ {"word":"captains","frequency":10530,"rank":89,"distance":-0.16516438237879058,"probability":"0.1175111604913417E-2","distance_probability":-0.18693754346875266,"percentile":10.5},
13
+ {"word":"glee","frequency":5246,"rank":88,"distance":-0.17620061202562545,"probability":"0.585435468126855E-3","distance_probability":-0.18704790576522104,"percentile":11.5},
14
+ {"word":"wrapped","frequency":20419,"rank":87,"distance":-0.14451009112641544,"probability":"0.2278689825330206E-2","distance_probability":-0.18673100055622893,"percentile":12.5},
15
+ {"word":"mightily","frequency":6142,"rank":86,"distance":-0.17432921502267995,"probability":"0.685425971260988E-3","distance_probability":-0.18702919179519156,"percentile":13.5},
16
+ {"word":"scratch","frequency":5726,"rank":85,"distance":-0.17519807791690464,"probability":"0.63900180909157E-3","distance_probability":-0.1870378804241338,"percentile":14.499999999999998},
17
+ {"word":"serve","frequency":69414,"rank":84,"distance":-0.04217851059146548,"probability":"0.7746362482759729E-2","distance_probability":-0.18570768475087943,"percentile":15.5},
18
+ {"word":"driven","frequency":53753,"rank":83,"distance":-0.07488827450120834,"probability":"0.5998649012242252E-2","distance_probability":-0.18603478238997687,"percentile":16.5},
19
+ {"word":"consume","frequency":5045,"rank":82,"distance":-0.1766204231836523,"probability":"0.563004562847881E-3","distance_probability":-0.1870521038768013,"percentile":17.5},
20
+ {"word":"frankness","frequency":7179,"rank":81,"distance":-0.1721633236252977,"probability":"0.801151587053506E-3","distance_probability":-0.18700753288121774,"percentile":18.5},
21
+ {"word":"partial","frequency":12182,"rank":80,"distance":-0.1617139941546098,"probability":"0.1359469095066975E-2","distance_probability":-0.18690303958651086,"percentile":19.5},
22
+ {"word":"joyous","frequency":13053,"rank":79,"distance":-0.1598948124698268,"probability":"0.1456669684609196E-2","distance_probability":-0.18688484776966305,"percentile":20.5},
23
+ {"word":"complexion","frequency":14636,"rank":78,"distance":-0.15658853852377466,"probability":"0.1633327013249076E-2","distance_probability":-0.18685178503020253,"percentile":21.5},
24
+ {"word":"hold","frequency":186609,"rank":77,"distance":0.20259645789089922,"probability":"0.20824919418925725E-1","distance_probability":-0.18325993506605578,"percentile":22.5},
25
+ {"word":"tribute","frequency":15944,"rank":76,"distance":-0.15385663307751046,"probability":"0.1779295292377923E-2","distance_probability":-0.18682446597573987,"percentile":23.5},
26
+ {"word":"contribute","frequency":9215,"rank":75,"distance":-0.16791090811414028,"probability":"0.1028362149978836E-2","distance_probability":-0.1869650087261062,"percentile":24.5},
27
+ {"word":"tire","frequency":5463,"rank":74,"distance":-0.17574738306397458,"probability":"0.609651918104653E-3","distance_probability":-0.1870433734756045,"percentile":25.5},
28
+ {"word":"unit","frequency":6043,"rank":73,"distance":-0.17453598768260362,"probability":"0.674377913437016E-3","distance_probability":-0.1870312595217908,"percentile":26.5},
29
+ {"word":"ali","frequency":10488,"rank":72,"distance":-0.16525210411330363,"probability":"0.1170424550079005E-2","distance_probability":-0.1869384206860978,"percentile":27.500000000000004},
30
+ {"word":"create","frequency":23259,"rank":71,"distance":-0.13857843098315065,"probability":"0.2595624009371431E-2","distance_probability":-0.18667168395479627,"percentile":28.499999999999996},
31
+ {"word":"repute","frequency":4715,"rank":70,"distance":-0.17730966538339785,"probability":"0.52617770343464E-3","distance_probability":-0.18705899629879874,"percentile":29.5},
32
+ {"word":"western","frequency":30106,"rank":69,"distance":-0.12427769964479363,"probability":"0.3359725543924344E-2","distance_probability":-0.1865286766414127,"percentile":30.5},
33
+ {"word":"tread","frequency":13729,"rank":68,"distance":-0.15848291026671169,"probability":"0.1532108948134502E-2","distance_probability":-0.1868707287476319,"percentile":31.5},
34
+ {"word":"muse","frequency":4466,"rank":67,"distance":-0.17782972995229676,"probability":"0.498390164059195E-3","distance_probability":-0.18706419694448775,"percentile":32.5},
35
+ {"word":"fisherman","frequency":6369,"rank":66,"distance":-0.17385509993376408,"probability":"0.710758386675551E-3","distance_probability":-0.18702445064430243,"percentile":33.5},
36
+ {"word":"naught","frequency":11927,"rank":65,"distance":-0.16224659039986772,"probability":"0.1331011976429471E-2","distance_probability":-0.18690836554896345,"percentile":34.5},
37
+ {"word":"abstain","frequency":4158,"rank":64,"distance":-0.17847302267205928,"probability":"0.464018428606837E-3","distance_probability":-0.18707062987168535,"percentile":35.5},
38
+ {"word":"mortality","frequency":5314,"rank":63,"distance":-0.17605858636022334,"probability":"0.593024033096857E-3","distance_probability":-0.187046485508567,"percentile":36.5},
39
+ {"word":"discovered","frequency":91968,"rank":62,"distance":0.004928060842053467,"probability":"0.10263310928839236E-1","distance_probability":-0.18523661903654423,"percentile":37.5},
40
+ {"word":"weaken","frequency":3937,"rank":61,"distance":-0.17893460608461617,"probability":"0.439355592454333E-3","distance_probability":-0.18707524570581094,"percentile":38.5},
41
+ {"word":"mouse","frequency":7544,"rank":60,"distance":-0.1714009799801246,"probability":"0.841884325495424E-3","distance_probability":-0.18699990944476602,"percentile":39.5},
42
+ {"word":"detailed","frequency":9439,"rank":59,"distance":-0.1674430588634039,"probability":"0.1053359775762369E-2","distance_probability":-0.18696033023359881,"percentile":40.5},
43
+ {"word":"sensitive","frequency":17519,"rank":58,"distance":-0.1505670680332703,"probability":"0.1955059848668391E-2","distance_probability":-0.18679157032529747,"percentile":41.5},
44
+ {"word":"disagreeable","frequency":18074,"rank":57,"distance":-0.14940788797006188,"probability":"0.2016995930408842E-2","distance_probability":-0.1867799785246654,"percentile":42.5},
45
+ {"word":"have","frequency":4346500,"rank":56,"distance":8.890997741350711,"probability":"0.485054377089854524E0","distance_probability":-0.09637592223145766,"percentile":43.5},
46
+ {"word":"quoth","frequency":15980,"rank":55,"distance":-0.1537814430193564,"probability":"0.1783312767950276E-2","distance_probability":-0.18682371407515833,"percentile":44.5},
47
+ {"word":"electric","frequency":18058,"rank":54,"distance":-0.1494413057736859,"probability":"0.2015210385710018E-2","distance_probability":-0.18678031270270162,"percentile":45.5},
48
+ {"word":"invent","frequency":5831,"rank":53,"distance":-0.17497877358062197,"probability":"0.650719446177601E-3","distance_probability":-0.187035687380771,"percentile":46.5},
49
+ {"word":"attempting","frequency":12466,"rank":52,"distance":-0.1611208281402833,"probability":"0.1391162513471098E-2","distance_probability":-0.18689710792636763,"percentile":47.5},
50
+ {"word":"civilization","frequency":27878,"rank":51,"distance":-0.12893112879943938,"probability":"0.3111088444613129E-2","distance_probability":-0.18657521093295917,"percentile":48.5},
51
+ {"word":"neglect","frequency":20734,"rank":50,"distance":-0.1438521781175674,"probability":"0.2313842736588299E-2","distance_probability":-0.18672442142614046,"percentile":49.5},
52
+ {"word":"museum","frequency":4776,"rank":49,"distance":-0.17718226000708126,"probability":"0.532985092598906E-3","distance_probability":-0.18705772224503558,"percentile":50.5},
53
+ {"word":"counting","frequency":9030,"rank":48,"distance":-0.1682973014685431,"probability":"0.1007716789398685E-2","distance_probability":-0.1869688726596502,"percentile":51.5},
54
+ {"word":"await","frequency":11049,"rank":47,"distance":-0.1640803923737362,"probability":"0.1233030211081514E-2","distance_probability":-0.1869267035687021,"percentile":52.5},
55
+ {"word":"valley","frequency":59172,"rank":46,"distance":-0.06357008213629572,"probability":"0.660339068242514E-2","distance_probability":-0.18592160046632775,"percentile":53.5},
56
+ {"word":"females","frequency":9187,"rank":45,"distance":-0.16796938927048233,"probability":"0.1025237446755894E-2","distance_probability":-0.1869655935376696,"percentile":54.50000000000001},
57
+ {"word":"exciting","frequency":12744,"rank":44,"distance":-0.16054019380231585,"probability":"0.1422186352613161E-2","distance_probability":-0.18689130158298795,"percentile":55.50000000000001},
58
+ {"word":"indexes","frequency":5613,"rank":43,"distance":-0.17543409115499933,"probability":"0.626391399656126E-3","distance_probability":-0.18704024055651478,"percentile":56.49999999999999},
59
+ {"word":"alternate","frequency":11242,"rank":42,"distance":-0.16367729011752136,"probability":"0.1254568344011077E-2","distance_probability":-0.18692267254613998,"percentile":57.49999999999999},
60
+ {"word":"weather","frequency":61892,"rank":41,"distance":-0.05788905552021114,"probability":"0.6906933281225187E-2","distance_probability":-0.18586479020016689,"percentile":58.5},
61
+ {"word":"dragon","frequency":6903,"rank":40,"distance":-0.17273978073781218,"probability":"0.770350940998796E-3","distance_probability":-0.1870132974523429,"percentile":59.5},
62
+ {"word":"alley","frequency":5568,"rank":39,"distance":-0.1755280787276919,"probability":"0.621369555190684E-3","distance_probability":-0.1870411804322417,"percentile":60.5},
63
+ {"word":"lowest","frequency":18007,"rank":38,"distance":-0.14954782502273747,"probability":"0.2009518961982517E-2","distance_probability":-0.18678137789519214,"percentile":61.5},
64
+ {"word":"when","frequency":1980046,"rank":37,"distance":3.9483918002698974,"probability":"0.2209662899204551E0","distance_probability":-0.1458019816422658,"percentile":62.5},
65
+ {"word":"feeding","frequency":11771,"rank":36,"distance":-0.16257241398520197,"probability":"0.1313602915615939E-2","distance_probability":-0.1869116237848168,"percentile":63.5},
66
+ {"word":"cage","frequency":10195,"rank":35,"distance":-0.16586406764216863,"probability":"0.1137726762781794E-2","distance_probability":-0.18694454032138647,"percentile":64.5},
67
+ {"word":"balanced","frequency":6072,"rank":34,"distance":-0.17447541791353507,"probability":"0.677614213203634E-3","distance_probability":-0.1870306538241001,"percentile":65.5},
68
+ {"word":"homely","frequency":8321,"rank":33,"distance":-0.1697781278916328,"probability":"0.928594839932056E-3","distance_probability":-0.1869836809238811,"percentile":66.5},
69
+ {"word":"rustic","frequency":7703,"rank":32,"distance":-0.17106889055661081,"probability":"0.859628175939986E-3","distance_probability":-0.1869965885505309,"percentile":67.5},
70
+ {"word":"ascertain","frequency":13288,"rank":31,"distance":-0.15940398847909892,"probability":"0.1482894872373171E-2","distance_probability":-0.18687993952975576,"percentile":68.5},
71
+ {"word":"how","frequency":770603,"rank":30,"distance":1.4223337584915228,"probability":"0.85996631346732582E-1","distance_probability":-0.17106256206004952,"percentile":69.5},
72
+ {"word":"bough","frequency":4696,"rank":29,"distance":-0.17734934902520139,"probability":"0.524057369104787E-3","distance_probability":-0.1870593931352168,"percentile":70.5},
73
+ {"word":"inquisition","frequency":5929,"rank":28,"distance":-0.1747740895334248,"probability":"0.661655907457897E-3","distance_probability":-0.18703364054029903,"percentile":71.5},
74
+ {"word":"wants","frequency":55209,"rank":27,"distance":-0.07184725437142189,"probability":"0.6161133579835219E-2","distance_probability":-0.186004372188679,"percentile":72.5},
75
+ {"word":"majority","frequency":35276,"rank":26,"distance":-0.11347957184877992,"probability":"0.3936679674731786E-2","distance_probability":-0.18642069536345257,"percentile":73.5},
76
+ {"word":"trick","frequency":21052,"rank":25,"distance":-0.14318799927053985,"probability":"0.2349330437477423E-2","distance_probability":-0.18671777963767017,"percentile":74.5},
77
+ {"word":"heels","frequency":20695,"rank":24,"distance":-0.14393363401390097,"probability":"0.2309490471384916E-2","distance_probability":-0.18672523598510377,"percentile":75.5},
78
+ {"word":"lonesome","frequency":4121,"rank":23,"distance":-0.17855030134293987,"probability":"0.459889356490807E-3","distance_probability":-0.18707140265839417,"percentile":76.5},
79
+ {"word":"motives","frequency":22465,"rank":22,"distance":-0.14023678948799298,"probability":"0.25070163536923E-2","distance_probability":-0.1866882675398447,"percentile":77.5},
80
+ {"word":"exacting","frequency":4352,"rank":21,"distance":-0.17806783180311797,"probability":"0.485668158080075E-3","distance_probability":-0.18706657796299594,"percentile":78.5},
81
+ {"word":"mentions","frequency":7804,"rank":20,"distance":-0.17085794067123417,"probability":"0.870899426851311E-3","distance_probability":-0.18699447905167713,"percentile":79.5},
82
+ {"word":"lend","frequency":16903,"rank":19,"distance":-0.15185365347279534,"probability":"0.1886316377763674E-2","distance_probability":-0.18680443617969272,"percentile":80.5},
83
+ {"word":"cigars","frequency":6065,"rank":18,"distance":-0.17449003820262057,"probability":"0.676833037397899E-3","distance_probability":-0.187030800026991,"percentile":81.5},
84
+ {"word":"supplied","frequency":26694,"rank":17,"distance":-0.13140404626761737,"probability":"0.2978958136900167E-2","distance_probability":-0.18659994010764094,"percentile":82.5},
85
+ {"word":"expend","frequency":8249,"rank":16,"distance":-0.1699285080079409,"probability":"0.920559888787348E-3","distance_probability":-0.1869851847250442,"percentile":83.5},
86
+ {"word":"dozen","frequency":47519,"rank":15,"distance":-0.08790868623821983,"probability":"0.5302956158963027E-2","distance_probability":-0.18616498650734697,"percentile":84.5},
87
+ {"word":"hither","frequency":23489,"rank":14,"distance":-0.13809805005605527,"probability":"0.2621291214417024E-2","distance_probability":-0.18666688014552532,"percentile":85.5},
88
+ {"word":"fraud","frequency":8597,"rank":13,"distance":-0.16920167077911832,"probability":"0.959395485986766E-3","distance_probability":-0.18697791635275596,"percentile":86.5},
89
+ {"word":"pink","frequency":20698,"rank":12,"distance":-0.14392736817572147,"probability":"0.2309825261015946E-2","distance_probability":-0.18672517332672198,"percentile":87.5},
90
+ {"word":"seaman","frequency":4849,"rank":11,"distance":-0.17702979127804663,"probability":"0.54113164028729E-3","distance_probability":-0.18705619755774525,"percentile":88.5},
91
+ {"word":"baggage","frequency":11364,"rank":10,"distance":-0.16342247936488816,"probability":"0.1268183122339608E-2","distance_probability":-0.18692012443861367,"percentile":89.5},
92
+ {"word":"nominally","frequency":9971,"rank":9,"distance":-0.166331916892905,"probability":"0.1112729136998261E-2","distance_probability":-0.18694921881389384,"percentile":90.5},
93
+ {"word":"pair","frequency":51818,"rank":8,"distance":-0.0789297401269891,"probability":"0.5782709700228248E-2","distance_probability":-0.18607519704623468,"percentile":91.5},
94
+ {"word":"cloud","frequency":38187,"rank":7,"distance":-0.10739962020193353,"probability":"0.4261537213374042E-2","distance_probability":-0.1863598958469841,"percentile":92.5},
95
+ {"word":"offence","frequency":20882,"rank":6,"distance":-0.14354306343404516,"probability":"0.233035902505242E-2","distance_probability":-0.18672133027930524,"percentile":93.5},
96
+ {"word":"crimson","frequency":16348,"rank":5,"distance":-0.15301283353600378,"probability":"0.1824380296023224E-2","distance_probability":-0.1868160279803248,"percentile":94.5},
97
+ {"word":"repress","frequency":4308,"rank":4,"distance":-0.17815973076308403,"probability":"0.48075791015831E-3","distance_probability":-0.1870674969525956,"percentile":95.5},
98
+ {"word":"mysterious","frequency":38550,"rank":3,"distance":-0.10664145378221342,"probability":"0.4302046758728607E-2","distance_probability":-0.18635231418278692,"percentile":96.5},
99
+ {"word":"barbarian","frequency":4322,"rank":2,"distance":-0.178130490184913,"probability":"0.482320261769781E-3","distance_probability":-0.18706720454681391,"percentile":97.5},
100
+ {"word":"humanity","frequency":34419,"rank":1,"distance":-0.11526951295539187,"probability":"0.3841041436801036E-2","distance_probability":-0.18643859477451868,"percentile":98.5}]
101
+ }
@@ -0,0 +1,101 @@
1
+ index,rank,word,frequency,percentile,distance,probability,distance_probability
2
+ 0,33106,the,56271872,-0.00,116.929934,6.92346075,1.11877269
3
+ 1,33105,of,33950064,0.00,70.526168,4.17707688,0.65473504
4
+ 2,33104,and,29944184,0.00,62.198531,3.68420981,0.57145866
5
+ 3,33103,to,25956096,0.01,53.907881,3.19353179,0.48855216
6
+ 4,33102,in,17420636,0.01,36.163911,2.14336373,0.31111246
7
+ 5,33101,I,11764797,0.01,24.406251,1.44749246,0.19353586
8
+ 6,33100,that,11073318,0.02,22.968767,1.36241571,0.17916103
9
+ 7,33099,was,10078245,0.02,20.900157,1.23998600,0.15847492
10
+ 8,33098,his,8799755,0.02,18.242363,1.08268583,0.13189699
11
+ 9,33097,he,8397205,0.03,17.405521,1.03315773,0.12352856
12
+ 10,33096,it,8058110,0.03,16.700592,0.99143686,0.11647928
13
+ 11,33095,with,7725512,0.03,16.009170,0.95051537,0.10956505
14
+ 12,33094,is,7557477,0.03,15.659850,0.92984103,0.10607185
15
+ 13,33093,for,7097981,0.04,14.704625,0.87330652,0.09651960
16
+ 14,33092,as,7037543,0.04,14.578983,0.86587048,0.09526318
17
+ 15,33091,had,6139336,0.04,12.711742,0.75535877,0.07659078
18
+ 16,33090,you,6048903,0.05,12.523745,0.74423226,0.07471081
19
+ 17,33089,not,5741803,0.05,11.885330,0.70644793,0.06832665
20
+ 18,33088,be,5662527,0.05,11.720526,0.69669414,0.06667862
21
+ 19,33087,her,5202501,0.06,10.764200,0.64009442,0.05711535
22
+ 20,33086,on,5113263,0.06,10.578687,0.62911495,0.05526022
23
+ 21,33085,at,5091841,0.06,10.534154,0.62647927,0.05481489
24
+ 22,33084,by,5061050,0.06,10.470144,0.62269087,0.05417479
25
+ 23,33083,which,4580906,0.07,9.471995,0.56361592,0.04419330
26
+ 24,33082,have,4346500,0.07,8.984699,0.53477557,0.03932035
27
+ 25,33081,or,4228287,0.07,8.738952,0.52023112,0.03686287
28
+ 26,33080,from,4108111,0.08,8.489123,0.50544516,0.03436459
29
+ 27,33079,this,4015425,0.08,8.296443,0.49404145,0.03243778
30
+ 28,33078,him,3971997,0.08,8.206162,0.48869825,0.03153498
31
+ 29,33077,but,3894211,0.09,8.044457,0.47912778,0.02991792
32
+ 30,33076,all,3703342,0.09,7.647668,0.45564404,0.02595003
33
+ 31,33075,she,3415846,0.09,7.050006,0.42027171,0.01997341
34
+ 32,33074,they,3340398,0.10,6.893161,0.41098889,0.01840496
35
+ 33,33073,were,3323884,0.10,6.858830,0.40895708,0.01806166
36
+ 34,33072,my,3277699,0.10,6.762819,0.40327467,0.01710154
37
+ 35,33071,are,3224178,0.10,6.651556,0.39668966,0.01598892
38
+ 36,33070,me,3027134,0.11,6.241931,0.37244617,0.01189266
39
+ 37,33069,one,2832569,0.11,5.837459,0.34850769,0.00784794
40
+ 38,33068,their,2820265,0.11,5.811880,0.34699386,0.00759216
41
+ 39,33067,so,2802481,0.12,5.774910,0.34480579,0.00722245
42
+ 40,33066,an,2641417,0.12,5.440082,0.32498913,0.00387417
43
+ 41,33065,said,2637136,0.12,5.431182,0.32446242,0.00378517
44
+ 42,33064,them,2509917,0.13,5.166712,0.30880991,0.00114048
45
+ 43,33063,we,2491655,0.13,5.128748,0.30656303,0.00076084
46
+ 44,33062,who,2472663,0.13,5.089267,0.30422633,0.00036602
47
+ 45,33061,would,2400858,0.13,4.939995,0.29539174,-0.00112670
48
+ 46,33060,been,2357654,0.14,4.850180,0.29007610,-0.00202485
49
+ 47,33059,will,2320022,0.14,4.771949,0.28544601,-0.00280716
50
+ 48,33058,no,2241145,0.14,4.607975,0.27574131,-0.00444690
51
+ 49,33057,when,1980046,0.15,4.065188,0.24361675,-0.00987476
52
+ 50,33056,there,1961200,0.15,4.026010,0.24129802,-0.01026654
53
+ 51,33055,if,1951102,0.15,4.005018,0.24005560,-0.01047647
54
+ 52,33054,more,1899787,0.16,3.898342,0.23374201,-0.01154323
55
+ 53,33053,out,1875351,0.16,3.847543,0.23073551,-0.01205122
56
+ 54,33052,up,1792712,0.16,3.675748,0.22056795,-0.01376916
57
+ 55,33051,into,1703963,0.16,3.491252,0.20964863,-0.01561412
58
+ 56,33050,do,1680164,0.17,3.441778,0.20672050,-0.01610887
59
+ 57,33049,any,1665366,0.17,3.411015,0.20489981,-0.01641650
60
+ 58,33048,your,1658553,0.17,3.396851,0.20406157,-0.01655813
61
+ 59,33047,what,1605908,0.18,3.287410,0.19758435,-0.01765254
62
+ 60,33046,has,1602329,0.18,3.279970,0.19714400,-0.01772695
63
+ 61,33045,man,1573117,0.18,3.219243,0.19354988,-0.01833422
64
+ 62,33044,could,1571110,0.19,3.215070,0.19330294,-0.01837594
65
+ 63,33043,other,1533530,0.19,3.136947,0.18867925,-0.01915718
66
+ 64,33042,than,1508779,0.19,3.085493,0.18563399,-0.01967171
67
+ 65,33041,our,1498473,0.19,3.064069,0.18436598,-0.01988596
68
+ 66,33040,some,1476767,0.20,3.018945,0.18169537,-0.02033720
69
+ 67,33039,very,1462382,0.20,2.989041,0.17992549,-0.02063624
70
+ 68,33038,time,1449681,0.20,2.962637,0.17836282,-0.02090027
71
+ 69,33037,upon,1424595,0.21,2.910487,0.17527634,-0.02142178
72
+ 70,33036,about,1414687,0.21,2.889890,0.17405730,-0.02162775
73
+ 71,33035,may,1400642,0.21,2.860692,0.17232926,-0.02191972
74
+ 72,33034,its,1373270,0.22,2.803790,0.16896152,-0.02248875
75
+ 73,33033,only,1318367,0.22,2.689655,0.16220648,-0.02363010
76
+ 74,33032,now,1317723,0.22,2.688316,0.16212724,-0.02364349
77
+ 75,33031,like,1280625,0.23,2.611195,0.15756286,-0.02441470
78
+ 76,33030,little,1273589,0.23,2.596568,0.15669718,-0.02456097
79
+ 77,33029,then,1255636,0.23,2.559246,0.15448831,-0.02493418
80
+ 78,33028,can,1210074,0.23,2.464529,0.14888255,-0.02588135
81
+ 79,33027,should,1192154,0.24,2.427276,0.14667775,-0.02625388
82
+ 80,33026,made,1188501,0.24,2.419682,0.14622830,-0.02632982
83
+ 81,33025,did,1185720,0.24,2.413901,0.14588613,-0.02638764
84
+ 82,33024,us,1171742,0.25,2.384843,0.14416634,-0.02667822
85
+ 83,33023,such,1136757,0.25,2.312114,0.13986193,-0.02740551
86
+ 84,33022,a,1135294,0.25,2.309073,0.13968193,-0.02743592
87
+ 85,33021,great,1120163,0.26,2.277618,0.13782027,-0.02775047
88
+ 86,33020,before,1117089,0.26,2.271227,0.13744206,-0.02781437
89
+ 87,33019,must,1108116,0.26,2.252574,0.13633806,-0.02800091
90
+ 88,33018,two,1093366,0.26,2.221911,0.13452328,-0.02830754
91
+ 89,33017,these,1090510,0.27,2.215973,0.13417189,-0.02836691
92
+ 90,33016,see,1084286,0.27,2.203035,0.13340611,-0.02849630
93
+ 91,33015,know,1075612,0.27,2.185003,0.13233890,-0.02867662
94
+ 92,33014,over,1056659,0.28,2.145602,0.13000700,-0.02907062
95
+ 93,33013,much,1021822,0.28,2.073181,0.12572080,-0.02979484
96
+ 94,33012,down,989808,0.28,2.006629,0.12178192,-0.03046036
97
+ 95,33011,after,978575,0.29,1.983277,0.12039986,-0.03069388
98
+ 96,33010,first,978196,0.29,1.982489,0.12035323,-0.03070176
99
+ 97,33009,Mr,974419,0.29,1.974637,0.11988852,-0.03078027
100
+ 98,33008,good,966602,0.29,1.958387,0.11892675,-0.03094278
101
+ 33105,1,zoetrope,7,100.00,-0.051022,0.00000086,-0.05103687
@@ -0,0 +1,101 @@
1
+ {"stats": {"freq_mean":89608.51,"freq_stddev":478786.70244193514,"prob_mean":1.0,"prob_stddev":5.343094115078301,"corpus_size":100,"weighted_corpus_size":8960851.0}, "corpus": [{"word":"saluted","frequency":10116,"rank":100,"distance":-0.16602906804756226,"probability":"0.1128910635831351E-2","distance_probability":-0.1869461903254404,"percentile":-0.5},
2
+ {"word":"peg","frequency":4619,"rank":99,"distance":-0.177510172205142,"probability":"0.515464435241697E-3","distance_probability":-0.1870610013670162,"percentile":0.5},
3
+ {"word":"list","frequency":57295,"rank":98,"distance":-0.06749040822393938,"probability":"0.6393923969944372E-2","distance_probability":-0.18596080372720417,"percentile":1.5},
4
+ {"word":"philosophy","frequency":37611,"rank":97,"distance":-0.1086026611323985,"probability":"0.4197257604216385E-2","distance_probability":-0.18637192625628876,"percentile":2.5},
5
+ {"word":"offended","frequency":17392,"rank":96,"distance":-0.15083232184953602,"probability":"0.1940887087621477E-2","distance_probability":-0.18679422286346012,"percentile":3.5000000000000004},
6
+ {"word":"feudal","frequency":7916,"rank":95,"distance":-0.17062401604586597,"probability":"0.883398239743078E-3","distance_probability":-0.18699213980542345,"percentile":4.5},
7
+ {"word":"fundamental","frequency":13496,"rank":94,"distance":-0.15896955703198656,"probability":"0.150610695345788E-2","distance_probability":-0.18687559521528463,"percentile":5.5},
8
+ {"word":"nurse","frequency":29567,"rank":93,"distance":-0.12540346190437804,"probability":"0.3299575006882717E-2","distance_probability":-0.18653993426400856,"percentile":6.5},
9
+ {"word":"doll","frequency":7199,"rank":92,"distance":-0.17212155137076768,"probability":"0.803383517927036E-3","distance_probability":-0.18700711515867244,"percentile":7.5},
10
+ {"word":"matt","frequency":8196,"rank":91,"distance":-0.1700392044824455,"probability":"0.914645271972495E-3","distance_probability":-0.18698629168978922,"percentile":8.5},
11
+ {"word":"develop","frequency":12373,"rank":90,"distance":-0.16131506912384797,"probability":"0.1380784034909184E-2","distance_probability":-0.18689905033620327,"percentile":9.5},
12
+ {"word":"captains","frequency":10530,"rank":89,"distance":-0.16516438237879058,"probability":"0.1175111604913417E-2","distance_probability":-0.18693754346875266,"percentile":10.5},
13
+ {"word":"glee","frequency":5246,"rank":88,"distance":-0.17620061202562545,"probability":"0.585435468126855E-3","distance_probability":-0.18704790576522104,"percentile":11.5},
14
+ {"word":"wrapped","frequency":20419,"rank":87,"distance":-0.14451009112641544,"probability":"0.2278689825330206E-2","distance_probability":-0.18673100055622893,"percentile":12.5},
15
+ {"word":"mightily","frequency":6142,"rank":86,"distance":-0.17432921502267995,"probability":"0.685425971260988E-3","distance_probability":-0.18702919179519156,"percentile":13.5},
16
+ {"word":"scratch","frequency":5726,"rank":85,"distance":-0.17519807791690464,"probability":"0.63900180909157E-3","distance_probability":-0.1870378804241338,"percentile":14.499999999999998},
17
+ {"word":"serve","frequency":69414,"rank":84,"distance":-0.04217851059146548,"probability":"0.7746362482759729E-2","distance_probability":-0.18570768475087943,"percentile":15.5},
18
+ {"word":"driven","frequency":53753,"rank":83,"distance":-0.07488827450120834,"probability":"0.5998649012242252E-2","distance_probability":-0.18603478238997687,"percentile":16.5},
19
+ {"word":"consume","frequency":5045,"rank":82,"distance":-0.1766204231836523,"probability":"0.563004562847881E-3","distance_probability":-0.1870521038768013,"percentile":17.5},
20
+ {"word":"frankness","frequency":7179,"rank":81,"distance":-0.1721633236252977,"probability":"0.801151587053506E-3","distance_probability":-0.18700753288121774,"percentile":18.5},
21
+ {"word":"partial","frequency":12182,"rank":80,"distance":-0.1617139941546098,"probability":"0.1359469095066975E-2","distance_probability":-0.18690303958651086,"percentile":19.5},
22
+ {"word":"joyous","frequency":13053,"rank":79,"distance":-0.1598948124698268,"probability":"0.1456669684609196E-2","distance_probability":-0.18688484776966305,"percentile":20.5},
23
+ {"word":"complexion","frequency":14636,"rank":78,"distance":-0.15658853852377466,"probability":"0.1633327013249076E-2","distance_probability":-0.18685178503020253,"percentile":21.5},
24
+ {"word":"hold","frequency":186609,"rank":77,"distance":0.20259645789089922,"probability":"0.20824919418925725E-1","distance_probability":-0.18325993506605578,"percentile":22.5},
25
+ {"word":"tribute","frequency":15944,"rank":76,"distance":-0.15385663307751046,"probability":"0.1779295292377923E-2","distance_probability":-0.18682446597573987,"percentile":23.5},
26
+ {"word":"contribute","frequency":9215,"rank":75,"distance":-0.16791090811414028,"probability":"0.1028362149978836E-2","distance_probability":-0.1869650087261062,"percentile":24.5},
27
+ {"word":"tire","frequency":5463,"rank":74,"distance":-0.17574738306397458,"probability":"0.609651918104653E-3","distance_probability":-0.1870433734756045,"percentile":25.5},
28
+ {"word":"unit","frequency":6043,"rank":73,"distance":-0.17453598768260362,"probability":"0.674377913437016E-3","distance_probability":-0.1870312595217908,"percentile":26.5},
29
+ {"word":"ali","frequency":10488,"rank":72,"distance":-0.16525210411330363,"probability":"0.1170424550079005E-2","distance_probability":-0.1869384206860978,"percentile":27.500000000000004},
30
+ {"word":"create","frequency":23259,"rank":71,"distance":-0.13857843098315065,"probability":"0.2595624009371431E-2","distance_probability":-0.18667168395479627,"percentile":28.499999999999996},
31
+ {"word":"repute","frequency":4715,"rank":70,"distance":-0.17730966538339785,"probability":"0.52617770343464E-3","distance_probability":-0.18705899629879874,"percentile":29.5},
32
+ {"word":"western","frequency":30106,"rank":69,"distance":-0.12427769964479363,"probability":"0.3359725543924344E-2","distance_probability":-0.1865286766414127,"percentile":30.5},
33
+ {"word":"tread","frequency":13729,"rank":68,"distance":-0.15848291026671169,"probability":"0.1532108948134502E-2","distance_probability":-0.1868707287476319,"percentile":31.5},
34
+ {"word":"muse","frequency":4466,"rank":67,"distance":-0.17782972995229676,"probability":"0.498390164059195E-3","distance_probability":-0.18706419694448775,"percentile":32.5},
35
+ {"word":"fisherman","frequency":6369,"rank":66,"distance":-0.17385509993376408,"probability":"0.710758386675551E-3","distance_probability":-0.18702445064430243,"percentile":33.5},
36
+ {"word":"naught","frequency":11927,"rank":65,"distance":-0.16224659039986772,"probability":"0.1331011976429471E-2","distance_probability":-0.18690836554896345,"percentile":34.5},
37
+ {"word":"abstain","frequency":4158,"rank":64,"distance":-0.17847302267205928,"probability":"0.464018428606837E-3","distance_probability":-0.18707062987168535,"percentile":35.5},
38
+ {"word":"mortality","frequency":5314,"rank":63,"distance":-0.17605858636022334,"probability":"0.593024033096857E-3","distance_probability":-0.187046485508567,"percentile":36.5},
39
+ {"word":"discovered","frequency":91968,"rank":62,"distance":0.004928060842053467,"probability":"0.10263310928839236E-1","distance_probability":-0.18523661903654423,"percentile":37.5},
40
+ {"word":"weaken","frequency":3937,"rank":61,"distance":-0.17893460608461617,"probability":"0.439355592454333E-3","distance_probability":-0.18707524570581094,"percentile":38.5},
41
+ {"word":"mouse","frequency":7544,"rank":60,"distance":-0.1714009799801246,"probability":"0.841884325495424E-3","distance_probability":-0.18699990944476602,"percentile":39.5},
42
+ {"word":"detailed","frequency":9439,"rank":59,"distance":-0.1674430588634039,"probability":"0.1053359775762369E-2","distance_probability":-0.18696033023359881,"percentile":40.5},
43
+ {"word":"sensitive","frequency":17519,"rank":58,"distance":-0.1505670680332703,"probability":"0.1955059848668391E-2","distance_probability":-0.18679157032529747,"percentile":41.5},
44
+ {"word":"disagreeable","frequency":18074,"rank":57,"distance":-0.14940788797006188,"probability":"0.2016995930408842E-2","distance_probability":-0.1867799785246654,"percentile":42.5},
45
+ {"word":"have","frequency":4346500,"rank":56,"distance":8.890997741350711,"probability":"0.485054377089854524E0","distance_probability":-0.09637592223145766,"percentile":43.5},
46
+ {"word":"quoth","frequency":15980,"rank":55,"distance":-0.1537814430193564,"probability":"0.1783312767950276E-2","distance_probability":-0.18682371407515833,"percentile":44.5},
47
+ {"word":"electric","frequency":18058,"rank":54,"distance":-0.1494413057736859,"probability":"0.2015210385710018E-2","distance_probability":-0.18678031270270162,"percentile":45.5},
48
+ {"word":"invent","frequency":5831,"rank":53,"distance":-0.17497877358062197,"probability":"0.650719446177601E-3","distance_probability":-0.187035687380771,"percentile":46.5},
49
+ {"word":"attempting","frequency":12466,"rank":52,"distance":-0.1611208281402833,"probability":"0.1391162513471098E-2","distance_probability":-0.18689710792636763,"percentile":47.5},
50
+ {"word":"civilization","frequency":27878,"rank":51,"distance":-0.12893112879943938,"probability":"0.3111088444613129E-2","distance_probability":-0.18657521093295917,"percentile":48.5},
51
+ {"word":"neglect","frequency":20734,"rank":50,"distance":-0.1438521781175674,"probability":"0.2313842736588299E-2","distance_probability":-0.18672442142614046,"percentile":49.5},
52
+ {"word":"museum","frequency":4776,"rank":49,"distance":-0.17718226000708126,"probability":"0.532985092598906E-3","distance_probability":-0.18705772224503558,"percentile":50.5},
53
+ {"word":"counting","frequency":9030,"rank":48,"distance":-0.1682973014685431,"probability":"0.1007716789398685E-2","distance_probability":-0.1869688726596502,"percentile":51.5},
54
+ {"word":"await","frequency":11049,"rank":47,"distance":-0.1640803923737362,"probability":"0.1233030211081514E-2","distance_probability":-0.1869267035687021,"percentile":52.5},
55
+ {"word":"valley","frequency":59172,"rank":46,"distance":-0.06357008213629572,"probability":"0.660339068242514E-2","distance_probability":-0.18592160046632775,"percentile":53.5},
56
+ {"word":"females","frequency":9187,"rank":45,"distance":-0.16796938927048233,"probability":"0.1025237446755894E-2","distance_probability":-0.1869655935376696,"percentile":54.50000000000001},
57
+ {"word":"exciting","frequency":12744,"rank":44,"distance":-0.16054019380231585,"probability":"0.1422186352613161E-2","distance_probability":-0.18689130158298795,"percentile":55.50000000000001},
58
+ {"word":"indexes","frequency":5613,"rank":43,"distance":-0.17543409115499933,"probability":"0.626391399656126E-3","distance_probability":-0.18704024055651478,"percentile":56.49999999999999},
59
+ {"word":"alternate","frequency":11242,"rank":42,"distance":-0.16367729011752136,"probability":"0.1254568344011077E-2","distance_probability":-0.18692267254613998,"percentile":57.49999999999999},
60
+ {"word":"weather","frequency":61892,"rank":41,"distance":-0.05788905552021114,"probability":"0.6906933281225187E-2","distance_probability":-0.18586479020016689,"percentile":58.5},
61
+ {"word":"dragon","frequency":6903,"rank":40,"distance":-0.17273978073781218,"probability":"0.770350940998796E-3","distance_probability":-0.1870132974523429,"percentile":59.5},
62
+ {"word":"alley","frequency":5568,"rank":39,"distance":-0.1755280787276919,"probability":"0.621369555190684E-3","distance_probability":-0.1870411804322417,"percentile":60.5},
63
+ {"word":"lowest","frequency":18007,"rank":38,"distance":-0.14954782502273747,"probability":"0.2009518961982517E-2","distance_probability":-0.18678137789519214,"percentile":61.5},
64
+ {"word":"when","frequency":1980046,"rank":37,"distance":3.9483918002698974,"probability":"0.2209662899204551E0","distance_probability":-0.1458019816422658,"percentile":62.5},
65
+ {"word":"feeding","frequency":11771,"rank":36,"distance":-0.16257241398520197,"probability":"0.1313602915615939E-2","distance_probability":-0.1869116237848168,"percentile":63.5},
66
+ {"word":"cage","frequency":10195,"rank":35,"distance":-0.16586406764216863,"probability":"0.1137726762781794E-2","distance_probability":-0.18694454032138647,"percentile":64.5},
67
+ {"word":"balanced","frequency":6072,"rank":34,"distance":-0.17447541791353507,"probability":"0.677614213203634E-3","distance_probability":-0.1870306538241001,"percentile":65.5},
68
+ {"word":"homely","frequency":8321,"rank":33,"distance":-0.1697781278916328,"probability":"0.928594839932056E-3","distance_probability":-0.1869836809238811,"percentile":66.5},
69
+ {"word":"rustic","frequency":7703,"rank":32,"distance":-0.17106889055661081,"probability":"0.859628175939986E-3","distance_probability":-0.1869965885505309,"percentile":67.5},
70
+ {"word":"ascertain","frequency":13288,"rank":31,"distance":-0.15940398847909892,"probability":"0.1482894872373171E-2","distance_probability":-0.18687993952975576,"percentile":68.5},
71
+ {"word":"how","frequency":770603,"rank":30,"distance":1.4223337584915228,"probability":"0.85996631346732582E-1","distance_probability":-0.17106256206004952,"percentile":69.5},
72
+ {"word":"bough","frequency":4696,"rank":29,"distance":-0.17734934902520139,"probability":"0.524057369104787E-3","distance_probability":-0.1870593931352168,"percentile":70.5},
73
+ {"word":"inquisition","frequency":5929,"rank":28,"distance":-0.1747740895334248,"probability":"0.661655907457897E-3","distance_probability":-0.18703364054029903,"percentile":71.5},
74
+ {"word":"wants","frequency":55209,"rank":27,"distance":-0.07184725437142189,"probability":"0.6161133579835219E-2","distance_probability":-0.186004372188679,"percentile":72.5},
75
+ {"word":"majority","frequency":35276,"rank":26,"distance":-0.11347957184877992,"probability":"0.3936679674731786E-2","distance_probability":-0.18642069536345257,"percentile":73.5},
76
+ {"word":"trick","frequency":21052,"rank":25,"distance":-0.14318799927053985,"probability":"0.2349330437477423E-2","distance_probability":-0.18671777963767017,"percentile":74.5},
77
+ {"word":"heels","frequency":20695,"rank":24,"distance":-0.14393363401390097,"probability":"0.2309490471384916E-2","distance_probability":-0.18672523598510377,"percentile":75.5},
78
+ {"word":"lonesome","frequency":4121,"rank":23,"distance":-0.17855030134293987,"probability":"0.459889356490807E-3","distance_probability":-0.18707140265839417,"percentile":76.5},
79
+ {"word":"motives","frequency":22465,"rank":22,"distance":-0.14023678948799298,"probability":"0.25070163536923E-2","distance_probability":-0.1866882675398447,"percentile":77.5},
80
+ {"word":"exacting","frequency":4352,"rank":21,"distance":-0.17806783180311797,"probability":"0.485668158080075E-3","distance_probability":-0.18706657796299594,"percentile":78.5},
81
+ {"word":"mentions","frequency":7804,"rank":20,"distance":-0.17085794067123417,"probability":"0.870899426851311E-3","distance_probability":-0.18699447905167713,"percentile":79.5},
82
+ {"word":"lend","frequency":16903,"rank":19,"distance":-0.15185365347279534,"probability":"0.1886316377763674E-2","distance_probability":-0.18680443617969272,"percentile":80.5},
83
+ {"word":"cigars","frequency":6065,"rank":18,"distance":-0.17449003820262057,"probability":"0.676833037397899E-3","distance_probability":-0.187030800026991,"percentile":81.5},
84
+ {"word":"supplied","frequency":26694,"rank":17,"distance":-0.13140404626761737,"probability":"0.2978958136900167E-2","distance_probability":-0.18659994010764094,"percentile":82.5},
85
+ {"word":"expend","frequency":8249,"rank":16,"distance":-0.1699285080079409,"probability":"0.920559888787348E-3","distance_probability":-0.1869851847250442,"percentile":83.5},
86
+ {"word":"dozen","frequency":47519,"rank":15,"distance":-0.08790868623821983,"probability":"0.5302956158963027E-2","distance_probability":-0.18616498650734697,"percentile":84.5},
87
+ {"word":"hither","frequency":23489,"rank":14,"distance":-0.13809805005605527,"probability":"0.2621291214417024E-2","distance_probability":-0.18666688014552532,"percentile":85.5},
88
+ {"word":"fraud","frequency":8597,"rank":13,"distance":-0.16920167077911832,"probability":"0.959395485986766E-3","distance_probability":-0.18697791635275596,"percentile":86.5},
89
+ {"word":"pink","frequency":20698,"rank":12,"distance":-0.14392736817572147,"probability":"0.2309825261015946E-2","distance_probability":-0.18672517332672198,"percentile":87.5},
90
+ {"word":"seaman","frequency":4849,"rank":11,"distance":-0.17702979127804663,"probability":"0.54113164028729E-3","distance_probability":-0.18705619755774525,"percentile":88.5},
91
+ {"word":"baggage","frequency":11364,"rank":10,"distance":-0.16342247936488816,"probability":"0.1268183122339608E-2","distance_probability":-0.18692012443861367,"percentile":89.5},
92
+ {"word":"nominally","frequency":9971,"rank":9,"distance":-0.166331916892905,"probability":"0.1112729136998261E-2","distance_probability":-0.18694921881389384,"percentile":90.5},
93
+ {"word":"pair","frequency":51818,"rank":8,"distance":-0.0789297401269891,"probability":"0.5782709700228248E-2","distance_probability":-0.18607519704623468,"percentile":91.5},
94
+ {"word":"cloud","frequency":38187,"rank":7,"distance":-0.10739962020193353,"probability":"0.4261537213374042E-2","distance_probability":-0.1863598958469841,"percentile":92.5},
95
+ {"word":"offence","frequency":20882,"rank":6,"distance":-0.14354306343404516,"probability":"0.233035902505242E-2","distance_probability":-0.18672133027930524,"percentile":93.5},
96
+ {"word":"crimson","frequency":16348,"rank":5,"distance":-0.15301283353600378,"probability":"0.1824380296023224E-2","distance_probability":-0.1868160279803248,"percentile":94.5},
97
+ {"word":"repress","frequency":4308,"rank":4,"distance":-0.17815973076308403,"probability":"0.48075791015831E-3","distance_probability":-0.1870674969525956,"percentile":95.5},
98
+ {"word":"mysterious","frequency":38550,"rank":3,"distance":-0.10664145378221342,"probability":"0.4302046758728607E-2","distance_probability":-0.18635231418278692,"percentile":96.5},
99
+ {"word":"barbarian","frequency":4322,"rank":2,"distance":-0.178130490184913,"probability":"0.482320261769781E-3","distance_probability":-0.18706720454681391,"percentile":97.5},
100
+ {"word":"humanity","frequency":34419,"rank":1,"distance":-0.11526951295539187,"probability":"0.3841041436801036E-2","distance_probability":-0.18643859477451868,"percentile":98.5}]
101
+ }
@@ -0,0 +1,648 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html lang="en" dir="ltr" class="client-nojs" xmlns="http://www.w3.org/1999/xhtml">
3
+ <head>
4
+ <title>Wiktionary:Frequency lists/PG/2006/04/1-10000 - Wiktionary</title>
5
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6
+ <meta http-equiv="Content-Style-Type" content="text/css" />
7
+ <meta name="generator" content="MediaWiki 1.18wmf1" />
8
+ <link rel="alternate" type="application/x-wiki" title="Edit" href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit" />
9
+ <link rel="edit" title="Edit" href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit" />
10
+ <link rel="apple-touch-icon" href="//en.wiktionary.org/apple-touch-icon.png" />
11
+ <link rel="shortcut icon" href="/favicon.ico" />
12
+ <link rel="search" type="application/opensearchdescription+xml" href="/w/opensearch_desc.php" title="Wiktionary (en)" />
13
+ <link rel="EditURI" type="application/rsd+xml" href="//en.wiktionary.org/w/api.php?action=rsd" />
14
+ <link rel="copyright" href="//creativecommons.org/licenses/by-sa/3.0/" />
15
+ <link rel="alternate" type="application/atom+xml" title="Wiktionary Atom feed" href="/w/index.php?title=Special:RecentChanges&amp;feed=atom" />
16
+ <link rel="stylesheet" href="//bits.wikimedia.org/en.wiktionary.org/load.php?debug=false&amp;lang=en&amp;modules=ext.wikihiero%7Cmediawiki.legacy.commonPrint%2Cshared%7Cskins.vector&amp;only=styles&amp;skin=vector&amp;*" type="text/css" media="all" />
17
+ <meta name="ResourceLoaderDynamicStyles" content="" />
18
+ <link rel="stylesheet" href="//bits.wikimedia.org/en.wiktionary.org/load.php?debug=false&amp;lang=en&amp;modules=site&amp;only=styles&amp;skin=vector&amp;*" type="text/css" media="all" />
19
+ <style type="text/css" media="all">a:lang(ar),a:lang(ckb),a:lang(fa),a:lang(kk-arab),a:lang(mzn),a:lang(ps),a:lang(ur){text-decoration:none}a.new,#quickbar a.new{color:#ba0000}
20
+
21
+ /* cache key: enwiktionary:resourceloader:filter:minify-css:4:c88e2bcd56513749bec09a7e29cb3ffa */</style>
22
+ <script src="//bits.wikimedia.org/en.wiktionary.org/load.php?debug=false&amp;lang=en&amp;modules=startup&amp;only=scripts&amp;skin=vector&amp;*" type="text/javascript"></script>
23
+ <script type="text/javascript">if ( window.mediaWiki ) {
24
+ mw.config.set({"wgCanonicalNamespace": "Project", "wgCanonicalSpecialPageName": false, "wgNamespaceNumber": 4, "wgPageName": "Wiktionary:Frequency_lists/PG/2006/04/1-10000", "wgTitle": "Frequency lists/PG/2006/04/1-10000", "wgCurRevisionId": 15254843, "wgArticleId": 267872, "wgIsArticle": true, "wgAction": "view", "wgUserName": null, "wgUserGroups": ["*"], "wgCategories": [], "wgBreakFrames": false, "wgRestrictionEdit": [], "wgRestrictionMove": [], "wgSearchNamespaces": [0], "wgVectorEnabledModules": {"collapsiblenav": true, "collapsibletabs": true, "editwarning": true, "expandablesearch": false, "footercleanup": false, "sectioneditlinks": false, "simplesearch": true, "experiments": true}, "wgWikiEditorEnabledModules": {"toolbar": true, "dialogs": true, "hidesig": true, "templateEditor": false, "templates": false, "preview": false, "previewDialog": false, "publish": false, "toc": false}, "Geo": {"city": "", "country": ""}, "wgNoticeProject": "wiktionary"});
25
+ }
26
+ </script><script type="text/javascript">if ( window.mediaWiki ) {
27
+ mw.loader.load(["mediawiki.page.startup"]);
28
+ }
29
+ </script>
30
+ <!--[if lt IE 7]><style type="text/css">body{behavior:url("/w/skins-1.18/vector/csshover.min.htc")}</style><![endif]--></head>
31
+ <body class="mediawiki ltr sitedir-ltr ns-4 ns-subject page-Wiktionary_Frequency_lists_PG_2006_04_1-10000 action-view skin-vector">
32
+ <div id="mw-page-base" class="noprint"></div>
33
+ <div id="mw-head-base" class="noprint"></div>
34
+ <!-- content -->
35
+ <div id="content">
36
+ <a id="top"></a>
37
+ <div id="mw-js-message" style="display:none;"></div>
38
+ <!-- sitenotice -->
39
+ <div id="siteNotice"><!-- centralNotice loads here --><script type="text/javascript">
40
+ /* <![CDATA[ */
41
+ document.writeln("\x3cdiv id=\"localNotice\" lang=\"en\" dir=\"ltr\"\x3e\x3cp\x3e \n\x3c/p\x3e\x3c/div\x3e");
42
+ /* ]]> */
43
+ </script></div>
44
+ <!-- /sitenotice -->
45
+ <!-- firstHeading -->
46
+ <h1 id="firstHeading" class="firstHeading">Wiktionary:Frequency lists/PG/2006/04/1-10000</h1>
47
+ <!-- /firstHeading -->
48
+ <!-- bodyContent -->
49
+ <div id="bodyContent">
50
+ <!-- tagline -->
51
+ <div id="siteSub">Definition from Wiktionary, the free dictionary</div>
52
+ <!-- /tagline -->
53
+ <!-- subtitle -->
54
+ <div id="contentSub"><span class="subpages">&lt; <a href="/wiki/Wiktionary:Frequency_lists" title="Wiktionary:Frequency lists">Wiktionary:Frequency lists</a></span></div>
55
+ <!-- /subtitle -->
56
+ <!-- jumpto -->
57
+ <div id="jump-to-nav">
58
+ Jump to: <a href="#mw-head">navigation</a>,
59
+ <a href="#p-search">search</a>
60
+ </div>
61
+ <!-- /jumpto -->
62
+ <!-- bodycontent -->
63
+ <div lang="en" dir="ltr" class="mw-content-ltr"><div style="float:right; clear:both; margin-left:0.5em;">
64
+ <table id="toc" class="toc">
65
+ <tr>
66
+ <td>
67
+ <div id="toctitle">
68
+ <h2>Contents</h2>
69
+ </div>
70
+ <ul>
71
+ <li class="toclevel-1 tocsection-1"><a href="#1_-_10000"><span class="tocnumber">1</span> <span class="toctext">1 - 10000</span></a>
72
+ <ul>
73
+ <li class="toclevel-2 tocsection-2"><a href="#1_-_1000"><span class="tocnumber">1.1</span> <span class="toctext">1 - 1000</span></a>
74
+ <ul>
75
+ <li class="toclevel-3 tocsection-3"><a href="#1_-_100"><span class="tocnumber">1.1.1</span> <span class="toctext">1 - 100</span></a></li>
76
+ <li class="toclevel-3 tocsection-4"><a href="#101_-_200"><span class="tocnumber">1.1.2</span> <span class="toctext">101 - 200</span></a></li>
77
+ <li class="toclevel-3 tocsection-5"><a href="#201_-_300"><span class="tocnumber">1.1.3</span> <span class="toctext">201 - 300</span></a></li>
78
+ <li class="toclevel-3 tocsection-6"><a href="#301_-_400"><span class="tocnumber">1.1.4</span> <span class="toctext">301 - 400</span></a></li>
79
+ <li class="toclevel-3 tocsection-7"><a href="#401_-_500"><span class="tocnumber">1.1.5</span> <span class="toctext">401 - 500</span></a></li>
80
+ <li class="toclevel-3 tocsection-8"><a href="#501_-_600"><span class="tocnumber">1.1.6</span> <span class="toctext">501 - 600</span></a></li>
81
+ <li class="toclevel-3 tocsection-9"><a href="#601_-_700"><span class="tocnumber">1.1.7</span> <span class="toctext">601 - 700</span></a></li>
82
+ <li class="toclevel-3 tocsection-10"><a href="#701_-_800"><span class="tocnumber">1.1.8</span> <span class="toctext">701 - 800</span></a></li>
83
+ <li class="toclevel-3 tocsection-11"><a href="#801_-_900"><span class="tocnumber">1.1.9</span> <span class="toctext">801 - 900</span></a></li>
84
+ <li class="toclevel-3 tocsection-12"><a href="#901_-_1000"><span class="tocnumber">1.1.10</span> <span class="toctext">901 - 1000</span></a></li>
85
+ </ul>
86
+ </li>
87
+ <li class="toclevel-2 tocsection-13"><a href="#1001_-_2000"><span class="tocnumber">1.2</span> <span class="toctext">1001 - 2000</span></a>
88
+ <ul>
89
+ <li class="toclevel-3 tocsection-14"><a href="#1001_-_1100"><span class="tocnumber">1.2.1</span> <span class="toctext">1001 - 1100</span></a></li>
90
+ <li class="toclevel-3 tocsection-15"><a href="#1101_-_1200"><span class="tocnumber">1.2.2</span> <span class="toctext">1101 - 1200</span></a></li>
91
+ <li class="toclevel-3 tocsection-16"><a href="#1201_-_1300"><span class="tocnumber">1.2.3</span> <span class="toctext">1201 - 1300</span></a></li>
92
+ <li class="toclevel-3 tocsection-17"><a href="#1301_-_1400"><span class="tocnumber">1.2.4</span> <span class="toctext">1301 - 1400</span></a></li>
93
+ <li class="toclevel-3 tocsection-18"><a href="#1401_-_1500"><span class="tocnumber">1.2.5</span> <span class="toctext">1401 - 1500</span></a></li>
94
+ <li class="toclevel-3 tocsection-19"><a href="#1501_-_1600"><span class="tocnumber">1.2.6</span> <span class="toctext">1501 - 1600</span></a></li>
95
+ <li class="toclevel-3 tocsection-20"><a href="#1601_-_1700"><span class="tocnumber">1.2.7</span> <span class="toctext">1601 - 1700</span></a></li>
96
+ <li class="toclevel-3 tocsection-21"><a href="#1701_-_1800"><span class="tocnumber">1.2.8</span> <span class="toctext">1701 - 1800</span></a></li>
97
+ <li class="toclevel-3 tocsection-22"><a href="#1801_-_1900"><span class="tocnumber">1.2.9</span> <span class="toctext">1801 - 1900</span></a></li>
98
+ <li class="toclevel-3 tocsection-23"><a href="#1901_-_2000"><span class="tocnumber">1.2.10</span> <span class="toctext">1901 - 2000</span></a></li>
99
+ </ul>
100
+ </li>
101
+ <li class="toclevel-2 tocsection-24"><a href="#2001_-_3000"><span class="tocnumber">1.3</span> <span class="toctext">2001 - 3000</span></a>
102
+ <ul>
103
+ <li class="toclevel-3 tocsection-25"><a href="#2001_-_2100"><span class="tocnumber">1.3.1</span> <span class="toctext">2001 - 2100</span></a></li>
104
+ <li class="toclevel-3 tocsection-26"><a href="#2101_-_2200"><span class="tocnumber">1.3.2</span> <span class="toctext">2101 - 2200</span></a></li>
105
+ <li class="toclevel-3 tocsection-27"><a href="#2201_-_2300"><span class="tocnumber">1.3.3</span> <span class="toctext">2201 - 2300</span></a></li>
106
+ <li class="toclevel-3 tocsection-28"><a href="#2301_-_2400"><span class="tocnumber">1.3.4</span> <span class="toctext">2301 - 2400</span></a></li>
107
+ <li class="toclevel-3 tocsection-29"><a href="#2401_-_2500"><span class="tocnumber">1.3.5</span> <span class="toctext">2401 - 2500</span></a></li>
108
+ <li class="toclevel-3 tocsection-30"><a href="#2501_-_2600"><span class="tocnumber">1.3.6</span> <span class="toctext">2501 - 2600</span></a></li>
109
+ <li class="toclevel-3 tocsection-31"><a href="#2601_-_2700"><span class="tocnumber">1.3.7</span> <span class="toctext">2601 - 2700</span></a></li>
110
+ <li class="toclevel-3 tocsection-32"><a href="#2701_-_2800"><span class="tocnumber">1.3.8</span> <span class="toctext">2701 - 2800</span></a></li>
111
+ <li class="toclevel-3 tocsection-33"><a href="#2801_-_2900"><span class="tocnumber">1.3.9</span> <span class="toctext">2801 - 2900</span></a></li>
112
+ <li class="toclevel-3 tocsection-34"><a href="#2901_-_3000"><span class="tocnumber">1.3.10</span> <span class="toctext">2901 - 3000</span></a></li>
113
+ </ul>
114
+ </li>
115
+ <li class="toclevel-2 tocsection-35"><a href="#3001_-_4000"><span class="tocnumber">1.4</span> <span class="toctext">3001 - 4000</span></a>
116
+ <ul>
117
+ <li class="toclevel-3 tocsection-36"><a href="#3001_-_3100"><span class="tocnumber">1.4.1</span> <span class="toctext">3001 - 3100</span></a></li>
118
+ <li class="toclevel-3 tocsection-37"><a href="#3101_-_3200"><span class="tocnumber">1.4.2</span> <span class="toctext">3101 - 3200</span></a></li>
119
+ <li class="toclevel-3 tocsection-38"><a href="#3201_-_3300"><span class="tocnumber">1.4.3</span> <span class="toctext">3201 - 3300</span></a></li>
120
+ <li class="toclevel-3 tocsection-39"><a href="#3301_-_3400"><span class="tocnumber">1.4.4</span> <span class="toctext">3301 - 3400</span></a></li>
121
+ <li class="toclevel-3 tocsection-40"><a href="#3401_-_3500"><span class="tocnumber">1.4.5</span> <span class="toctext">3401 - 3500</span></a></li>
122
+ <li class="toclevel-3 tocsection-41"><a href="#3501_-_3600"><span class="tocnumber">1.4.6</span> <span class="toctext">3501 - 3600</span></a></li>
123
+ <li class="toclevel-3 tocsection-42"><a href="#3601_-_3700"><span class="tocnumber">1.4.7</span> <span class="toctext">3601 - 3700</span></a></li>
124
+ <li class="toclevel-3 tocsection-43"><a href="#3701_-_3800"><span class="tocnumber">1.4.8</span> <span class="toctext">3701 - 3800</span></a></li>
125
+ <li class="toclevel-3 tocsection-44"><a href="#3801_-_3900"><span class="tocnumber">1.4.9</span> <span class="toctext">3801 - 3900</span></a></li>
126
+ <li class="toclevel-3 tocsection-45"><a href="#3901_-_4000"><span class="tocnumber">1.4.10</span> <span class="toctext">3901 - 4000</span></a></li>
127
+ </ul>
128
+ </li>
129
+ <li class="toclevel-2 tocsection-46"><a href="#4001_-_5000"><span class="tocnumber">1.5</span> <span class="toctext">4001 - 5000</span></a>
130
+ <ul>
131
+ <li class="toclevel-3 tocsection-47"><a href="#4001_-_4100"><span class="tocnumber">1.5.1</span> <span class="toctext">4001 - 4100</span></a></li>
132
+ <li class="toclevel-3 tocsection-48"><a href="#4101_-_4200"><span class="tocnumber">1.5.2</span> <span class="toctext">4101 - 4200</span></a></li>
133
+ <li class="toclevel-3 tocsection-49"><a href="#4201_-_4300"><span class="tocnumber">1.5.3</span> <span class="toctext">4201 - 4300</span></a></li>
134
+ <li class="toclevel-3 tocsection-50"><a href="#4301_-_4400"><span class="tocnumber">1.5.4</span> <span class="toctext">4301 - 4400</span></a></li>
135
+ <li class="toclevel-3 tocsection-51"><a href="#4401_-_4500"><span class="tocnumber">1.5.5</span> <span class="toctext">4401 - 4500</span></a></li>
136
+ <li class="toclevel-3 tocsection-52"><a href="#4501_-_4600"><span class="tocnumber">1.5.6</span> <span class="toctext">4501 - 4600</span></a></li>
137
+ <li class="toclevel-3 tocsection-53"><a href="#4601_-_4700"><span class="tocnumber">1.5.7</span> <span class="toctext">4601 - 4700</span></a></li>
138
+ <li class="toclevel-3 tocsection-54"><a href="#4701_-_4800"><span class="tocnumber">1.5.8</span> <span class="toctext">4701 - 4800</span></a></li>
139
+ <li class="toclevel-3 tocsection-55"><a href="#4801_-_4900"><span class="tocnumber">1.5.9</span> <span class="toctext">4801 - 4900</span></a></li>
140
+ <li class="toclevel-3 tocsection-56"><a href="#4901_-_5000"><span class="tocnumber">1.5.10</span> <span class="toctext">4901 - 5000</span></a></li>
141
+ </ul>
142
+ </li>
143
+ <li class="toclevel-2 tocsection-57"><a href="#5001_-_6000"><span class="tocnumber">1.6</span> <span class="toctext">5001 - 6000</span></a>
144
+ <ul>
145
+ <li class="toclevel-3 tocsection-58"><a href="#5001_-_5100"><span class="tocnumber">1.6.1</span> <span class="toctext">5001 - 5100</span></a></li>
146
+ <li class="toclevel-3 tocsection-59"><a href="#5101_-_5200"><span class="tocnumber">1.6.2</span> <span class="toctext">5101 - 5200</span></a></li>
147
+ <li class="toclevel-3 tocsection-60"><a href="#5201_-_5300"><span class="tocnumber">1.6.3</span> <span class="toctext">5201 - 5300</span></a></li>
148
+ <li class="toclevel-3 tocsection-61"><a href="#5301_-_5400"><span class="tocnumber">1.6.4</span> <span class="toctext">5301 - 5400</span></a></li>
149
+ <li class="toclevel-3 tocsection-62"><a href="#5401_-_5500"><span class="tocnumber">1.6.5</span> <span class="toctext">5401 - 5500</span></a></li>
150
+ <li class="toclevel-3 tocsection-63"><a href="#5501_-_5600"><span class="tocnumber">1.6.6</span> <span class="toctext">5501 - 5600</span></a></li>
151
+ <li class="toclevel-3 tocsection-64"><a href="#5601_-_5700"><span class="tocnumber">1.6.7</span> <span class="toctext">5601 - 5700</span></a></li>
152
+ <li class="toclevel-3 tocsection-65"><a href="#5701_-_5800"><span class="tocnumber">1.6.8</span> <span class="toctext">5701 - 5800</span></a></li>
153
+ <li class="toclevel-3 tocsection-66"><a href="#5801_-_5900"><span class="tocnumber">1.6.9</span> <span class="toctext">5801 - 5900</span></a></li>
154
+ <li class="toclevel-3 tocsection-67"><a href="#5901_-_6000"><span class="tocnumber">1.6.10</span> <span class="toctext">5901 - 6000</span></a></li>
155
+ </ul>
156
+ </li>
157
+ <li class="toclevel-2 tocsection-68"><a href="#6001_-_7000"><span class="tocnumber">1.7</span> <span class="toctext">6001 - 7000</span></a>
158
+ <ul>
159
+ <li class="toclevel-3 tocsection-69"><a href="#6001_-_6100"><span class="tocnumber">1.7.1</span> <span class="toctext">6001 - 6100</span></a></li>
160
+ <li class="toclevel-3 tocsection-70"><a href="#6101_-_6200"><span class="tocnumber">1.7.2</span> <span class="toctext">6101 - 6200</span></a></li>
161
+ <li class="toclevel-3 tocsection-71"><a href="#6201_-_6300"><span class="tocnumber">1.7.3</span> <span class="toctext">6201 - 6300</span></a></li>
162
+ <li class="toclevel-3 tocsection-72"><a href="#6301_-_6400"><span class="tocnumber">1.7.4</span> <span class="toctext">6301 - 6400</span></a></li>
163
+ <li class="toclevel-3 tocsection-73"><a href="#6401_-_6500"><span class="tocnumber">1.7.5</span> <span class="toctext">6401 - 6500</span></a></li>
164
+ <li class="toclevel-3 tocsection-74"><a href="#6501_-_6600"><span class="tocnumber">1.7.6</span> <span class="toctext">6501 - 6600</span></a></li>
165
+ <li class="toclevel-3 tocsection-75"><a href="#6601_-_6700"><span class="tocnumber">1.7.7</span> <span class="toctext">6601 - 6700</span></a></li>
166
+ <li class="toclevel-3 tocsection-76"><a href="#6701_-_6800"><span class="tocnumber">1.7.8</span> <span class="toctext">6701 - 6800</span></a></li>
167
+ <li class="toclevel-3 tocsection-77"><a href="#6801_-_6900"><span class="tocnumber">1.7.9</span> <span class="toctext">6801 - 6900</span></a></li>
168
+ <li class="toclevel-3 tocsection-78"><a href="#6901_-_7000"><span class="tocnumber">1.7.10</span> <span class="toctext">6901 - 7000</span></a></li>
169
+ </ul>
170
+ </li>
171
+ <li class="toclevel-2 tocsection-79"><a href="#7001_-_8000"><span class="tocnumber">1.8</span> <span class="toctext">7001 - 8000</span></a>
172
+ <ul>
173
+ <li class="toclevel-3 tocsection-80"><a href="#7001_-_7100"><span class="tocnumber">1.8.1</span> <span class="toctext">7001 - 7100</span></a></li>
174
+ <li class="toclevel-3 tocsection-81"><a href="#7101_-_7200"><span class="tocnumber">1.8.2</span> <span class="toctext">7101 - 7200</span></a></li>
175
+ <li class="toclevel-3 tocsection-82"><a href="#7201_-_7300"><span class="tocnumber">1.8.3</span> <span class="toctext">7201 - 7300</span></a></li>
176
+ <li class="toclevel-3 tocsection-83"><a href="#7301_-_7400"><span class="tocnumber">1.8.4</span> <span class="toctext">7301 - 7400</span></a></li>
177
+ <li class="toclevel-3 tocsection-84"><a href="#7401_-_7500"><span class="tocnumber">1.8.5</span> <span class="toctext">7401 - 7500</span></a></li>
178
+ <li class="toclevel-3 tocsection-85"><a href="#7501_-_7600"><span class="tocnumber">1.8.6</span> <span class="toctext">7501 - 7600</span></a></li>
179
+ <li class="toclevel-3 tocsection-86"><a href="#7601_-_7700"><span class="tocnumber">1.8.7</span> <span class="toctext">7601 - 7700</span></a></li>
180
+ <li class="toclevel-3 tocsection-87"><a href="#7701_-_7800"><span class="tocnumber">1.8.8</span> <span class="toctext">7701 - 7800</span></a></li>
181
+ <li class="toclevel-3 tocsection-88"><a href="#7801_-_7900"><span class="tocnumber">1.8.9</span> <span class="toctext">7801 - 7900</span></a></li>
182
+ <li class="toclevel-3 tocsection-89"><a href="#7901_-_8000"><span class="tocnumber">1.8.10</span> <span class="toctext">7901 - 8000</span></a></li>
183
+ </ul>
184
+ </li>
185
+ <li class="toclevel-2 tocsection-90"><a href="#8001_-_9000"><span class="tocnumber">1.9</span> <span class="toctext">8001 - 9000</span></a>
186
+ <ul>
187
+ <li class="toclevel-3 tocsection-91"><a href="#8001_-_8100"><span class="tocnumber">1.9.1</span> <span class="toctext">8001 - 8100</span></a></li>
188
+ <li class="toclevel-3 tocsection-92"><a href="#8101_-_8200"><span class="tocnumber">1.9.2</span> <span class="toctext">8101 - 8200</span></a></li>
189
+ <li class="toclevel-3 tocsection-93"><a href="#8201_-_8300"><span class="tocnumber">1.9.3</span> <span class="toctext">8201 - 8300</span></a></li>
190
+ <li class="toclevel-3 tocsection-94"><a href="#8301_-_8400"><span class="tocnumber">1.9.4</span> <span class="toctext">8301 - 8400</span></a></li>
191
+ <li class="toclevel-3 tocsection-95"><a href="#8401_-_8500"><span class="tocnumber">1.9.5</span> <span class="toctext">8401 - 8500</span></a></li>
192
+ <li class="toclevel-3 tocsection-96"><a href="#8501_-_8600"><span class="tocnumber">1.9.6</span> <span class="toctext">8501 - 8600</span></a></li>
193
+ <li class="toclevel-3 tocsection-97"><a href="#8601_-_8700"><span class="tocnumber">1.9.7</span> <span class="toctext">8601 - 8700</span></a></li>
194
+ <li class="toclevel-3 tocsection-98"><a href="#8701_-_8800"><span class="tocnumber">1.9.8</span> <span class="toctext">8701 - 8800</span></a></li>
195
+ <li class="toclevel-3 tocsection-99"><a href="#8801_-_8900"><span class="tocnumber">1.9.9</span> <span class="toctext">8801 - 8900</span></a></li>
196
+ <li class="toclevel-3 tocsection-100"><a href="#8901_-_9000"><span class="tocnumber">1.9.10</span> <span class="toctext">8901 - 9000</span></a></li>
197
+ </ul>
198
+ </li>
199
+ <li class="toclevel-2 tocsection-101"><a href="#9001_-_10000"><span class="tocnumber">1.10</span> <span class="toctext">9001 - 10000</span></a>
200
+ <ul>
201
+ <li class="toclevel-3 tocsection-102"><a href="#9001_-_9100"><span class="tocnumber">1.10.1</span> <span class="toctext">9001 - 9100</span></a></li>
202
+ <li class="toclevel-3 tocsection-103"><a href="#9101_-_9200"><span class="tocnumber">1.10.2</span> <span class="toctext">9101 - 9200</span></a></li>
203
+ <li class="toclevel-3 tocsection-104"><a href="#9201_-_9300"><span class="tocnumber">1.10.3</span> <span class="toctext">9201 - 9300</span></a></li>
204
+ <li class="toclevel-3 tocsection-105"><a href="#9301_-_9400"><span class="tocnumber">1.10.4</span> <span class="toctext">9301 - 9400</span></a></li>
205
+ <li class="toclevel-3 tocsection-106"><a href="#9401_-_9500"><span class="tocnumber">1.10.5</span> <span class="toctext">9401 - 9500</span></a></li>
206
+ <li class="toclevel-3 tocsection-107"><a href="#9501_-_9600"><span class="tocnumber">1.10.6</span> <span class="toctext">9501 - 9600</span></a></li>
207
+ <li class="toclevel-3 tocsection-108"><a href="#9601_-_9700"><span class="tocnumber">1.10.7</span> <span class="toctext">9601 - 9700</span></a></li>
208
+ <li class="toclevel-3 tocsection-109"><a href="#9701_-_9800"><span class="tocnumber">1.10.8</span> <span class="toctext">9701 - 9800</span></a></li>
209
+ <li class="toclevel-3 tocsection-110"><a href="#9801_-_9900"><span class="tocnumber">1.10.9</span> <span class="toctext">9801 - 9900</span></a></li>
210
+ <li class="toclevel-3 tocsection-111"><a href="#9901_-_10000"><span class="tocnumber">1.10.10</span> <span class="toctext">9901 - 10000</span></a></li>
211
+ </ul>
212
+ </li>
213
+ </ul>
214
+ </li>
215
+ </ul>
216
+ </td>
217
+ </tr>
218
+ </table>
219
+ </div>
220
+ <h3><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=1" title="Edit section: 1 - 10000">edit</a>]</span> <span class="mw-headline" id="1_-_10000">1 - 10000</span></h3>
221
+ <p>Frequencies listed here are <i>per billion.</i> Fractions are limited to two decimal places. <b>Case insensitive.</b></p>
222
+ <p><br /></p>
223
+ <h4><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=2" title="Edit section: 1 - 1000">edit</a>]</span> <span class="mw-headline" id="1_-_1000">1 - 1000</span></h4>
224
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=3" title="Edit section: 1 - 100">edit</a>]</span> <span class="mw-headline" id="1_-_100">1 - 100</span></h5>
225
+ <p><a href="/wiki/the" title="the">the</a> = 56271872 <a href="/wiki/of" title="of">of</a> = 33950064 <a href="/wiki/and" title="and">and</a> = 29944184 <a href="/wiki/to" title="to">to</a> = 25956096 <a href="/wiki/in" title="in">in</a> = 17420636 <a href="/wiki/I" title="I">I</a> = 11764797 <a href="/wiki/that" title="that">that</a> = 11073318 <a href="/wiki/was" title="was">was</a> = 10078245 <a href="/wiki/his" title="his">his</a> = 8799755 <a href="/wiki/he" title="he">he</a> = 8397205 <a href="/wiki/it" title="it">it</a> = 8058110 <a href="/wiki/with" title="with">with</a> = 7725512 <a href="/wiki/is" title="is">is</a> = 7557477 <a href="/wiki/for" title="for">for</a> = 7097981 <a href="/wiki/as" title="as">as</a> = 7037543 <a href="/wiki/had" title="had">had</a> = 6139336 <a href="/wiki/you" title="you">you</a> = 6048903 <a href="/wiki/not" title="not">not</a> = 5741803 <a href="/wiki/be" title="be">be</a> = 5662527 <a href="/wiki/her" title="her">her</a> = 5202501 <a href="/wiki/on" title="on">on</a> = 5113263 <a href="/wiki/at" title="at">at</a> = 5091841 <a href="/wiki/by" title="by">by</a> = 5061050 <a href="/wiki/which" title="which">which</a> = 4580906 <a href="/wiki/have" title="have">have</a> = 4346500 <a href="/wiki/or" title="or">or</a> = 4228287 <a href="/wiki/from" title="from">from</a> = 4108111 <a href="/wiki/this" title="this">this</a> = 4015425 <a href="/wiki/him" title="him">him</a> = 3971997 <a href="/wiki/but" title="but">but</a> = 3894211 <a href="/wiki/all" title="all">all</a> = 3703342 <a href="/wiki/she" title="she">she</a> = 3415846 <a href="/wiki/they" title="they">they</a> = 3340398 <a href="/wiki/were" title="were">were</a> = 3323884 <a href="/wiki/my" title="my">my</a> = 3277699 <a href="/wiki/are" title="are">are</a> = 3224178 <a href="/wiki/me" title="me">me</a> = 3027134 <a href="/wiki/one" title="one">one</a> = 2832569 <a href="/wiki/their" title="their">their</a> = 2820265 <a href="/wiki/so" title="so">so</a> = 2802481 <a href="/wiki/an" title="an">an</a> = 2641417 <a href="/wiki/said" title="said">said</a> = 2637136 <a href="/wiki/them" title="them">them</a> = 2509917 <a href="/wiki/we" title="we">we</a> = 2491655 <a href="/wiki/who" title="who">who</a> = 2472663 <a href="/wiki/would" title="would">would</a> = 2400858 <a href="/wiki/been" title="been">been</a> = 2357654 <a href="/wiki/will" title="will">will</a> = 2320022 <a href="/wiki/no" title="no">no</a> = 2241145 <a href="/wiki/when" title="when">when</a> = 1980046 <a href="/wiki/there" title="there">there</a> = 1961200 <a href="/wiki/if" title="if">if</a> = 1951102 <a href="/wiki/more" title="more">more</a> = 1899787 <a href="/wiki/out" title="out">out</a> = 1875351 <a href="/wiki/up" title="up">up</a> = 1792712 <a href="/wiki/into" title="into">into</a> = 1703963 <a href="/wiki/do" title="do">do</a> = 1680164 <a href="/wiki/any" title="any">any</a> = 1665366 <a href="/wiki/your" title="your">your</a> = 1658553 <a href="/wiki/what" title="what">what</a> = 1605908 <a href="/wiki/has" title="has">has</a> = 1602329 <a href="/wiki/man" title="man">man</a> = 1573117 <a href="/wiki/could" title="could">could</a> = 1571110 <a href="/wiki/other" title="other">other</a> = 1533530 <a href="/wiki/than" title="than">than</a> = 1508779 <a href="/wiki/our" title="our">our</a> = 1498473 <a href="/wiki/some" title="some">some</a> = 1476767 <a href="/wiki/very" title="very">very</a> = 1462382 <a href="/wiki/time" title="time">time</a> = 1449681 <a href="/wiki/upon" title="upon">upon</a> = 1424595 <a href="/wiki/about" title="about">about</a> = 1414687 <a href="/wiki/may" title="may">may</a> = 1400642 <a href="/wiki/its" title="its">its</a> = 1373270 <a href="/wiki/only" title="only">only</a> = 1318367 <a href="/wiki/now" title="now">now</a> = 1317723 <a href="/wiki/like" title="like">like</a> = 1280625 <a href="/wiki/little" title="little">little</a> = 1273589 <a href="/wiki/then" title="then">then</a> = 1255636 <a href="/wiki/can" title="can">can</a> = 1210074 <a href="/wiki/should" title="should">should</a> = 1192154 <a href="/wiki/made" title="made">made</a> = 1188501 <a href="/wiki/did" title="did">did</a> = 1185720 <a href="/wiki/us" title="us">us</a> = 1171742 <a href="/wiki/such" title="such">such</a> = 1136757 <a href="/wiki/a" title="a">a</a> = 1135294 <a href="/wiki/great" title="great">great</a> = 1120163 <a href="/wiki/before" title="before">before</a> = 1117089 <a href="/wiki/must" title="must">must</a> = 1108116 <a href="/wiki/two" title="two">two</a> = 1093366 <a href="/wiki/these" title="these">these</a> = 1090510 <a href="/wiki/see" title="see">see</a> = 1084286 <a href="/wiki/know" title="know">know</a> = 1075612 <a href="/wiki/over" title="over">over</a> = 1056659 <a href="/wiki/much" title="much">much</a> = 1021822 <a href="/wiki/down" title="down">down</a> = 989808 <a href="/wiki/after" title="after">after</a> = 978575 <a href="/wiki/first" title="first">first</a> = 978196 <a href="/wiki/Mr" title="Mr">mr</a> = 974419 <a href="/wiki/good" title="good">good</a> = 966602 <a href="/wiki/men" title="men">men</a> = 923053</p>
226
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=4" title="Edit section: 101 - 200">edit</a>]</span> <span class="mw-headline" id="101_-_200">101 - 200</span></h5>
227
+ <p><a href="/wiki/own" title="own">own</a> = 922130 <a href="/wiki/never" title="never">never</a> = 899673 <a href="/wiki/most" title="most">most</a> = 889691 <a href="/wiki/old" title="old">old</a> = 887917 <a href="/wiki/shall" title="shall">shall</a> = 883846 <a href="/wiki/day" title="day">day</a> = 882331 <a href="/wiki/where" title="where">where</a> = 881975 <a href="/wiki/those" title="those">those</a> = 878621 <a href="/wiki/came" title="came">came</a> = 873144 <a href="/wiki/come" title="come">come</a> = 873007 <a href="/wiki/himself" title="himself">himself</a> = 863478 <a href="/wiki/way" title="way">way</a> = 860027 <a href="/wiki/work" title="work">work</a> = 829823 <a href="/wiki/life" title="life">life</a> = 825485 <a href="/wiki/without" title="without">without</a> = 819684 <a href="/wiki/go" title="go">go</a> = 816536 <a href="/wiki/make" title="make">make</a> = 807600 <a href="/wiki/well" title="well">well</a> = 799596 <a href="/wiki/through" title="through">through</a> = 792925 <a href="/wiki/being" title="being">being</a> = 792220 <a href="/wiki/long" title="long">long</a> = 791686 <a href="/wiki/say" title="say">say</a> = 788124 <a href="/wiki/might" title="might">might</a> = 787455 <a href="/wiki/how" title="how">how</a> = 770603 <a href="/wiki/am" title="am">am</a> = 761957 <a href="/wiki/too" title="too">too</a> = 758856 <a href="/wiki/even" title="even">even</a> = 750750 <a href="/wiki/def" title="def">def</a> = 748992 <a href="/wiki/again" title="again">again</a> = 745230 <a href="/wiki/many" title="many">many</a> = 744168 <a href="/wiki/back" title="back">back</a> = 740270 <a href="/wiki/here" title="here">here</a> = 729829 <a href="/wiki/think" title="think">think</a> = 715780 <a href="/wiki/every" title="every">every</a> = 704444 <a href="/wiki/people" title="people">people</a> = 701741 <a href="/wiki/went" title="went">went</a> = 690186 <a href="/wiki/same" title="same">same</a> = 689376 <a href="/wiki/last" title="last">last</a> = 680833 <a href="/wiki/thought" title="thought">thought</a> = 674623 <a href="/wiki/away" title="away">away</a> = 673810 <a href="/wiki/under" title="under">under</a> = 671168 <a href="/wiki/take" title="take">take</a> = 656486 <a href="/wiki/found" title="found">found</a> = 654512 <a href="/wiki/hand" title="hand">hand</a> = 648227 <a href="/wiki/eyes" title="eyes">eyes</a> = 647788 <a href="/wiki/still" title="still">still</a> = 640067 <a href="/wiki/place" title="place">place</a> = 621773 <a href="/wiki/while" title="while">while</a> = 613918 <a href="/wiki/just" title="just">just</a> = 610168 <a href="/wiki/also" title="also">also</a> = 608042 <a href="/wiki/young" title="young">young</a> = 591821 <a href="/wiki/yet" title="yet">yet</a> = 588615 <a href="/wiki/though" title="though">though</a> = 570877 <a href="/wiki/against" title="against">against</a> = 569459 <a href="/wiki/things" title="things">things</a> = 567559 <a href="/wiki/get" title="get">get</a> = 564674 <a href="/wiki/ever" title="ever">ever</a> = 559207 <a href="/wiki/give" title="give">give</a> = 554003 <a href="/wiki/god" title="god">god</a> = 552668 <a href="/wiki/years" title="years">years</a> = 547420 <a href="/wiki/off" title="off">off</a> = 545832 <a href="/wiki/face" title="face">face</a> = 544251 <a href="/wiki/nothing" title="nothing">nothing</a> = 541692 <a href="/wiki/right" title="right">right</a> = 536737 <a href="/wiki/once" title="once">once</a> = 534154 <a href="/wiki/another" title="another">another</a> = 533985 <a href="/wiki/left" title="left">left</a> = 531797 <a href="/wiki/part" title="part">part</a> = 526137 <a href="/wiki/saw" title="saw">saw</a> = 520922 <a href="/wiki/house" title="house">house</a> = 517564 <a href="/wiki/world" title="world">world</a> = 517557 <a href="/wiki/head" title="head">head</a> = 512481 <a href="/wiki/three" title="three">three</a> = 502146 <a href="/wiki/took" title="took">took</a> = 501669 <a href="/wiki/new" title="new">new</a> = 498040 <a href="/wiki/love" title="love">love</a> = 496496 <a href="/wiki/always" title="always">always</a> = 495834 <a href="/wiki/mrs" title="mrs" class="mw-redirect">mrs</a> = 495443 <a href="/wiki/put" title="put">put</a> = 495189 <a href="/wiki/night" title="night">night</a> = 484878 <a href="/wiki/each" title="each">each</a> = 484599 <a href="/wiki/king" title="king">king</a> = 479849 <a href="/wiki/between" title="between">between</a> = 479034 <a href="/wiki/tell" title="tell">tell</a> = 475277 <a href="/wiki/mind" title="mind">mind</a> = 470313 <a href="/wiki/heart" title="heart">heart</a> = 467157 <a href="/wiki/few" title="few">few</a> = 466338 <a href="/wiki/because" title="because">because</a> = 465587 <a href="/wiki/thing" title="thing">thing</a> = 461472 <a href="/wiki/whom" title="whom">whom</a> = 458312 <a href="/wiki/far" title="far">far</a> = 456267 <a href="/wiki/seemed" title="seemed">seemed</a> = 447884 <a href="/wiki/looked" title="looked">looked</a> = 447491 <a href="/wiki/called" title="called">called</a> = 445602 <a href="/wiki/whole" title="whole">whole</a> = 435059 <a href="/wiki/de" title="de">de</a> = 433393 <a href="/wiki/set" title="set">set</a> = 432637 <a href="/wiki/both" title="both">both</a> = 432491 <a href="/wiki/got" title="got">got</a> = 432016 <a href="/wiki/find" title="find">find</a> = 431120</p>
228
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=5" title="Edit section: 201 - 300">edit</a>]</span> <span class="mw-headline" id="201_-_300">201 - 300</span></h5>
229
+ <p><a href="/wiki/done" title="done">done</a> = 430389 <a href="/wiki/heard" title="heard">heard</a> = 429972 <a href="/wiki/look" title="look">look</a> = 428871 <a href="/wiki/name" title="name">name</a> = 427021 <a href="/wiki/days" title="days">days</a> = 426104 <a href="/wiki/told" title="told">told</a> = 424696 <a href="/wiki/let" title="let">let</a> = 424320 <a href="/wiki/lord" title="lord">lord</a> = 422407 <a href="/wiki/country" title="country">country</a> = 420788 <a href="/wiki/asked" title="asked">asked</a> = 420044 <a href="/wiki/going" title="going">going</a> = 419315 <a href="/wiki/seen" title="seen">seen</a> = 418862 <a href="/wiki/better" title="better">better</a> = 416463 <a href="/wiki/p" title="p">p</a> = 415673 <a href="/wiki/having" title="having">having</a> = 415355 <a href="/wiki/home" title="home">home</a> = 413499 <a href="/wiki/knew" title="knew">knew</a> = 413101 <a href="/wiki/side" title="side">side</a> = 405810 <a href="/wiki/something" title="something">something</a> = 398727 <a href="/wiki/moment" title="moment">moment</a> = 390988 <a href="/wiki/father" title="father">father</a> = 387790 <a href="/wiki/among" title="among">among</a> = 387549 <a href="/wiki/course" title="course">course</a> = 385303 <a href="/wiki/hands" title="hands">hands</a> = 385081 <a href="/wiki/woman" title="woman">woman</a> = 384156 <a href="/wiki/enough" title="enough">enough</a> = 382266 <a href="/wiki/words" title="words">words</a> = 380328 <a href="/wiki/mother" title="mother">mother</a> = 373898 <a href="/wiki/soon" title="soon">soon</a> = 373813 <a href="/wiki/full" title="full">full</a> = 371831 <a href="/wiki/end" title="end">end</a> = 369761 <a href="/wiki/gave" title="gave">gave</a> = 369036 <a href="/wiki/room" title="room">room</a> = 366719 <a href="/wiki/almost" title="almost">almost</a> = 366630 <a href="/wiki/small" title="small">small</a> = 359970 <a href="/wiki/thou" title="thou">thou</a> = 355857 <a href="/wiki/cannot" title="cannot">cannot</a> = 355656 <a href="/wiki/water" title="water">water</a> = 355467 <a href="/wiki/want" title="want">want</a> = 354212 <a href="/wiki/however" title="however">however</a> = 352828 <a href="/wiki/light" title="light">light</a> = 351253 <a href="/wiki/quite" title="quite">quite</a> = 350537 <a href="/wiki/brought" title="brought">brought</a> = 349925 <a href="/wiki/nor" title="nor">nor</a> = 349691 <a href="/wiki/word" title="word">word</a> = 349685 <a href="/wiki/whose" title="whose">whose</a> = 344377 <a href="/wiki/given" title="given">given</a> = 344141 <a href="/wiki/door" title="door">door</a> = 342388 <a href="/wiki/best" title="best">best</a> = 337544 <a href="/wiki/turned" title="turned">turned</a> = 337367 <a href="/wiki/taken" title="taken">taken</a> = 335210 <a href="/wiki/does" title="does">does</a> = 334332 <a href="/wiki/use" title="use">use</a> = 333883 <a href="/wiki/morning" title="morning">morning</a> = 330567 <a href="/wiki/myself" title="myself">myself</a> = 328630 <a href="/wiki/Gutenberg" title="Gutenberg">Gutenberg</a> = 328324 <a href="/wiki/felt" title="felt">felt</a> = 326524 <a href="/wiki/until" title="until">until</a> = 326391 <a href="/wiki/since" title="since">since</a> = 326386 <a href="/wiki/power" title="power">power</a> = 326243 <a href="/wiki/themselves" title="themselves">themselves</a> = 325793 <a href="/wiki/used" title="used">used</a> = 325791 <a href="/wiki/rather" title="rather">rather</a> = 325719 <a href="/wiki/began" title="began">began</a> = 325327 <a href="/wiki/present" title="present">present</a> = 324509 <a href="/wiki/voice" title="voice">voice</a> = 322870 <a href="/wiki/others" title="others">others</a> = 322643 <a href="/wiki/white" title="white">white</a> = 322465 <a href="/wiki/works" title="works">works</a> = 318937 <a href="/wiki/less" title="less">less</a> = 316490 <a href="/wiki/money" title="money">money</a> = 315642 <a href="/wiki/next" title="next">next</a> = 313167 <a href="/wiki/poor" title="poor">poor</a> = 311818 <a href="/wiki/death" title="death">death</a> = 309653 <a href="/wiki/stood" title="stood">stood</a> = 308025 <a href="/wiki/form" title="form">form</a> = 307506 <a href="/wiki/within" title="within">within</a> = 307223 <a href="/wiki/together" title="together">together</a> = 304955 <a href="/wiki/till" title="till">till</a> = 304735 <a href="/wiki/thy" title="thy">thy</a> = 304489 <a href="/wiki/large" title="large">large</a> = 304240 <a href="/wiki/matter" title="matter">matter</a> = 301283 <a href="/wiki/kind" title="kind">kind</a> = 298191 <a href="/wiki/often" title="often">often</a> = 296798 <a href="/wiki/certain" title="certain">certain</a> = 296795 <a href="/wiki/herself" title="herself">herself</a> = 295916 <a href="/wiki/year" title="year">year</a> = 295745 <a href="/wiki/friend" title="friend">friend</a> = 295078 <a href="/wiki/half" title="half">half</a> = 293866 <a href="/wiki/order" title="order">order</a> = 293593 <a href="/wiki/round" title="round">round</a> = 291647 <a href="/wiki/true" title="true">true</a> = 291427 <a href="/wiki/anything" title="anything">anything</a> = 289997 <a href="/wiki/keep" title="keep">keep</a> = 289304 <a href="/wiki/sent" title="sent">sent</a> = 287876 <a href="/wiki/wife" title="wife">wife</a> = 286847 <a href="/wiki/means" title="means">means</a> = 284431 <a href="/wiki/believe" title="believe">believe</a> = 281965 <a href="/wiki/passed" title="passed">passed</a> = 279864 <a href="/wiki/feet" title="feet">feet</a> = 279821</p>
230
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=6" title="Edit section: 301 - 400">edit</a>]</span> <span class="mw-headline" id="301_-_400">301 - 400</span></h5>
231
+ <p><a href="/wiki/near" title="near">near</a> = 278870 <a href="/wiki/public" title="public">public</a> = 278365 <a href="/wiki/state" title="state">state</a> = 277682 <a href="/wiki/son" title="son">son</a> = 277227 <a href="/wiki/hundred" title="hundred">hundred</a> = 275990 <a href="/wiki/children" title="children">children</a> = 275607 <a href="/wiki/thus" title="thus">thus</a> = 275221 <a href="/wiki/hope" title="hope">hope</a> = 273746 <a href="/wiki/alone" title="alone">alone</a> = 272173 <a href="/wiki/above" title="above">above</a> = 271641 <a href="/wiki/case" title="case">case</a> = 271588 <a href="/wiki/dear" title="dear">dear</a> = 270503 <a href="/wiki/thee" title="thee">thee</a> = 269414 <a href="/wiki/says" title="says">says</a> = 268542 <a href="/wiki/person" title="person">person</a> = 267878 <a href="/wiki/high" title="high">high</a> = 266672 <a href="/wiki/read" title="read">read</a> = 265947 <a href="/wiki/city" title="city">city</a> = 265138 <a href="/wiki/already" title="already">already</a> = 264662 <a href="/wiki/received" title="received">received</a> = 264606 <a href="/wiki/fact" title="fact">fact</a> = 263613 <a href="/wiki/gone" title="gone">gone</a> = 263585 <a href="/wiki/girl" title="girl">girl</a> = 262689 <a href="/wiki/known" title="known">known</a> = 262571 <a href="/wiki/hear" title="hear">hear</a> = 260746 <a href="/wiki/times" title="times">times</a> = 260596 <a href="/wiki/least" title="least">least</a> = 259916 <a href="/wiki/perhaps" title="perhaps">perhaps</a> = 257964 <a href="/wiki/sure" title="sure">sure</a> = 255885 <a href="/wiki/indeed" title="indeed">indeed</a> = 255789 <a href="/wiki/english" title="english">english</a> = 255212 <a href="/wiki/open" title="open">open</a> = 254373 <a href="/wiki/body" title="body">body</a> = 252812 <a href="/wiki/itself" title="itself">itself</a> = 251252 <a href="/wiki/along" title="along">along</a> = 251163 <a href="/wiki/land" title="land">land</a> = 249677 <a href="/wiki/return" title="return">return</a> = 249533 <a href="/wiki/leave" title="leave">leave</a> = 249063 <a href="/wiki/air" title="air">air</a> = 247480 <a href="/wiki/nature" title="nature">nature</a> = 246792 <a href="/wiki/answered" title="answered">answered</a> = 246251 <a href="/wiki/either" title="either">either</a> = 244426 <a href="/wiki/law" title="law">law</a> = 244138 <a href="/wiki/help" title="help">help</a> = 243712 <a href="/wiki/lay" title="lay">lay</a> = 242753 <a href="/wiki/point" title="point">point</a> = 242269 <a href="/wiki/child" title="child">child</a> = 242201 <a href="/wiki/letter" title="letter">letter</a> = 242178 <a href="/wiki/four" title="four">four</a> = 242099 <a href="/wiki/wish" title="wish">wish</a> = 241091 <a href="/wiki/fire" title="fire">fire</a> = 240652 <a href="/wiki/cried" title="cried">cried</a> = 240280 <a href="/wiki/2" title="2">2</a> = 240009 <a href="/wiki/women" title="women">women</a> = 239735 <a href="/wiki/speak" title="speak">speak</a> = 239025 <a href="/wiki/number" title="number">number</a> = 238734 <a href="/wiki/therefore" title="therefore">therefore</a> = 238281 <a href="/wiki/hour" title="hour">hour</a> = 237964 <a href="/wiki/friends" title="friends">friends</a> = 237481 <a href="/wiki/held" title="held">held</a> = 235474 <a href="/wiki/free" title="free">free</a> = 235012 <a href="/wiki/war" title="war">war</a> = 234544 <a href="/wiki/during" title="during">during</a> = 233771 <a href="/wiki/several" title="several">several</a> = 233197 <a href="/wiki/business" title="business">business</a> = 233158 <a href="/wiki/whether" title="whether">whether</a> = 230819 <a href="/wiki/er" title="er">er</a> = 230485 <a href="/wiki/manner" title="manner">manner</a> = 230401 <a href="/wiki/second" title="second">second</a> = 230300 <a href="/wiki/reason" title="reason">reason</a> = 229940 <a href="/wiki/replied" title="replied">replied</a> = 229913 <a href="/wiki/united" title="united">united</a> = 226953 <a href="/wiki/call" title="call">call</a> = 226661 <a href="/wiki/general" title="general">general</a> = 226391 <a href="/wiki/why" title="why">why</a> = 226216 <a href="/wiki/behind" title="behind">behind</a> = 226205 <a href="/wiki/became" title="became">became</a> = 224811 <a href="/wiki/john" title="john">john</a> = 224569 <a href="/wiki/become" title="become">become</a> = 224326 <a href="/wiki/dead" title="dead">dead</a> = 224049 <a href="/wiki/earth" title="earth">earth</a> = 222546 <a href="/wiki/boy" title="boy">boy</a> = 222315 <a href="/wiki/lost" title="lost">lost</a> = 222264 <a href="/wiki/forth" title="forth">forth</a> = 220598 <a href="/wiki/thousand" title="thousand">thousand</a> = 218623 <a href="/wiki/looking" title="looking">looking</a> = 218510 <a href="/wiki/I%27ll" title="I'll">I'll</a> = 218372 <a href="/wiki/family" title="family">family</a> = 218118 <a href="/wiki/soul" title="soul">soul</a> = 217840 <a href="/wiki/feel" title="feel">feel</a> = 216356 <a href="/wiki/coming" title="coming">coming</a> = 215147 <a href="/wiki/England" title="England">England</a> = 214339 <a href="/wiki/spirit" title="spirit">spirit</a> = 213257 <a href="/wiki/question" title="question">question</a> = 213124 <a href="/wiki/care" title="care">care</a> = 213072 <a href="/wiki/truth" title="truth">truth</a> = 212548 <a href="/wiki/ground" title="ground">ground</a> = 212369 <a href="/wiki/really" title="really">really</a> = 211722 <a href="/wiki/rest" title="rest">rest</a> = 211668 <a href="/wiki/mean" title="mean">mean</a> = 211299</p>
232
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=7" title="Edit section: 401 - 500">edit</a>]</span> <span class="mw-headline" id="401_-_500">401 - 500</span></h5>
233
+ <p><a href="/wiki/different" title="different">different</a> = 211043 <a href="/wiki/making" title="making">making</a> = 210031 <a href="/wiki/possible" title="possible">possible</a> = 209099 <a href="/wiki/fell" title="fell">fell</a> = 208344 <a href="/wiki/towards" title="towards">towards</a> = 208199 <a href="/wiki/human" title="human">human</a> = 206740 <a href="/wiki/kept" title="kept">kept</a> = 206329 <a href="/wiki/short" title="short">short</a> = 206216 <a href="/wiki/town" title="town">town</a> = 205687 <a href="/wiki/following" title="following">following</a> = 205653 <a href="/wiki/need" title="need">need</a> = 204955 <a href="/wiki/cause" title="cause">cause</a> = 204686 <a href="/wiki/met" title="met">met</a> = 203956 <a href="/wiki/evening" title="evening">evening</a> = 203331 <a href="/wiki/returned" title="returned">returned</a> = 202041 <a href="/wiki/five" title="five">five</a> = 201451 <a href="/wiki/strong" title="strong">strong</a> = 200224 <a href="/wiki/able" title="able">able</a> = 200145 <a href="/wiki/french" title="french">french</a> = 199969 <a href="/wiki/live" title="live">live</a> = 199658 <a href="/wiki/lady" title="lady">lady</a> = 199560 <a href="/wiki/subject" title="subject">subject</a> = 198566 <a href="/wiki/sn" title="sn">sn</a> = 198498 <a href="/wiki/answer" title="answer">answer</a> = 198187 <a href="/wiki/sea" title="sea">sea</a> = 198128 <a href="/wiki/fear" title="fear">fear</a> = 196739 <a href="/wiki/understand" title="understand">understand</a> = 196729 <a href="/wiki/hard" title="hard">hard</a> = 196458 <a href="/wiki/terms" title="terms">terms</a> = 196252 <a href="/wiki/doubt" title="doubt">doubt</a> = 195905 <a href="/wiki/around" title="around">around</a> = 195594 <a href="/wiki/ask" title="ask">ask</a> = 194903 <a href="/wiki/arms" title="arms">arms</a> = 194298 <a href="/wiki/turn" title="turn">turn</a> = 192763 <a href="/wiki/sense" title="sense">sense</a> = 192719 <a href="/wiki/seems" title="seems">seems</a> = 192229 <a href="/wiki/black" title="black">black</a> = 191272 <a href="/wiki/bring" title="bring">bring</a> = 191148 <a href="/wiki/followed" title="followed">followed</a> = 190649 <a href="/wiki/beautiful" title="beautiful">beautiful</a> = 190563 <a href="/wiki/close" title="close">close</a> = 188915 <a href="/wiki/dark" title="dark">dark</a> = 188316 <a href="/wiki/hold" title="hold">hold</a> = 186609 <a href="/wiki/character" title="character">character</a> = 186256 <a href="/wiki/sort" title="sort">sort</a> = 186136 <a href="/wiki/sight" title="sight">sight</a> = 185862 <a href="/wiki/ten" title="ten">ten</a> = 184612 <a href="/wiki/show" title="show">show</a> = 184074 <a href="/wiki/party" title="party">party</a> = 184068 <a href="/wiki/fine" title="fine">fine</a> = 183059 <a href="/wiki/ye" title="ye">ye</a> = 182978 <a href="/wiki/ready" title="ready">ready</a> = 181866 <a href="/wiki/story" title="story">story</a> = 180998 <a href="/wiki/common" title="common">common</a> = 180061 <a href="/wiki/book" title="book">book</a> = 179739 <a href="/wiki/electronic" title="electronic">electronic</a> = 179347 <a href="/wiki/talk" title="talk">talk</a> = 178877 <a href="/wiki/account" title="account">account</a> = 178452 <a href="/wiki/mark" title="mark">mark</a> = 178084 <a href="/wiki/interest" title="interest">interest</a> = 178001 <a href="/wiki/written" title="written">written</a> = 177232 <a href="/wiki/can%27t" title="can't">can't</a> = 176728 <a href="/wiki/bed" title="bed">bed</a> = 176635 <a href="/wiki/necessary" title="necessary">necessary</a> = 176467 <a href="/wiki/age" title="age">age</a> = 176320 <a href="/wiki/else" title="else">else</a> = 175980 <a href="/wiki/force" title="force">force</a> = 175520 <a href="/wiki/idea" title="idea">idea</a> = 174236 <a href="/wiki/longer" title="longer">longer</a> = 173897 <a href="/wiki/art" title="art">art</a> = 173544 <a href="/wiki/spoke" title="spoke">spoke</a> = 172990 <a href="/wiki/across" title="across">across</a> = 172901 <a href="/wiki/brother" title="brother">brother</a> = 172692 <a href="/wiki/early" title="early">early</a> = 172467 <a href="/wiki/ought" title="ought">ought</a> = 171690 <a href="/wiki/sometimes" title="sometimes">sometimes</a> = 171309 <a href="/wiki/line" title="line">line</a> = 170962 <a href="/wiki/saying" title="saying">saying</a> = 170695 <a href="/wiki/table" title="table">table</a> = 170143 <a href="/wiki/appeared" title="appeared">appeared</a> = 169913 <a href="/wiki/river" title="river">river</a> = 169470 <a href="/wiki/continued" title="continued">continued</a> = 169086 <a href="/wiki/eye" title="eye">eye</a> = 168723 <a href="/wiki/ety" title="ety">ety</a> = 168713 <a href="/wiki/sun" title="sun">sun</a> = 168545 <a href="/wiki/information" title="information">information</a> = 168408 <a href="/wiki/later" title="later">later</a> = 167805 <a href="/wiki/everything" title="everything">everything</a> = 166395 <a href="/wiki/reached" title="reached">reached</a> = 165752 <a href="/wiki/suddenly" title="suddenly">suddenly</a> = 164850 <a href="/wiki/past" title="past">past</a> = 164703 <a href="/wiki/hours" title="hours">hours</a> = 164326 <a href="/wiki/strange" title="strange">strange</a> = 164147 <a href="/wiki/deep" title="deep">deep</a> = 163819 <a href="/wiki/change" title="change">change</a> = 163514 <a href="/wiki/miles" title="miles">miles</a> = 163341 <a href="/wiki/feeling" title="feeling">feeling</a> = 163269 <a href="/wiki/act" title="act">act</a> = 162869 <a href="/wiki/meet" title="meet">meet</a> = 162687 <a href="/wiki/paid" title="paid">paid</a> = 162605</p>
234
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=8" title="Edit section: 501 - 600">edit</a>]</span> <span class="mw-headline" id="501_-_600">501 - 600</span></h5>
235
+ <p><a href="/wiki/further" title="further">further</a> = 162327 <a href="/wiki/purpose" title="purpose">purpose</a> = 162154 <a href="/wiki/happy" title="happy">happy</a> = 162105 <a href="/wiki/added" title="added">added</a> = 161953 <a href="/wiki/seem" title="seem">seem</a> = 161549 <a href="/wiki/taking" title="taking">taking</a> = 160626 <a href="/wiki/blood" title="blood">blood</a> = 160547 <a href="/wiki/rose" title="rose">rose</a> = 159794 <a href="/wiki/south" title="south">south</a> = 158664 <a href="/wiki/beyond" title="beyond">beyond</a> = 158344 <a href="/wiki/cold" title="cold">cold</a> = 158204 <a href="/wiki/neither" title="neither">neither</a> = 158200 <a href="/wiki/forward" title="forward">forward</a> = 157578 <a href="/wiki/view" title="view">view</a> = 157416 <a href="/wiki/I%27ve" title="I've">I've</a> = 157210 <a href="/wiki/position" title="position">position</a> = 156851 <a href="/wiki/sound" title="sound">sound</a> = 156616 <a href="/wiki/none" title="none">none</a> = 155743 <a href="/wiki/entered" title="entered">entered</a> = 155480 <a href="/wiki/clear" title="clear">clear</a> = 155472 <a href="/wiki/road" title="road">road</a> = 154977 <a href="/wiki/late" title="late">late</a> = 154840 <a href="/wiki/stand" title="stand">stand</a> = 154582 <a href="/wiki/suppose" title="suppose">suppose</a> = 154536 <a href="/wiki/la" title="la">la</a> = 154457 <a href="/wiki/daughter" title="daughter">daughter</a> = 154261 <a href="/wiki/real" title="real">real</a> = 154046 <a href="/wiki/nearly" title="nearly">nearly</a> = 154001 <a href="/wiki/mine" title="mine">mine</a> = 153940 <a href="/wiki/laws" title="laws">laws</a> = 153830 <a href="/wiki/knowledge" title="knowledge">knowledge</a> = 153829 <a href="/wiki/comes" title="comes">comes</a> = 153299 <a href="/wiki/toward" title="toward">toward</a> = 152972 <a href="/wiki/bad" title="bad">bad</a> = 152889 <a href="/wiki/cut" title="cut">cut</a> = 152625 <a href="/wiki/copy" title="copy">copy</a> = 151661 <a href="/wiki/husband" title="husband">husband</a> = 151651 <a href="/wiki/six" title="six">six</a> = 151612 <a href="/wiki/france" title="france">france</a> = 151108 <a href="/wiki/living" title="living">living</a> = 151043 <a href="/wiki/peace" title="peace">peace</a> = 150281 <a href="/wiki/didn%27t" title="didn't">didn't</a> = 149696 <a href="/wiki/low" title="low">low</a> = 149690 <a href="/wiki/north" title="north">north</a> = 149601 <a href="/wiki/remember" title="remember">remember</a> = 149323 <a href="/wiki/effect" title="effect">effect</a> = 148795 <a href="/wiki/natural" title="natural">natural</a> = 148744 <a href="/wiki/pretty" title="pretty">pretty</a> = 148124 <a href="/wiki/fall" title="fall">fall</a> = 147435 <a href="/wiki/fair" title="fair">fair</a> = 147401 <a href="/wiki/service" title="service">service</a> = 146483 <a href="/wiki/below" title="below">below</a> = 146062 <a href="/wiki/except" title="except">except</a> = 145998 <a href="/wiki/american" title="american">american</a> = 145980 <a href="/wiki/hair" title="hair">hair</a> = 145817 <a href="/w/index.php?title=london&amp;action=edit&amp;redlink=1" class="new" title="london (page does not exist)">london</a> = 145606 <a href="/wiki/laid" title="laid">laid</a> = 145490 <a href="/wiki/pass" title="pass">pass</a> = 145440 <a href="/wiki/led" title="led">led</a> = 145393 <a href="/wiki/copyright" title="copyright">copyright</a> = 145244 <a href="/wiki/doing" title="doing">doing</a> = 145131 <a href="/wiki/army" title="army">army</a> = 144925 <a href="/wiki/run" title="run">run</a> = 144688 <a href="/wiki/horse" title="horse">horse</a> = 144022 <a href="/wiki/future" title="future">future</a> = 143658 <a href="/wiki/opened" title="opened">opened</a> = 143625 <a href="/wiki/pleasure" title="pleasure">pleasure</a> = 142952 <a href="/wiki/history" title="history">history</a> = 141958 <a href="/wiki/west" title="west">west</a> = 141745 <a href="/wiki/pay" title="pay">pay</a> = 141597 <a href="/wiki/red" title="red">red</a> = 141588 <a href="/wiki/an%27" title="an'">an'</a> = 141517 <a href="/wiki/4" title="4">4</a> = 141402 <a href="/wiki/hath" title="hath">hath</a> = 141246 <a href="/wiki/note" title="note">note</a> = 140679 <a href="/wiki/although" title="although">although</a> = 140667 <a href="/wiki/wanted" title="wanted">wanted</a> = 140608 <a href="/wiki/gold" title="gold">gold</a> = 139711 <a href="/wiki/makes" title="makes">makes</a> = 139167 <a href="/wiki/desire" title="desire">desire</a> = 138288 <a href="/wiki/play" title="play">play</a> = 138228 <a href="/wiki/master" title="master">master</a> = 137871 <a href="/wiki/office" title="office">office</a> = 136616 <a href="/wiki/tried" title="tried">tried</a> = 136507 <a href="/wiki/front" title="front">front</a> = 136296 <a href="/wiki/big" title="big">big</a> = 136265 <a href="/wiki/dr" title="dr">dr</a> = 135902 <a href="/wiki/lived" title="lived">lived</a> = 135512 <a href="/wiki/certainly" title="certainly">certainly</a> = 135386 <a href="/wiki/wind" title="wind">wind</a> = 134689 <a href="/wiki/receive" title="receive">receive</a> = 134351 <a href="/wiki/attention" title="attention">attention</a> = 134257 <a href="/wiki/government" title="government">government</a> = 134075 <a href="/wiki/unto" title="unto">unto</a> = 134048 <a href="/wiki/church" title="church">church</a> = 133975 <a href="/wiki/strength" title="strength">strength</a> = 133771 <a href="/wiki/length" title="length">length</a> = 133663 <a href="/wiki/company" title="company">company</a> = 133159 <a href="/wiki/placed" title="placed">placed</a> = 133084 <a href="/wiki/paper" title="paper">paper</a> = 133030</p>
236
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=9" title="Edit section: 601 - 700">edit</a>]</span> <span class="mw-headline" id="601_-_700">601 - 700</span></h5>
237
+ <p><a href="/wiki/letters" title="letters">letters</a> = 132785 <a href="/wiki/probably" title="probably">probably</a> = 132560 <a href="/wiki/glad" title="glad">glad</a> = 132368 <a href="/wiki/important" title="important">important</a> = 132288 <a href="/wiki/especially" title="especially">especially</a> = 132096 <a href="/wiki/greater" title="greater">greater</a> = 132045 <a href="/wiki/yourself" title="yourself">yourself</a> = 131617 <a href="/wiki/fellow" title="fellow">fellow</a> = 131509 <a href="/wiki/bear" title="bear">bear</a> = 131397 <a href="/wiki/opinion" title="opinion">opinion</a> = 130867 <a href="/wiki/window" title="window">window</a> = 130590 <a href="/wiki/ran" title="ran">ran</a> = 130394 <a href="/wiki/faith" title="faith">faith</a> = 130376 <a href="/wiki/ago" title="ago">ago</a> = 130255 <a href="/wiki/agreement" title="agreement">agreement</a> = 130079 <a href="/wiki/charge" title="charge">charge</a> = 129644 <a href="/wiki/beauty" title="beauty">beauty</a> = 129586 <a href="/wiki/lips" title="lips">lips</a> = 129473 <a href="/wiki/remained" title="remained">remained</a> = 129411 <a href="/wiki/arm" title="arm">arm</a> = 129325 <a href="/wiki/latter" title="latter">latter</a> = 129276 <a href="/wiki/duty" title="duty">duty</a> = 129116 <a href="/wiki/send" title="send">send</a> = 129075 <a href="/wiki/distance" title="distance">distance</a> = 129046 <a href="/wiki/silence" title="silence">silence</a> = 128067 <a href="/wiki/foot" title="foot">foot</a> = 128053 <a href="/wiki/wild" title="wild">wild</a> = 127758 <a href="/wiki/object" title="object">object</a> = 127468 <a href="/wiki/die" title="die">die</a> = 127167 <a href="/wiki/save" title="save">save</a> = 126799 <a href="/wiki/gentleman" title="gentleman">gentleman</a> = 126761 <a href="/wiki/trees" title="trees">trees</a> = 126469 <a href="/wiki/green" title="green">green</a> = 126431 <a href="/wiki/trouble" title="trouble">trouble</a> = 125885 <a href="/wiki/smile" title="smile">smile</a> = 125830 <a href="/wiki/books" title="books">books</a> = 125827 <a href="/wiki/wrong" title="wrong">wrong</a> = 125401 <a href="/wiki/various" title="various">various</a> = 125006 <a href="/wiki/sleep" title="sleep">sleep</a> = 124634 <a href="/wiki/persons" title="persons">persons</a> = 123820 <a href="/wiki/blockquote" title="blockquote">blockquote</a> = 123703 <a href="/wiki/happened" title="happened">happened</a> = 123421 <a href="/wiki/particular" title="particular">particular</a> = 123182 <a href="/wiki/drew" title="drew">drew</a> = 122264 <a href="/wiki/minutes" title="minutes">minutes</a> = 122201 <a href="/wiki/hardly" title="hardly">hardly</a> = 121603 <a href="/wiki/walked" title="walked">walked</a> = 121276 <a href="/wiki/chief" title="chief">chief</a> = 121207 <a href="/wiki/chance" title="chance">chance</a> = 120739 <a href="/wiki/according" title="according">according</a> = 120733 <a href="/wiki/beginning" title="beginning">beginning</a> = 120733 <a href="/wiki/action" title="action">action</a> = 120590 <a href="/wiki/deal" title="deal">deal</a> = 120186 <a href="/wiki/loved" title="loved">loved</a> = 120145 <a href="/wiki/visit" title="visit">visit</a> = 119807 <a href="/wiki/thinking" title="thinking">thinking</a> = 119753 <a href="/wiki/follow" title="follow">follow</a> = 119666 <a href="/wiki/standing" title="standing">standing</a> = 119506 <a href="/wiki/knows" title="knows">knows</a> = 119114 <a href="/wiki/try" title="try">try</a> = 118860 <a href="/wiki/presence" title="presence">presence</a> = 118852 <a href="/wiki/heavy" title="heavy">heavy</a> = 118834 <a href="/wiki/sweet" title="sweet">sweet</a> = 118754 <a href="/wiki/plain" title="plain">plain</a> = 118641 <a href="/wiki/donations" title="donations">donations</a> = 118443 <a href="/wiki/immediately" title="immediately">immediately</a> = 118250 <a href="/wiki/wrote" title="wrote">wrote</a> = 118114 <a href="/wiki/mouth" title="mouth">mouth</a> = 117921 <a href="/wiki/rich" title="rich">rich</a> = 117386 <a href="/wiki/thoughts" title="thoughts">thoughts</a> = 117251 <a href="/wiki/months" title="months">months</a> = 116955 <a href="/wiki/u" title="u">u</a> = 116586 <a href="/wiki/won%27t" title="won't">won't</a> = 116568 <a href="/wiki/afraid" title="afraid">afraid</a> = 116467 <a href="/wiki/paris" title="paris">paris</a> = 116402 <a href="/wiki/single" title="single">single</a> = 115905 <a href="/wiki/joy" title="joy">joy</a> = 115788 <a href="/wiki/enemy" title="enemy">enemy</a> = 115195 <a href="/wiki/broken" title="broken">broken</a> = 115006 <a href="/wiki/unless" title="unless">unless</a> = 114054 <a href="/wiki/states" title="states">states</a> = 113807 <a href="/wiki/ship" title="ship">ship</a> = 113611 <a href="/wiki/condition" title="condition">condition</a> = 113578 <a href="/wiki/carry" title="carry">carry</a> = 113357 <a href="/wiki/exclaimed" title="exclaimed">exclaimed</a> = 113352 <a href="/wiki/including" title="including">including</a> = 113104 <a href="/wiki/filled" title="filled">filled</a> = 112921 <a href="/wiki/seeing" title="seeing">seeing</a> = 112889 <a href="/wiki/influence" title="influence">influence</a> = 112447 <a href="/wiki/write" title="write">write</a> = 112285 <a href="/wiki/boys" title="boys">boys</a> = 112125 <a href="/wiki/appear" title="appear">appear</a> = 112044 <a href="/wiki/outside" title="outside">outside</a> = 111849 <a href="/wiki/secret" title="secret">secret</a> = 111678 <a href="/wiki/parts" title="parts">parts</a> = 111194 <a href="/wiki/please" title="please">please</a> = 111114 <a href="/wiki/appearance" title="appearance">appearance</a> = 110932 <a href="/wiki/evil" title="evil">evil</a> = 110898 <a href="/wiki/march" title="march">march</a> = 110834 <a href="/wiki/George" title="George">George</a> = 110754</p>
238
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=10" title="Edit section: 701 - 800">edit</a>]</span> <span class="mw-headline" id="701_-_800">701 - 800</span></h5>
239
+ <p><a href="/wiki/whatever" title="whatever">whatever</a> = 110549 <a href="/wiki/slowly" title="slowly">slowly</a> = 110500 <a href="/wiki/tears" title="tears">tears</a> = 110314 <a href="/wiki/horses" title="horses">horses</a> = 110296 <a href="/wiki/places" title="places">places</a> = 110250 <a href="/wiki/caught" title="caught">caught</a> = 110061 <a href="/wiki/stay" title="stay">stay</a> = 109894 <a href="/wiki/instead" title="instead">instead</a> = 109837 <a href="/wiki/struck" title="struck">struck</a> = 109662 <a href="/wiki/blue" title="blue">blue</a> = 109449 <a href="/wiki/york" title="york">york</a> = 109354 <a href="/wiki/impossible" title="impossible">impossible</a> = 109330 <a href="/wiki/period" title="period">period</a> = 109160 <a href="/wiki/sister" title="sister">sister</a> = 108983 <a href="/wiki/battle" title="battle">battle</a> = 108781 <a href="/wiki/school" title="school">school</a> = 108701 <a href="/wiki/mary" title="mary">mary</a> = 108633 <a href="/wiki/raised" title="raised">raised</a> = 108580 <a href="/wiki/occasion" title="occasion">occasion</a> = 108544 <a href="/wiki/married" title="married">married</a> = 108419 <a href="/w/index.php?title=man%27s&amp;action=edit&amp;redlink=1" class="new" title="man's (page does not exist)">man's</a> = 108346 <a href="/wiki/former" title="former">former</a> = 108299 <a href="/wiki/food" title="food">food</a> = 108140 <a href="/wiki/youth" title="youth">youth</a> = 108097 <a href="/wiki/learned" title="learned">learned</a> = 108072 <a href="/wiki/merely" title="merely">merely</a> = 108034 <a href="/wiki/reach" title="reach">reach</a> = 107787 <a href="/wiki/system" title="system">system</a> = 107496 <a href="/wiki/twenty" title="twenty">twenty</a> = 107475 <a href="/wiki/dinner" title="dinner">dinner</a> = 107414 <a href="/wiki/quiet" title="quiet">quiet</a> = 107167 <a href="/wiki/easily" title="easily">easily</a> = 107012 <a href="/wiki/moved" title="moved">moved</a> = 106996 <a href="/wiki/afterwards" title="afterwards">afterwards</a> = 106992 <a href="/wiki/giving" title="giving">giving</a> = 106981 <a href="/wiki/walk" title="walk">walk</a> = 106858 <a href="/wiki/stopped" title="stopped">stopped</a> = 106661 <a href="/wiki/laughed" title="laughed">laughed</a> = 106591 <a href="/wiki/language" title="language">language</a> = 106445 <a href="/wiki/expression" title="expression">expression</a> = 106415 <a href="/wiki/week" title="week">week</a> = 106184 <a href="/wiki/hall" title="hall">hall</a> = 106108 <a href="/wiki/danger" title="danger">danger</a> = 105775 <a href="/wiki/property" title="property">property</a> = 105765 <a href="/wiki/wonder" title="wonder">wonder</a> = 105588 <a href="/wiki/usual" title="usual">usual</a> = 105412 <a href="/wiki/figure" title="figure">figure</a> = 105403 <a href="/wiki/born" title="born">born</a> = 104938 <a href="/wiki/court" title="court">court</a> = 104606 <a href="/wiki/generally" title="generally">generally</a> = 104448 <a href="/wiki/grew" title="grew">grew</a> = 104326 <a href="/wiki/showed" title="showed">showed</a> = 104205 <a href="/wiki/getting" title="getting">getting</a> = 103981 <a href="/wiki/ancient" title="ancient">ancient</a> = 103755 <a href="/wiki/respect" title="respect">respect</a> = 103497 <a href="/wiki/third" title="third">third</a> = 103468 <a href="/wiki/worth" title="worth">worth</a> = 103346 <a href="/wiki/simple" title="simple">simple</a> = 102885 <a href="/wiki/tree" title="tree">tree</a> = 102872 <a href="/wiki/leaving" title="leaving">leaving</a> = 102830 <a href="/wiki/remain" title="remain">remain</a> = 102801 <a href="/wiki/society" title="society">society</a> = 102355 <a href="/wiki/fight" title="fight">fight</a> = 102206 <a href="/wiki/wall" title="wall">wall</a> = 102124 <a href="/wiki/result" title="result">result</a> = 102039 <a href="/wiki/heaven" title="heaven">heaven</a> = 101875 <a href="/wiki/william" title="william" class="mw-redirect">william</a> = 101780 <a href="/wiki/started" title="started">started</a> = 101771 <a href="/wiki/command" title="command">command</a> = 101717 <a href="/wiki/tone" title="tone">tone</a> = 101569 <a href="/wiki/regard" title="regard">regard</a> = 101139 <a href="/wiki/expected" title="expected">expected</a> = 101117 <a href="/wiki/mere" title="mere">mere</a> = 101061 <a href="/wiki/month" title="month">month</a> = 101037 <a href="/wiki/beside" title="beside">beside</a> = 100710 <a href="/wiki/silent" title="silent">silent</a> = 100695 <a href="/wiki/perfect" title="perfect">perfect</a> = 100522 <a href="/wiki/experience" title="experience">experience</a> = 100504 <a href="/wiki/street" title="street">street</a> = 100499 <a href="/wiki/writing" title="writing">writing</a> = 100292 <a href="/wiki/goes" title="goes">goes</a> = 100235 <a href="/wiki/circumstances" title="circumstances">circumstances</a> = 100166 <a href="/wiki/entirely" title="entirely">entirely</a> = 99803.2 <a href="/wiki/fresh" title="fresh">fresh</a> = 99654.4 <a href="/wiki/duke" title="duke">duke</a> = 99561.9 <a href="/wiki/covered" title="covered">covered</a> = 99439.2 <a href="/wiki/bound" title="bound">bound</a> = 99304.7 <a href="/wiki/east" title="east">east</a> = 99220.9 <a href="/wiki/wood" title="wood">wood</a> = 99157.6 <a href="/wiki/stone" title="stone">stone</a> = 99073.7 <a href="/wiki/quickly" title="quickly">quickly</a> = 98994.6 <a href="/wiki/notice" title="notice">notice</a> = 98872.0 <a href="/wiki/bright" title="bright">bright</a> = 98773.9 <a href="/w/index.php?title=christ&amp;action=edit&amp;redlink=1" class="new" title="christ (page does not exist)">christ</a> = 98758.1 <a href="/wiki/boat" title="boat">boat</a> = 98756.5 <a href="/wiki/noble" title="noble">noble</a> = 98714.6 <a href="/wiki/meant" title="meant">meant</a> = 98705.1 <a href="/wiki/somewhat" title="somewhat">somewhat</a> = 98651.3 <a href="/wiki/sudden" title="sudden">sudden</a> = 98497.8 <a href="/wiki/value" title="value">value</a> = 98232.8</p>
240
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=11" title="Edit section: 801 - 900">edit</a>]</span> <span class="mw-headline" id="801_-_900">801 - 900</span></h5>
241
+ <p><a href="/wiki/c." title="c.">c.</a> = 97991.5 <a href="/wiki/direction" title="direction">direction</a> = 97628.3 <a href="/wiki/chair" title="chair">chair</a> = 97567.4 <a href="/wiki/due" title="due">due</a> = 97353.0 <a href="/wiki/support" title="support">support</a> = 97334.0 <a href="/wiki/tom" title="tom">tom</a> = 97093.5 <a href="/wiki/date" title="date">date</a> = 96908.4 <a href="/wiki/waiting" title="waiting">waiting</a> = 96834.8 <a href="/w/index.php?title=christian&amp;action=edit&amp;redlink=1" class="new" title="christian (page does not exist)">christian</a> = 96735.9 <a href="/wiki/village" title="village">village</a> = 96681.3 <a href="/wiki/lives" title="lives">lives</a> = 96547.6 <a href="/wiki/reading" title="reading">reading</a> = 96465.4 <a href="/wiki/agree" title="agree">agree</a> = 96413.9 <a href="/wiki/lines" title="lines">lines</a> = 96198.0 <a href="/wiki/considered" title="considered">considered</a> = 96182.9 <a href="/wiki/field" title="field">field</a> = 96170.3 <a href="/wiki/observed" title="observed">observed</a> = 96110.1 <a href="/wiki/scarcely" title="scarcely">scarcely</a> = 95979.6 <a href="/wiki/wished" title="wished">wished</a> = 95538.2 <a href="/wiki/wait" title="wait">wait</a> = 95523.9 <a href="/wiki/greatest" title="greatest">greatest</a> = 95398.1 <a href="/wiki/permission" title="permission">permission</a> = 95391.0 <a href="/wiki/success" title="success">success</a> = 95371.2 <a href="/wiki/piece" title="piece">piece</a> = 95303.2 <a href="/wiki/british" title="british">british</a> = 95149.7 <a href="/wiki/ex" title="ex">ex</a> = 95127.6 <a href="/wiki/charles" title="charles">charles</a> = 95049.2 <a href="/wiki/formed" title="formed">formed</a> = 94978.0 <a href="/wiki/speaking" title="speaking">speaking</a> = 94833.3 <a href="/wiki/trying" title="trying">trying</a> = 94706.7 <a href="/wiki/conversation" title="conversation">conversation</a> = 94578.5 <a href="/wiki/proper" title="proper">proper</a> = 94480.4 <a href="/wiki/hill" title="hill">hill</a> = 94379.1 <a href="/wiki/music" title="music">music</a> = 94284.2 <a href="/wiki/opportunity" title="opportunity">opportunity</a> = 94123.6 <a href="/wiki/that%27s" title="that's">that's</a> = 93912.4 <a href="/wiki/german" title="german">german</a> = 93866.5 <a href="/wiki/afternoon" title="afternoon">afternoon</a> = 93839.6 <a href="/wiki/cry" title="cry">cry</a> = 93675.0 <a href="/wiki/cost" title="cost">cost</a> = 93470.1 <a href="/wiki/allowed" title="allowed">allowed</a> = 93398.1 <a href="/wiki/girls" title="girls">girls</a> = 93384.7 <a href="/wiki/considerable" title="considerable">considerable</a> = 93235.2 <a href="/wiki/c" title="c">c</a> = 92990.7 <a href="/wiki/broke" title="broke">broke</a> = 92800.8 <a href="/wiki/honour" title="honour">honour</a> = 92446.4 <a href="/wiki/seven" title="seven">seven</a> = 92292.1 <a href="/wiki/private" title="private">private</a> = 92260.5 <a href="/wiki/sit" title="sit">sit</a> = 92217.0 <a href="/wiki/news" title="news">news</a> = 92204.3 <a href="/wiki/top" title="top">top</a> = 91995.5 <a href="/wiki/scene" title="scene">scene</a> = 91985.2 <a href="/wiki/discovered" title="discovered">discovered</a> = 91968.6 <a href="/wiki/marriage" title="marriage">marriage</a> = 91937.7 <a href="/wiki/step" title="step">step</a> = 91592.0 <a href="/wiki/garden" title="garden">garden</a> = 91392.6 <a href="/wiki/race" title="race">race</a> = 91305.6 <a href="/wiki/begin" title="begin">begin</a> = 91207.5 <a href="/wiki/per" title="per">per</a> = 91115.7 <a href="/wiki/individual" title="individual">individual</a> = 90923.5 <a href="/wiki/sitting" title="sitting">sitting</a> = 90632.3 <a href="/wiki/learn" title="learn">learn</a> = 90513.7 <a href="/wiki/political" title="political">political</a> = 90412.4 <a href="/wiki/difficult" title="difficult">difficult</a> = 90385.5 <a href="/wiki/bit" title="bit">bit</a> = 90352.3 <a href="/wiki/speech" title="speech">speech</a> = 90319.0 <a href="/wiki/henry" title="henry">henry</a> = 90034.2 <a href="/wiki/lie" title="lie">lie</a> = 89756.5 <a href="/wiki/cast" title="cast">cast</a> = 89723.3 <a href="/wiki/eat" title="eat">eat</a> = 89650.5 <a href="/wiki/authority" title="authority">authority</a> = 89562.7 <a href="/wiki/etc." title="etc.">etc.</a> = 89480.4 <a href="/wiki/floor" title="floor">floor</a> = 89151.3 <a href="/wiki/ill" title="ill">ill</a> = 89125.2 <a href="/wiki/ways" title="ways">ways</a> = 88381.5 <a href="/wiki/officers" title="officers">officers</a> = 88207.5 <a href="/wiki/offered" title="offered">offered</a> = 88164.0 <a href="/wiki/original" title="original">original</a> = 88133.9 <a href="/wiki/happiness" title="happiness">happiness</a> = 88005.0 <a href="/wiki/flowers" title="flowers">flowers</a> = 87879.2 <a href="/wiki/produced" title="produced">produced</a> = 87876.0 <a href="/wiki/summer" title="summer">summer</a> = 87793.7 <a href="/wiki/provide" title="provide">provide</a> = 87573.0 <a href="/wiki/study" title="study">study</a> = 87538.2 <a href="/wiki/religion" title="religion">religion</a> = 87445.6 <a href="/wiki/picture" title="picture">picture</a> = 87340.4 <a href="/wiki/walls" title="walls">walls</a> = 87300.1 <a href="/wiki/personal" title="personal">personal</a> = 87235.2 <a href="/w/index.php?title=america&amp;action=edit&amp;redlink=1" class="new" title="america (page does not exist)">america</a> = 87195.6 <a href="/wiki/watch" title="watch">watch</a> = 87073.8 <a href="/wiki/pleased" title="pleased">pleased</a> = 86744.7 <a href="/wiki/leaves" title="leaves">leaves</a> = 86702.0 <a href="/wiki/declared" title="declared">declared</a> = 86560.4 <a href="/wiki/hot" title="hot">hot</a> = 86478.9 <a href="/wiki/understood" title="understood">understood</a> = 86271.6 <a href="/wiki/effort" title="effort">effort</a> = 86256.6 <a href="/wiki/prepared" title="prepared">prepared</a> = 86240.7 <a href="/wiki/escape" title="escape">escape</a> = 86157.7 <a href="/wiki/attempt" title="attempt">attempt</a> = 86132.4 <a href="/wiki/supposed" title="supposed">supposed</a> = 86122.1</p>
242
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=12" title="Edit section: 901 - 1000">edit</a>]</span> <span class="mw-headline" id="901_-_1000">901 - 1000</span></h5>
243
+ <p><a href="/wiki/killed" title="killed">killed</a> = 86020.0 <a href="/wiki/fast" title="fast">fast</a> = 86008.1 <a href="/wiki/author" title="author">author</a> = 85992.3 <a href="/w/index.php?title=indian&amp;action=edit&amp;redlink=1" class="new" title="indian (page does not exist)">indian</a> = 85940.9 <a href="/wiki/brown" title="brown">brown</a> = 85875.2 <a href="/wiki/determined" title="determined">determined</a> = 85873.7 <a href="/wiki/pain" title="pain">pain</a> = 85833.3 <a href="/wiki/spring" title="spring">spring</a> = 85777.9 <a href="/wiki/takes" title="takes">takes</a> = 85761.3 <a href="/wiki/drawn" title="drawn">drawn</a> = 85701.2 <a href="/wiki/soldiers" title="soldiers">soldiers</a> = 85694.1 <a href="/wiki/houses" title="houses">houses</a> = 85488.4 <a href="/wiki/beneath" title="beneath">beneath</a> = 85453.6 <a href="/wiki/talking" title="talking">talking</a> = 85391.1 <a href="/wiki/turning" title="turning">turning</a> = 85325.4 <a href="/wiki/century" title="century">century</a> = 85256.6 <a href="/wiki/steps" title="steps">steps</a> = 84796.1 <a href="/wiki/intended" title="intended">intended</a> = 84789.0 <a href="/wiki/soft" title="soft">soft</a> = 84783.5 <a href="/wiki/straight" title="straight">straight</a> = 84750.2 <a href="/wiki/matters" title="matters">matters</a> = 84637.1 <a href="/wiki/likely" title="likely">likely</a> = 84636.3 <a href="/wiki/corner" title="corner">corner</a> = 84584.1 <a href="/wiki/trademark" title="trademark">trademark</a> = 84518.4 <a href="/wiki/justice" title="justice">justice</a> = 84500.2 <a href="/wiki/simply" title="simply">simply</a> = 84365.0 <a href="/wiki/produce" title="produce">produce</a> = 84323.0 <a href="/wiki/trust" title="trust">trust</a> = 84298.5 <a href="/wiki/appears" title="appears">appears</a> = 84153.7 <a href="/w/index.php?title=rome&amp;action=edit&amp;redlink=1" class="new" title="rome (page does not exist)">rome</a> = 84141.1 <a href="/wiki/laugh" title="laugh">laugh</a> = 84072.2 <a href="/wiki/forget" title="forget">forget</a> = 84004.2 <a href="/wiki/europe" title="europe">europe</a> = 83940.9 <a href="/wiki/passage" title="passage">passage</a> = 83908.5 <a href="/wiki/eight" title="eight">eight</a> = 83853.9 <a href="/wiki/closed" title="closed">closed</a> = 83814.3 <a href="/wiki/ourselves" title="ourselves">ourselves</a> = 83716.2 <a href="/wiki/gives" title="gives">gives</a> = 83639.5 <a href="/wiki/dress" title="dress">dress</a> = 83486.0 <a href="/wiki/passing" title="passing">passing</a> = 83482.1 <a href="/wiki/terrible" title="terrible">terrible</a> = 83421.9 <a href="/wiki/required" title="required">required</a> = 83248.7 <a href="/wiki/medium" title="medium">medium</a> = 83151.4 <a href="/wiki/efforts" title="efforts">efforts</a> = 83147.4 <a href="/wiki/sake" title="sake">sake</a> = 83124.5 <a href="/wiki/breath" title="breath">breath</a> = 83075.4 <a href="/wiki/wise" title="wise">wise</a> = 83039.0 <a href="/wiki/ladies" title="ladies">ladies</a> = 82918.0 <a href="/wiki/possession" title="possession">possession</a> = 82883.2 <a href="/wiki/pleasant" title="pleasant">pleasant</a> = 82839.7 <a href="/wiki/perfectly" title="perfectly">perfectly</a> = 82830.9 <a href="/wiki/o%27" title="o'">o'</a> = 82761.3 <a href="/wiki/memory" title="memory">memory</a> = 82725.7 <a href="/wiki/usually" title="usually">usually</a> = 82644.2 <a href="/wiki/grave" title="grave">grave</a> = 82623.7 <a href="/wiki/fixed" title="fixed">fixed</a> = 82566.7 <a href="/wiki/modern" title="modern">modern</a> = 82562.0 <a href="/wiki/spot" title="spot">spot</a> = 82338.9 <a href="/wiki/troops" title="troops">troops</a> = 82223.4 <a href="/wiki/rise" title="rise">rise</a> = 82126.8 <a href="/wiki/break" title="break">break</a> = 82118.1 <a href="/wiki/fifty" title="fifty">fifty</a> = 82035.1 <a href="/wiki/island" title="island">island</a> = 81974.9 <a href="/wiki/meeting" title="meeting">meeting</a> = 81962.3 <a href="/wiki/camp" title="camp">camp</a> = 81899.8 <a href="/wiki/nation" title="nation">nation</a> = 81890.3 <a href="/wiki/existence" title="existence">existence</a> = 81804.1 <a href="/wiki/reply" title="reply">reply</a> = 81671.1 <a href="/wiki/I%27d" title="I'd">I'd</a> = 81624.5 <a href="/wiki/copies" title="copies">copies</a> = 81479.7 <a href="/wiki/sky" title="sky">sky</a> = 81457.5 <a href="/wiki/touch" title="touch">touch</a> = 81396.6 <a href="/wiki/equal" title="equal">equal</a> = 81392.7 <a href="/wiki/fortune" title="fortune">fortune</a> = 81232.1 <a href="/wiki/v." title="v.">v.</a> = 81207.5 <a href="/wiki/shore" title="shore">shore</a> = 81109.4 <a href="/wiki/domain" title="domain">domain</a> = 81056.4 <a href="/wiki/named" title="named">named</a> = 80756.6 <a href="/wiki/situation" title="situation">situation</a> = 80651.4 <a href="/wiki/looks" title="looks">looks</a> = 80463.1 <a href="/wiki/promise" title="promise">promise</a> = 80426.7 <a href="/wiki/orders" title="orders">orders</a> = 80294.6 <a href="/wiki/degree" title="degree">degree</a> = 80293.8 <a href="/wiki/middle" title="middle">middle</a> = 80239.2 <a href="/wiki/winter" title="winter">winter</a> = 80239.2 <a href="/wiki/plan" title="plan">plan</a> = 80069.9 <a href="/wiki/spent" title="spent">spent</a> = 80046.2 <a href="/wiki/allow" title="allow">allow</a> = 79876.1 <a href="/wiki/pale" title="pale">pale</a> = 79860.2 <a href="/wiki/conduct" title="conduct">conduct</a> = 79819.9 <a href="/wiki/running" title="running">running</a> = 79752.6 <a href="/wiki/religious" title="religious">religious</a> = 79751.1 <a href="/wiki/surprise" title="surprise">surprise</a> = 79635.6 <a href="/wiki/minute" title="minute">minute</a> = 79605.5 <a href="/wiki/roman" title="roman">roman</a> = 79482.1 <a href="/wiki/cases" title="cases">cases</a> = 79432.2 <a href="/wiki/shot" title="shot">shot</a> = 79425.1 <a href="/wiki/lead" title="lead">lead</a> = 79418.8 <a href="/wiki/move" title="move">move</a> = 79376.1 <a href="/wiki/names" title="names">names</a> = 79366.6</p>
244
+ <h4><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=13" title="Edit section: 1001 - 2000">edit</a>]</span> <span class="mw-headline" id="1001_-_2000">1001 - 2000</span></h4>
245
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=14" title="Edit section: 1001 - 1100">edit</a>]</span> <span class="mw-headline" id="1001_-_1100">1001 - 1100</span></h5>
246
+ <p><a href="/wiki/stop" title="stop">stop</a> = 79301.7 <a href="/wiki/higher" title="higher">higher</a> = 79280.3 <a href="/wiki/et" title="et">et</a> = 79225.0 <a href="/w/index.php?title=father%27s&amp;action=edit&amp;redlink=1" class="new" title="father's (page does not exist)">father's</a> = 79201.2 <a href="/wiki/threw" title="threw">threw</a> = 79179.1 <a href="/wiki/worse" title="worse">worse</a> = 79163.2 <a href="/wiki/built" title="built">built</a> = 79110.2 <a href="/wiki/spoken" title="spoken">spoken</a> = 79085.7 <a href="/wiki/glass" title="glass">glass</a> = 79053.3 <a href="/wiki/board" title="board">board</a> = 78858.7 <a href="/wiki/vain" title="vain">vain</a> = 78809.6 <a href="/wiki/affairs" title="affairs">affairs</a> = 78788.3 <a href="/wiki/instance" title="instance">instance</a> = 78564.4 <a href="/wiki/safe" title="safe">safe</a> = 78317.5 <a href="/wiki/loss" title="loss">loss</a> = 78305.7 <a href="/wiki/doctor" title="doctor">doctor</a> = 78281.9 <a href="/wiki/offer" title="offer">offer</a> = 78246.3 <a href="/wiki/class" title="class">class</a> = 78173.5 <a href="/wiki/complete" title="complete">complete</a> = 78039.8 <a href="/wiki/access" title="access">access</a> = 77716.3 <a href="/wiki/lower" title="lower">lower</a> = 77368.2 <a href="/wiki/wouldn%27t" title="wouldn't">wouldn't</a> = 77327.0 <a href="/wiki/repeated" title="repeated">repeated</a> = 77300.1 <a href="/wiki/forms" title="forms">forms</a> = 77286.7 <a href="/wiki/darkness" title="darkness">darkness</a> = 77261.4 <a href="/wiki/military" title="military">military</a> = 77249.5 <a href="/wiki/warm" title="warm">warm</a> = 77220.2 <a href="/wiki/drink" title="drink">drink</a> = 77183.8 <a href="/wiki/passion" title="passion">passion</a> = 77028.0 <a href="/wiki/ones" title="ones">ones</a> = 76976.6 <a href="/wiki/physical" title="physical">physical</a> = 76974.2 <a href="/wiki/example" title="example">example</a> = 76922.8 <a href="/wiki/ears" title="ears">ears</a> = 76672.0 <a href="/wiki/questions" title="questions">questions</a> = 76596.8 <a href="/wiki/start" title="start">start</a> = 76592.9 <a href="/wiki/lying" title="lying">lying</a> = 76560.4 <a href="/wiki/smiled" title="smiled">smiled</a> = 76547.8 <a href="/wiki/keeping" title="keeping">keeping</a> = 76541.4 <a href="/wiki/spite" title="spite">spite</a> = 76495.5 <a href="/wiki/shown" title="shown">shown</a> = 76402.2 <a href="/wiki/directly" title="directly">directly</a> = 76333.4 <a href="/wiki/james" title="james">james</a> = 76067.5 <a href="/wiki/hart" title="hart">hart</a> = 76059.6 <a href="/wiki/serious" title="serious">serious</a> = 75990.8 <a href="/wiki/hat" title="hat">hat</a> = 75918.0 <a href="/wiki/dog" title="dog">dog</a> = 75874.5 <a href="/wiki/silver" title="silver">silver</a> = 75859.5 <a href="/wiki/sufficient" title="sufficient">sufficient</a> = 75856.3 <a href="/wiki/main" title="main">main</a> = 75850.0 <a href="/wiki/mentioned" title="mentioned">mentioned</a> = 75813.6 <a href="/wiki/servant" title="servant">servant</a> = 75473.4 <a href="/wiki/pride" title="pride">pride</a> = 75429.9 <a href="/wiki/crowd" title="crowd">crowd</a> = 75422.0 <a href="/wiki/train" title="train">train</a> = 75404.6 <a href="/wiki/wonderful" title="wonderful">wonderful</a> = 75347.6 <a href="/wiki/moral" title="moral">moral</a> = 75253.5 <a href="/wiki/instant" title="instant">instant</a> = 75209.9 <a href="/wiki/associated" title="associated">associated</a> = 75153.0 <a href="/wiki/path" title="path">path</a> = 75150.6 <a href="/wiki/greek" title="greek">greek</a> = 75128.5 <a href="/wiki/meaning" title="meaning">meaning</a> = 74981.3 <a href="/wiki/fit" title="fit">fit</a> = 74906.9 <a href="/wiki/ordered" title="ordered">ordered</a> = 74834.2 <a href="/wiki/lot" title="lot">lot</a> = 74745.6 <a href="/wiki/he%27s" title="he's">he's</a> = 74505.0 <a href="/wiki/proved" title="proved">proved</a> = 74438.6 <a href="/wiki/obliged" title="obliged">obliged</a> = 74413.3 <a href="/wiki/enter" title="enter">enter</a> = 74391.9 <a href="/wiki/rule" title="rule">rule</a> = 74378.5 <a href="/wiki/sword" title="sword">sword</a> = 74342.9 <a href="/wiki/attack" title="attack">attack</a> = 74293.0 <a href="/wiki/seat" title="seat">seat</a> = 74266.1 <a href="/wiki/game" title="game">game</a> = 74220.2 <a href="/wiki/health" title="health">health</a> = 74210.7 <a href="/wiki/paragraph" title="paragraph">paragraph</a> = 74195.7 <a href="/wiki/statement" title="statement">statement</a> = 74053.3 <a href="/wiki/social" title="social">social</a> = 74035.9 <a href="/wiki/refund" title="refund">refund</a> = 73914.1 <a href="/wiki/sorry" title="sorry">sorry</a> = 73906.2 <a href="/wiki/courage" title="courage">courage</a> = 73882.4 <a href="/wiki/members" title="members">members</a> = 73833.4 <a href="/wiki/grace" title="grace">grace</a> = 73826.3 <a href="/wiki/official" title="official">official</a> = 73755.1 <a href="/wiki/dream" title="dream">dream</a> = 73726.6 <a href="/wiki/worthy" title="worthy">worthy</a> = 73622.1 <a href="/wiki/rock" title="rock">rock</a> = 73581.8 <a href="/wiki/jack" title="jack">jack</a> = 73527.2 <a href="/wiki/provided" title="provided">provided</a> = 73443.3 <a href="/wiki/special" title="special">special</a> = 73437.8 <a href="/wiki/shook" title="shook">shook</a> = 73338.9 <a href="/wiki/request" title="request">request</a> = 73327.8 <a href="/wiki/mighty" title="mighty">mighty</a> = 73313.6 <a href="/wiki/glance" title="glance">glance</a> = 73302.5 <a href="/wiki/heads" title="heads">heads</a> = 73281.2 <a href="/wiki/movement" title="movement">movement</a> = 73266.9 <a href="/wiki/fee" title="fee">fee</a> = 73232.9 <a href="/wiki/share" title="share">share</a> = 73182.3 <a href="/wiki/expect" title="expect">expect</a> = 73178.3 <a href="/wiki/couldn%27t" title="couldn't">couldn't</a> = 73076.3 <a href="/wiki/dollars" title="dollars">dollars</a> = 72925.9</p>
247
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=15" title="Edit section: 1101 - 1200">edit</a>]</span> <span class="mw-headline" id="1101_-_1200">1101 - 1200</span></h5>
248
+ <p><a href="/wiki/spread" title="spread">spread</a> = 72890.3 <a href="/wiki/opposite" title="opposite">opposite</a> = 72815.2 <a href="/wiki/glory" title="glory">glory</a> = 72644.3 <a href="/wiki/twelve" title="twelve">twelve</a> = 72570.7 <a href="/wiki/space" title="space">space</a> = 72550.2 <a href="/wiki/engaged" title="engaged">engaged</a> = 72545.4 <a href="/wiki/peter" title="peter">peter</a> = 72509.0 <a href="/wiki/wine" title="wine">wine</a> = 72450.5 <a href="/wiki/ordinary" title="ordinary">ordinary</a> = 72404.6 <a href="/wiki/mountains" title="mountains">mountains</a> = 72333.4 <a href="/wiki/taste" title="taste">taste</a> = 72268.5 <a href="/wiki/iron" title="iron">iron</a> = 72252.7 <a href="/wiki/isn%27t" title="isn't">isn't</a> = 72166.5 <a href="/wiki/distribute" title="distribute">distribute</a> = 72160.9 <a href="/wiki/trade" title="trade">trade</a> = 72098.4 <a href="/wiki/consider" title="consider">consider</a> = 72033.5 <a href="/wiki/greatly" title="greatly">greatly</a> = 71894.3 <a href="/wiki/accepted" title="accepted">accepted</a> = 71888.0 <a href="/wiki/forced" title="forced">forced</a> = 71884.8 <a href="/wiki/advantage" title="advantage">advantage</a> = 71878.5 <a href="/wiki/ideas" title="ideas">ideas</a> = 71849.2 <a href="/wiki/decided" title="decided">decided</a> = 71766.1 <a href="/wiki/using" title="using">using</a> = 71751.9 <a href="/wiki/officer" title="officer">officer</a> = 71744.0 <a href="/wiki/rate" title="rate">rate</a> = 71688.6 <a href="/wiki/clothes" title="clothes">clothes</a> = 71654.6 <a href="/wiki/sign" title="sign">sign</a> = 71582.6 <a href="/wiki/feelings" title="feelings">feelings</a> = 71558.9 <a href="/wiki/native" title="native">native</a> = 71399.1 <a href="/wiki/promised" title="promised">promised</a> = 71195.7 <a href="/wiki/judge" title="judge">judge</a> = 71190.2 <a href="/wiki/difference" title="difference">difference</a> = 71072.3 <a href="/wiki/working" title="working">working</a> = 71042.3 <a href="/wiki/anxious" title="anxious">anxious</a> = 71040.7 <a href="/wiki/marry" title="marry">marry</a> = 70948.9 <a href="/wiki/captain" title="captain">captain</a> = 70861.9 <a href="/wiki/finished" title="finished">finished</a> = 70763.8 <a href="/wiki/extent" title="extent">extent</a> = 70649.8 <a href="/wiki/watched" title="watched">watched</a> = 70643.5 <a href="/wiki/curious" title="curious">curious</a> = 70641.1 <a href="/wiki/foreign" title="foreign">foreign</a> = 70609.5 <a href="/wiki/besides" title="besides">besides</a> = 70524.9 <a href="/wiki/method" title="method">method</a> = 70513.0 <a href="/wiki/excellent" title="excellent">excellent</a> = 70452.9 <a href="/wiki/confidence" title="confidence">confidence</a> = 70414.1 <a href="/wiki/marked" title="marked">marked</a> = 70264.6 <a href="/wiki/%27em" title="'em">'em</a> = 70256.7 <a href="/w/index.php?title=jesus&amp;action=edit&amp;redlink=1" class="new" title="jesus (page does not exist)">jesus</a> = 70228.2 <a href="/wiki/exactly" title="exactly">exactly</a> = 70213.1 <a href="/wiki/importance" title="importance">importance</a> = 70066.8 <a href="/wiki/finally" title="finally">finally</a> = 70018.5 <a href="/wiki/bill" title="bill">bill</a> = 69973.4 <a href="/wiki/vast" title="vast">vast</a> = 69861.1 <a href="/wiki/prove" title="prove">prove</a> = 69854.0 <a href="/wiki/fancy" title="fancy">fancy</a> = 69771.7 <a href="/wiki/quick" title="quick">quick</a> = 69761.4 <a href="/wiki/yes" title="yes">yes</a> = 69731.3 <a href="/wiki/sought" title="sought">sought</a> = 69666.5 <a href="/wiki/prevent" title="prevent">prevent</a> = 69664.1 <a href="/wiki/neck" title="neck">neck</a> = 69634.8 <a href="/wiki/hearts" title="hearts">hearts</a> = 69628.5 <a href="/wiki/liberty" title="liberty">liberty</a> = 69603.2 <a href="/wiki/interesting" title="interesting">interesting</a> = 69601.6 <a href="/wiki/sides" title="sides">sides</a> = 69594.5 <a href="/wiki/legal" title="legal">legal</a> = 69532.8 <a href="/wiki/gentlemen" title="gentlemen">gentlemen</a> = 69507.5 <a href="/wiki/dry" title="dry">dry</a> = 69442.6 <a href="/wiki/serve" title="serve">serve</a> = 69414.9 <a href="/wiki/aside" title="aside">aside</a> = 69368.2 <a href="/wiki/pure" title="pure">pure</a> = 69287.5 <a href="/wiki/concerning" title="concerning">concerning</a> = 69279.6 <a href="/wiki/forgotten" title="forgotten">forgotten</a> = 69212.4 <a href="/wiki/lose" title="lose">lose</a> = 69115.8 <a href="/wiki/powers" title="powers">powers</a> = 69073.1 <a href="/wiki/possessed" title="possessed">possessed</a> = 68995.6 <a href="/wiki/thrown" title="thrown">thrown</a> = 68931.5 <a href="/wiki/evidence" title="evidence">evidence</a> = 68904.6 <a href="/wiki/distant" title="distant">distant</a> = 68882.5 <a href="/wiki/Michael" title="Michael">Michael</a> = 68874.5 <a href="/wiki/progress" title="progress">progress</a> = 68830.2 <a href="/wiki/similar" title="similar">similar</a> = 68603.2 <a href="/wiki/narrow" title="narrow">narrow</a> = 68505.9 <a href="/wiki/altogether" title="altogether">altogether</a> = 68471.9 <a href="/wiki/building" title="building">building</a> = 68394.3 <a href="/wiki/page" title="page">page</a> = 68234.5 <a href="/wiki/particularly" title="particularly">particularly</a> = 68193.4 <a href="/wiki/knowing" title="knowing">knowing</a> = 68050.2 <a href="/wiki/weeks" title="weeks">weeks</a> = 67942.6 <a href="/wiki/settled" title="settled">settled</a> = 67880.1 <a href="/wiki/holding" title="holding">holding</a> = 67815.2 <a href="/wiki/mountain" title="mountain">mountain</a> = 67762.2 <a href="/wiki/search" title="search">search</a> = 67660.2 <a href="/wiki/sad" title="sad">sad</a> = 67596.1 <a href="/wiki/sin" title="sin">sin</a> = 67589.7 <a href="/wiki/lies" title="lies">lies</a> = 67551.0 <a href="/wiki/proud" title="proud">proud</a> = 67492.4 <a href="/wiki/pieces" title="pieces">pieces</a> = 67423.6 <a href="/wiki/clearly" title="clearly">clearly</a> = 67318.4 <a href="/wiki/price" title="price">price</a> = 67277.2 <a href="/wiki/ships" title="ships">ships</a> = 67259.0</p>
249
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=16" title="Edit section: 1201 - 1300">edit</a>]</span> <span class="mw-headline" id="1201_-_1300">1201 - 1300</span></h5>
250
+ <p><a href="/wiki/thirty" title="thirty">thirty</a> = 67229.0 <a href="/wiki/sick" title="sick">sick</a> = 67152.2 <a href="/wiki/honest" title="honest">honest</a> = 67088.2 <a href="/wiki/shut" title="shut">shut</a> = 67063.6 <a href="/wiki/talked" title="talked">talked</a> = 66998.0 <a href="/wiki/bank" title="bank">bank</a> = 66981.4 <a href="/wiki/fate" title="fate">fate</a> = 66946.5 <a href="/wiki/dropped" title="dropped">dropped</a> = 66940.2 <a href="/wiki/judgment" title="judgment">judgment</a> = 66827.9 <a href="/wiki/conditions" title="conditions">conditions</a> = 66803.4 <a href="/wiki/king%27s" title="king's">king's</a> = 66590.5 <a href="/wiki/accept" title="accept">accept</a> = 66498.8 <a href="/wiki/hills" title="hills">hills</a> = 66475.8 <a href="/wiki/removed" title="removed">removed</a> = 66429.1 <a href="/wiki/forest" title="forest">forest</a> = 66263.0 <a href="/wiki/measure" title="measure">measure</a> = 66262.2 <a href="/wiki/species" title="species">species</a> = 66220.3 <a href="/wiki/seek" title="seek">seek</a> = 66141.2 <a href="/wiki/highest" title="highest">highest</a> = 66066.0 <a href="/wiki/otherwise" title="otherwise">otherwise</a> = 66054.9 <a href="/wiki/stream" title="stream">stream</a> = 66003.5 <a href="/wiki/honor" title="honor">honor</a> = 65994.0 <a href="/wiki/carefully" title="carefully">carefully</a> = 65960.0 <a href="/wiki/obtained" title="obtained">obtained</a> = 65884.1 <a href="/wiki/ear" title="ear">ear</a> = 65819.2 <a href="/wiki/bread" title="bread">bread</a> = 65708.4 <a href="/wiki/bottom" title="bottom">bottom</a> = 65645.1 <a href="/wiki/additional" title="additional">additional</a> = 65640.4 <a href="/wiki/presented" title="presented">presented</a> = 65615.9 <a href="/wiki/aid" title="aid">aid</a> = 65581.1 <a href="/wiki/fingers" title="fingers">fingers</a> = 65564.4 <a href="/wiki/q" title="q">q</a> = 65556.5 <a href="/wiki/remembered" title="remembered">remembered</a> = 65554.2 <a href="/wiki/choose" title="choose">choose</a> = 65396.7 <a href="/wiki/agreed" title="agreed">agreed</a> = 65284.4 <a href="/wiki/animal" title="animal">animal</a> = 65255.1 <a href="/wiki/events" title="events">events</a> = 65118.2 <a href="/wiki/there%27s" title="there's">there's</a> = 65017.8 <a href="/wiki/fully" title="fully">fully</a> = 64982.2 <a href="/wiki/delight" title="delight">delight</a> = 64971.9 <a href="/wiki/rights" title="rights">rights</a> = 64836.6 <a href="/wiki/amount" title="amount">amount</a> = 64720.3 <a href="/wiki/obtain" title="obtain">obtain</a> = 64706.1 <a href="/wiki/tax" title="tax">tax</a> = 64658.6 <a href="/wiki/servants" title="servants">servants</a> = 64642.0 <a href="/wiki/sons" title="sons">sons</a> = 64592.9 <a href="/wiki/cross" title="cross">cross</a> = 64403.8 <a href="/wiki/shoulders" title="shoulders">shoulders</a> = 64397.5 <a href="/wiki/thick" title="thick">thick</a> = 64364.3 <a href="/wiki/points" title="points">points</a> = 64311.3 <a href="/wiki/stranger" title="stranger">stranger</a> = 64270.9 <a href="/wiki/woods" title="woods">woods</a> = 64227.4 <a href="/wiki/facts" title="facts">facts</a> = 64155.4 <a href="/wiki/dare" title="dare">dare</a> = 64055.0 <a href="/wiki/grow" title="grow">grow</a> = 64005.1 <a href="/wiki/creature" title="creature">creature</a> = 63988.5 <a href="/wiki/hung" title="hung">hung</a> = 63988.5 <a href="/wiki/rain" title="rain">rain</a> = 63905.4 <a href="/wiki/false" title="false">false</a> = 63861.1 <a href="/wiki/tall" title="tall">tall</a> = 63854.8 <a href="/wiki/gate" title="gate">gate</a> = 63851.6 <a href="/wiki/nations" title="nations">nations</a> = 63793.9 <a href="/wiki/created" title="created">created</a> = 63774.9 <a href="/wiki/refused" title="refused">refused</a> = 63774.9 <a href="/wiki/quietly" title="quietly">quietly</a> = 63767.8 <a href="/wiki/surface" title="surface">surface</a> = 63717.1 <a href="/wiki/freely" title="freely">freely</a> = 63711.6 <a href="/wiki/holy" title="holy">holy</a> = 63709.2 <a href="/wiki/streets" title="streets">streets</a> = 63695.0 <a href="/wiki/blow" title="blow">blow</a> = 63577.9 <a href="/wiki/july" title="july">july</a> = 63558.1 <a href="/wiki/regarded" title="regarded">regarded</a> = 63536.0 <a href="/wiki/fashion" title="fashion">fashion</a> = 63526.5 <a href="/wiki/report" title="report">report</a> = 63492.5 <a href="/wiki/coast" title="coast">coast</a> = 63479.8 <a href="/wiki/daily" title="daily">daily</a> = 63422.8 <a href="/wiki/file" title="file">file</a> = 63420.5 <a href="/wiki/shoulder" title="shoulder">shoulder</a> = 63340.6 <a href="/wiki/surprised" title="surprised">surprised</a> = 63312.9 <a href="/wiki/faces" title="faces">faces</a> = 63252.7 <a href="/wiki/succeeded" title="succeeded">succeeded</a> = 63179.2 <a href="/wiki/birds" title="birds">birds</a> = 63162.6 <a href="/wiki/distribution" title="distribution">distribution</a> = 63155.4 <a href="/wiki/royal" title="royal">royal</a> = 63124.6 <a href="/wiki/song" title="song">song</a> = 63090.6 <a href="/wiki/wealth" title="wealth">wealth</a> = 63067.6 <a href="/wiki/comfort" title="comfort">comfort</a> = 63064.5 <a href="/wiki/failed" title="failed">failed</a> = 63013.0 <a href="/wiki/freedom" title="freedom">freedom</a> = 62979.8 <a href="/wiki/peculiar" title="peculiar">peculiar</a> = 62951.3 <a href="/wiki/anyone" title="anyone">anyone</a> = 62941.8 <a href="/wiki/advance" title="advance">advance</a> = 62895.1 <a href="/wiki/gentle" title="gentle">gentle</a> = 62856.4 <a href="/wiki/surely" title="surely">surely</a> = 62831.1 <a href="/wiki/animals" title="animals">animals</a> = 62815.2 <a href="/wiki/waited" title="waited">waited</a> = 62808.1 <a href="/wiki/secure" title="secure">secure</a> = 62770.9 <a href="/wiki/desired" title="desired">desired</a> = 62740.1 <a href="/wiki/grass" title="grass">grass</a> = 62726.6 <a href="/wiki/touched" title="touched">touched</a> = 62649.9</p>
251
+ <p><br /></p>
252
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=17" title="Edit section: 1301 - 1400">edit</a>]</span> <span class="mw-headline" id="1301_-_1400">1301 - 1400</span></h5>
253
+ <p><a href="/wiki/occupied" title="occupied">occupied</a> = 62645.1 <a href="/wiki/draw" title="draw">draw</a> = 62587.4 <a href="/wiki/stage" title="stage">stage</a> = 62536.0 <a href="/wiki/portion" title="portion">portion</a> = 62479.8 <a href="/wiki/expressed" title="expressed">expressed</a> = 62460.0 <a href="/wiki/opening" title="opening">opening</a> = 62316.0 <a href="/wiki/june" title="june">june</a> = 62288.3 <a href="/wiki/spirits" title="spirits">spirits</a> = 62147.5 <a href="/wiki/fish" title="fish">fish</a> = 62138.0 <a href="/wiki/tongue" title="tongue">tongue</a> = 62119.8 <a href="/wiki/capital" title="capital">capital</a> = 62114.3 <a href="/wiki/angry" title="angry">angry</a> = 61966.4 <a href="/wiki/growing" title="growing">growing</a> = 61954.5 <a href="/wiki/served" title="served">served</a> = 61954.5 <a href="/wiki/carriage" title="carriage">carriage</a> = 61920.5 <a href="/wiki/weather" title="weather">weather</a> = 61892.8 <a href="/wiki/breast" title="breast">breast</a> = 61786.0 <a href="/wiki/presently" title="presently">presently</a> = 61503.5 <a href="/wiki/snow" title="snow">snow</a> = 61384.9 <a href="/w/index.php?title=david&amp;action=edit&amp;redlink=1" class="new" title="david (page does not exist)">david</a> = 61377.8 <a href="/wiki/papers" title="papers">papers</a> = 61338.2 <a href="/wiki/necessity" title="necessity">necessity</a> = 61325.5 <a href="/wiki/practice" title="practice">practice</a> = 61313.7 <a href="/wiki/claim" title="claim">claim</a> = 61248.0 <a href="/wiki/hast" title="hast">hast</a> = 61220.3 <a href="/wiki/education" title="education">education</a> = 61160.2 <a href="/wiki/sharp" title="sharp">sharp</a> = 61096.9 <a href="/wiki/prince" title="prince">prince</a> = 60998.8 <a href="/wiki/permitted" title="permitted">permitted</a> = 60987.7 <a href="/wiki/group" title="group">group</a> = 60983.0 <a href="/wiki/enemies" title="enemies">enemies</a> = 60982.2 <a href="/wiki/robert" title="robert">robert</a> = 60967.2 <a href="/wiki/played" title="played">played</a> = 60926.0 <a href="/wiki/throughout" title="throughout">throughout</a> = 60896.7 <a href="/wiki/pity" title="pity">pity</a> = 60858.0 <a href="/wiki/expense" title="expense">expense</a> = 60836.6 <a href="/wiki/yours" title="yours">yours</a> = 60770.2 <a href="/wiki/million" title="million">million</a> = 60752.8 <a href="/wiki/add" title="add">add</a> = 60647.5 <a href="/wiki/pray" title="pray">pray</a> = 60553.4 <a href="/wiki/taught" title="taught">taught</a> = 60553.4 <a href="/wiki/explained" title="explained">explained</a> = 60525.7 <a href="/wiki/tired" title="tired">tired</a> = 60525.7 <a href="/wiki/leading" title="leading">leading</a> = 60475.9 <a href="/wiki/kill" title="kill">kill</a> = 60435.5 <a href="/wiki/shadow" title="shadow">shadow</a> = 60402.3 <a href="/wiki/companion" title="companion">companion</a> = 60384.9 <a href="/wiki/weight" title="weight">weight</a> = 60339.8 <a href="/wiki/mass" title="mass">mass</a> = 60298.6 <a href="/wiki/established" title="established">established</a> = 60226.7 <a href="/wiki/suffered" title="suffered">suffered</a> = 60210.0 <a href="/wiki/gray" title="gray">gray</a> = 60200.5 <a href="/wiki/brave" title="brave">brave</a> = 60085.0 <a href="/wiki/thin" title="thin">thin</a> = 60068.4 <a href="/wiki/satisfied" title="satisfied">satisfied</a> = 60044.7 <a href="/wiki/check" title="check">check</a> = 60002.0 <a href="/wiki/virtue" title="virtue">virtue</a> = 59979.0 <a href="/wiki/golden" title="golden">golden</a> = 59969.5 <a href="/wiki/numerous" title="numerous">numerous</a> = 59925.2 <a href="/wiki/frequently" title="frequently">frequently</a> = 59873.8 <a href="/wiki/famous" title="famous">famous</a> = 59843.0 <a href="/wiki/telling" title="telling">telling</a> = 59831.9 <a href="/wiki/powerful" title="powerful">powerful</a> = 59634.9 <a href="/wiki/alive" title="alive">alive</a> = 59632.5 <a href="/wiki/waters" title="waters">waters</a> = 59569.2 <a href="/wiki/national" title="national">national</a> = 59565.3 <a href="/wiki/weak" title="weak">weak</a> = 59510.7 <a href="/wiki/divine" title="divine">divine</a> = 59479.8 <a href="/wiki/material" title="material">material</a> = 59413.4 <a href="/wiki/principal" title="principal">principal</a> = 59406.2 <a href="/wiki/gathered" title="gathered">gathered</a> = 59324.8 <a href="/wiki/suggested" title="suggested">suggested</a> = 59261.5 <a href="/wiki/frank" title="frank">frank</a> = 59180.8 <a href="/wiki/valley" title="valley">valley</a> = 59172.1 <a href="/wiki/guess" title="guess">guess</a> = 59171.3 <a href="/wiki/finding" title="finding">finding</a> = 59160.2 <a href="/wiki/yellow" title="yellow">yellow</a> = 59051.8 <a href="/wiki/heat" title="heat">heat</a> = 58979.8 <a href="/wiki/remains" title="remains">remains</a> = 58941.1 <a href="/wiki/bent" title="bent">bent</a> = 58939.5 <a href="/wiki/seized" title="seized">seized</a> = 58899.1 <a href="/wiki/guard" title="guard">guard</a> = 58892.8 <a href="/wiki/equally" title="equally">equally</a> = 58840.6 <a href="/wiki/naturally" title="naturally">naturally</a> = 58811.3 <a href="/wiki/box" title="box">box</a> = 58805.8 <a href="/wiki/remarkable" title="remarkable">remarkable</a> = 58805.8 <a href="/wiki/gods" title="gods">gods</a> = 58789.2 <a href="/wiki/moon" title="moon">moon</a> = 58760.7 <a href="/wiki/slight" title="slight">slight</a> = 58710.8 <a href="/wiki/style" title="style">style</a> = 58699.8 <a href="/wiki/pointed" title="pointed">pointed</a> = 58669.7 <a href="/wiki/saved" title="saved">saved</a> = 58632.5 <a href="/wiki/windows" title="windows">windows</a> = 58556.6 <a href="/wiki/crossed" title="crossed">crossed</a> = 58551.8 <a href="/wiki/louis" title="louis">louis</a> = 58498.8 <a href="/wiki/pounds" title="pounds">pounds</a> = 58458.5 <a href="/wiki/ain%27t" title="ain't">ain't</a> = 58451.3 <a href="/wiki/evidently" title="evidently">evidently</a> = 58378.6 <a href="/wiki/principle" title="principle">principle</a> = 58369.9 <a href="/wiki/immediate" title="immediate">immediate</a> = 58268.6</p>
254
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=18" title="Edit section: 1401 - 1500">edit</a>]</span> <span class="mw-headline" id="1401_-_1500">1401 - 1500</span></h5>
255
+ <p><a href="/wiki/willing" title="willing">willing</a> = 58218.0 <a href="/wiki/consequence" title="consequence">consequence</a> = 58195.8 <a href="/wiki/richard" title="richard">richard</a> = 58188.7 <a href="/wiki/principles" title="principles">principles</a> = 58148.3 <a href="/wiki/characters" title="characters">characters</a> = 58140.4 <a href="/wiki/paul" title="paul">paul</a> = 58106.4 <a href="/wiki/season" title="season">season</a> = 58088.2 <a href="/wiki/remarked" title="remarked">remarked</a> = 58020.2 <a href="/wiki/science" title="science">science</a> = 57960.1 <a href="/wiki/tender" title="tender">tender</a> = 57959.3 <a href="/wiki/worked" title="worked">worked</a> = 57946.6 <a href="/wiki/grown" title="grown">grown</a> = 57772.6 <a href="/wiki/whispered" title="whispered">whispered</a> = 57721.1 <a href="/wiki/interested" title="interested">interested</a> = 57714.8 <a href="/wiki/quarter" title="quarter">quarter</a> = 57661.0 <a href="/wiki/midst" title="midst">midst</a> = 57518.6 <a href="/wiki/liked" title="liked">liked</a> = 57509.9 <a href="/wiki/advanced" title="advanced">advanced</a> = 57495.7 <a href="/wiki/apparently" title="apparently">apparently</a> = 57471.1 <a href="/wiki/bore" title="bore">bore</a> = 57458.5 <a href="/w/index.php?title=pwh&amp;action=edit&amp;redlink=1" class="new" title="pwh (page does not exist)">pwh</a> = 57456.9 <a href="/wiki/active" title="active">active</a> = 57449.0 <a href="/wiki/noticed" title="noticed">noticed</a> = 57389.6 <a href="/wiki/aware" title="aware">aware</a> = 57388.9 <a href="/w/index.php?title=thomas&amp;action=edit&amp;redlink=1" class="new" title="thomas (page does not exist)">thomas</a> = 57341.4 <a href="/wiki/uncle" title="uncle">uncle</a> = 57326.4 <a href="/wiki/list" title="list">list</a> = 57295.5 <a href="/wiki/dangerous" title="dangerous">dangerous</a> = 57292.3 <a href="/wiki/august" title="august">august</a> = 57283.6 <a href="/wiki/calm" title="calm">calm</a> = 57251.2 <a href="/wiki/genius" title="genius">genius</a> = 57225.1 <a href="/wiki/sacred" title="sacred">sacred</a> = 57211.6 <a href="/wiki/kingdom" title="kingdom">kingdom</a> = 57199.0 <a href="/wiki/entire" title="entire">entire</a> = 57187.9 <a href="/wiki/popular" title="popular">popular</a> = 57115.1 <a href="/wiki/unknown" title="unknown">unknown</a> = 57040.8 <a href="/wiki/nice" title="nice">nice</a> = 57038.4 <a href="/wiki/habit" title="habit">habit</a> = 57035.2 <a href="/wiki/spanish" title="spanish">spanish</a> = 56981.4 <a href="/wiki/familiar" title="familiar">familiar</a> = 56835.1 <a href="/wiki/reader" title="reader">reader</a> = 56832.7 <a href="/wiki/published" title="published">published</a> = 56807.4 <a href="/wiki/direct" title="direct">direct</a> = 56755.2 <a href="/wiki/handsome" title="handsome">handsome</a> = 56748.8 <a href="/wiki/you%27ll" title="you'll">you'll</a> = 56740.1 <a href="/wiki/joined" title="joined">joined</a> = 56737.0 <a href="/wiki/actually" title="actually">actually</a> = 56699.0 <a href="/wiki/kings" title="kings">kings</a> = 56630.2 <a href="/wiki/sd" title="sd">sd</a> = 56603.3 <a href="/wiki/posted" title="posted">posted</a> = 56561.3 <a href="/wiki/approach" title="approach">approach</a> = 56555.8 <a href="/w/index.php?title=washington&amp;action=edit&amp;redlink=1" class="new" title="washington (page does not exist)">washington</a> = 56527.3 <a href="/wiki/hearing" title="hearing">hearing</a> = 56509.9 <a href="/wiki/needed" title="needed">needed</a> = 56455.3 <a href="/wiki/increased" title="increased">increased</a> = 56113.5 <a href="/wiki/walking" title="walking">walking</a> = 56094.6 <a href="/wiki/twice" title="twice">twice</a> = 55893.6 <a href="/wiki/throw" title="throw">throw</a> = 55850.1 <a href="/wiki/intellectual" title="intellectual">intellectual</a> = 55849.3 <a href="/wiki/appointed" title="appointed">appointed</a> = 55847.7 <a href="/wiki/wisdom" title="wisdom">wisdom</a> = 55827.2 <a href="/wiki/ceased" title="ceased">ceased</a> = 55810.5 <a href="/wiki/truly" title="truly">truly</a> = 55776.5 <a href="/wiki/numbers" title="numbers">numbers</a> = 55771.8 <a href="/wiki/demanded" title="demanded">demanded</a> = 55718.0 <a href="/wiki/priest" title="priest">priest</a> = 55667.3 <a href="/wiki/wounded" title="wounded">wounded</a> = 55666.6 <a href="/wiki/sorrow" title="sorrow">sorrow</a> = 55657.1 <a href="/wiki/drive" title="drive">drive</a> = 55626.2 <a href="/wiki/fault" title="fault">fault</a> = 55610.4 <a href="/wiki/listened" title="listened">listened</a> = 55604.1 <a href="/wiki/palace" title="palace">palace</a> = 55599.3 <a href="/wiki/affair" title="affair">affair</a> = 55588.2 <a href="/wiki/contact" title="contact">contact</a> = 55576.4 <a href="/wiki/distinguished" title="distinguished">distinguished</a> = 55568.5 <a href="/wiki/station" title="station">station</a> = 55551.0 <a href="/wiki/beat" title="beat">beat</a> = 55452.9 <a href="/wiki/distributed" title="distributed">distributed</a> = 55431.6 <a href="/wiki/e" title="e">e</a> = 55405.5 <a href="/wiki/listen" title="listen">listen</a> = 55400.7 <a href="/w/index.php?title=italy&amp;action=edit&amp;redlink=1" class="new" title="italy (page does not exist)">italy</a> = 55327.9 <a href="/wiki/fool" title="fool">fool</a> = 55324.0 <a href="/wiki/becomes" title="becomes">becomes</a> = 55307.4 <a href="/wiki/watching" title="watching">watching</a> = 55264.7 <a href="/wiki/hurt" title="hurt">hurt</a> = 55227.5 <a href="/wiki/wants" title="wants">wants</a> = 55209.3 <a href="/wiki/express" title="express">express</a> = 55193.5 <a href="/wiki/occurred" title="occurred">occurred</a> = 55186.3 <a href="/wiki/favour" title="favour">favour</a> = 55161.8 <a href="/wiki/height" title="height">height</a> = 55161.8 <a href="/wiki/size" title="size">size</a> = 55123.0 <a href="/wiki/edge" title="edge">edge</a> = 55074.8 <a href="/wiki/subjects" title="subjects">subjects</a> = 55021.8 <a href="/wiki/task" title="task">task</a> = 54999.6 <a href="/wiki/follows" title="follows">follows</a> = 54945.8 <a href="/wiki/interests" title="interests">interests</a> = 54938.7 <a href="/wiki/nine" title="nine">nine</a> = 54922.9 <a href="/wiki/sympathy" title="sympathy">sympathy</a> = 54921.3 <a href="/wiki/burst" title="burst">burst</a> = 54920.5 <a href="/wiki/putting" title="putting">putting</a> = 54835.9</p>
256
+ <p><br /></p>
257
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=19" title="Edit section: 1501 - 1600">edit</a>]</span> <span class="mw-headline" id="1501_-_1600">1501 - 1600</span></h5>
258
+ <p><a href="/wiki/dressed" title="dressed">dressed</a> = 54816.9 <a href="/wiki/lifted" title="lifted">lifted</a> = 54796.3 <a href="/wiki/hopes" title="hopes">hopes</a> = 54772.6 <a href="/wiki/suffer" title="suffer">suffer</a> = 54764.7 <a href="/wiki/noise" title="noise">noise</a> = 54731.4 <a href="/wiki/smiling" title="smiling">smiling</a> = 54720.4 <a href="/wiki/rode" title="rode">rode</a> = 54627.8 <a href="/wiki/tells" title="tells">tells</a> = 54559.0 <a href="/wiki/minds" title="minds">minds</a> = 54524.9 <a href="/wiki/farther" title="farther">farther</a> = 54471.1 <a href="/wiki/literature" title="literature">literature</a> = 54426.1 <a href="/wiki/vessel" title="vessel">vessel</a> = 54407.9 <a href="/wiki/affection" title="affection">affection</a> = 54381.0 <a href="/wiki/suffering" title="suffering">suffering</a> = 54363.6 <a href="/wiki/proceeded" title="proceeded">proceeded</a> = 54343.8 <a href="/wiki/flesh" title="flesh">flesh</a> = 54333.5 <a href="/wiki/advice" title="advice">advice</a> = 54172.9 <a href="/wiki/grand" title="grand">grand</a> = 54172.9 <a href="/wiki/carrying" title="carrying">carrying</a> = 54168.9 <a href="/wiki/legs" title="legs">legs</a> = 54149.2 <a href="/w/index.php?title=spain&amp;action=edit&amp;redlink=1" class="new" title="spain (page does not exist)">spain</a> = 54147.6 <a href="/wiki/post" title="post">post</a> = 54054.2 <a href="/wiki/collection" title="collection">collection</a> = 54031.3 <a href="/wiki/empty" title="empty">empty</a> = 54020.2 <a href="/wiki/rank" title="rank">rank</a> = 54009.9 <a href="/wiki/storm" title="storm">storm</a> = 54009.1 <a href="/w/index.php?title=god%27s&amp;action=edit&amp;redlink=1" class="new" title="god's (page does not exist)">god's</a> = 53975.9 <a href="/wiki/imagine" title="imagine">imagine</a> = 53930.8 <a href="/wiki/wore" title="wore">wore</a> = 53915.0 <a href="/wiki/duties" title="duties">duties</a> = 53904.7 <a href="/wiki/admitted" title="admitted">admitted</a> = 53846.2 <a href="/wiki/countries" title="countries">countries</a> = 53834.3 <a href="/wiki/pocket" title="pocket">pocket</a> = 53783.7 <a href="/wiki/arrival" title="arrival">arrival</a> = 53776.5 <a href="/wiki/imagination" title="imagination">imagination</a> = 53768.6 <a href="/wiki/driven" title="driven">driven</a> = 53753.6 <a href="/wiki/loud" title="loud">loud</a> = 53742.5 <a href="/wiki/sentence" title="sentence">sentence</a> = 53699.0 <a href="/wiki/lovely" title="lovely">lovely</a> = 53673.7 <a href="/wiki/extraordinary" title="extraordinary">extraordinary</a> = 53589.0 <a href="/wiki/november" title="november">november</a> = 53551.8 <a href="/wiki/december" title="december">december</a> = 53541.6 <a href="/wiki/happen" title="happen">happen</a> = 53527.3 <a href="/wiki/absence" title="absence">absence</a> = 53502.8 <a href="/wiki/breakfast" title="breakfast">breakfast</a> = 53488.6 <a href="/wiki/population" title="population">population</a> = 53423.7 <a href="/wiki/thank" title="thank">thank</a> = 53413.4 <a href="/wiki/rules" title="rules">rules</a> = 53386.5 <a href="/wiki/inhabitants" title="inhabitants">inhabitants</a> = 53168.1 <a href="/wiki/series" title="series">series</a> = 53157.9 <a href="/wiki/laughing" title="laughing">laughing</a> = 53113.6 <a href="/wiki/address" title="address">address</a> = 53096.2 <a href="/wiki/relief" title="relief">relief</a> = 53061.3 <a href="/wiki/bird" title="bird">bird</a> = 52958.5 <a href="/wiki/owner" title="owner">owner</a> = 52920.5 <a href="/wiki/impression" title="impression">impression</a> = 52901.5 <a href="/wiki/satisfaction" title="satisfaction">satisfaction</a> = 52896.8 <a href="/wiki/coat" title="coat">coat</a> = 52869.9 <a href="/wiki/prepare" title="prepare">prepare</a> = 52846.2 <a href="/wiki/relations" title="relations">relations</a> = 52841.4 <a href="/wiki/shape" title="shape">shape</a> = 52710.9 <a href="/wiki/birth" title="birth">birth</a> = 52703.0 <a href="/wiki/rapidly" title="rapidly">rapidly</a> = 52677.6 <a href="/wiki/smoke" title="smoke">smoke</a> = 52676.9 <a href="/w/index.php?title=january&amp;action=edit&amp;redlink=1" class="new" title="january (page does not exist)">january</a> = 52657.1 <a href="/w/index.php?title=mother%27s&amp;action=edit&amp;redlink=1" class="new" title="mother's (page does not exist)">mother's</a> = 52657.1 <a href="/wiki/machine" title="machine">machine</a> = 52618.3 <a href="/wiki/content" title="content">content</a> = 52615.1 <a href="/wiki/consideration" title="consideration">consideration</a> = 52606.4 <a href="/wiki/accompanied" title="accompanied">accompanied</a> = 52581.1 <a href="/wiki/regular" title="regular">regular</a> = 52519.4 <a href="/wiki/moving" title="moving">moving</a> = 52512.3 <a href="/wiki/stands" title="stands">stands</a> = 52512.3 <a href="/wiki/wholly" title="wholly">wholly</a> = 52482.2 <a href="/wiki/teeth" title="teeth">teeth</a> = 52449.0 <a href="/wiki/busy" title="busy">busy</a> = 52407.1 <a href="/wiki/treated" title="treated">treated</a> = 52378.6 <a href="/wiki/burning" title="burning">burning</a> = 52322.4 <a href="/wiki/shame" title="shame">shame</a> = 52312.9 <a href="/wiki/quality" title="quality">quality</a> = 52292.4 <a href="/wiki/bay" title="bay">bay</a> = 52212.5 <a href="/wiki/discover" title="discover">discover</a> = 52201.4 <a href="/wiki/inside" title="inside">inside</a> = 52123.1 <a href="/wiki/brain" title="brain">brain</a> = 52105.7 <a href="/wiki/soil" title="soil">soil</a> = 52100.9 <a href="/wiki/completely" title="completely">completely</a> = 52050.3 <a href="/wiki/message" title="message">message</a> = 52049.5 <a href="/wiki/ring" title="ring">ring</a> = 52000.4 <a href="/wiki/resolved" title="resolved">resolved</a> = 51981.4 <a href="/wiki/calling" title="calling">calling</a> = 51950.6 <a href="/wiki/phrase" title="phrase">phrase</a> = 51940.3 <a href="/wiki/acts" title="acts">acts</a> = 51907.1 <a href="/wiki/mention" title="mention">mention</a> = 51888.9 <a href="/wiki/square" title="square">square</a> = 51832.7 <a href="/wiki/pair" title="pair">pair</a> = 51818.5 <a href="/wiki/won" title="won">won</a> = 51798.7 <a href="/wiki/title" title="title">title</a> = 51777.3 <a href="/wiki/understanding" title="understanding">understanding</a> = 51713.3 <a href="/w/index.php?title=sunday&amp;action=edit&amp;redlink=1" class="new" title="sunday (page does not exist)">sunday</a> = 51687.9 <a href="/wiki/fruit" title="fruit">fruit</a> = 51674.5</p>
259
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=20" title="Edit section: 1601 - 1700">edit</a>]</span> <span class="mw-headline" id="1601_-_1700">1601 - 1700</span></h5>
260
+ <p><a href="/wiki/mad" title="mad">mad</a> = 51668.9 <a href="/wiki/forces" title="forces">forces</a> = 51593.8 <a href="/wiki/included" title="included">included</a> = 51591.4 <a href="/wiki/tea" title="tea">tea</a> = 51547.1 <a href="/wiki/rocks" title="rocks">rocks</a> = 51540.0 <a href="/wiki/nearer" title="nearer">nearer</a> = 51456.1 <a href="/wiki/slaves" title="slaves">slaves</a> = 51427.7 <a href="/wiki/falling" title="falling">falling</a> = 51396.0 <a href="/wiki/absolutely" title="absolutely">absolutely</a> = 51394.4 <a href="/wiki/slow" title="slow">slow</a> = 51380.2 <a href="/wiki/bearing" title="bearing">bearing</a> = 51315.3 <a href="/wiki/mercy" title="mercy">mercy</a> = 51306.6 <a href="/wiki/larger" title="larger">larger</a> = 51297.9 <a href="/wiki/explain" title="explain">explain</a> = 51285.2 <a href="/wiki/contain" title="contain">contain</a> = 51210.9 <a href="/wiki/grief" title="grief">grief</a> = 51205.3 <a href="/wiki/soldier" title="soldier">soldier</a> = 51200.6 <a href="/wiki/wasn%27t" title="wasn't">wasn't</a> = 51135.7 <a href="/wiki/countenance" title="countenance">countenance</a> = 51077.2 <a href="/wiki/previous" title="previous">previous</a> = 51055.8 <a href="/wiki/explanation" title="explanation">explanation</a> = 51050.3 <a href="/wiki/welcome" title="welcome">welcome</a> = 51009.1 <a href="/wiki/proposed" title="proposed">proposed</a> = 51006.8 <a href="/wiki/prayer" title="prayer">prayer</a> = 50987.8 <a href="/wiki/stars" title="stars">stars</a> = 50977.5 <a href="/w/index.php?title=germany&amp;action=edit&amp;redlink=1" class="new" title="germany (page does not exist)">germany</a> = 50905.5 <a href="/wiki/belief" title="belief">belief</a> = 50725.9 <a href="/wiki/informed" title="informed">informed</a> = 50691.1 <a href="/wiki/moments" title="moments">moments</a> = 50676.1 <a href="/wiki/poetry" title="poetry">poetry</a> = 50673.7 <a href="/wiki/constant" title="constant">constant</a> = 50650.8 <a href="/wiki/buy" title="buy">buy</a> = 50619.9 <a href="/wiki/final" title="final">final</a> = 50604.9 <a href="/wiki/faithful" title="faithful">faithful</a> = 50587.5 <a href="/wiki/ride" title="ride">ride</a> = 50551.9 <a href="/wiki/policy" title="policy">policy</a> = 50464.8 <a href="/wiki/supper" title="supper">supper</a> = 50460.9 <a href="/wiki/drawing" title="drawing">drawing</a> = 50447.4 <a href="/wiki/excitement" title="excitement">excitement</a> = 50435.6 <a href="/wiki/dying" title="dying">dying</a> = 50335.1 <a href="/wiki/demand" title="demand">demand</a> = 50257.6 <a href="/wiki/fighting" title="fighting">fighting</a> = 50245.7 <a href="/wiki/fields" title="fields">fields</a> = 50201.4 <a href="/wiki/drove" title="drove">drove</a> = 50184.8 <a href="/wiki/upper" title="upper">upper</a> = 50168.2 <a href="/wiki/sum" title="sum">sum</a> = 50041.6 <a href="/w/index.php?title=philip&amp;action=edit&amp;redlink=1" class="new" title="philip (page does not exist)">philip</a> = 49999.7 <a href="/wiki/motion" title="motion">motion</a> = 49955.4 <a href="/wiki/assistance" title="assistance">assistance</a> = 49929.2 <a href="/wiki/forty" title="forty">forty</a> = 49903.1 <a href="/wiki/april" title="april">april</a> = 49899.2 <a href="/wiki/stones" title="stones">stones</a> = 49887.3 <a href="/w/index.php?title=edward&amp;action=edit&amp;redlink=1" class="new" title="edward (page does not exist)">edward</a> = 49840.6 <a href="/wiki/fees" title="fees">fees</a> = 49820.1 <a href="/wiki/kindly" title="kindly">kindly</a> = 49809.8 <a href="/wiki/dignity" title="dignity">dignity</a> = 49803.5 <a href="/wiki/catch" title="catch">catch</a> = 49718.8 <a href="/wiki/october" title="october">october</a> = 49715.6 <a href="/wiki/seated" title="seated">seated</a> = 49654.7 <a href="/wiki/knees" title="knees">knees</a> = 49642.1 <a href="/wiki/amongst" title="amongst">amongst</a> = 49628.6 <a href="/wiki/current" title="current">current</a> = 49580.4 <a href="/wiki/sending" title="sending">sending</a> = 49578.8 <a href="/wiki/parties" title="parties">parties</a> = 49574.0 <a href="/wiki/objects" title="objects">objects</a> = 49571.7 <a href="/wiki/gained" title="gained">gained</a> = 49550.3 <a href="/wiki/bitter" title="bitter">bitter</a> = 49544.8 <a href="/wiki/possibly" title="possibly">possibly</a> = 49520.2 <a href="/wiki/slave" title="slave">slave</a> = 49489.4 <a href="/wiki/separate" title="separate">separate</a> = 49480.7 <a href="/wiki/loose" title="loose">loose</a> = 49427.7 <a href="/wiki/text" title="text">text</a> = 49423.7 <a href="/wiki/receiving" title="receiving">receiving</a> = 49391.3 <a href="/wiki/worst" title="worst">worst</a> = 49369.1 <a href="/wiki/sold" title="sold">sold</a> = 49339.1 <a href="/wiki/don" title="don">don</a> = 49305.0 <a href="/wiki/credit" title="credit">credit</a> = 49262.3 <a href="/wiki/chosen" title="chosen">chosen</a> = 49225.9 <a href="/wiki/hoped" title="hoped">hoped</a> = 49174.5 <a href="/wiki/printed" title="printed">printed</a> = 49171.3 <a href="/wiki/terror" title="terror">terror</a> = 49161.1 <a href="/wiki/features" title="features">features</a> = 49124.7 <a href="/wiki/fond" title="fond">fond</a> = 49101.7 <a href="/wiki/control" title="control">control</a> = 49074.0 <a href="/wiki/capable" title="capable">capable</a> = 49070.1 <a href="/wiki/fifteen" title="fifteen">fifteen</a> = 49002.8 <a href="/wiki/doesn%27t" title="doesn't">doesn't</a> = 48968.0 <a href="/wiki/firm" title="firm">firm</a> = 48962.5 <a href="/wiki/superior" title="superior">superior</a> = 48948.2 <a href="/wiki/cruel" title="cruel">cruel</a> = 48839.1 <a href="/wiki/spiritual" title="spiritual">spiritual</a> = 48809.8 <a href="/wiki/harry" title="harry">harry</a> = 48809.0 <a href="/wiki/splendid" title="splendid">splendid</a> = 48752.0 <a href="/wiki/proof" title="proof">proof</a> = 48702.2 <a href="/wiki/pressed" title="pressed">pressed</a> = 48635.7 <a href="/wiki/sooner" title="sooner">sooner</a> = 48619.1 <a href="/wiki/join" title="join">join</a> = 48614.4 <a href="/wiki/process" title="process">process</a> = 48561.4 <a href="/wiki/crime" title="crime">crime</a> = 48528.9 <a href="/wiki/dust" title="dust">dust</a> = 48502.8</p>
261
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=21" title="Edit section: 1701 - 1800">edit</a>]</span> <span class="mw-headline" id="1701_-_1800">1701 - 1800</span></h5>
262
+ <p><a href="/wiki/instantly" title="instantly">instantly</a> = 48494.9 <a href="/wiki/lands" title="lands">lands</a> = 48475.9 <a href="/wiki/relation" title="relation">relation</a> = 48472.8 <a href="/wiki/doors" title="doors">doors</a> = 48413.4 <a href="/wiki/concerned" title="concerned">concerned</a> = 48411.1 <a href="/wiki/deeply" title="deeply">deeply</a> = 48404.7 <a href="/wiki/practical" title="practical">practical</a> = 48402.4 <a href="/wiki/colour" title="colour">colour</a> = 48371.5 <a href="/wiki/sing" title="sing">sing</a> = 48331.2 <a href="/wiki/destroy" title="destroy">destroy</a> = 48261.5 <a href="/wiki/anger" title="anger">anger</a> = 48238.6 <a href="/wiki/distributing" title="distributing">distributing</a> = 48223.6 <a href="/wiki/results" title="results">results</a> = 48202.2 <a href="/wiki/increase" title="increase">increase</a> = 48197.5 <a href="/wiki/reasons" title="reasons">reasons</a> = 48062.2 <a href="/wiki/nose" title="nose">nose</a> = 48059.8 <a href="/wiki/friendly" title="friendly">friendly</a> = 48021.0 <a href="/wiki/entrance" title="entrance">entrance</a> = 47983.8 <a href="/wiki/rooms" title="rooms">rooms</a> = 47962.5 <a href="/wiki/admit" title="admit">admit</a> = 47956.2 <a href="/wiki/supply" title="supply">supply</a> = 47924.5 <a href="/wiki/clean" title="clean">clean</a> = 47921.3 <a href="/wiki/useful" title="useful">useful</a> = 47849.4 <a href="/wiki/yesterday" title="yesterday">yesterday</a> = 47824.0 <a href="/wiki/delicate" title="delicate">delicate</a> = 47818.5 <a href="/wiki/fail" title="fail">fail</a> = 47778.1 <a href="/wiki/continue" title="continue">continue</a> = 47737.8 <a href="/wiki/remove" title="remove">remove</a> = 47699.0 <a href="/wiki/addressed" title="addressed">addressed</a> = 47673.7 <a href="/wiki/choice" title="choice">choice</a> = 47671.3 <a href="/wiki/huge" title="huge">huge</a> = 47619.9 <a href="/wiki/needs" title="needs">needs</a> = 47619.1 <a href="/wiki/wear" title="wear">wear</a> = 47608.8 <a href="/wiki/blind" title="blind">blind</a> = 47599.4 <a href="/wiki/unable" title="unable">unable</a> = 47589.1 <a href="/wiki/cover" title="cover">cover</a> = 47574.0 <a href="/wiki/double" title="double">double</a> = 47550.3 <a href="/wiki/victory" title="victory">victory</a> = 47530.5 <a href="/wiki/dozen" title="dozen">dozen</a> = 47519.4 <a href="/wiki/constantly" title="constantly">constantly</a> = 47490.2 <a href="/wiki/level" title="level">level</a> = 47487.8 <a href="/wiki/india" title="india">india</a> = 47392.1 <a href="/wiki/release" title="release">release</a> = 47389.7 <a href="/wiki/rough" title="rough">rough</a> = 47332.7 <a href="/wiki/ended" title="ended">ended</a> = 47325.6 <a href="/wiki/shows" title="shows">shows</a> = 47324.0 <a href="/wiki/fly" title="fly">fly</a> = 47316.9 <a href="/wiki/praise" title="praise">praise</a> = 47267.9 <a href="/wiki/devil" title="devil">devil</a> = 47254.4 <a href="/wiki/ahead" title="ahead">ahead</a> = 47194.3 <a href="/wiki/smith" title="smith">smith</a> = 47190.3 <a href="/wiki/connected" title="connected">connected</a> = 47128.6 <a href="/wiki/degrees" title="degrees">degrees</a> = 47110.4 <a href="/wiki/gain" title="gain">gain</a> = 47094.6 <a href="/wiki/addition" title="addition">addition</a> = 47084.3 <a href="/wiki/committed" title="committed">committed</a> = 47063.0 <a href="/wiki/chamber" title="chamber">chamber</a> = 47055.8 <a href="/wiki/notes" title="notes">notes</a> = 47051.9 <a href="/wiki/italian" title="italian">italian</a> = 47021.8 <a href="/wiki/gradually" title="gradually">gradually</a> = 46902.4 <a href="/wiki/acquaintance" title="acquaintance">acquaintance</a> = 46877.8 <a href="/wiki/bought" title="bought">bought</a> = 46854.1 <a href="/wiki/souls" title="souls">souls</a> = 46847.0 <a href="/wiki/mission" title="mission">mission</a> = 46837.5 <a href="/wiki/sacrifice" title="sacrifice">sacrifice</a> = 46810.6 <a href="/wiki/cities" title="cities">cities</a> = 46797.1 <a href="/wiki/mistake" title="mistake">mistake</a> = 46768.7 <a href="/wiki/exercise" title="exercise">exercise</a> = 46752.0 <a href="/wiki/conscience" title="conscience">conscience</a> = 46747.3 <a href="/wiki/based" title="based">based</a> = 46717.2 <a href="/wiki/car" title="car">car</a> = 46691.1 <a href="/wiki/buried" title="buried">buried</a> = 46646.8 <a href="/wiki/theory" title="theory">theory</a> = 46621.5 <a href="/wiki/commanded" title="commanded">commanded</a> = 46561.4 <a href="/wiki/nobody" title="nobody">nobody</a> = 46560.6 <a href="/wiki/minister" title="minister">minister</a> = 46464.9 <a href="/wiki/closely" title="closely">closely</a> = 46446.7 <a href="/wiki/energy" title="energy">energy</a> = 46407.9 <a href="/wiki/dick" title="dick">dick</a> = 46399.2 <a href="/wiki/bare" title="bare">bare</a> = 46386.5 <a href="/wiki/fought" title="fought">fought</a> = 46382.6 <a href="/wiki/partly" title="partly">partly</a> = 46369.9 <a href="/wiki/mistress" title="mistress">mistress</a> = 46298.7 <a href="/wiki/hate" title="hate">hate</a> = 46287.7 <a href="/wiki/arose" title="arose">arose</a> = 46271.0 <a href="/wiki/playing" title="playing">playing</a> = 46253.6 <a href="/wiki/color" title="color">color</a> = 46252.1 <a href="/wiki/lake" title="lake">lake</a> = 46240.2 <a href="/wiki/safety" title="safety">safety</a> = 46193.5 <a href="/wiki/provisions" title="provisions">provisions</a> = 46145.2 <a href="/wiki/description" title="description">description</a> = 46112.0 <a href="/wiki/asleep" title="asleep">asleep</a> = 46108.9 <a href="/wiki/centre" title="centre">centre</a> = 46093.8 <a href="/wiki/faint" title="faint">faint</a> = 46085.1 <a href="/wiki/thinks" title="thinks">thinks</a> = 46053.5 <a href="/wiki/parents" title="parents">parents</a> = 46044.8 <a href="/wiki/escaped" title="escaped">escaped</a> = 46024.2 <a href="/wiki/careful" title="careful">careful</a> = 45995.7 <a href="/wiki/enjoy" title="enjoy">enjoy</a> = 45987.8 <a href="/wiki/drop" title="drop">drop</a> = 45918.2</p>
263
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=22" title="Edit section: 1801 - 1900">edit</a>]</span> <span class="mw-headline" id="1801_-_1900">1801 - 1900</span></h5>
264
+ <p><a href="/wiki/brilliant" title="brilliant">brilliant</a> = 45799.5 <a href="/wiki/brief" title="brief">brief</a> = 45788.4 <a href="/wiki/bringing" title="bringing">bringing</a> = 45758.4 <a href="/wiki/worship" title="worship">worship</a> = 45744.1 <a href="/wiki/goods" title="goods">goods</a> = 45735.4 <a href="/wiki/tale" title="tale">tale</a> = 45733.1 <a href="/wiki/skin" title="skin">skin</a> = 45696.7 <a href="/wiki/roof" title="roof">roof</a> = 45695.9 <a href="/wiki/grey" title="grey">grey</a> = 45689.6 <a href="/wiki/highly" title="highly">highly</a> = 45680.1 <a href="/wiki/crown" title="crown">crown</a> = 45638.1 <a href="/wiki/castle" title="castle">castle</a> = 45581.2 <a href="/wiki/excited" title="excited">excited</a> = 45567.7 <a href="/wiki/throne" title="throne">throne</a> = 45558.2 <a href="/wiki/stated" title="stated">stated</a> = 45524.2 <a href="/wiki/despair" title="despair">despair</a> = 45463.3 <a href="/wiki/ease" title="ease">ease</a> = 45457.8 <a href="/wiki/attached" title="attached">attached</a> = 45447.5 <a href="/wiki/total" title="total">total</a> = 45438.8 <a href="/wiki/kindness" title="kindness">kindness</a> = 45424.5 <a href="/wiki/mile" title="mile">mile</a> = 45375.5 <a href="/wiki/citizens" title="citizens">citizens</a> = 45309.8 <a href="/wiki/circle" title="circle">circle</a> = 45281.3 <a href="/wiki/dull" title="dull">dull</a> = 45281.3 <a href="/wiki/extreme" title="extreme">extreme</a> = 45269.5 <a href="/wiki/clouds" title="clouds">clouds</a> = 45264.7 <a href="/wiki/figures" title="figures">figures</a> = 45251.3 <a href="/wiki/intention" title="intention">intention</a> = 45248.1 <a href="/wiki/prison" title="prison">prison</a> = 45241.0 <a href="/wiki/term" title="term">term</a> = 45215.7 <a href="/wiki/assured" title="assured">assured</a> = 45181.6 <a href="/wiki/hidden" title="hidden">hidden</a> = 45123.9 <a href="/wiki/thoroughly" title="thoroughly">thoroughly</a> = 45123.1 <a href="/wiki/cup" title="cup">cup</a> = 45107.3 <a href="/wiki/member" title="member">member</a> = 45100.2 <a href="/wiki/civil" title="civil">civil</a> = 44958.5 <a href="/wiki/apply" title="apply">apply</a> = 44943.5 <a href="/wiki/labor" title="labor">labor</a> = 44925.3 <a href="/wiki/everywhere" title="everywhere">everywhere</a> = 44877.1 <a href="/wiki/intelligence" title="intelligence">intelligence</a> = 44856.5 <a href="/wiki/strike" title="strike">strike</a> = 44825.6 <a href="/wiki/fairly" title="fairly">fairly</a> = 44822.5 <a href="/wiki/comply" title="comply">comply</a> = 44817.7 <a href="/wiki/fellows" title="fellows">fellows</a> = 44813.0 <a href="/wiki/haven%27t" title="haven't">haven't</a> = 44742.6 <a href="/wiki/event" title="event">event</a> = 44675.3 <a href="/wiki/gently" title="gently">gently</a> = 44659.5 <a href="/wiki/connection" title="connection">connection</a> = 44629.4 <a href="/wiki/protection" title="protection">protection</a> = 44625.5 <a href="/wiki/conscious" title="conscious">conscious</a> = 44568.5 <a href="/wiki/edition" title="edition">edition</a> = 44551.1 <a href="/wiki/directed" title="directed">directed</a> = 44487.0 <a href="/wiki/pulled" title="pulled">pulled</a> = 44473.6 <a href="/wiki/flight" title="flight">flight</a> = 44454.6 <a href="/wiki/evident" title="evident">evident</a> = 44453.8 <a href="/wiki/surrounded" title="surrounded">surrounded</a> = 44441.1 <a href="/wiki/wishes" title="wishes">wishes</a> = 44411.9 <a href="/wiki/yards" title="yards">yards</a> = 44411.9 <a href="/wiki/voices" title="voices">voices</a> = 44401.6 <a href="/wiki/weary" title="weary">weary</a> = 44397.6 <a href="/wiki/couple" title="couple">couple</a> = 44368.4 <a href="/wiki/variety" title="variety">variety</a> = 44354.1 <a href="/wiki/whilst" title="whilst">whilst</a> = 44316.1 <a href="/wiki/volume" title="volume">volume</a> = 44293.2 <a href="/wiki/details" title="details">details</a> = 44279.0 <a href="/wiki/older" title="older">older</a> = 44260.0 <a href="/wiki/requirements" title="requirements">requirements</a> = 44256.0 <a href="/wiki/custom" title="custom">custom</a> = 44253.6 <a href="/wiki/apart" title="apart">apart</a> = 44248.1 <a href="/wiki/bow" title="bow">bow</a> = 44208.5 <a href="/wiki/awful" title="awful">awful</a> = 44175.3 <a href="/wiki/everybody" title="everybody">everybody</a> = 44135.8 <a href="/wiki/labour" title="labour">labour</a> = 44127.9 <a href="/wiki/asking" title="asking">asking</a> = 44097.8 <a href="/wiki/lover" title="lover">lover</a> = 44066.9 <a href="/wiki/showing" title="showing">showing</a> = 44052.7 <a href="/wiki/introduced" title="introduced">introduced</a> = 44021.8 <a href="/wiki/suit" title="suit">suit</a> = 43998.9 <a href="/wiki/becoming" title="becoming">becoming</a> = 43985.4 <a href="/wiki/composed" title="composed">composed</a> = 43982.3 <a href="/wiki/plans" title="plans">plans</a> = 43978.3 <a href="/wiki/rendered" title="rendered">rendered</a> = 43966.5 <a href="/wiki/pictures" title="pictures">pictures</a> = 43960.1 <a href="/wiki/lest" title="lest">lest</a> = 43949.8 <a href="/wiki/volunteers" title="volunteers">volunteers</a> = 43949.8 <a href="/wiki/singing" title="singing">singing</a> = 43942.7 <a href="/wiki/eager" title="eager">eager</a> = 43919.0 <a href="/wiki/precious" title="precious">precious</a> = 43892.9 <a href="/wiki/paused" title="paused">paused</a> = 43885.0 <a href="/wiki/require" title="require">require</a> = 43847.0 <a href="/wiki/meat" title="meat">meat</a> = 43838.3 <a href="/wiki/whenever" title="whenever">whenever</a> = 43837.5 <a href="/wiki/milk" title="milk">milk</a> = 43784.5 <a href="/wiki/dogs" title="dogs">dogs</a> = 43682.4 <a href="/wiki/successful" title="successful">successful</a> = 43611.2 <a href="/wiki/plants" title="plants">plants</a> = 43609.7 <a href="/wiki/vision" title="vision">vision</a> = 43605.7 <a href="/wiki/rare" title="rare">rare</a> = 43603.3 <a href="/wiki/granted" title="granted">granted</a> = 43561.4 <a href="/wiki/raise" title="raise">raise</a> = 43533.7</p>
265
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=23" title="Edit section: 1901 - 2000">edit</a>]</span> <span class="mw-headline" id="1901_-_2000">1901 - 2000</span></h5>
266
+ <p><a href="/w/index.php?title=egypt&amp;action=edit&amp;redlink=1" class="new" title="egypt (page does not exist)">egypt</a> = 43529.8 <a href="/wiki/manners" title="manners">manners</a> = 43503.6 <a href="/wiki/cousin" title="cousin">cousin</a> = 43494.9 <a href="/wiki/you%27ve" title="you've">you've</a> = 43454.6 <a href="/wiki/development" title="development">development</a> = 43431.7 <a href="/w/index.php?title=arthur&amp;action=edit&amp;redlink=1" class="new" title="arthur (page does not exist)">arthur</a> = 43405.5 <a href="/wiki/obs" title="obs">obs</a> = 43402.4 <a href="/wiki/cool" title="cool">cool</a> = 43305.1 <a href="/wiki/trial" title="trial">trial</a> = 43233.9 <a href="/wiki/learning" title="learning">learning</a> = 43177.7 <a href="/wiki/approached" title="approached">approached</a> = 43176.9 <a href="/wiki/bridge" title="bridge">bridge</a> = 43143.7 <a href="/wiki/abroad" title="abroad">abroad</a> = 43081.2 <a href="/wiki/devoted" title="devoted">devoted</a> = 43071.7 <a href="/wiki/paying" title="paying">paying</a> = 43055.9 <a href="/wiki/literary" title="literary">literary</a> = 43044.0 <a href="/wiki/writer" title="writer">writer</a> = 42938.0 <a href="/wiki/fn" title="fn">fn</a> = 42935.6 <a href="/wiki/israel" title="israel">israel</a> = 42903.2 <a href="/wiki/disappeared" title="disappeared">disappeared</a> = 42899.2 <a href="/wiki/interrupted" title="interrupted">interrupted</a> = 42888.9 <a href="/wiki/stock" title="stock">stock</a> = 42862.8 <a href="/wiki/readers" title="readers">readers</a> = 42829.6 <a href="/wiki/dreadful" title="dreadful">dreadful</a> = 42801.9 <a href="/wiki/female" title="female">female</a> = 42767.9 <a href="/wiki/protect" title="protect">protect</a> = 42699.1 <a href="/wiki/accustomed" title="accustomed">accustomed</a> = 42696.7 <a href="/wiki/virginia" title="virginia" class="mw-redirect">virginia</a> = 42695.1 <a href="/wiki/type" title="type">type</a> = 42657.9 <a href="/wiki/recognized" title="recognized">recognized</a> = 42656.3 <a href="/wiki/salt" title="salt">salt</a> = 42649.2 <a href="/wiki/destroyed" title="destroyed">destroyed</a> = 42641.3 <a href="/wiki/signs" title="signs">signs</a> = 42635.0 <a href="/wiki/innocent" title="innocent">innocent</a> = 42613.6 <a href="/wiki/temper" title="temper">temper</a> = 42601.8 <a href="/wiki/plenty" title="plenty">plenty</a> = 42597.0 <a href="/wiki/pope" title="pope">pope</a> = 42596.2 <a href="/wiki/avoid" title="avoid">avoid</a> = 42559.0 <a href="/wiki/hurried" title="hurried">hurried</a> = 42480.7 <a href="/wiki/represented" title="represented">represented</a> = 42461.7 <a href="/wiki/favor" title="favor">favor</a> = 42434.8 <a href="/wiki/mental" title="mental">mental</a> = 42347.0 <a href="/wiki/attitude" title="attitude">attitude</a> = 42329.6 <a href="/wiki/returning" title="returning">returning</a> = 42271.9 <a href="/wiki/admiration" title="admiration">admiration</a> = 42255.2 <a href="/wiki/brothers" title="brothers">brothers</a> = 42245.0 <a href="/wiki/anxiety" title="anxiety">anxiety</a> = 42233.9 <a href="/wiki/queen" title="queen">queen</a> = 42223.6 <a href="/wiki/teach" title="teach">teach</a> = 42216.5 <a href="/wiki/count" title="count">count</a> = 42207.8 <a href="/wiki/curiosity" title="curiosity">curiosity</a> = 42203.8 <a href="/wiki/solemn" title="solemn">solemn</a> = 42188.8 <a href="/wiki/causes" title="causes">causes</a> = 42152.4 <a href="/wiki/vessels" title="vessels">vessels</a> = 42102.5 <a href="/wiki/compelled" title="compelled">compelled</a> = 42082.0 <a href="/wiki/dance" title="dance">dance</a> = 42075.7 <a href="/wiki/hotel" title="hotel">hotel</a> = 42072.5 <a href="/wiki/wicked" title="wicked">wicked</a> = 42017.9 <a href="/wiki/fled" title="fled">fled</a> = 41992.6 <a href="/wiki/kissed" title="kissed">kissed</a> = 41987.0 <a href="/wiki/guns" title="guns">guns</a> = 41921.4 <a href="/wiki/fill" title="fill">fill</a> = 41911.9 <a href="/wiki/visible" title="visible">visible</a> = 41884.2 <a href="/wiki/younger" title="younger">younger</a> = 41825.7 <a href="/wiki/guide" title="guide">guide</a> = 41750.5 <a href="/wiki/earnest" title="earnest">earnest</a> = 41745.7 <a href="/wiki/actual" title="actual">actual</a> = 41729.1 <a href="/wiki/companions" title="companions">companions</a> = 41728.3 <a href="/wiki/prisoner" title="prisoner">prisoner</a> = 41725.2 <a href="/wiki/miserable" title="miserable">miserable</a> = 41704.6 <a href="/wiki/lad" title="lad">lad</a> = 41692.0 <a href="/wiki/harm" title="harm">harm</a> = 41617.6 <a href="/wiki/views" title="views">views</a> = 41499.7 <a href="/w/index.php?title=irish&amp;action=edit&amp;redlink=1" class="new" title="irish (page does not exist)">irish</a> = 41490.2 <a href="/wiki/utterly" title="utterly">utterly</a> = 41479.9 <a href="/wiki/ends" title="ends">ends</a> = 41431.7 <a href="/wiki/shop" title="shop">shop</a> = 41349.4 <a href="/wiki/stairs" title="stairs">stairs</a> = 41339.1 <a href="/wiki/pardon" title="pardon">pardon</a> = 41335.1 <a href="/wiki/gay" title="gay">gay</a> = 41319.3 <a href="/wiki/beg" title="beg">beg</a> = 41312.2 <a href="/wiki/seldom" title="seldom">seldom</a> = 41303.5 <a href="/wiki/kinds" title="kinds">kinds</a> = 41287.7 <a href="/wiki/record" title="record">record</a> = 41281.4 <a href="/wiki/fat" title="fat">fat</a> = 41278.2 <a href="/wiki/sand" title="sand">sand</a> = 41232.3 <a href="/wiki/violent" title="violent">violent</a> = 41203.8 <a href="/wiki/branches" title="branches">branches</a> = 41195.1 <a href="/wiki/inquired" title="inquired">inquired</a> = 41185.6 <a href="/w/index.php?title=iv&amp;action=edit&amp;redlink=1" class="new" title="iv (page does not exist)">iv</a> = 41152.4 <a href="/wiki/september" title="september">september</a> = 41145.3 <a href="/wiki/worn" title="worn">worn</a> = 41117.6 <a href="/w/index.php?title=ireland&amp;action=edit&amp;redlink=1" class="new" title="ireland (page does not exist)">ireland</a> = 41105.7 <a href="/wiki/flat" title="flat">flat</a> = 41104.1 <a href="/wiki/departure" title="departure">departure</a> = 41101.0 <a href="/wiki/delivered" title="delivered">delivered</a> = 41099.4 <a href="/wiki/gift" title="gift">gift</a> = 41080.4 <a href="/wiki/ruin" title="ruin">ruin</a> = 41073.3 <a href="/wiki/skill" title="skill">skill</a> = 41029.8 <a href="/wiki/cattle" title="cattle">cattle</a> = 40983.1</p>
267
+ <h4><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=24" title="Edit section: 2001 - 3000">edit</a>]</span> <span class="mw-headline" id="2001_-_3000">2001 - 3000</span></h4>
268
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=25" title="Edit section: 2001 - 2100">edit</a>]</span> <span class="mw-headline" id="2001_-_2100">2001 - 2100</span></h5>
269
+ <p><a href="/wiki/equipment" title="equipment">equipment</a> = 40935.6 <a href="/wiki/temple" title="temple">temple</a> = 40926.1 <a href="/wiki/calls" title="calls">calls</a> = 40860.5 <a href="/wiki/earlier" title="earlier">earlier</a> = 40843.1 <a href="/wiki/license" title="license">license</a> = 40827.2 <a href="/wiki/visited" title="visited">visited</a> = 40818.5 <a href="/wiki/en" title="en">en</a> = 40812.2 <a href="/wiki/consent" title="consent">consent</a> = 40810.6 <a href="/wiki/sufficiently" title="sufficiently">sufficiently</a> = 40787.7 <a href="/wiki/natives" title="natives">natives</a> = 40772.7 <a href="/wiki/wound" title="wound">wound</a> = 40752.1 <a href="/wiki/laughter" title="laughter">laughter</a> = 40713.3 <a href="/wiki/contained" title="contained">contained</a> = 40691.2 <a href="/wiki/perceived" title="perceived">perceived</a> = 40691.2 <a href="/wiki/scattered" title="scattered">scattered</a> = 40669.8 <a href="/wiki/whence" title="whence">whence</a> = 40661.1 <a href="/wiki/rushed" title="rushed">rushed</a> = 40657.9 <a href="/wiki/chiefly" title="chiefly">chiefly</a> = 40639.0 <a href="/wiki/bold" title="bold">bold</a> = 40614.4 <a href="/wiki/anywhere" title="anywhere">anywhere</a> = 40597.0 <a href="/wiki/witness" title="witness">witness</a> = 40545.6 <a href="/wiki/foolish" title="foolish">foolish</a> = 40523.4 <a href="/wiki/helped" title="helped">helped</a> = 40487.8 <a href="/wiki/kitchen" title="kitchen">kitchen</a> = 40483.9 <a href="/wiki/sell" title="sell">sell</a> = 40483.9 <a href="/wiki/anybody" title="anybody">anybody</a> = 40479.1 <a href="/wiki/self" title="self">self</a> = 40477.6 <a href="/wiki/extremely" title="extremely">extremely</a> = 40476.0 <a href="/wiki/treatment" title="treatment">treatment</a> = 40449.1 <a href="/wiki/throat" title="throat">throat</a> = 40414.3 <a href="/wiki/dreams" title="dreams">dreams</a> = 40383.4 <a href="/wiki/patient" title="patient">patient</a> = 40380.2 <a href="/wiki/speed" title="speed">speed</a> = 40372.3 <a href="/wiki/growth" title="growth">growth</a> = 40351.0 <a href="/wiki/quantity" title="quantity">quantity</a> = 40347.8 <a href="/wiki/latin" title="latin">latin</a> = 40314.6 <a href="/wiki/immense" title="immense">immense</a> = 40278.2 <a href="/wiki/conclusion" title="conclusion">conclusion</a> = 40262.4 <a href="/wiki/computer" title="computer">computer</a> = 40222.0 <a href="/wiki/affected" title="affected">affected</a> = 40214.1 <a href="/wiki/severe" title="severe">severe</a> = 40200.7 <a href="/wiki/excuse" title="excuse">excuse</a> = 40180.9 <a href="/wiki/triumph" title="triumph">triumph</a> = 40169.8 <a href="/wiki/origin" title="origin">origin</a> = 40165.1 <a href="/wiki/joseph" title="joseph">joseph</a> = 40161.1 <a href="/wiki/slept" title="slept">slept</a> = 40160.3 <a href="/wiki/eternal" title="eternal">eternal</a> = 40157.1 <a href="/wiki/thine" title="thine">thine</a> = 40157.1 <a href="/wiki/audience" title="audience">audience</a> = 40127.9 <a href="/wiki/pages" title="pages">pages</a> = 40117.6 <a href="/wiki/sounds" title="sounds">sounds</a> = 40089.1 <a href="/wiki/swift" title="swift">swift</a> = 40080.4 <a href="/wiki/limited" title="limited">limited</a> = 40060.6 <a href="/wiki/wings" title="wings">wings</a> = 40014.0 <a href="/wiki/stepped" title="stepped">stepped</a> = 39957.0 <a href="/wiki/services" title="services">services</a> = 39933.3 <a href="/wiki/library" title="library">library</a> = 39915.9 <a href="/wiki/remaining" title="remaining">remaining</a> = 39911.9 <a href="/wiki/containing" title="containing">containing</a> = 39908.7 <a href="/wiki/base" title="base">base</a> = 39900.8 <a href="/wiki/confusion" title="confusion">confusion</a> = 39871.6 <a href="/wiki/win" title="win">win</a> = 39858.9 <a href="/wiki/maid" title="maid">maid</a> = 39847.8 <a href="/wiki/charming" title="charming">charming</a> = 39846.2 <a href="/wiki/editions" title="editions">editions</a> = 39843.1 <a href="/wiki/attended" title="attended">attended</a> = 39842.3 <a href="/wiki/softly" title="softly">softly</a> = 39831.2 <a href="/wiki/reality" title="reality">reality</a> = 39813.0 <a href="/wiki/performed" title="performed">performed</a> = 39808.3 <a href="/wiki/glorious" title="glorious">glorious</a> = 39774.2 <a href="/wiki/likewise" title="likewise">likewise</a> = 39757.6 <a href="/wiki/site" title="site">site</a> = 39722.8 <a href="/wiki/sail" title="sail">sail</a> = 39713.3 <a href="/wiki/frightened" title="frightened">frightened</a> = 39697.5 <a href="/wiki/acquainted" title="acquainted">acquainted</a> = 39660.3 <a href="/wiki/unhappy" title="unhappy">unhappy</a> = 39660.3 <a href="/wiki/feared" title="feared">feared</a> = 39591.5 <a href="/wiki/article" title="article">article</a> = 39586.7 <a href="/wiki/prisoners" title="prisoners">prisoners</a> = 39576.5 <a href="/wiki/store" title="store">store</a> = 39566.2 <a href="/wiki/adopted" title="adopted">adopted</a> = 39561.4 <a href="/wiki/shalt" title="shalt">shalt</a> = 39534.5 <a href="/wiki/remark" title="remark">remark</a> = 39519.5 <a href="/wiki/cook" title="cook">cook</a> = 39479.1 <a href="/wiki/thousands" title="thousands">thousands</a> = 39463.3 <a href="/wiki/pause" title="pause">pause</a> = 39426.1 <a href="/wiki/inclined" title="inclined">inclined</a> = 39411.1 <a href="/wiki/convinced" title="convinced">convinced</a> = 39401.6 <a href="/wiki/band" title="band">band</a> = 39397.7 <a href="/wiki/valuable" title="valuable">valuable</a> = 39324.1 <a href="/wiki/hence" title="hence">hence</a> = 39316.2 <a href="/wiki/desert" title="desert">desert</a> = 39278.2 <a href="/wiki/effects" title="effects">effects</a> = 39257.6 <a href="/wiki/kiss" title="kiss">kiss</a> = 39251.3 <a href="/wiki/plant" title="plant">plant</a> = 39201.5 <a href="/wiki/ice" title="ice">ice</a> = 39198.3 <a href="/wiki/ball" title="ball">ball</a> = 39180.9 <a href="/wiki/stick" title="stick">stick</a> = 39108.1 <a href="/wiki/absolute" title="absolute">absolute</a> = 39093.1 <a href="/wiki/readily" title="readily">readily</a> = 39085.2</p>
270
+ <p><br /></p>
271
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=26" title="Edit section: 2101 - 2200">edit</a>]</span> <span class="mw-headline" id="2101_-_2200">2101 - 2200</span></h5>
272
+ <p><a href="/wiki/behold" title="behold">behold</a> = 39051.1 <a href="/wiki/fierce" title="fierce">fierce</a> = 39048.0 <a href="/wiki/argument" title="argument">argument</a> = 38991.0 <a href="/wiki/observe" title="observe">observe</a> = 38990.2 <a href="/wiki/blessed" title="blessed">blessed</a> = 38967.3 <a href="/wiki/bosom" title="bosom">bosom</a> = 38956.2 <a href="/wiki/rage" title="rage">rage</a> = 38949.1 <a href="/wiki/striking" title="striking">striking</a> = 38941.2 <a href="/wiki/discovery" title="discovery">discovery</a> = 38883.4 <a href="/wiki/creatures" title="creatures">creatures</a> = 38875.5 <a href="/wiki/shouted" title="shouted">shouted</a> = 38859.7 <a href="/wiki/guilty" title="guilty">guilty</a> = 38836.7 <a href="/wiki/related" title="related">related</a> = 38810.6 <a href="/wiki/setting" title="setting">setting</a> = 38686.4 <a href="/wiki/forgot" title="forgot">forgot</a> = 38668.2 <a href="/wiki/punishment" title="punishment">punishment</a> = 38650.8 <a href="/wiki/gun" title="gun">gun</a> = 38632.6 <a href="/wiki/slightly" title="slightly">slightly</a> = 38629.5 <a href="/wiki/articles" title="articles">articles</a> = 38575.7 <a href="/wiki/police" title="police">police</a> = 38557.5 <a href="/wiki/mysterious" title="mysterious">mysterious</a> = 38550.4 <a href="/wiki/extended" title="extended">extended</a> = 38536.1 <a href="/wiki/confess" title="confess">confess</a> = 38535.3 <a href="/wiki/shade" title="shade">shade</a> = 38527.4 <a href="/wiki/murder" title="murder">murder</a> = 38525.0 <a href="/wiki/emotion" title="emotion">emotion</a> = 38510.0 <a href="/wiki/destruction" title="destruction">destruction</a> = 38505.3 <a href="/wiki/wondered" title="wondered">wondered</a> = 38474.4 <a href="/wiki/increasing" title="increasing">increasing</a> = 38463.3 <a href="/wiki/hide" title="hide">hide</a> = 38423.8 <a href="/wiki/expedition" title="expedition">expedition</a> = 38402.4 <a href="/wiki/horror" title="horror">horror</a> = 38361.3 <a href="/wiki/local" title="local">local</a> = 38355.7 <a href="/wiki/expenses" title="expenses">expenses</a> = 38353.4 <a href="/wiki/ignorant" title="ignorant">ignorant</a> = 38321.7 <a href="/wiki/doctrine" title="doctrine">doctrine</a> = 38303.5 <a href="/wiki/generous" title="generous">generous</a> = 38301.1 <a href="/wiki/range" title="range">range</a> = 38284.5 <a href="/wiki/host" title="host">host</a> = 38240.2 <a href="/wiki/wet" title="wet">wet</a> = 38201.5 <a href="/wiki/cloud" title="cloud">cloud</a> = 38187.2 <a href="/wiki/mystery" title="mystery">mystery</a> = 38185.6 <a href="/wiki/ed" title="ed">ed</a> = 38165.9 <a href="/wiki/waste" title="waste">waste</a> = 38164.3 <a href="/wiki/changes" title="changes">changes</a> = 38156.4 <a href="/wiki/possess" title="possess">possess</a> = 38151.6 <a href="/wiki/consciousness" title="consciousness">consciousness</a> = 38142.1 <a href="/w/index.php?title=february&amp;action=edit&amp;redlink=1" class="new" title="february (page does not exist)">february</a> = 38131.1 <a href="/wiki/trembling" title="trembling">trembling</a> = 38110.5 <a href="/wiki/disease" title="disease">disease</a> = 38039.3 <a href="/wiki/formerly" title="formerly">formerly</a> = 38037.7 <a href="/wiki/spend" title="spend">spend</a> = 38033.7 <a href="/wiki/production" title="production">production</a> = 38021.1 <a href="/wiki/source" title="source">source</a> = 38004.5 <a href="/wiki/mankind" title="mankind">mankind</a> = 37996.6 <a href="/wiki/universal" title="universal">universal</a> = 37991.8 <a href="/wiki/deck" title="deck">deck</a> = 37965.7 <a href="/wiki/sees" title="sees">sees</a> = 37923.0 <a href="/wiki/habits" title="habits">habits</a> = 37913.5 <a href="/wiki/estate" title="estate">estate</a> = 37878.7 <a href="/wiki/aunt" title="aunt">aunt</a> = 37832.8 <a href="/wiki/reign" title="reign">reign</a> = 37816.2 <a href="/wiki/humble" title="humble">humble</a> = 37795.6 <a href="/wiki/compliance" title="compliance">compliance</a> = 37787.7 <a href="/wiki/delay" title="delay">delay</a> = 37771.1 <a href="/wiki/shining" title="shining">shining</a> = 37764.0 <a href="/wiki/reported" title="reported">reported</a> = 37740.2 <a href="/wiki/hers" title="hers">hers</a> = 37736.3 <a href="/wiki/unfortunate" title="unfortunate">unfortunate</a> = 37731.5 <a href="/wiki/midnight" title="midnight">midnight</a> = 37703.8 <a href="/wiki/listening" title="listening">listening</a> = 37700.7 <a href="/wiki/flower" title="flower">flower</a> = 37688.8 <a href="/wiki/hero" title="hero">hero</a> = 37673.8 <a href="/wiki/accomplished" title="accomplished">accomplished</a> = 37666.7 <a href="/wiki/doth" title="doth">doth</a> = 37665.1 <a href="/wiki/classes" title="classes">classes</a> = 37658.7 <a href="/wiki/thanks" title="thanks">thanks</a> = 37642.1 <a href="/wiki/banks" title="banks">banks</a> = 37623.1 <a href="/wiki/philosophy" title="philosophy">philosophy</a> = 37611.3 <a href="/wiki/belong" title="belong">belong</a> = 37593.9 <a href="/wiki/finger" title="finger">finger</a> = 37580.4 <a href="/wiki/comfortable" title="comfortable">comfortable</a> = 37542.5 <a href="/wiki/market" title="market">market</a> = 37529.0 <a href="/wiki/cap" title="cap">cap</a> = 37514.8 <a href="/wiki/waves" title="waves">waves</a> = 37462.5 <a href="/w/index.php?title=woman%27s&amp;action=edit&amp;redlink=1" class="new" title="woman's (page does not exist)">woman's</a> = 37437.2 <a href="/wiki/glanced" title="glanced">glanced</a> = 37392.9 <a href="/wiki/troubled" title="troubled">troubled</a> = 37376.3 <a href="/wiki/difficulties" title="difficulties">difficulties</a> = 37338.3 <a href="/wiki/picked" title="picked">picked</a> = 37330.4 <a href="/w/index.php?title=european&amp;action=edit&amp;redlink=1" class="new" title="european (page does not exist)">european</a> = 37324.9 <a href="/wiki/purposes" title="purposes">purposes</a> = 37314.6 <a href="/wiki/somewhere" title="somewhere">somewhere</a> = 37273.5 <a href="/wiki/delighted" title="delighted">delighted</a> = 37264.0 <a href="/wiki/pushed" title="pushed">pushed</a> = 37259.2 <a href="/wiki/press" title="press">press</a> = 37241.8 <a href="/wiki/household" title="household">household</a> = 37219.7 <a href="/wiki/fleet" title="fleet">fleet</a> = 37214.9 <a href="/wiki/baby" title="baby">baby</a> = 37208.6 <a href="/wiki/region" title="region">region</a> = 37161.9</p>
273
+ <p><br /></p>
274
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=27" title="Edit section: 2201 - 2300">edit</a>]</span> <span class="mw-headline" id="2201_-_2300">2201 - 2300</span></h5>
275
+ <p><a href="/wiki/lately" title="lately">lately</a> = 37158.7 <a href="/wiki/uttered" title="uttered">uttered</a> = 37142.1 <a href="/wiki/exact" title="exact">exact</a> = 37133.4 <a href="/wiki/image" title="image">image</a> = 37131.9 <a href="/wiki/ages" title="ages">ages</a> = 37127.1 <a href="/wiki/murmured" title="murmured">murmured</a> = 37113.7 <a href="/wiki/melancholy" title="melancholy">melancholy</a> = 37112.9 <a href="/wiki/suspicion" title="suspicion">suspicion</a> = 37107.3 <a href="/wiki/bowed" title="bowed">bowed</a> = 37089.9 <a href="/wiki/refuse" title="refuse">refuse</a> = 37051.9 <a href="/w/index.php?title=elizabeth&amp;action=edit&amp;redlink=1" class="new" title="elizabeth (page does not exist)">elizabeth</a> = 37040.9 <a href="/wiki/staff" title="staff">staff</a> = 37036.1 <a href="/wiki/liability" title="liability">liability</a> = 37032.2 <a href="/wiki/we%27ll" title="we'll">we'll</a> = 37019.5 <a href="/wiki/enjoyed" title="enjoyed">enjoyed</a> = 36985.5 <a href="/wiki/stretched" title="stretched">stretched</a> = 36973.6 <a href="/wiki/gaze" title="gaze">gaze</a> = 36916.7 <a href="/wiki/belonged" title="belonged">belonged</a> = 36888.2 <a href="/wiki/ashamed" title="ashamed">ashamed</a> = 36880.3 <a href="/wiki/reward" title="reward">reward</a> = 36873.2 <a href="/wiki/meal" title="meal">meal</a> = 36778.2 <a href="/wiki/blame" title="blame">blame</a> = 36775.0 <a href="/wiki/nodded" title="nodded">nodded</a> = 36767.1 <a href="/wiki/status" title="status">status</a> = 36747.4 <a href="/wiki/opinions" title="opinions">opinions</a> = 36725.2 <a href="/wiki/indicate" title="indicate">indicate</a> = 36699.1 <a href="/wiki/poem" title="poem">poem</a> = 36654.0 <a href="/wiki/savage" title="savage">savage</a> = 36642.9 <a href="/wiki/arise" title="arise">arise</a> = 36635.0 <a href="/wiki/voyage" title="voyage">voyage</a> = 36628.7 <a href="/wiki/misery" title="misery">misery</a> = 36563.8 <a href="/wiki/guests" title="guests">guests</a> = 36562.2 <a href="/wiki/painted" title="painted">painted</a> = 36515.6 <a href="/wiki/attend" title="attend">attend</a> = 36513.2 <a href="/wiki/afford" title="afford">afford</a> = 36482.3 <a href="/wiki/donate" title="donate">donate</a> = 36471.3 <a href="/wiki/job" title="job">job</a> = 36450.7 <a href="/wiki/proceed" title="proceed">proceed</a> = 36439.6 <a href="/wiki/loves" title="loves">loves</a> = 36414.3 <a href="/wiki/forehead" title="forehead">forehead</a> = 36382.6 <a href="/wiki/regret" title="regret">regret</a> = 36381.9 <a href="/wiki/plainly" title="plainly">plainly</a> = 36355.7 <a href="/wiki/risk" title="risk">risk</a> = 36336.8 <a href="/wiki/ad" title="ad">ad</a> = 36312.2 <a href="/wiki/lighted" title="lighted">lighted</a> = 36312.2 <a href="/wiki/angel" title="angel">angel</a> = 36288.5 <a href="/wiki/rapid" title="rapid">rapid</a> = 36285.3 <a href="/wiki/distinct" title="distinct">distinct</a> = 36267.9 <a href="/wiki/doubtless" title="doubtless">doubtless</a> = 36256.1 <a href="/wiki/properly" title="properly">properly</a> = 36256.1 <a href="/wiki/wit" title="wit">wit</a> = 36238.7 <a href="/wiki/fame" title="fame">fame</a> = 36237.9 <a href="/wiki/singular" title="singular">singular</a> = 36221.3 <a href="/wiki/error" title="error">error</a> = 36182.5 <a href="/wiki/utmost" title="utmost">utmost</a> = 36158.0 <a href="/wiki/methods" title="methods">methods</a> = 36155.6 <a href="/wiki/reputation" title="reputation">reputation</a> = 36155.6 <a href="/wiki/appeal" title="appeal">appeal</a> = 36123.2 <a href="/wiki/she%27s" title="she's">she's</a> = 36120.8 <a href="/wiki/w" title="w">w</a> = 36088.3 <a href="/wiki/strongly" title="strongly">strongly</a> = 36080.4 <a href="/w/index.php?title=margaret&amp;action=edit&amp;redlink=1" class="new" title="margaret (page does not exist)">margaret</a> = 36006.9 <a href="/wiki/lack" title="lack">lack</a> = 35996.6 <a href="/wiki/breaking" title="breaking">breaking</a> = 35977.6 <a href="/wiki/dawn" title="dawn">dawn</a> = 35959.4 <a href="/wiki/violence" title="violence">violence</a> = 35957.8 <a href="/wiki/fatal" title="fatal">fatal</a> = 35917.5 <a href="/wiki/render" title="render">render</a> = 35896.1 <a href="/wiki/career" title="career">career</a> = 35881.1 <a href="/wiki/design" title="design">design</a> = 35854.2 <a href="/wiki/displayed" title="displayed">displayed</a> = 35848.6 <a href="/wiki/gets" title="gets">gets</a> = 35843.1 <a href="/wiki/commercial" title="commercial">commercial</a> = 35830.4 <a href="/wiki/forgive" title="forgive">forgive</a> = 35809.9 <a href="/wiki/lights" title="lights">lights</a> = 35807.5 <a href="/wiki/agreeable" title="agreeable">agreeable</a> = 35805.1 <a href="/wiki/suggestion" title="suggestion">suggestion</a> = 35777.4 <a href="/wiki/utter" title="utter">utter</a> = 35777.4 <a href="/wiki/sheep" title="sheep">sheep</a> = 35725.2 <a href="/wiki/resolution" title="resolution">resolution</a> = 35703.9 <a href="/wiki/spare" title="spare">spare</a> = 35671.4 <a href="/wiki/patience" title="patience">patience</a> = 35631.9 <a href="/wiki/domestic" title="domestic">domestic</a> = 35618.4 <a href="/wiki/concluded" title="concluded">concluded</a> = 35542.5 <a href="/wiki/%27tis" title="'tis">'tis</a> = 35536.9 <a href="/wiki/farm" title="farm">farm</a> = 35520.3 <a href="/wiki/reference" title="reference">reference</a> = 35509.2 <a href="/w/index.php?title=chinese&amp;action=edit&amp;redlink=1" class="new" title="chinese (page does not exist)">chinese</a> = 35506.1 <a href="/wiki/exist" title="exist">exist</a> = 35494.2 <a href="/wiki/corn" title="corn">corn</a> = 35491.8 <a href="/wiki/approaching" title="approaching">approaching</a> = 35449.1 <a href="/wiki/alike" title="alike">alike</a> = 35448.3 <a href="/wiki/mounted" title="mounted">mounted</a> = 35384.2 <a href="/wiki/jane" title="jane">jane</a> = 35352.6 <a href="/wiki/issue" title="issue">issue</a> = 35310.7 <a href="/wiki/key" title="key">key</a> = 35281.4 <a href="/wiki/providing" title="providing">providing</a> = 35281.4 <a href="/wiki/majority" title="majority">majority</a> = 35276.6 <a href="/wiki/measures" title="measures">measures</a> = 35270.3 <a href="/wiki/towns" title="towns">towns</a> = 35240.2</p>
276
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=28" title="Edit section: 2301 - 2400">edit</a>]</span> <span class="mw-headline" id="2301_-_2400">2301 - 2400</span></h5>
277
+ <p><a href="/wiki/flame" title="flame">flame</a> = 35233.1 <a href="/w/index.php?title=boston&amp;action=edit&amp;redlink=1" class="new" title="boston (page does not exist)">boston</a> = 35180.9 <a href="/wiki/dared" title="dared">dared</a> = 35177.7 <a href="/wiki/ignorance" title="ignorance">ignorance</a> = 35152.4 <a href="/wiki/reduced" title="reduced">reduced</a> = 35122.4 <a href="/wiki/occasionally" title="occasionally">occasionally</a> = 35100.2 <a href="/wiki/y" title="y">y</a> = 35094.7 <a href="/wiki/weakness" title="weakness">weakness</a> = 35090.7 <a href="/wiki/furnished" title="furnished">furnished</a> = 35089.1 <a href="/wiki/china" title="china">china</a> = 35058.3 <a href="/wiki/priests" title="priests">priests</a> = 35025.1 <a href="/wiki/flying" title="flying">flying</a> = 34986.3 <a href="/wiki/cloth" title="cloth">cloth</a> = 34966.5 <a href="/wiki/gazed" title="gazed">gazed</a> = 34953.9 <a href="/wiki/profit" title="profit">profit</a> = 34932.5 <a href="/wiki/fourth" title="fourth">fourth</a> = 34923.8 <a href="/wiki/bell" title="bell">bell</a> = 34920.6 <a href="/wiki/hitherto" title="hitherto">hitherto</a> = 34911.1 <a href="/wiki/benefit" title="benefit">benefit</a> = 34854.2 <a href="/wiki/movements" title="movements">movements</a> = 34847.1 <a href="/wiki/eagerly" title="eagerly">eagerly</a> = 34842.3 <a href="/wiki/acted" title="acted">acted</a> = 34841.5 <a href="/wiki/urged" title="urged">urged</a> = 34841.5 <a href="/wiki/ascii" title="ascii">ascii</a> = 34791.7 <a href="/wiki/disposed" title="disposed">disposed</a> = 34790.9 <a href="/wiki/electronically" title="electronically">electronically</a> = 34761.6 <a href="/wiki/atmosphere" title="atmosphere">atmosphere</a> = 34748.2 <a href="/wiki/chapter" title="chapter">chapter</a> = 34699.9 <a href="/wiki/begged" title="begged">begged</a> = 34626.3 <a href="/wiki/helen" title="helen">helen</a> = 34619.2 <a href="/wiki/hole" title="hole">hole</a> = 34616.8 <a href="/wiki/invited" title="invited">invited</a> = 34593.1 <a href="/wiki/borne" title="borne">borne</a> = 34548.8 <a href="/wiki/departed" title="departed">departed</a> = 34546.4 <a href="/wiki/catholic" title="catholic">catholic</a> = 34522.7 <a href="/wiki/files" title="files">files</a> = 34514.0 <a href="/wiki/reasonable" title="reasonable">reasonable</a> = 34512.4 <a href="/wiki/sugar" title="sugar">sugar</a> = 34501.3 <a href="/wiki/replacement" title="replacement">replacement</a> = 34483.9 <a href="/wiki/sigh" title="sigh">sigh</a> = 34454.7 <a href="/wiki/humanity" title="humanity">humanity</a> = 34419.1 <a href="/wiki/thrust" title="thrust">thrust</a> = 34395.3 <a href="/wiki/frame" title="frame">frame</a> = 34362.9 <a href="/wiki/opposition" title="opposition">opposition</a> = 34350.2 <a href="/wiki/disk" title="disk">disk</a> = 34347.1 <a href="/wiki/haste" title="haste">haste</a> = 34328.9 <a href="/wiki/lonely" title="lonely">lonely</a> = 34328.1 <a href="/wiki/artist" title="artist">artist</a> = 34290.1 <a href="/wiki/knight" title="knight">knight</a> = 34282.2 <a href="/wiki/quarters" title="quarters">quarters</a> = 34277.4 <a href="/wiki/charm" title="charm">charm</a> = 34223.6 <a href="/wiki/substance" title="substance">substance</a> = 34163.5 <a href="/wiki/rolled" title="rolled">rolled</a> = 34154.0 <a href="/wiki/email" title="email">email</a> = 34145.3 <a href="/wiki/flung" title="flung">flung</a> = 34144.5 <a href="/wiki/celebrated" title="celebrated">celebrated</a> = 34143.7 <a href="/wiki/division" title="division">division</a> = 34136.6 <a href="/wiki/slavery" title="slavery">slavery</a> = 34114.5 <a href="/wiki/verse" title="verse">verse</a> = 34107.3 <a href="/wiki/decision" title="decision">decision</a> = 34067.8 <a href="/wiki/probable" title="probable">probable</a> = 34063.8 <a href="/wiki/painful" title="painful">painful</a> = 34042.5 <a href="/wiki/governor" title="governor">governor</a> = 34023.5 <a href="/wiki/forever" title="forever">forever</a> = 33999.7 <a href="/wiki/turns" title="turns">turns</a> = 33988.7 <a href="/wiki/branch" title="branch">branch</a> = 33961.0 <a href="/wiki/ocean" title="ocean">ocean</a> = 33958.6 <a href="/wiki/rear" title="rear">rear</a> = 33947.5 <a href="/wiki/leader" title="leader">leader</a> = 33937.2 <a href="/wiki/delightful" title="delightful">delightful</a> = 33915.1 <a href="/wiki/stared" title="stared">stared</a> = 33876.3 <a href="/wiki/boats" title="boats">boats</a> = 33808.3 <a href="/wiki/keen" title="keen">keen</a> = 33788.5 <a href="/wiki/disposition" title="disposition">disposition</a> = 33779.8 <a href="/wiki/senses" title="senses">senses</a> = 33722.1 <a href="/wiki/occasions" title="occasions">occasions</a> = 33700.7 <a href="/wiki/readable" title="readable">readable</a> = 33692.8 <a href="/wiki/beloved" title="beloved">beloved</a> = 33687.3 <a href="/wiki/inches" title="inches">inches</a> = 33684.1 <a href="/wiki/bones" title="bones">bones</a> = 33679.3 <a href="/wiki/enthusiasm" title="enthusiasm">enthusiasm</a> = 33648.5 <a href="/wiki/materials" title="materials">materials</a> = 33589.9 <a href="/wiki/luck" title="luck">luck</a> = 33588.4 <a href="/wiki/derived" title="derived">derived</a> = 33575.7 <a href="/wiki/managed" title="managed">managed</a> = 33479.2 <a href="/wiki/community" title="community">community</a> = 33464.9 <a href="/wiki/apparent" title="apparent">apparent</a> = 33464.2 <a href="/wiki/preserved" title="preserved">preserved</a> = 33454.7 <a href="/wiki/magnificent" title="magnificent">magnificent</a> = 33434.9 <a href="/wiki/hurry" title="hurry">hurry</a> = 33396.1 <a href="/wiki/scheme" title="scheme">scheme</a> = 33393.7 <a href="/wiki/oil" title="oil">oil</a> = 33392.2 <a href="/wiki/thence" title="thence">thence</a> = 33382.7 <a href="/wiki/reaching" title="reaching">reaching</a> = 33374.8 <a href="/wiki/dim" title="dim">dim</a> = 33362.1 <a href="/wiki/wretched" title="wretched">wretched</a> = 33290.1 <a href="/wiki/hanging" title="hanging">hanging</a> = 33275.9 <a href="/wiki/pipe" title="pipe">pipe</a> = 33218.1 <a href="/wiki/useless" title="useless">useless</a> = 33215.7 <a href="/wiki/nevertheless" title="nevertheless">nevertheless</a> = 33203.1</p>
278
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=29" title="Edit section: 2401 - 2500">edit</a>]</span> <span class="mw-headline" id="2401_-_2500">2401 - 2500</span></h5>
279
+ <p><a href="/wiki/print" title="print">print</a> = 33203.1 <a href="/wiki/smooth" title="smooth">smooth</a> = 33167.5 <a href="/wiki/solid" title="solid">solid</a> = 33148.5 <a href="/wiki/pursued" title="pursued">pursued</a> = 33135.0 <a href="/wiki/necessarily" title="necessarily">necessarily</a> = 33108.1 <a href="/wiki/build" title="build">build</a> = 33084.4 <a href="/wiki/attempted" title="attempted">attempted</a> = 33080.5 <a href="/wiki/centuries" title="centuries">centuries</a> = 33059.9 <a href="/wiki/eggs" title="eggs">eggs</a> = 33059.9 <a href="/wiki/equivalent" title="equivalent">equivalent</a> = 33033.8 <a href="/wiki/hastily" title="hastily">hastily</a> = 33032.2 <a href="/wiki/burned" title="burned">burned</a> = 33008.5 <a href="/wiki/you%27d" title="you'd">you'd</a> = 33008.5 <a href="/wiki/recent" title="recent">recent</a> = 33000.5 <a href="/wiki/oh" title="oh">oh</a> = 32957.0 <a href="/wiki/travel" title="travel">travel</a> = 32951.5 <a href="/wiki/cries" title="cries">cries</a> = 32925.4 <a href="/wiki/noon" title="noon">noon</a> = 32919.9 <a href="/wiki/crying" title="crying">crying</a> = 32901.7 <a href="/wiki/generations" title="generations">generations</a> = 32858.9 <a href="/wiki/located" title="located">located</a> = 32835.2 <a href="/wiki/cabin" title="cabin">cabin</a> = 32809.1 <a href="/wiki/announcement" title="announcement">announcement</a> = 32782.2 <a href="/w/index.php?title=britain&amp;action=edit&amp;redlink=1" class="new" title="britain (page does not exist)">britain</a> = 32752.9 <a href="/wiki/compared" title="compared">compared</a> = 32731.6 <a href="/wiki/handed" title="handed">handed</a> = 32720.5 <a href="/wiki/cease" title="cease">cease</a> = 32714.2 <a href="/wiki/smaller" title="smaller">smaller</a> = 32668.3 <a href="/wiki/circumstance" title="circumstance">circumstance</a> = 32666.7 <a href="/wiki/tent" title="tent">tent</a> = 32665.1 <a href="/wiki/frequent" title="frequent">frequent</a> = 32616.8 <a href="/wiki/alarm" title="alarm">alarm</a> = 32602.6 <a href="/wiki/nervous" title="nervous">nervous</a> = 32602.6 <a href="/wiki/beast" title="beast">beast</a> = 32586.8 <a href="/wiki/what%27s" title="what's">what's</a> = 32580.5 <a href="/wiki/aloud" title="aloud">aloud</a> = 32565.4 <a href="/wiki/independent" title="independent">independent</a> = 32519.5 <a href="/wiki/gates" title="gates">gates</a> = 32509.3 <a href="/wiki/distinction" title="distinction">distinction</a> = 32502.9 <a href="/wiki/essential" title="essential">essential</a> = 32487.9 <a href="/wiki/observation" title="observation">observation</a> = 32472.9 <a href="/wiki/stronger" title="stronger">stronger</a> = 32455.5 <a href="/wiki/recovered" title="recovered">recovered</a> = 32450.7 <a href="/wiki/belonging" title="belonging">belonging</a> = 32404.8 <a href="/wiki/loving" title="loving">loving</a> = 32402.4 <a href="/wiki/masters" title="masters">masters</a> = 32388.2 <a href="/wiki/writers" title="writers">writers</a> = 32341.5 <a href="/wiki/cf." title="cf.">cf.</a> = 32326.5 <a href="/wiki/permanent" title="permanent">permanent</a> = 32324.9 <a href="/wiki/mortal" title="mortal">mortal</a> = 32284.6 <a href="/wiki/stern" title="stern">stern</a> = 32284.6 <a href="/wiki/gratitude" title="gratitude">gratitude</a> = 32278.2 <a href="/wiki/preserve" title="preserve">preserve</a> = 32248.2 <a href="/wiki/burden" title="burden">burden</a> = 32242.6 <a href="/wiki/aspect" title="aspect">aspect</a> = 32240.3 <a href="/wiki/millions" title="millions">millions</a> = 32199.1 <a href="/wiki/merry" title="merry">merry</a> = 32182.5 <a href="/wiki/knife" title="knife">knife</a> = 32177.8 <a href="/wiki/dread" title="dread">dread</a> = 32133.5 <a href="/wiki/clever" title="clever">clever</a> = 32114.5 <a href="/wiki/applicable" title="applicable">applicable</a> = 32052.0 <a href="/wiki/district" title="district">district</a> = 32050.4 <a href="/wiki/shadows" title="shadows">shadows</a> = 32038.5 <a href="/wiki/jim" title="jim" class="mw-redirect">jim</a> = 32031.4 <a href="/wiki/silk" title="silk">silk</a> = 32029.8 <a href="/wiki/failure" title="failure">failure</a> = 32022.7 <a href="/wiki/links" title="links">links</a> = 32009.3 <a href="/wiki/cent" title="cent">cent</a> = 31995.0 <a href="/wiki/sentiment" title="sentiment">sentiment</a> = 31990.3 <a href="/wiki/amid" title="amid">amid</a> = 31980.0 <a href="/wiki/profits" title="profits">profits</a> = 31968.9 <a href="/wiki/agent" title="agent">agent</a> = 31949.1 <a href="/wiki/finds" title="finds">finds</a> = 31934.9 <a href="/w/index.php?title=russia&amp;action=edit&amp;redlink=1" class="new" title="russia (page does not exist)">russia</a> = 31928.6 <a href="/wiki/bade" title="bade">bade</a> = 31920.6 <a href="/w/index.php?title=russian&amp;action=edit&amp;redlink=1" class="new" title="russian (page does not exist)">russian</a> = 31857.4 <a href="/wiki/desperate" title="desperate">desperate</a> = 31847.9 <a href="/wiki/union" title="union">union</a> = 31834.4 <a href="/wiki/imagined" title="imagined">imagined</a> = 31804.4 <a href="/wiki/contempt" title="contempt">contempt</a> = 31802.0 <a href="/wiki/raising" title="raising">raising</a> = 31786.2 <a href="/wiki/lords" title="lords">lords</a> = 31775.1 <a href="/wiki/hell" title="hell">hell</a> = 31770.3 <a href="/wiki/separated" title="separated">separated</a> = 31752.1 <a href="/wiki/grant" title="grant">grant</a> = 31743.4 <a href="/wiki/seriously" title="seriously">seriously</a> = 31736.3 <a href="/wiki/tribes" title="tribes">tribes</a> = 31726.8 <a href="/wiki/hit" title="hit">hit</a> = 31725.2 <a href="/wiki/enormous" title="enormous">enormous</a> = 31700.7 <a href="/wiki/defective" title="defective">defective</a> = 31696.0 <a href="/wiki/conviction" title="conviction">conviction</a> = 31688.8 <a href="/wiki/secured" title="secured">secured</a> = 31688.8 <a href="/wiki/mixed" title="mixed">mixed</a> = 31679.4 <a href="/wiki/insisted" title="insisted">insisted</a> = 31661.2 <a href="/wiki/wooden" title="wooden">wooden</a> = 31632.7 <a href="/wiki/prefer" title="prefer">prefer</a> = 31621.6 <a href="/wiki/prayers" title="prayers">prayers</a> = 31606.6 <a href="/wiki/fever" title="fever">fever</a> = 31586.8 <a href="/wiki/selected" title="selected">selected</a> = 31568.6 <a href="/wiki/daughters" title="daughters">daughters</a> = 31553.6</p>
280
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=30" title="Edit section: 2501 - 2600">edit</a>]</span> <span class="mw-headline" id="2501_-_2600">2501 - 2600</span></h5>
281
+ <p><a href="/wiki/treat" title="treat">treat</a> = 31550.4 <a href="/wiki/warning" title="warning">warning</a> = 31522.7 <a href="/wiki/flew" title="flew">flew</a> = 31518.0 <a href="/wiki/speaks" title="speaks">speaks</a> = 31489.5 <a href="/wiki/developed" title="developed">developed</a> = 31472.9 <a href="/wiki/impulse" title="impulse">impulse</a> = 31472.9 <a href="/wiki/slipped" title="slipped">slipped</a> = 31472.1 <a href="/wiki/ours" title="ours">ours</a> = 31465.0 <a href="/wiki/johnson" title="johnson">johnson</a> = 31408.8 <a href="/wiki/mistaken" title="mistaken">mistaken</a> = 31390.6 <a href="/wiki/damages" title="damages">damages</a> = 31382.7 <a href="/wiki/ambition" title="ambition">ambition</a> = 31356.6 <a href="/wiki/resumed" title="resumed">resumed</a> = 31351.8 <a href="/w/index.php?title=christmas&amp;action=edit&amp;redlink=1" class="new" title="christmas (page does not exist)">christmas</a> = 31347.9 <a href="/wiki/yield" title="yield">yield</a> = 31347.1 <a href="/wiki/ideal" title="ideal">ideal</a> = 31343.1 <a href="/wiki/schools" title="schools">schools</a> = 31335.2 <a href="/wiki/confirmed" title="confirmed">confirmed</a> = 31324.1 <a href="/wiki/descended" title="descended">descended</a> = 31322.5 <a href="/wiki/rush" title="rush">rush</a> = 31290.9 <a href="/wiki/falls" title="falls">falls</a> = 31268.0 <a href="/wiki/deny" title="deny">deny</a> = 31254.5 <a href="/wiki/calculated" title="calculated">calculated</a> = 31233.2 <a href="/wiki/correct" title="correct">correct</a> = 31211.8 <a href="/wiki/perform" title="perform">perform</a> = 31210.2 <a href="/wiki/hadn%27t" title="hadn't">hadn't</a> = 31207.0 <a href="/wiki/somehow" title="somehow">somehow</a> = 31184.9 <a href="/wiki/accordingly" title="accordingly">accordingly</a> = 31181.7 <a href="/wiki/stayed" title="stayed">stayed</a> = 31165.9 <a href="/wiki/acquired" title="acquired">acquired</a> = 31144.5 <a href="/wiki/counsel" title="counsel">counsel</a> = 31135.1 <a href="/wiki/distress" title="distress">distress</a> = 31131.9 <a href="/wiki/sins" title="sins">sins</a> = 31105.0 <a href="/wiki/notion" title="notion">notion</a> = 31102.6 <a href="/wiki/discussion" title="discussion">discussion</a> = 31093.9 <a href="/wiki/constitution" title="constitution">constitution</a> = 31085.2 <a href="/wiki/anne" title="anne">anne</a> = 31055.9 <a href="/wiki/hundreds" title="hundreds">hundreds</a> = 31006.1 <a href="/wiki/instrument" title="instrument">instrument</a> = 31001.3 <a href="/wiki/firmly" title="firmly">firmly</a> = 30976.0 <a href="/wiki/actions" title="actions">actions</a> = 30971.3 <a href="/wiki/steady" title="steady">steady</a> = 30965.7 <a href="/wiki/remarks" title="remarks">remarks</a> = 30933.3 <a href="/wiki/empire" title="empire">empire</a> = 30925.4 <a href="/wiki/elements" title="elements">elements</a> = 30909.6 <a href="/wiki/idle" title="idle">idle</a> = 30891.4 <a href="/wiki/pen" title="pen">pen</a> = 30885.8 <a href="/wiki/entering" title="entering">entering</a> = 30872.4 <a href="/wiki/online" title="online">online</a> = 30872.4 <a href="/wiki/africa" title="africa">africa</a> = 30843.1 <a href="/wiki/permit" title="permit">permit</a> = 30835.2 <a href="/wiki/th%27" title="th'">th'</a> = 30812.3 <a href="/wiki/tide" title="tide">tide</a> = 30803.6 <a href="/wiki/vol" title="vol">vol</a> = 30800.4 <a href="/wiki/leaned" title="leaned">leaned</a> = 30798.8 <a href="/wiki/college" title="college">college</a> = 30750.6 <a href="/wiki/maintain" title="maintain">maintain</a> = 30737.9 <a href="/wiki/sovereign" title="sovereign">sovereign</a> = 30706.3 <a href="/wiki/tail" title="tail">tail</a> = 30699.9 <a href="/wiki/generation" title="generation">generation</a> = 30695.2 <a href="/wiki/crowded" title="crowded">crowded</a> = 30692.8 <a href="/wiki/fears" title="fears">fears</a> = 30679.4 <a href="/wiki/nights" title="nights">nights</a> = 30650.9 <a href="/wiki/limitation" title="limitation">limitation</a> = 30643.8 <a href="/wiki/tied" title="tied">tied</a> = 30625.6 <a href="/wiki/horrible" title="horrible">horrible</a> = 30622.4 <a href="/wiki/cat" title="cat">cat</a> = 30600.2 <a href="/wiki/displaying" title="displaying">displaying</a> = 30545.7 <a href="/wiki/port" title="port">port</a> = 30537.7 <a href="/wiki/male" title="male">male</a> = 30525.9 <a href="/wiki/experienced" title="experienced">experienced</a> = 30487.9 <a href="/wiki/opposed" title="opposed">opposed</a> = 30485.5 <a href="/wiki/treaty" title="treaty">treaty</a> = 30483.2 <a href="/wiki/contents" title="contents">contents</a> = 30481.6 <a href="/wiki/rested" title="rested">rested</a> = 30450.7 <a href="/wiki/mode" title="mode">mode</a> = 30448.3 <a href="/wiki/poured" title="poured">poured</a> = 30431.7 <a href="/wiki/les" title="les">les</a> = 30400.1 <a href="/wiki/occur" title="occur">occur</a> = 30399.3 <a href="/wiki/seeking" title="seeking">seeking</a> = 30389.0 <a href="/wiki/practically" title="practically">practically</a> = 30323.3 <a href="/wiki/abandoned" title="abandoned">abandoned</a> = 30312.3 <a href="/wiki/reports" title="reports">reports</a> = 30295.7 <a href="/wiki/eleven" title="eleven">eleven</a> = 30294.1 <a href="/wiki/sank" title="sank">sank</a> = 30292.5 <a href="/wiki/begins" title="begins">begins</a> = 30288.5 <a href="/wiki/founded" title="founded">founded</a> = 30249.0 <a href="/wiki/brings" title="brings">brings</a> = 30244.2 <a href="/wiki/trace" title="trace">trace</a> = 30238.7 <a href="/wiki/instinct" title="instinct">instinct</a> = 30233.9 <a href="/wiki/collected" title="collected">collected</a> = 30227.6 <a href="/w/index.php?title=scotland&amp;action=edit&amp;redlink=1" class="new" title="scotland (page does not exist)">scotland</a> = 30202.3 <a href="/wiki/characteristic" title="characteristic">characteristic</a> = 30186.5 <a href="/wiki/chose" title="chose">chose</a> = 30184.1 <a href="/wiki/cheerful" title="cheerful">cheerful</a> = 30177.0 <a href="/wiki/tribe" title="tribe">tribe</a> = 30165.9 <a href="/wiki/costs" title="costs">costs</a> = 30125.6 <a href="/wiki/threatened" title="threatened">threatened</a> = 30120.8 <a href="/wiki/arrangement" title="arrangement">arrangement</a> = 30110.5 <a href="/wiki/western" title="western">western</a> = 30106.6</p>
282
+ <p><br /></p>
283
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=31" title="Edit section: 2601 - 2700">edit</a>]</span> <span class="mw-headline" id="2601_-_2700">2601 - 2700</span></h5>
284
+ <p><a href="/wiki/sang" title="sang">sang</a> = 30102.6 <a href="/wiki/beings" title="beings">beings</a> = 30093.1 <a href="/wiki/sam" title="sam">sam</a> = 30027.5 <a href="/wiki/pressure" title="pressure">pressure</a> = 30019.6 <a href="/wiki/politics" title="politics">politics</a> = 30010.8 <a href="/wiki/sorts" title="sorts">sorts</a> = 29999.8 <a href="/wiki/shelter" title="shelter">shelter</a> = 29992.7 <a href="/wiki/rude" title="rude">rude</a> = 29987.1 <a href="/wiki/scientific" title="scientific">scientific</a> = 29984.0 <a href="/wiki/revealed" title="revealed">revealed</a> = 29965.0 <a href="/wiki/winds" title="winds">winds</a> = 29930.9 <a href="/wiki/riding" title="riding">riding</a> = 29915.1 <a href="/wiki/scenes" title="scenes">scenes</a> = 29905.6 <a href="/wiki/shake" title="shake">shake</a> = 29900.9 <a href="/wiki/industry" title="industry">industry</a> = 29891.4 <a href="/wiki/claims" title="claims">claims</a> = 29884.3 <a href="/wiki/pp." title="pp.">pp.</a> = 29884.3 <a href="/wiki/merit" title="merit">merit</a> = 29862.9 <a href="/wiki/profession" title="profession">profession</a> = 29855.0 <a href="/wiki/lamp" title="lamp">lamp</a> = 29830.5 <a href="/wiki/interview" title="interview">interview</a> = 29817.0 <a href="/wiki/territory" title="territory">territory</a> = 29813.1 <a href="/wiki/sleeping" title="sleeping">sleeping</a> = 29806.7 <a href="/wiki/sex" title="sex">sex</a> = 29802.8 <a href="/wiki/coffee" title="coffee">coffee</a> = 29791.7 <a href="/wiki/devotion" title="devotion">devotion</a> = 29791.7 <a href="/wiki/thereof" title="thereof">thereof</a> = 29758.5 <a href="/wiki/creation" title="creation">creation</a> = 29755.3 <a href="/wiki/trail" title="trail">trail</a> = 29747.4 <a href="/wiki/romans" title="romans">romans</a> = 29746.6 <a href="/wiki/supported" title="supported">supported</a> = 29741.9 <a href="/wiki/requires" title="requires">requires</a> = 29704.7 <a href="/wiki/fathers" title="fathers">fathers</a> = 29703.9 <a href="/wiki/prospect" title="prospect">prospect</a> = 29680.9 <a href="/wiki/obey" title="obey">obey</a> = 29679.4 <a href="/wiki/alexander" title="alexander">alexander</a> = 29667.5 <a href="/wiki/shone" title="shone">shone</a> = 29662.0 <a href="/wiki/operation" title="operation">operation</a> = 29642.2 <a href="/wiki/northern" title="northern">northern</a> = 29598.7 <a href="/wiki/nurse" title="nurse">nurse</a> = 29567.8 <a href="/wiki/profound" title="profound">profound</a> = 29544.1 <a href="/wiki/hungry" title="hungry">hungry</a> = 29534.6 <a href="/w/index.php?title=scott&amp;action=edit&amp;redlink=1" class="new" title="scott (page does not exist)">scott</a> = 29470.5 <a href="/wiki/sisters" title="sisters">sisters</a> = 29453.1 <a href="/wiki/assure" title="assure">assure</a> = 29451.5 <a href="/wiki/exceedingly" title="exceedingly">exceedingly</a> = 29445.2 <a href="/wiki/match" title="match">match</a> = 29445.2 <a href="/wiki/wrath" title="wrath">wrath</a> = 29406.4 <a href="/wiki/continually" title="continually">continually</a> = 29405.6 <a href="/wiki/rest." title="rest.">rest.</a> = 29404.0 <a href="/wiki/gifts" title="gifts">gifts</a> = 29381.1 <a href="/wiki/folly" title="folly">folly</a> = 29369.2 <a href="/wiki/chain" title="chain">chain</a> = 29362.9 <a href="/wiki/uniform" title="uniform">uniform</a> = 29359.0 <a href="/wiki/debt" title="debt">debt</a> = 29346.3 <a href="/wiki/teaching" title="teaching">teaching</a> = 29345.5 <a href="/wiki/venture" title="venture">venture</a> = 29333.6 <a href="/wiki/execution" title="execution">execution</a> = 29331.3 <a href="/wiki/shoes" title="shoes">shoes</a> = 29324.1 <a href="/wiki/mood" title="mood">mood</a> = 29319.4 <a href="/wiki/crew" title="crew">crew</a> = 29317.0 <a href="/wiki/perceive" title="perceive">perceive</a> = 29302.0 <a href="/wiki/accounts" title="accounts">accounts</a> = 29288.5 <a href="/wiki/eating" title="eating">eating</a> = 29284.6 <a href="/wiki/multitude" title="multitude">multitude</a> = 29272.7 <a href="/wiki/declare" title="declare">declare</a> = 29260.1 <a href="/wiki/yard" title="yard">yard</a> = 29253.7 <a href="/wiki/o%27er" title="o'er">o'er</a> = 29218.1 <a href="/wiki/astonishment" title="astonishment">astonishment</a> = 29188.1 <a href="/wiki/version" title="version">version</a> = 29178.6 <a href="/wiki/vague" title="vague">vague</a> = 29158.0 <a href="/wiki/odd" title="odd">odd</a> = 29121.6 <a href="/wiki/grateful" title="grateful">grateful</a> = 29103.4 <a href="/wiki/nearest" title="nearest">nearest</a> = 29094.7 <a href="/wiki/infinite" title="infinite">infinite</a> = 29093.9 <a href="/wiki/elsewhere" title="elsewhere">elsewhere</a> = 29086.0 <a href="/wiki/copying" title="copying">copying</a> = 29053.6 <a href="/wiki/apartment" title="apartment">apartment</a> = 29045.7 <a href="/wiki/activity" title="activity">activity</a> = 29037.0 <a href="/wiki/wives" title="wives">wives</a> = 29022.7 <a href="/wiki/parted" title="parted">parted</a> = 29014.0 <a href="/wiki/security" title="security">security</a> = 29002.2 <a href="/wiki/cared" title="cared">cared</a> = 28977.6 <a href="/wiki/sensible" title="sensible">sensible</a> = 28974.5 <a href="/wiki/owing" title="owing">owing</a> = 28972.1 <a href="/wiki/martin" title="martin">martin</a> = 28942.0 <a href="/w/index.php?title=saturday&amp;action=edit&amp;redlink=1" class="new" title="saturday (page does not exist)">saturday</a> = 28923.8 <a href="/wiki/cottage" title="cottage">cottage</a> = 28919.1 <a href="/wiki/jews" title="jews">jews</a> = 28880.3 <a href="/wiki/leaning" title="leaning">leaning</a> = 28852.6 <a href="/wiki/capacity" title="capacity">capacity</a> = 28840.8 <a href="/wiki/joe" title="joe">joe</a> = 28833.6 <a href="/wiki/settle" title="settle">settle</a> = 28821.0 <a href="/wiki/referred" title="referred">referred</a> = 28805.2 <a href="/wiki/francis" title="francis">francis</a> = 28802.8 <a href="/wiki/holder" title="holder">holder</a> = 28802.0 <a href="/wiki/involved" title="involved">involved</a> = 28795.7 <a href="/wiki/sunshine" title="sunshine">sunshine</a> = 28794.1 <a href="/wiki/dutch" title="dutch">dutch</a> = 28790.1 <a href="/wiki/council" title="council">council</a> = 28741.1</p>
285
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=32" title="Edit section: 2701 - 2800">edit</a>]</span> <span class="mw-headline" id="2701_-_2800">2701 - 2800</span></h5>
286
+ <p><a href="/wiki/princes" title="princes">princes</a> = 28733.2 <a href="/wiki/ate" title="ate">ate</a> = 28730.0 <a href="/wiki/examination" title="examination">examination</a> = 28722.1 <a href="/wiki/steel" title="steel">steel</a> = 28720.5 <a href="/wiki/strangers" title="strangers">strangers</a> = 28717.3 <a href="/wiki/beheld" title="beheld">beheld</a> = 28689.7 <a href="/wiki/test" title="test">test</a> = 28684.1 <a href="/wiki/noted" title="noted">noted</a> = 28678.6 <a href="/wiki/slightest" title="slightest">slightest</a> = 28678.6 <a href="/wiki/widow" title="widow">widow</a> = 28660.4 <a href="/wiki/charity" title="charity">charity</a> = 28623.2 <a href="/wiki/realized" title="realized">realized</a> = 28608.2 <a href="/wiki/element" title="element">element</a> = 28584.4 <a href="/wiki/shed" title="shed">shed</a> = 28565.4 <a href="/wiki/errors" title="errors">errors</a> = 28560.7 <a href="/wiki/communication" title="communication">communication</a> = 28547.2 <a href="/wiki/reflection" title="reflection">reflection</a> = 28544.9 <a href="/wiki/attacked" title="attacked">attacked</a> = 28530.6 <a href="/wiki/organization" title="organization">organization</a> = 28527.5 <a href="/wiki/maintained" title="maintained">maintained</a> = 28505.3 <a href="/wiki/restored" title="restored">restored</a> = 28491.1 <a href="/wiki/folks" title="folks">folks</a> = 28478.4 <a href="/wiki/concealed" title="concealed">concealed</a> = 28468.1 <a href="/wiki/accordance" title="accordance">accordance</a> = 28450.7 <a href="/wiki/heavens" title="heavens">heavens</a> = 28450.7 <a href="/wiki/star" title="star">star</a> = 28433.3 <a href="/wiki/examined" title="examined">examined</a> = 28407.2 <a href="/wiki/deeds" title="deeds">deeds</a> = 28369.2 <a href="/wiki/wordforms" title="wordforms">wordforms</a> = 28357.4 <a href="/wiki/somebody" title="somebody">somebody</a> = 28352.6 <a href="/wiki/incident" title="incident">incident</a> = 28345.5 <a href="/wiki/oath" title="oath">oath</a> = 28324.1 <a href="/wiki/guest" title="guest">guest</a> = 28321.0 <a href="/wiki/bar" title="bar">bar</a> = 28297.3 <a href="/wiki/row" title="row">row</a> = 28295.7 <a href="/wiki/poverty" title="poverty">poverty</a> = 28267.2 <a href="/wiki/bottle" title="bottle">bottle</a> = 28240.3 <a href="/wiki/prevented" title="prevented">prevented</a> = 28237.9 <a href="/wiki/bless" title="bless">bless</a> = 28226.8 <a href="/wiki/stir" title="stir">stir</a> = 28214.2 <a href="/wiki/intense" title="intense">intense</a> = 28207.1 <a href="/wiki/completed" title="completed">completed</a> = 28162.0 <a href="/wiki/quarrel" title="quarrel">quarrel</a> = 28149.3 <a href="/wiki/touching" title="touching">touching</a> = 28146.9 <a href="/wiki/inner" title="inner">inner</a> = 28146.1 <a href="/wiki/available" title="available">available</a> = 28136.7 <a href="/wiki/fix" title="fix">fix</a> = 28136.7 <a href="/wiki/resistance" title="resistance">resistance</a> = 28131.9 <a href="/wiki/unusual" title="unusual">unusual</a> = 28120.8 <a href="/wiki/deed" title="deed">deed</a> = 28114.5 <a href="/wiki/derive" title="derive">derive</a> = 28109.8 <a href="/wiki/hollow" title="hollow">hollow</a> = 28106.6 <a href="/wiki/suspected" title="suspected">suspected</a> = 28105.8 <a href="/wiki/contains" title="contains">contains</a> = 28103.4 <a href="/wiki/sighed" title="sighed">sighed</a> = 28101.8 <a href="/wiki/province" title="province">province</a> = 28082.9 <a href="/wiki/deserted" title="deserted">deserted</a> = 28082.1 <a href="/wiki/establishment" title="establishment">establishment</a> = 28072.6 <a href="/wiki/vote" title="vote">vote</a> = 28063.9 <a href="/wiki/muttered" title="muttered">muttered</a> = 28043.3 <a href="/wiki/thither" title="thither">thither</a> = 28028.3 <a href="/wiki/oxford" title="oxford">oxford</a> = 28020.4 <a href="/wiki/cavalry" title="cavalry">cavalry</a> = 28018.8 <a href="/wiki/lofty" title="lofty">lofty</a> = 28017.2 <a href="/wiki/endure" title="endure">endure</a> = 27969.7 <a href="/wiki/succeed" title="succeed">succeed</a> = 27952.3 <a href="/wiki/leg" title="leg">leg</a> = 27931.0 <a href="/wiki/bid" title="bid">bid</a> = 27910.4 <a href="/wiki/alice" title="alice">alice</a> = 27885.9 <a href="/wiki/hated" title="hated">hated</a> = 27883.5 <a href="/wiki/civilization" title="civilization">civilization</a> = 27878.7 <a href="/w/index.php?title=u.s.&amp;action=edit&amp;redlink=1" class="new" title="u.s. (page does not exist)">u.s.</a> = 27877.2 <a href="/wiki/acting" title="acting">acting</a> = 27874.0 <a href="/wiki/landed" title="landed">landed</a> = 27866.9 <a href="/w/index.php?title=christians&amp;action=edit&amp;redlink=1" class="new" title="christians (page does not exist)">christians</a> = 27862.1 <a href="/wiki/passions" title="passions">passions</a> = 27855.0 <a href="/wiki/interior" title="interior">interior</a> = 27851.1 <a href="/wiki/scarce" title="scarce">scarce</a> = 27839.2 <a href="/wiki/lightly" title="lightly">lightly</a> = 27830.5 <a href="/wiki/disturbed" title="disturbed">disturbed</a> = 27825.7 <a href="/wiki/rev" title="rev">rev</a> = 27821.8 <a href="/wiki/supreme" title="supreme">supreme</a> = 27819.4 <a href="/wiki/hang" title="hang">hang</a> = 27813.9 <a href="/wiki/notwithstanding" title="notwithstanding">notwithstanding</a> = 27812.3 <a href="/wiki/shock" title="shock">shock</a> = 27777.5 <a href="/wiki/exception" title="exception">exception</a> = 27775.9 <a href="/wiki/offering" title="offering">offering</a> = 27766.4 <a href="/wiki/display" title="display">display</a> = 27765.6 <a href="/wiki/strain" title="strain">strain</a> = 27765.6 <a href="/wiki/drank" title="drank">drank</a> = 27750.6 <a href="/wiki/confined" title="confined">confined</a> = 27737.9 <a href="/wiki/o" title="o">o</a> = 27727.6 <a href="/wiki/exhausted" title="exhausted">exhausted</a> = 27713.4 <a href="/wiki/poets" title="poets">poets</a> = 27693.6 <a href="/wiki/sounded" title="sounded">sounded</a> = 27690.5 <a href="/wiki/aim" title="aim">aim</a> = 27679.4 <a href="/wiki/critical" title="critical">critical</a> = 27665.9 <a href="/w/index.php?title=jerusalem&amp;action=edit&amp;redlink=1" class="new" title="jerusalem (page does not exist)">jerusalem</a> = 27662.0 <a href="/wiki/directions" title="directions">directions</a> = 27660.4 <a href="/wiki/negro" title="negro">negro</a> = 27637.4</p>
287
+ <p><br /></p>
288
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=33" title="Edit section: 2801 - 2900">edit</a>]</span> <span class="mw-headline" id="2801_-_2900">2801 - 2900</span></h5>
289
+ <p><a href="/wiki/fearful" title="fearful">fearful</a> = 27624.0 <a href="/wiki/standard" title="standard">standard</a> = 27611.3 <a href="/wiki/studied" title="studied">studied</a> = 27586.0 <a href="/wiki/bag" title="bag">bag</a> = 27579.7 <a href="/wiki/n" title="n">n</a> = 27563.9 <a href="/wiki/buildings" title="buildings">buildings</a> = 27546.5 <a href="/wiki/consequences" title="consequences">consequences</a> = 27544.1 <a href="/wiki/commenced" title="commenced">commenced</a> = 27534.6 <a href="/wiki/deeper" title="deeper">deeper</a> = 27506.1 <a href="/wiki/repeat" title="repeat">repeat</a> = 27504.5 <a href="/wiki/driving" title="driving">driving</a> = 27495.8 <a href="/wiki/beasts" title="beasts">beasts</a> = 27484.8 <a href="/wiki/track" title="track">track</a> = 27484.0 <a href="/wiki/rid" title="rid">rid</a> = 27457.1 <a href="/wiki/holds" title="holds">holds</a> = 27452.3 <a href="/wiki/residence" title="residence">residence</a> = 27445.2 <a href="/wiki/steadily" title="steadily">steadily</a> = 27404.1 <a href="/wiki/intimate" title="intimate">intimate</a> = 27403.3 <a href="/wiki/drinking" title="drinking">drinking</a> = 27385.1 <a href="/wiki/swear" title="swear">swear</a> = 27380.3 <a href="/wiki/treasure" title="treasure">treasure</a> = 27351.1 <a href="/wiki/fun" title="fun">fun</a> = 27345.5 <a href="/wiki/throwing" title="throwing">throwing</a> = 27340.0 <a href="/wiki/apt" title="apt">apt</a> = 27321.0 <a href="/wiki/enterprise" title="enterprise">enterprise</a> = 27321.0 <a href="/wiki/queer" title="queer">queer</a> = 27302.0 <a href="/wiki/seed" title="seed">seed</a> = 27296.5 <a href="/wiki/tower" title="tower">tower</a> = 27285.4 <a href="/wiki/runs" title="runs">runs</a> = 27276.7 <a href="/wiki/defend" title="defend">defend</a> = 27261.7 <a href="/wiki/favourite" title="favourite">favourite</a> = 27258.5 <a href="/wiki/desires" title="desires">desires</a> = 27249.0 <a href="/wiki/heavily" title="heavily">heavily</a> = 27238.7 <a href="/wiki/assembled" title="assembled">assembled</a> = 27230.0 <a href="/wiki/existed" title="existed">existed</a> = 27221.3 <a href="/wiki/depends" title="depends">depends</a> = 27216.6 <a href="/wiki/poems" title="poems">poems</a> = 27210.2 <a href="/wiki/hesitated" title="hesitated">hesitated</a> = 27208.7 <a href="/wiki/stuff" title="stuff">stuff</a> = 27203.9 <a href="/wiki/section" title="section">section</a> = 27202.3 <a href="/wiki/settlement" title="settlement">settlement</a> = 27201.5 <a href="/wiki/staring" title="staring">staring</a> = 27199.2 <a href="/wiki/sole" title="sole">sole</a> = 27191.2 <a href="/wiki/roads" title="roads">roads</a> = 27188.9 <a href="/wiki/plate" title="plate">plate</a> = 27174.6 <a href="/w/index.php?title=mexico&amp;action=edit&amp;redlink=1" class="new" title="mexico (page does not exist)">mexico</a> = 27162.8 <a href="/wiki/overcome" title="overcome">overcome</a> = 27160.4 <a href="/wiki/pains" title="pains">pains</a> = 27159.6 <a href="/wiki/performing" title="performing">performing</a> = 27141.4 <a href="/wiki/dwell" title="dwell">dwell</a> = 27132.7 <a href="/wiki/grounds" title="grounds">grounds</a> = 27110.5 <a href="/wiki/taxes" title="taxes">taxes</a> = 27100.3 <a href="/wiki/marble" title="marble">marble</a> = 27081.3 <a href="/wiki/recently" title="recently">recently</a> = 27076.5 <a href="/wiki/tones" title="tones">tones</a> = 27064.7 <a href="/wiki/ability" title="ability">ability</a> = 27037.8 <a href="/wiki/awake" title="awake">awake</a> = 27037.8 <a href="/w/index.php?title=walter&amp;action=edit&amp;redlink=1" class="new" title="walter (page does not exist)">walter</a> = 27037.8 <a href="/wiki/wave" title="wave">wave</a> = 27034.6 <a href="/wiki/shaking" title="shaking">shaking</a> = 27018.0 <a href="/wiki/folk" title="folk">folk</a> = 26996.6 <a href="/wiki/possibility" title="possibility">possibility</a> = 26961.0 <a href="/wiki/butter" title="butter">butter</a> = 26960.2 <a href="/wiki/fury" title="fury">fury</a> = 26960.2 <a href="/wiki/marched" title="marched">marched</a> = 26915.9 <a href="/wiki/moses" title="moses">moses</a> = 26908.8 <a href="/wiki/writes" title="writes">writes</a> = 26901.7 <a href="/wiki/issued" title="issued">issued</a> = 26897.7 <a href="/wiki/sailed" title="sailed">sailed</a> = 26858.2 <a href="/wiki/instructions" title="instructions">instructions</a> = 26838.4 <a href="/wiki/hatred" title="hatred">hatred</a> = 26834.4 <a href="/wiki/pursuit" title="pursuit">pursuit</a> = 26832.9 <a href="/wiki/pull" title="pull">pull</a> = 26815.5 <a href="/wiki/furniture" title="furniture">furniture</a> = 26789.3 <a href="/wiki/additions" title="additions">additions</a> = 26788.6 <a href="/wiki/hid" title="hid">hid</a> = 26783.0 <a href="/wiki/rope" title="rope">rope</a> = 26781.4 <a href="/wiki/vi" title="vi">vi</a> = 26770.4 <a href="/wiki/adventure" title="adventure">adventure</a> = 26767.2 <a href="/wiki/royalty" title="royalty">royalty</a> = 26757.7 <a href="/wiki/vanished" title="vanished">vanished</a> = 26753.7 <a href="/wiki/arts" title="arts">arts</a> = 26748.2 <a href="/wiki/elder" title="elder">elder</a> = 26727.6 <a href="/wiki/signal" title="signal">signal</a> = 26715.8 <a href="/wiki/wanting" title="wanting">wanting</a> = 26696.0 <a href="/wiki/supplied" title="supplied">supplied</a> = 26694.4 <a href="/wiki/feast" title="feast">feast</a> = 26689.7 <a href="/wiki/safely" title="safely">safely</a> = 26650.1 <a href="/wiki/burn" title="burn">burn</a> = 26627.2 <a href="/wiki/describe" title="describe">describe</a> = 26605.8 <a href="/wiki/references" title="references">references</a> = 26602.6 <a href="/wiki/lesson" title="lesson">lesson</a> = 26592.4 <a href="/wiki/annual" title="annual">annual</a> = 26582.9 <a href="/wiki/card" title="card">card</a> = 26574.2 <a href="/wiki/passes" title="passes">passes</a> = 26556.0 <a href="/wiki/application" title="application">application</a> = 26542.5 <a href="/wiki/intelligent" title="intelligent">intelligent</a> = 26535.4 <a href="/wiki/county" title="county">county</a> = 26518.8 <a href="/wiki/beaten" title="beaten">beaten</a> = 26513.2 <a href="/wiki/presents" title="presents">presents</a> = 26511.7</p>
290
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=34" title="Edit section: 2901 - 3000">edit</a>]</span> <span class="mw-headline" id="2901_-_3000">2901 - 3000</span></h5>
291
+ <p><a href="/wiki/format" title="format">format</a> = 26507.7 <a href="/wiki/flow" title="flow">flow</a> = 26504.5 <a href="/wiki/sixty" title="sixty">sixty</a> = 26488.7 <a href="/wiki/scale" title="scale">scale</a> = 26480.8 <a href="/wiki/damage" title="damage">damage</a> = 26479.2 <a href="/wiki/marks" title="marks">marks</a> = 26478.4 <a href="/wiki/obtaining" title="obtaining">obtaining</a> = 26468.9 <a href="/wiki/moreover" title="moreover">moreover</a> = 26447.6 <a href="/wiki/commerce" title="commerce">commerce</a> = 26403.3 <a href="/wiki/startled" title="startled">startled</a> = 26381.1 <a href="/wiki/southern" title="southern">southern</a> = 26375.6 <a href="/wiki/consequently" title="consequently">consequently</a> = 26362.1 <a href="/wiki/outer" title="outer">outer</a> = 26352.6 <a href="/wiki/belongs" title="belongs">belongs</a> = 26350.3 <a href="/wiki/ben" title="ben">ben</a> = 26346.3 <a href="/wiki/wrought" title="wrought">wrought</a> = 26343.9 <a href="/wiki/average" title="average">average</a> = 26342.4 <a href="/wiki/naked" title="naked">naked</a> = 26341.6 <a href="/wiki/conducted" title="conducted">conducted</a> = 26318.6 <a href="/wiki/rivers" title="rivers">rivers</a> = 26306.8 <a href="/wiki/songs" title="songs">songs</a> = 26299.6 <a href="/wiki/obvious" title="obvious">obvious</a> = 26283.8 <a href="/wiki/foundation" title="foundation">foundation</a> = 26269.6 <a href="/wiki/concern" title="concern">concern</a> = 26239.5 <a href="/wiki/ceremony" title="ceremony">ceremony</a> = 26230.0 <a href="/wiki/magic" title="magic">magic</a> = 26210.2 <a href="/wiki/campaign" title="campaign">campaign</a> = 26203.9 <a href="/wiki/hunting" title="hunting">hunting</a> = 26202.3 <a href="/wiki/carolina" title="carolina">carolina</a> = 26199.2 <a href="/wiki/liberal" title="liberal">liberal</a> = 26184.1 <a href="/wiki/whisper" title="whisper">whisper</a> = 26184.1 <a href="/wiki/largely" title="largely">largely</a> = 26177.0 <a href="/wiki/commonly" title="commonly">commonly</a> = 26158.8 <a href="/wiki/torn" title="torn">torn</a> = 26151.7 <a href="/wiki/exists" title="exists">exists</a> = 26145.4 <a href="/wiki/contributions" title="contributions">contributions</a> = 26143.0 <a href="/wiki/hunt" title="hunt">hunt</a> = 26139.8 <a href="/wiki/teacher" title="teacher">teacher</a> = 26128.8 <a href="/w/index.php?title=christianity&amp;action=edit&amp;redlink=1" class="new" title="christianity (page does not exist)">christianity</a> = 26112.9 <a href="/wiki/lawyer" title="lawyer">lawyer</a> = 26093.2 <a href="/wiki/operations" title="operations">operations</a> = 26091.6 <a href="/wiki/detail" title="detail">detail</a> = 26089.2 <a href="/wiki/shortly" title="shortly">shortly</a> = 26070.2 <a href="/wiki/caesar" title="caesar" class="mw-redirect">caesar</a> = 26043.3 <a href="/wiki/wondering" title="wondering">wondering</a> = 26040.9 <a href="/wiki/leaders" title="leaders">leaders</a> = 26037.0 <a href="/wiki/blessing" title="blessing">blessing</a> = 26023.5 <a href="/wiki/princess" title="princess">princess</a> = 26022.7 <a href="/wiki/he%27d" title="he'd">he'd</a> = 26014.8 <a href="/wiki/altar" title="altar">altar</a> = 26013.2 <a href="/wiki/tenderness" title="tenderness">tenderness</a> = 26013.2 <a href="/wiki/tiny" title="tiny">tiny</a> = 25980.0 <a href="/wiki/web" title="web">web</a> = 25971.3 <a href="/wiki/cardinal" title="cardinal">cardinal</a> = 25968.9 <a href="/wiki/sharply" title="sharply">sharply</a> = 25962.6 <a href="/wiki/regiment" title="regiment">regiment</a> = 25926.2 <a href="/wiki/chest" title="chest">chest</a> = 25915.1 <a href="/wiki/distinctly" title="distinctly">distinctly</a> = 25914.4 <a href="/wiki/purple" title="purple">purple</a> = 25912.0 <a href="/wiki/creating" title="creating">creating</a> = 25910.4 <a href="/wiki/gather" title="gather">gather</a> = 25905.7 <a href="/wiki/depth" title="depth">depth</a> = 25902.5 <a href="/wiki/indignation" title="indignation">indignation</a> = 25876.4 <a href="/wiki/performance" title="performance">performance</a> = 25870.8 <a href="/wiki/election" title="election">election</a> = 25863.7 <a href="/wiki/prosperity" title="prosperity">prosperity</a> = 25843.9 <a href="/wiki/gloomy" title="gloomy">gloomy</a> = 25825.7 <a href="/wiki/conception" title="conception">conception</a> = 25822.6 <a href="/wiki/clerk" title="clerk">clerk</a> = 25785.4 <a href="/wiki/decide" title="decide">decide</a> = 25779.1 <a href="/wiki/drunk" title="drunk">drunk</a> = 25774.3 <a href="/wiki/victim" title="victim">victim</a> = 25770.4 <a href="/wiki/reflected" title="reflected">reflected</a> = 25768.8 <a href="/wiki/pour" title="pour">pour</a> = 25765.6 <a href="/wiki/preceding" title="preceding">preceding</a> = 25764.0 <a href="/wiki/individuals" title="individuals">individuals</a> = 25759.3 <a href="/wiki/gazing" title="gazing">gazing</a> = 25737.9 <a href="/wiki/absurd" title="absurd">absurd</a> = 25718.9 <a href="/wiki/lift" title="lift">lift</a> = 25715.0 <a href="/wiki/gesture" title="gesture">gesture</a> = 25714.2 <a href="/wiki/armies" title="armies">armies</a> = 25710.2 <a href="/wiki/limbs" title="limbs">limbs</a> = 25667.5 <a href="/wiki/manage" title="manage">manage</a> = 25667.5 <a href="/wiki/brethren" title="brethren">brethren</a> = 25642.2 <a href="/w/index.php?title=hugh&amp;action=edit&amp;redlink=1" class="new" title="hugh (page does not exist)">hugh</a> = 25616.1 <a href="/wiki/plays" title="plays">plays</a> = 25582.1 <a href="/wiki/hastened" title="hastened">hastened</a> = 25580.5 <a href="/wiki/dragged" title="dragged">dragged</a> = 25533.0 <a href="/wiki/motive" title="motive">motive</a> = 25512.5 <a href="/wiki/whatsoever" title="whatsoever">whatsoever</a> = 25421.5 <a href="/wiki/pointing" title="pointing">pointing</a> = 25416.7 <a href="/wiki/verses" title="verses">verses</a> = 25411.2 <a href="/wiki/pronounced" title="pronounced">pronounced</a> = 25410.4 <a href="/wiki/exchange" title="exchange">exchange</a> = 25408.0 <a href="/wiki/definite" title="definite">definite</a> = 25393.8 <a href="/wiki/emperor" title="emperor">emperor</a> = 25366.9 <a href="/wiki/tendency" title="tendency">tendency</a> = 25363.7 <a href="/wiki/remote" title="remote">remote</a> = 25339.2 <a href="/wiki/finish" title="finish">finish</a> = 25337.6 <a href="/wiki/flag" title="flag">flag</a> = 25313.9</p>
292
+ <h4><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=35" title="Edit section: 3001 - 4000">edit</a>]</span> <span class="mw-headline" id="3001_-_4000">3001 - 4000</span></h4>
293
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=36" title="Edit section: 3001 - 3100">edit</a>]</span> <span class="mw-headline" id="3001_-_3100">3001 - 3100</span></h5>
294
+ <p><a href="/wiki/boots" title="boots">boots</a> = 25307.6 <a href="/wiki/enabled" title="enabled">enabled</a> = 25290.1 <a href="/wiki/administration" title="administration">administration</a> = 25289.4 <a href="/wiki/denied" title="denied">denied</a> = 25283.8 <a href="/wiki/churches" title="churches">churches</a> = 25279.1 <a href="/wiki/rarely" title="rarely">rarely</a> = 25251.4 <a href="/wiki/earnestly" title="earnestly">earnestly</a> = 25212.6 <a href="/wiki/considering" title="considering">considering</a> = 25210.2 <a href="/wiki/previously" title="previously">previously</a> = 25203.9 <a href="/wiki/ugly" title="ugly">ugly</a> = 25169.9 <a href="/wiki/bears" title="bears">bears</a> = 25165.9 <a href="/wiki/signed" title="signed">signed</a> = 25156.4 <a href="/wiki/genuine" title="genuine">genuine</a> = 25153.3 <a href="/wiki/harmless" title="harmless">harmless</a> = 25150.1 <a href="/wiki/mingled" title="mingled">mingled</a> = 25120.1 <a href="/wiki/obedience" title="obedience">obedience</a> = 25107.4 <a href="/wiki/walks" title="walks">walks</a> = 25103.4 <a href="/wiki/training" title="training">training</a> = 25071.0 <a href="/wiki/badly" title="badly">badly</a> = 25045.7 <a href="/wiki/feed" title="feed">feed</a> = 25028.3 <a href="/wiki/central" title="central">central</a> = 25010.1 <a href="/wiki/contrast" title="contrast">contrast</a> = 25009.3 <a href="/wiki/relieved" title="relieved">relieved</a> = 24995.8 <a href="/wiki/romance" title="romance">romance</a> = 24988.7 <a href="/w/index.php?title=mississippi&amp;action=edit&amp;redlink=1" class="new" title="mississippi (page does not exist)">mississippi</a> = 24987.9 <a href="/wiki/structure" title="structure">structure</a> = 24976.1 <a href="/wiki/payment" title="payment">payment</a> = 24963.4 <a href="/wiki/pace" title="pace">pace</a> = 24960.2 <a href="/wiki/passages" title="passages">passages</a> = 24957.9 <a href="/wiki/succession" title="succession">succession</a> = 24955.5 <a href="/wiki/persuaded" title="persuaded">persuaded</a> = 24952.3 <a href="/wiki/sources" title="sources">sources</a> = 24952.3 <a href="/wiki/inquiry" title="inquiry">inquiry</a> = 24950.0 <a href="/wiki/inspired" title="inspired">inspired</a> = 24932.6 <a href="/wiki/angels" title="angels">angels</a> = 24925.4 <a href="/wiki/roll" title="roll">roll</a> = 24922.3 <a href="/wiki/wilt" title="wilt">wilt</a> = 24907.2 <a href="/wiki/inch" title="inch">inch</a> = 24887.5 <a href="/wiki/troubles" title="troubles">troubles</a> = 24878.8 <a href="/wiki/perfection" title="perfection">perfection</a> = 24870.1 <a href="/wiki/lee" title="lee">lee</a> = 24850.3 <a href="/wiki/wherever" title="wherever">wherever</a> = 24845.5 <a href="/wiki/owe" title="owe">owe</a> = 24817.8 <a href="/wiki/handle" title="handle">handle</a> = 24805.2 <a href="/wiki/advantages" title="advantages">advantages</a> = 24802.8 <a href="/wiki/trip" title="trip">trip</a> = 24790.2 <a href="/wiki/shoot" title="shoot">shoot</a> = 24775.9 <a href="/wiki/fortunate" title="fortunate">fortunate</a> = 24755.3 <a href="/wiki/newspaper" title="newspaper">newspaper</a> = 24752.2 <a href="/wiki/employment" title="employment">employment</a> = 24726.1 <a href="/wiki/fitted" title="fitted">fitted</a> = 24721.3 <a href="/wiki/refuge" title="refuge">refuge</a> = 24717.4 <a href="/wiki/misfortune" title="misfortune">misfortune</a> = 24711.0 <a href="/wiki/providence" title="providence">providence</a> = 24702.3 <a href="/wiki/owns" title="owns">owns</a> = 24692.8 <a href="/wiki/cutting" title="cutting">cutting</a> = 24671.5 <a href="/wiki/beard" title="beard">beard</a> = 24658.8 <a href="/wiki/stirred" title="stirred">stirred</a> = 24654.1 <a href="/wiki/tear" title="tear">tear</a> = 24653.3 <a href="/wiki/dan" title="dan">dan</a> = 24639.8 <a href="/wiki/resist" title="resist">resist</a> = 24634.3 <a href="/wiki/bob" title="bob">bob</a> = 24620.1 <a href="/wiki/depths" title="depths">depths</a> = 24612.9 <a href="/wiki/maiden" title="maiden">maiden</a> = 24599.5 <a href="/wiki/determine" title="determine">determine</a> = 24596.3 <a href="/wiki/commission" title="commission">commission</a> = 24594.0 <a href="/wiki/merchant" title="merchant">merchant</a> = 24578.9 <a href="/wiki/whereas" title="whereas">whereas</a> = 24576.5 <a href="/wiki/crossing" title="crossing">crossing</a> = 24575.0 <a href="/wiki/independence" title="independence">independence</a> = 24561.5 <a href="/wiki/lively" title="lively">lively</a> = 24553.6 <a href="/wiki/breeze" title="breeze">breeze</a> = 24552.0 <a href="/wiki/provinces" title="provinces">provinces</a> = 24533.8 <a href="/wiki/jean" title="jean">jean</a> = 24520.4 <a href="/wiki/virtues" title="virtues">virtues</a> = 24516.4 <a href="/wiki/conceived" title="conceived">conceived</a> = 24510.1 <a href="/wiki/relative" title="relative">relative</a> = 24507.7 <a href="/wiki/solitary" title="solitary">solitary</a> = 24481.6 <a href="/wiki/smell" title="smell">smell</a> = 24476.1 <a href="/wiki/wandering" title="wandering">wandering</a> = 24466.6 <a href="/wiki/thereby" title="thereby">thereby</a> = 24465.0 <a href="/wiki/eighteen" title="eighteen">eighteen</a> = 24454.7 <a href="/wiki/locked" title="locked">locked</a> = 24438.1 <a href="/wiki/provision" title="provision">provision</a> = 24386.7 <a href="/wiki/courts" title="courts">courts</a> = 24372.4 <a href="/wiki/eaten" title="eaten">eaten</a> = 24366.9 <a href="/wiki/historical" title="historical">historical</a> = 24366.9 <a href="/wiki/regarding" title="regarding">regarding</a> = 24365.3 <a href="/w/index.php?title=florence&amp;action=edit&amp;redlink=1" class="new" title="florence (page does not exist)">florence</a> = 24349.5 <a href="/wiki/preferred" title="preferred">preferred</a> = 24349.5 <a href="/wiki/pick" title="pick">pick</a> = 24343.2 <a href="/wiki/ruined" title="ruined">ruined</a> = 24340.0 <a href="/wiki/wherein" title="wherein">wherein</a> = 24337.6 <a href="/wiki/vanity" title="vanity">vanity</a> = 24324.2 <a href="/wiki/condemned" title="condemned">condemned</a> = 24297.3 <a href="/wiki/deliver" title="deliver">deliver</a> = 24296.5 <a href="/wiki/unexpected" title="unexpected">unexpected</a> = 24270.4 <a href="/wiki/desk" title="desk">desk</a> = 24263.3 <a href="/wiki/gross" title="gross">gross</a> = 24261.7 <a href="/wiki/lane" title="lane">lane</a> = 24259.3</p>
295
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=37" title="Edit section: 3101 - 3200">edit</a>]</span> <span class="mw-headline" id="3101_-_3200">3101 - 3200</span></h5>
296
+ <p><a href="/wiki/happens" title="happens">happens</a> = 24249.0 <a href="/wiki/represent" title="represent">represent</a> = 24244.3 <a href="/wiki/billy" title="billy">billy</a> = 24241.9 <a href="/wiki/root" title="root">root</a> = 24241.9 <a href="/wiki/holland" title="holland">holland</a> = 24220.5 <a href="/wiki/mud" title="mud">mud</a> = 24215.0 <a href="/wiki/respectable" title="respectable">respectable</a> = 24197.6 <a href="/wiki/cleared" title="cleared">cleared</a> = 24196.8 <a href="/wiki/feels" title="feels">feels</a> = 24189.7 <a href="/wiki/fruits" title="fruits">fruits</a> = 24181.8 <a href="/wiki/testimony" title="testimony">testimony</a> = 24178.6 <a href="/w/index.php?title=milton&amp;action=edit&amp;redlink=1" class="new" title="milton (page does not exist)">milton</a> = 24177.8 <a href="/wiki/existing" title="existing">existing</a> = 24176.2 <a href="/wiki/bride" title="bride">bride</a> = 24170.7 <a href="/wiki/rang" title="rang">rang</a> = 24165.2 <a href="/wiki/ranks" title="ranks">ranks</a> = 24146.2 <a href="/wiki/responsibility" title="responsibility">responsibility</a> = 24110.6 <a href="/wiki/beating" title="beating">beating</a> = 24105.8 <a href="/wiki/disappointed" title="disappointed">disappointed</a> = 24102.7 <a href="/wiki/suitable" title="suitable">suitable</a> = 24099.5 <a href="/wiki/depend" title="depend">depend</a> = 24080.5 <a href="/wiki/judges" title="judges">judges</a> = 24065.5 <a href="/wiki/giant" title="giant">giant</a> = 24050.4 <a href="/wiki/grasp" title="grasp">grasp</a> = 24039.4 <a href="/wiki/arrive" title="arrive">arrive</a> = 24036.2 <a href="/wiki/simplicity" title="simplicity">simplicity</a> = 24033.8 <a href="/wiki/autumn" title="autumn">autumn</a> = 24030.7 <a href="/wiki/absent" title="absent">absent</a> = 24029.9 <a href="/wiki/legally" title="legally">legally</a> = 24015.6 <a href="/wiki/veil" title="veil">veil</a> = 24014.0 <a href="/wiki/gloom" title="gloom">gloom</a> = 23980.8 <a href="/wiki/doubtful" title="doubtful">doubtful</a> = 23956.3 <a href="/wiki/suspect" title="suspect">suspect</a> = 23953.1 <a href="/wiki/weapons" title="weapons">weapons</a> = 23950.8 <a href="/wiki/limits" title="limits">limits</a> = 23919.9 <a href="/wiki/determination" title="determination">determination</a> = 23918.3 <a href="/wiki/feeble" title="feeble">feeble</a> = 23902.5 <a href="/wiki/prophet" title="prophet">prophet</a> = 23900.1 <a href="/w/index.php?title=shak&amp;action=edit&amp;redlink=1" class="new" title="shak (page does not exist)">shak</a> = 23892.2 <a href="/wiki/gathering" title="gathering">gathering</a> = 23868.5 <a href="/wiki/basis" title="basis">basis</a> = 23866.1 <a href="/wiki/examine" title="examine">examine</a> = 23826.5 <a href="/wiki/corrupt" title="corrupt">corrupt</a> = 23785.4 <a href="/wiki/payments" title="payments">payments</a> = 23779.9 <a href="/wiki/returns" title="returns">returns</a> = 23775.1 <a href="/wiki/laying" title="laying">laying</a> = 23756.9 <a href="/wiki/prize" title="prize">prize</a> = 23749.0 <a href="/wiki/instances" title="instances">instances</a> = 23733.2 <a href="/wiki/greeks" title="greeks">greeks</a> = 23730.8 <a href="/wiki/d" title="d">d</a> = 23730.0 <a href="/wiki/they%27re" title="they're">they're</a> = 23719.0 <a href="/wiki/theatre" title="theatre">theatre</a> = 23711.0 <a href="/wiki/purchase" title="purchase">purchase</a> = 23704.7 <a href="/wiki/comparison" title="comparison">comparison</a> = 23702.3 <a href="/wiki/composition" title="composition">composition</a> = 23694.4 <a href="/wiki/rival" title="rival">rival</a> = 23688.9 <a href="/wiki/someone" title="someone">someone</a> = 23680.2 <a href="/wiki/realize" title="realize">realize</a> = 23669.1 <a href="/wiki/defeat" title="defeat">defeat</a> = 23665.2 <a href="/wiki/demands" title="demands">demands</a> = 23635.9 <a href="/wiki/foe" title="foe">foe</a> = 23628.8 <a href="/wiki/shared" title="shared">shared</a> = 23620.1 <a href="/wiki/consists" title="consists">consists</a> = 23616.9 <a href="/wiki/studies" title="studies">studies</a> = 23614.5 <a href="/wiki/balance" title="balance">balance</a> = 23609.8 <a href="/wiki/intercourse" title="intercourse">intercourse</a> = 23609.0 <a href="/wiki/id" title="id">id</a> = 23605.0 <a href="/wiki/forming" title="forming">forming</a> = 23571.0 <a href="/wiki/slender" title="slender">slender</a> = 23570.2 <a href="/wiki/coach" title="coach">coach</a> = 23561.5 <a href="/wiki/criminal" title="criminal">criminal</a> = 23556.8 <a href="/wiki/knocked" title="knocked">knocked</a> = 23553.6 <a href="/wiki/silly" title="silly">silly</a> = 23553.6 <a href="/wiki/humour" title="humour">humour</a> = 23550.4 <a href="/wiki/masses" title="masses">masses</a> = 23542.5 <a href="/wiki/indifferent" title="indifferent">indifferent</a> = 23541.0 <a href="/wiki/recall" title="recall">recall</a> = 23534.6 <a href="/wiki/occupation" title="occupation">occupation</a> = 23529.1 <a href="/wiki/discourse" title="discourse">discourse</a> = 23524.3 <a href="/wiki/keeps" title="keeps">keeps</a> = 23523.5 <a href="/wiki/regions" title="regions">regions</a> = 23516.4 <a href="/wiki/intervals" title="intervals">intervals</a> = 23510.9 <a href="/wiki/assist" title="assist">assist</a> = 23508.5 <a href="/wiki/novel" title="novel">novel</a> = 23506.1 <a href="/wiki/intellect" title="intellect">intellect</a> = 23493.5 <a href="/wiki/leads" title="leads">leads</a> = 23492.7 <a href="/wiki/hither" title="hither">hither</a> = 23489.5 <a href="/wiki/tales" title="tales">tales</a> = 23483.2 <a href="/wiki/sale" title="sale">sale</a> = 23476.9 <a href="/wiki/revenge" title="revenge">revenge</a> = 23465.8 <a href="/wiki/lucy" title="lucy">lucy</a> = 23459.5 <a href="/wiki/yonder" title="yonder">yonder</a> = 23446.8 <a href="/wiki/resources" title="resources">resources</a> = 23435.7 <a href="/wiki/jealous" title="jealous">jealous</a> = 23421.5 <a href="/wiki/we%27re" title="we're">we're</a> = 23376.4 <a href="/wiki/wheel" title="wheel">wheel</a> = 23376.4 <a href="/wiki/invitation" title="invitation">invitation</a> = 23368.5 <a href="/wiki/narrative" title="narrative">narrative</a> = 23365.3 <a href="/wiki/risen" title="risen">risen</a> = 23364.5 <a href="/wiki/burnt" title="burnt">burnt</a> = 23335.3</p>
297
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=38" title="Edit section: 3201 - 3300">edit</a>]</span> <span class="mw-headline" id="3201_-_3300">3201 - 3300</span></h5>
298
+ <p><a href="/wiki/sentiments" title="sentiments">sentiments</a> = 23335.3 <a href="/wiki/inferior" title="inferior">inferior</a> = 23327.3 <a href="/wiki/amusement" title="amusement">amusement</a> = 23320.2 <a href="/wiki/marie" title="marie">marie</a> = 23309.9 <a href="/wiki/flash" title="flash">flash</a> = 23304.4 <a href="/wiki/recognize" title="recognize">recognize</a> = 23302.8 <a href="/wiki/swiftly" title="swiftly">swiftly</a> = 23299.7 <a href="/wiki/portrait" title="portrait">portrait</a> = 23294.9 <a href="/wiki/create" title="create">create</a> = 23259.3 <a href="/wiki/summoned" title="summoned">summoned</a> = 23245.9 <a href="/wiki/suggest" title="suggest">suggest</a> = 23241.1 <a href="/wiki/induced" title="induced">induced</a> = 23229.2 <a href="/wiki/conflict" title="conflict">conflict</a> = 23227.7 <a href="/wiki/fed" title="fed">fed</a> = 23220.5 <a href="/wiki/curse" title="curse">curse</a> = 23215.8 <a href="/wiki/disappointment" title="disappointment">disappointment</a> = 23215.8 <a href="/wiki/helpless" title="helpless">helpless</a> = 23213.4 <a href="/wiki/preparing" title="preparing">preparing</a> = 23208.7 <a href="/wiki/construction" title="construction">construction</a> = 23205.5 <a href="/wiki/lincoln" title="lincoln">lincoln</a> = 23183.4 <a href="/wiki/zeal" title="zeal">zeal</a> = 23168.3 <a href="/wiki/responsible" title="responsible">responsible</a> = 23160.4 <a href="/wiki/indicated" title="indicated">indicated</a> = 23152.5 <a href="/wiki/groups" title="groups">groups</a> = 23150.1 <a href="/wiki/positive" title="positive">positive</a> = 23135.1 <a href="/wiki/germans" title="germans">germans</a> = 23128.8 <a href="/wiki/attracted" title="attracted">attracted</a> = 23124.0 <a href="/wiki/vengeance" title="vengeance">vengeance</a> = 23121.6 <a href="/wiki/fort" title="fort">fort</a> = 23113.7 <a href="/wiki/club" title="club">club</a> = 23099.5 <a href="/wiki/cure" title="cure">cure</a> = 23094.0 <a href="/wiki/stout" title="stout">stout</a> = 23094.0 <a href="/wiki/missed" title="missed">missed</a> = 23090.0 <a href="/wiki/gracious" title="gracious">gracious</a> = 23082.1 <a href="/wiki/include" title="include">include</a> = 23071.0 <a href="/wiki/flood" title="flood">flood</a> = 23042.5 <a href="/wiki/satisfy" title="satisfy">satisfy</a> = 23040.2 <a href="/wiki/agony" title="agony">agony</a> = 23033.0 <a href="/wiki/respects" title="respects">respects</a> = 23020.4 <a href="/wiki/ventured" title="ventured">ventured</a> = 23020.4 <a href="/wiki/implied" title="implied">implied</a> = 23018.8 <a href="/wiki/maria" title="maria">maria</a> = 23010.1 <a href="/wiki/stupid" title="stupid">stupid</a> = 22992.7 <a href="/wiki/seas" title="seas">seas</a> = 22991.9 <a href="/w/index.php?title=spaniards&amp;action=edit&amp;redlink=1" class="new" title="spaniards (page does not exist)">spaniards</a> = 22987.9 <a href="/wiki/grain" title="grain">grain</a> = 22985.6 <a href="/wiki/enjoyment" title="enjoyment">enjoyment</a> = 22982.4 <a href="/wiki/wearing" title="wearing">wearing</a> = 22981.6 <a href="/wiki/indifference" title="indifference">indifference</a> = 22936.5 <a href="/wiki/conceal" title="conceal">conceal</a> = 22933.4 <a href="/wiki/horizon" title="horizon">horizon</a> = 22922.3 <a href="/wiki/pleasures" title="pleasures">pleasures</a> = 22903.3 <a href="/wiki/therein" title="therein">therein</a> = 22901.7 <a href="/wiki/precisely" title="precisely">precisely</a> = 22900.1 <a href="/w/index.php?title=canada&amp;action=edit&amp;redlink=1" class="new" title="canada (page does not exist)">canada</a> = 22872.4 <a href="/w/index.php?title=day%27s&amp;action=edit&amp;redlink=1" class="new" title="day's (page does not exist)">day's</a> = 22868.5 <a href="/wiki/assume" title="assume">assume</a> = 22844.8 <a href="/wiki/registered" title="registered">registered</a> = 22844.8 <a href="/wiki/estimate" title="estimate">estimate</a> = 22841.6 <a href="/wiki/steep" title="steep">steep</a> = 22823.4 <a href="/wiki/route" title="route">route</a> = 22808.4 <a href="/wiki/gardens" title="gardens">gardens</a> = 22789.4 <a href="/wiki/visitor" title="visitor">visitor</a> = 22780.7 <a href="/wiki/closer" title="closer">closer</a> = 22770.4 <a href="/wiki/harmony" title="harmony">harmony</a> = 22753.0 <a href="/wiki/non" title="non">non</a> = 22749.0 <a href="/wiki/thunder" title="thunder">thunder</a> = 22749.0 <a href="/wiki/wire" title="wire">wire</a> = 22741.1 <a href="/wiki/graceful" title="graceful">graceful</a> = 22736.4 <a href="/wiki/crept" title="crept">crept</a> = 22735.6 <a href="/w/index.php?title=greece&amp;action=edit&amp;redlink=1" class="new" title="greece (page does not exist)">greece</a> = 22734.0 <a href="/wiki/childhood" title="childhood">childhood</a> = 22726.9 <a href="/wiki/knee" title="knee">knee</a> = 22696.0 <a href="/wiki/saddle" title="saddle">saddle</a> = 22691.3 <a href="/wiki/supplies" title="supplies">supplies</a> = 22683.4 <a href="/wiki/weeping" title="weeping">weeping</a> = 22673.1 <a href="/wiki/mostly" title="mostly">mostly</a> = 22658.0 <a href="/wiki/paragraphs" title="paragraphs">paragraphs</a> = 22647.8 <a href="/wiki/unconscious" title="unconscious">unconscious</a> = 22647.0 <a href="/wiki/mutual" title="mutual">mutual</a> = 22639.8 <a href="/wiki/scorn" title="scorn">scorn</a> = 22638.3 <a href="/wiki/grows" title="grows">grows</a> = 22628.0 <a href="/wiki/external" title="external">external</a> = 22592.4 <a href="/wiki/agents" title="agents">agents</a> = 22586.8 <a href="/wiki/software" title="software">software</a> = 22586.1 <a href="/wiki/institutions" title="institutions">institutions</a> = 22584.5 <a href="/wiki/losing" title="losing">losing</a> = 22575.0 <a href="/wiki/universe" title="universe">universe</a> = 22574.2 <a href="/wiki/clock" title="clock">clock</a> = 22548.9 <a href="/wiki/attempts" title="attempts">attempts</a> = 22547.3 <a href="/wiki/instruction" title="instruction">instruction</a> = 22538.6 <a href="/wiki/injury" title="injury">injury</a> = 22525.9 <a href="/wiki/roots" title="roots">roots</a> = 22522.8 <a href="/wiki/receipt" title="receipt">receipt</a> = 22519.6 <a href="/wiki/jumped" title="jumped">jumped</a> = 22518.8 <a href="/wiki/dearest" title="dearest">dearest</a> = 22502.2 <a href="/wiki/sore" title="sore">sore</a> = 22499.8 <a href="/wiki/earliest" title="earliest">earliest</a> = 22496.7 <a href="/wiki/finest" title="finest">finest</a> = 22488.0 <a href="/wiki/enable" title="enable">enable</a> = 22482.4</p>
299
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=39" title="Edit section: 3301 - 3400">edit</a>]</span> <span class="mw-headline" id="3301_-_3400">3301 - 3400</span></h5>
300
+ <p><a href="/wiki/discipline" title="discipline">discipline</a> = 22480.8 <a href="/wiki/motives" title="motives">motives</a> = 22465.8 <a href="/wiki/fastened" title="fastened">fastened</a> = 22454.7 <a href="/wiki/introduction" title="introduction">introduction</a> = 22446.0 <a href="/wiki/converted" title="converted">converted</a> = 22419.9 <a href="/wiki/wilderness" title="wilderness">wilderness</a> = 22419.1 <a href="/wiki/confused" title="confused">confused</a> = 22416.0 <a href="/wiki/fancied" title="fancied">fancied</a> = 22410.4 <a href="/wiki/offices" title="offices">offices</a> = 22410.4 <a href="/wiki/slip" title="slip">slip</a> = 22402.5 <a href="/wiki/revolution" title="revolution">revolution</a> = 22396.2 <a href="/wiki/wedding" title="wedding">wedding</a> = 22374.8 <a href="/w/index.php?title=girl%27s&amp;action=edit&amp;redlink=1" class="new" title="girl's (page does not exist)">girl's</a> = 22366.1 <a href="/wiki/farmer" title="farmer">farmer</a> = 22364.5 <a href="/wiki/silently" title="silently">silently</a> = 22363.7 <a href="/wiki/fires" title="fires">fires</a> = 22362.2 <a href="/wiki/wept" title="wept">wept</a> = 22355.0 <a href="/wiki/behalf" title="behalf">behalf</a> = 22346.3 <a href="/wiki/reckon" title="reckon">reckon</a> = 22346.3 <a href="/wiki/responded" title="responded">responded</a> = 22333.7 <a href="/wiki/uncertain" title="uncertain">uncertain</a> = 22328.9 <a href="/wiki/neglected" title="neglected">neglected</a> = 22328.1 <a href="/wiki/stroke" title="stroke">stroke</a> = 22326.6 <a href="/wiki/exquisite" title="exquisite">exquisite</a> = 22305.2 <a href="/wiki/engagement" title="engagement">engagement</a> = 22298.9 <a href="/wiki/dirty" title="dirty">dirty</a> = 22289.4 <a href="/wiki/rolling" title="rolling">rolling</a> = 22286.2 <a href="/wiki/platform" title="platform">platform</a> = 22282.3 <a href="/wiki/messenger" title="messenger">messenger</a> = 22272.0 <a href="/wiki/privilege" title="privilege">privilege</a> = 22260.9 <a href="/wiki/admirable" title="admirable">admirable</a> = 22255.4 <a href="/wiki/offers" title="offers">offers</a> = 22252.2 <a href="/wiki/mischief" title="mischief">mischief</a> = 22247.4 <a href="/wiki/physician" title="physician">physician</a> = 22245.1 <a href="/wiki/imposed" title="imposed">imposed</a> = 22228.5 <a href="/wiki/organized" title="organized">organized</a> = 22222.1 <a href="/wiki/covering" title="covering">covering</a> = 22208.7 <a href="/wiki/student" title="student">student</a> = 22207.1 <a href="/wiki/daring" title="daring">daring</a> = 22198.4 <a href="/wiki/cave" title="cave">cave</a> = 22174.7 <a href="/wiki/wars" title="wars">wars</a> = 22170.7 <a href="/wiki/convey" title="convey">convey</a> = 22166.7 <a href="/wiki/he%27ll" title="he'll">he'll</a> = 22163.6 <a href="/wiki/sincere" title="sincere">sincere</a> = 22162.0 <a href="/wiki/tradition" title="tradition">tradition</a> = 22160.4 <a href="/wiki/gravely" title="gravely">gravely</a> = 22153.3 <a href="/wiki/combined" title="combined">combined</a> = 22149.3 <a href="/wiki/gallant" title="gallant">gallant</a> = 22122.4 <a href="/wiki/sensation" title="sensation">sensation</a> = 22120.9 <a href="/wiki/travelling" title="travelling">travelling</a> = 22120.1 <a href="/wiki/charges" title="charges">charges</a> = 22089.2 <a href="/wiki/submit" title="submit">submit</a> = 22087.6 <a href="/wiki/tragedy" title="tragedy">tragedy</a> = 22082.1 <a href="/wiki/specific" title="specific">specific</a> = 22075.0 <a href="/wiki/commander" title="commander">commander</a> = 22064.7 <a href="/wiki/inn" title="inn">inn</a> = 22059.2 <a href="/wiki/stiff" title="stiff">stiff</a> = 22057.6 <a href="/wiki/accompany" title="accompany">accompany</a> = 22056.8 <a href="/wiki/score" title="score">score</a> = 22052.0 <a href="/wiki/virgin" title="virgin">virgin</a> = 22052.0 <a href="/wiki/farewell" title="farewell">farewell</a> = 22033.0 <a href="/wiki/paradise" title="paradise">paradise</a> = 22014.9 <a href="/wiki/villages" title="villages">villages</a> = 22012.5 <a href="/wiki/hunger" title="hunger">hunger</a> = 21975.3 <a href="/wiki/trembled" title="trembled">trembled</a> = 21947.6 <a href="/wiki/favorite" title="favorite">favorite</a> = 21929.4 <a href="/wiki/criticism" title="criticism">criticism</a> = 21925.5 <a href="/wiki/proprietary" title="proprietary">proprietary</a> = 21921.5 <a href="/wiki/customs" title="customs">customs</a> = 21915.2 <a href="/wiki/cotton" title="cotton">cotton</a> = 21910.4 <a href="/wiki/ruth" title="ruth">ruth</a> = 21907.3 <a href="/wiki/hospital" title="hospital">hospital</a> = 21895.4 <a href="/wiki/restrictions" title="restrictions">restrictions</a> = 21881.2 <a href="/wiki/outward" title="outward">outward</a> = 21868.5 <a href="/wiki/impressed" title="impressed">impressed</a> = 21857.4 <a href="/wiki/blows" title="blows">blows</a> = 21851.1 <a href="/wiki/plains" title="plains">plains</a> = 21847.1 <a href="/wiki/flashed" title="flashed">flashed</a> = 21836.8 <a href="/wiki/rent" title="rent">rent</a> = 21836.8 <a href="/wiki/prey" title="prey">prey</a> = 21827.4 <a href="/wiki/owed" title="owed">owed</a> = 21813.1 <a href="/wiki/longing" title="longing">longing</a> = 21804.4 <a href="/wiki/musical" title="musical">musical</a> = 21803.6 <a href="/wiki/satisfactory" title="satisfactory">satisfactory</a> = 21803.6 <a href="/wiki/ridiculous" title="ridiculous">ridiculous</a> = 21802.8 <a href="/wiki/sheet" title="sheet">sheet</a> = 21798.1 <a href="/wiki/disgrace" title="disgrace">disgrace</a> = 21776.7 <a href="/wiki/colored" title="colored">colored</a> = 21769.6 <a href="/wiki/shouldn%27t" title="shouldn't">shouldn't</a> = 21767.2 <a href="/wiki/originally" title="originally">originally</a> = 21762.5 <a href="/wiki/samuel" title="samuel" class="mw-redirect">samuel</a> = 21760.1 <a href="/wiki/wages" title="wages">wages</a> = 21755.4 <a href="/wiki/papa" title="papa">papa</a> = 21749.8 <a href="/wiki/gas" title="gas">gas</a> = 21748.2 <a href="/wiki/inevitable" title="inevitable">inevitable</a> = 21741.1 <a href="/wiki/extensive" title="extensive">extensive</a> = 21735.6 <a href="/wiki/leisure" title="leisure">leisure</a> = 21729.3 <a href="/wiki/deadly" title="deadly">deadly</a> = 21718.2 <a href="/wiki/chin" title="chin">chin</a> = 21717.4 <a href="/wiki/claimed" title="claimed">claimed</a> = 21713.4</p>
301
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=40" title="Edit section: 3401 - 3500">edit</a>]</span> <span class="mw-headline" id="3401_-_3500">3401 - 3500</span></h5>
302
+ <p><a href="/wiki/glow" title="glow">glow</a> = 21707.1 <a href="/w/index.php?title=husband%27s&amp;action=edit&amp;redlink=1" class="new" title="husband's (page does not exist)">husband's</a> = 21703.9 <a href="/wiki/emotions" title="emotions">emotions</a> = 21695.2 <a href="/wiki/adam" title="adam">adam</a> = 21681.8 <a href="/wiki/jealousy" title="jealousy">jealousy</a> = 21661.2 <a href="/wiki/leaf" title="leaf">leaf</a> = 21659.6 <a href="/wiki/publication" title="publication">publication</a> = 21649.3 <a href="/w/index.php?title=englishman&amp;action=edit&amp;redlink=1" class="new" title="englishman (page does not exist)">englishman</a> = 21647.8 <a href="/w/index.php?title=allah&amp;action=edit&amp;redlink=1" class="new" title="allah (page does not exist)">allah</a> = 21647.0 <a href="/wiki/jones" title="jones">jones</a> = 21635.1 <a href="/wiki/hostile" title="hostile">hostile</a> = 21631.9 <a href="/wiki/wandered" title="wandered">wandered</a> = 21621.7 <a href="/wiki/railway" title="railway">railway</a> = 21615.3 <a href="/wiki/translation" title="translation">translation</a> = 21607.4 <a href="/wiki/procession" title="procession">procession</a> = 21575.8 <a href="/wiki/betrayed" title="betrayed">betrayed</a> = 21573.4 <a href="/wiki/pound" title="pound">pound</a> = 21572.6 <a href="/wiki/admired" title="admired">admired</a> = 21561.5 <a href="/wiki/elected" title="elected">elected</a> = 21552.0 <a href="/wiki/pierre" title="pierre">pierre</a> = 21522.8 <a href="/wiki/sunk" title="sunk">sunk</a> = 21519.6 <a href="/wiki/ruins" title="ruins">ruins</a> = 21516.4 <a href="/wiki/eastern" title="eastern">eastern</a> = 21515.6 <a href="/wiki/roses" title="roses">roses</a> = 21511.7 <a href="/wiki/citizen" title="citizen">citizen</a> = 21498.2 <a href="/wiki/reminded" title="reminded">reminded</a> = 21497.4 <a href="/wiki/deceived" title="deceived">deceived</a> = 21495.9 <a href="/wiki/tables" title="tables">tables</a> = 21432.6 <a href="/wiki/beach" title="beach">beach</a> = 21431.8 <a href="/wiki/starting" title="starting">starting</a> = 21427.8 <a href="/wiki/funeral" title="funeral">funeral</a> = 21414.4 <a href="/wiki/arrested" title="arrested">arrested</a> = 21412.0 <a href="/wiki/flour" title="flour">flour</a> = 21409.6 <a href="/wiki/feature" title="feature">feature</a> = 21404.1 <a href="/wiki/correspondence" title="correspondence">correspondence</a> = 21403.3 <a href="/wiki/consisted" title="consisted">consisted</a> = 21398.6 <a href="/wiki/counted" title="counted">counted</a> = 21397.8 <a href="/wiki/reserve" title="reserve">reserve</a> = 21391.4 <a href="/wiki/proceedings" title="proceedings">proceedings</a> = 21381.2 <a href="/wiki/roar" title="roar">roar</a> = 21378.8 <a href="/wiki/romantic" title="romantic">romantic</a> = 21377.2 <a href="/wiki/twenty-five" title="twenty-five">twenty-five</a> = 21374.8 <a href="/wiki/hut" title="hut">hut</a> = 21374.0 <a href="/wiki/strangely" title="strangely">strangely</a> = 21361.4 <a href="/wiki/absorbed" title="absorbed">absorbed</a> = 21357.4 <a href="/wiki/propose" title="propose">propose</a> = 21352.7 <a href="/wiki/seats" title="seats">seats</a> = 21348.7 <a href="/wiki/bark" title="bark">bark</a> = 21347.1 <a href="/wiki/reception" title="reception">reception</a> = 21339.2 <a href="/wiki/pleasing" title="pleasing">pleasing</a> = 21334.5 <a href="/wiki/attained" title="attained">attained</a> = 21329.7 <a href="/wiki/wake" title="wake">wake</a> = 21326.6 <a href="/wiki/research" title="research">research</a> = 21323.4 <a href="/wiki/prayed" title="prayed">prayed</a> = 21309.2 <a href="/wiki/monarch" title="monarch">monarch</a> = 21306.8 <a href="/wiki/clothing" title="clothing">clothing</a> = 21300.5 <a href="/wiki/dollar" title="dollar">dollar</a> = 21293.3 <a href="/wiki/illness" title="illness">illness</a> = 21291.8 <a href="/wiki/calmly" title="calmly">calmly</a> = 21282.3 <a href="/wiki/obeyed" title="obeyed">obeyed</a> = 21275.9 <a href="/wiki/heartily" title="heartily">heartily</a> = 21268.8 <a href="/wiki/pressing" title="pressing">pressing</a> = 21264.9 <a href="/wiki/daylight" title="daylight">daylight</a> = 21264.1 <a href="/wiki/warriors" title="warriors">warriors</a> = 21243.5 <a href="/wiki/jest" title="jest">jest</a> = 21238.7 <a href="/wiki/abruptly" title="abruptly">abruptly</a> = 21222.1 <a href="/wiki/washed" title="washed">washed</a> = 21200.8 <a href="/wiki/comment" title="comment">comment</a> = 21197.6 <a href="/wiki/metal" title="metal">metal</a> = 21196.0 <a href="/wiki/preparations" title="preparations">preparations</a> = 21193.7 <a href="/wiki/nerves" title="nerves">nerves</a> = 21177.8 <a href="/wiki/solution" title="solution">solution</a> = 21177.8 <a href="/wiki/pretended" title="pretended">pretended</a> = 21173.1 <a href="/wiki/sixteen" title="sixteen">sixteen</a> = 21166.0 <a href="/wiki/assembly" title="assembly">assembly</a> = 21155.7 <a href="/wiki/tobacco" title="tobacco">tobacco</a> = 21154.1 <a href="/wiki/entity" title="entity">entity</a> = 21142.2 <a href="/wiki/dwelling" title="dwelling">dwelling</a> = 21136.7 <a href="/wiki/depart" title="depart">depart</a> = 21135.9 <a href="/wiki/swung" title="swung">swung</a> = 21134.3 <a href="/wiki/bitterly" title="bitterly">bitterly</a> = 21130.4 <a href="/wiki/alteration" title="alteration">alteration</a> = 21128.0 <a href="/wiki/colony" title="colony">colony</a> = 21126.4 <a href="/wiki/disclaimers" title="disclaimers">disclaimers</a> = 21124.8 <a href="/wiki/wing" title="wing">wing</a> = 21122.5 <a href="/wiki/peaceful" title="peaceful">peaceful</a> = 21120.9 <a href="/wiki/lion" title="lion">lion</a> = 21119.3 <a href="/wiki/opportunities" title="opportunities">opportunities</a> = 21097.9 <a href="/wiki/alarmed" title="alarmed">alarmed</a> = 21090.8 <a href="/wiki/furnish" title="furnish">furnish</a> = 21090.0 <a href="/wiki/resting" title="resting">resting</a> = 21086.9 <a href="/wiki/accused" title="accused">accused</a> = 21084.5 <a href="/wiki/culture" title="culture">culture</a> = 21083.7 <a href="/wiki/writings" title="writings">writings</a> = 21073.4 <a href="/wiki/dwelt" title="dwelt">dwelt</a> = 21071.0 <a href="/wiki/conquered" title="conquered">conquered</a> = 21067.1 <a href="/wiki/trick" title="trick">trick</a> = 21052.8 <a href="/wiki/trusted" title="trusted">trusted</a> = 21049.7 <a href="/wiki/column" title="column">column</a> = 21046.5 <a href="/wiki/financial" title="financial">financial</a> = 21028.3</p>
303
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=41" title="Edit section: 3501 - 3600">edit</a>]</span> <span class="mw-headline" id="3501_-_3600">3501 - 3600</span></h5>
304
+ <p><a href="/wiki/cunning" title="cunning">cunning</a> = 21027.5 <a href="/wiki/preparation" title="preparation">preparation</a> = 21022.0 <a href="/wiki/drama" title="drama">drama</a> = 21014.9 <a href="/wiki/joke" title="joke">joke</a> = 21010.1 <a href="/wiki/entertained" title="entertained">entertained</a> = 21003.0 <a href="/wiki/mist" title="mist">mist</a> = 20999.0 <a href="/wiki/hypertext" title="hypertext">hypertext</a> = 20994.3 <a href="/wiki/shell" title="shell">shell</a> = 20981.6 <a href="/wiki/medicine" title="medicine">medicine</a> = 20972.9 <a href="/wiki/proofread" title="proofread">proofread</a> = 20964.2 <a href="/wiki/nest" title="nest">nest</a> = 20950.0 <a href="/wiki/reverence" title="reverence">reverence</a> = 20947.6 <a href="/wiki/situated" title="situated">situated</a> = 20945.2 <a href="/wiki/yielded" title="yielded">yielded</a> = 20942.9 <a href="/wiki/conceive" title="conceive">conceive</a> = 20938.9 <a href="/wiki/appointment" title="appointment">appointment</a> = 20934.2 <a href="/wiki/lessons" title="lessons">lessons</a> = 20897.8 <a href="/wiki/fetch" title="fetch">fetch</a> = 20895.4 <a href="/wiki/tomb" title="tomb">tomb</a> = 20895.4 <a href="/wiki/candle" title="candle">candle</a> = 20894.6 <a href="/wiki/offence" title="offence">offence</a> = 20882.7 <a href="/wiki/coarse" title="coarse">coarse</a> = 20870.1 <a href="/wiki/heap" title="heap">heap</a> = 20866.1 <a href="/wiki/mixture" title="mixture">mixture</a> = 20863.8 <a href="/wiki/homes" title="homes">homes</a> = 20847.9 <a href="/wiki/model" title="model">model</a> = 20843.2 <a href="/wiki/men%27s" title="men's">men's</a> = 20819.4 <a href="/wiki/defect" title="defect">defect</a> = 20818.7 <a href="/wiki/destined" title="destined">destined</a> = 20814.7 <a href="/wiki/occasional" title="occasional">occasional</a> = 20813.1 <a href="/wiki/fourteen" title="fourteen">fourteen</a> = 20803.6 <a href="/wiki/hint" title="hint">hint</a> = 20802.0 <a href="/wiki/knights" title="knights">knights</a> = 20795.7 <a href="/wiki/solicit" title="solicit">solicit</a> = 20783.8 <a href="/wiki/dreamed" title="dreamed">dreamed</a> = 20774.4 <a href="/wiki/objection" title="objection">objection</a> = 20756.2 <a href="/wiki/craft" title="craft">craft</a> = 20753.8 <a href="/wiki/acid" title="acid">acid</a> = 20752.2 <a href="/wiki/namely" title="namely">namely</a> = 20747.5 <a href="/wiki/asia" title="asia">asia</a> = 20744.3 <a href="/wiki/neglect" title="neglect">neglect</a> = 20734.8 <a href="/wiki/data" title="data">data</a> = 20722.9 <a href="/wiki/weapon" title="weapon">weapon</a> = 20717.4 <a href="/wiki/confessed" title="confessed">confessed</a> = 20715.0 <a href="/wiki/arrangements" title="arrangements">arrangements</a> = 20709.5 <a href="/wiki/repose" title="repose">repose</a> = 20701.6 <a href="/wiki/complying" title="complying">complying</a> = 20700.0 <a href="/wiki/copied" title="copied">copied</a> = 20700.0 <a href="/wiki/pink" title="pink">pink</a> = 20698.4 <a href="/wiki/user" title="user">user</a> = 20696.0 <a href="/wiki/heels" title="heels">heels</a> = 20695.2 <a href="/wiki/grandfather" title="grandfather">grandfather</a> = 20692.1 <a href="/wiki/other%27s" title="other's">other's</a> = 20690.5 <a href="/wiki/income" title="income">income</a> = 20679.4 <a href="/wiki/i.e." title="i.e.">i.e.</a> = 20661.2 <a href="/wiki/regards" title="regards">regards</a> = 20650.1 <a href="/wiki/streams" title="streams">streams</a> = 20649.4 <a href="/wiki/vigorous" title="vigorous">vigorous</a> = 20633.5 <a href="/wiki/accepting" title="accepting">accepting</a> = 20628.8 <a href="/wiki/bishop" title="bishop">bishop</a> = 20628.8 <a href="/wiki/lightning" title="lightning">lightning</a> = 20622.5 <a href="/wiki/authors" title="authors">authors</a> = 20613.8 <a href="/wiki/flames" title="flames">flames</a> = 20613.8 <a href="/wiki/observations" title="observations">observations</a> = 20602.7 <a href="/wiki/compressed" title="compressed">compressed</a> = 20599.5 <a href="/wiki/sport" title="sport">sport</a> = 20588.4 <a href="/wiki/powder" title="powder">powder</a> = 20587.6 <a href="/wiki/beds" title="beds">beds</a> = 20576.6 <a href="/wiki/orange" title="orange">orange</a> = 20573.4 <a href="/wiki/painting" title="painting">painting</a> = 20559.2 <a href="/wiki/shout" title="shout">shout</a> = 20548.9 <a href="/w/index.php?title=austria&amp;action=edit&amp;redlink=1" class="new" title="austria (page does not exist)">austria</a> = 20499.0 <a href="/wiki/bath" title="bath">bath</a> = 20495.9 <a href="/wiki/careless" title="careless">careless</a> = 20495.1 <a href="/wiki/chap" title="chap">chap</a> = 20493.5 <a href="/wiki/derivative" title="derivative">derivative</a> = 20492.7 <a href="/wiki/roused" title="roused">roused</a> = 20491.1 <a href="/wiki/primitive" title="primitive">primitive</a> = 20488.8 <a href="/wiki/doorway" title="doorway">doorway</a> = 20487.2 <a href="/wiki/climbed" title="climbed">climbed</a> = 20484.8 <a href="/wiki/volumes" title="volumes">volumes</a> = 20479.3 <a href="/wiki/vulgar" title="vulgar">vulgar</a> = 20448.4 <a href="/wiki/arguments" title="arguments">arguments</a> = 20441.3 <a href="/wiki/1st" title="1st">1st</a> = 20440.5 <a href="/wiki/sunset" title="sunset">sunset</a> = 20435.0 <a href="/wiki/convenient" title="convenient">convenient</a> = 20431.0 <a href="/wiki/mail" title="mail">mail</a> = 20423.9 <a href="/wiki/recalled" title="recalled">recalled</a> = 20419.1 <a href="/wiki/wrapped" title="wrapped">wrapped</a> = 20419.1 <a href="/wiki/abode" title="abode">abode</a> = 20409.6 <a href="/wiki/planted" title="planted">planted</a> = 20405.7 <a href="/wiki/paint" title="paint">paint</a> = 20381.2 <a href="/wiki/surrender" title="surrender">surrender</a> = 20362.2 <a href="/wiki/establish" title="establish">establish</a> = 20357.4 <a href="/wiki/mild" title="mild">mild</a> = 20353.5 <a href="/wiki/promptly" title="promptly">promptly</a> = 20342.4 <a href="/wiki/appearing" title="appearing">appearing</a> = 20328.2 <a href="/wiki/department" title="department">department</a> = 20315.5 <a href="/wiki/parish" title="parish">parish</a> = 20302.8 <a href="/w/index.php?title=stephen&amp;action=edit&amp;redlink=1" class="new" title="stephen (page does not exist)">stephen</a> = 20288.6</p>
305
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=42" title="Edit section: 3601 - 3700">edit</a>]</span> <span class="mw-headline" id="3601_-_3700">3601 - 3700</span></h5>
306
+ <p><a href="/wiki/nay" title="nay">nay</a> = 20246.7 <a href="/wiki/lit" title="lit">lit</a> = 20243.5 <a href="/wiki/handkerchief" title="handkerchief">handkerchief</a> = 20229.3 <a href="/wiki/basket" title="basket">basket</a> = 20219.8 <a href="/wiki/easier" title="easier">easier</a> = 20216.6 <a href="/wiki/deserve" title="deserve">deserve</a> = 20213.4 <a href="/wiki/quit" title="quit">quit</a> = 20213.4 <a href="/wiki/assurance" title="assurance">assurance</a> = 20212.6 <a href="/wiki/mirror" title="mirror">mirror</a> = 20210.3 <a href="/wiki/plot" title="plot">plot</a> = 20208.7 <a href="/wiki/yer" title="yer">yer</a> = 20196.8 <a href="/wiki/upward" title="upward">upward</a> = 20192.9 <a href="/wiki/sadly" title="sadly">sadly</a> = 20191.3 <a href="/wiki/secretary" title="secretary">secretary</a> = 20190.5 <a href="/wiki/adding" title="adding">adding</a> = 20187.3 <a href="/wiki/modest" title="modest">modest</a> = 20185.7 <a href="/wiki/dish" title="dish">dish</a> = 20176.3 <a href="/wiki/cares" title="cares">cares</a> = 20161.2 <a href="/wiki/straw" title="straw">straw</a> = 20158.9 <a href="/wiki/net" title="net">net</a> = 20152.5 <a href="/wiki/advised" title="advised">advised</a> = 20146.2 <a href="/wiki/heavenly" title="heavenly">heavenly</a> = 20124.0 <a href="/wiki/largest" title="largest">largest</a> = 20119.3 <a href="/wiki/proceeding" title="proceeding">proceeding</a> = 20107.4 <a href="/wiki/impatient" title="impatient">impatient</a> = 20085.3 <a href="/wiki/wounds" title="wounds">wounds</a> = 20076.6 <a href="/wiki/warmth" title="warmth">warmth</a> = 20071.8 <a href="/wiki/certainty" title="certainty">certainty</a> = 20053.6 <a href="/wiki/restless" title="restless">restless</a> = 20048.1 <a href="/wiki/meantime" title="meantime">meantime</a> = 20043.3 <a href="/wiki/rays" title="rays">rays</a> = 20040.2 <a href="/wiki/salvation" title="salvation">salvation</a> = 20031.5 <a href="/wiki/lovers" title="lovers">lovers</a> = 20030.7 <a href="/wiki/experiment" title="experiment">experiment</a> = 20024.4 <a href="/wiki/shores" title="shores">shores</a> = 20017.2 <a href="/wiki/today" title="today">today</a> = 20016.4 <a href="/wiki/tremendous" title="tremendous">tremendous</a> = 20006.2 <a href="/wiki/afforded" title="afforded">afforded</a> = 20004.6 <a href="/wiki/moonlight" title="moonlight">moonlight</a> = 20002.2 <a href="/wiki/intend" title="intend">intend</a> = 19999.0 <a href="/w/index.php?title=california&amp;action=edit&amp;redlink=1" class="new" title="california (page does not exist)">california</a> = 19991.1 <a href="/wiki/cultivated" title="cultivated">cultivated</a> = 19976.9 <a href="/wiki/flushed" title="flushed">flushed</a> = 19971.4 <a href="/w/index.php?title=shakespeare&amp;action=edit&amp;redlink=1" class="new" title="shakespeare (page does not exist)">shakespeare</a> = 19966.6 <a href="/wiki/newspapers" title="newspapers">newspapers</a> = 19953.2 <a href="/wiki/rocky" title="rocky">rocky</a> = 19916.8 <a href="/wiki/pious" title="pious">pious</a> = 19900.9 <a href="/wiki/wont" title="wont">wont</a> = 19900.9 <a href="/wiki/steam" title="steam">steam</a> = 19892.2 <a href="/wiki/improvement" title="improvement">improvement</a> = 19883.5 <a href="/wiki/garments" title="garments">garments</a> = 19878.8 <a href="/wiki/ned" title="ned">ned</a> = 19874.8 <a href="/wiki/treasury" title="treasury">treasury</a> = 19873.3 <a href="/wiki/merchants" title="merchants">merchants</a> = 19868.5 <a href="/wiki/perpetual" title="perpetual">perpetual</a> = 19866.9 <a href="/wiki/trained" title="trained">trained</a> = 19866.9 <a href="/wiki/products" title="products">products</a> = 19866.1 <a href="/wiki/affectionate" title="affectionate">affectionate</a> = 19858.2 <a href="/wiki/dispute" title="dispute">dispute</a> = 19854.3 <a href="/wiki/visitors" title="visitors">visitors</a> = 19847.9 <a href="/wiki/poison" title="poison">poison</a> = 19814.7 <a href="/wiki/proposition" title="proposition">proposition</a> = 19793.3 <a href="/wiki/maybe" title="maybe">maybe</a> = 19771.2 <a href="/wiki/rifle" title="rifle">rifle</a> = 19769.6 <a href="/wiki/warned" title="warned">warned</a> = 19767.2 <a href="/wiki/parting" title="parting">parting</a> = 19751.4 <a href="/wiki/shield" title="shield">shield</a> = 19736.4 <a href="/wiki/erected" title="erected">erected</a> = 19722.9 <a href="/wiki/employ" title="employ">employ</a> = 19722.1 <a href="/wiki/prevailed" title="prevailed">prevailed</a> = 19721.4 <a href="/wiki/talent" title="talent">talent</a> = 19714.2 <a href="/wiki/rises" title="rises">rises</a> = 19713.4 <a href="/wiki/climate" title="climate">climate</a> = 19693.7 <a href="/wiki/chairs" title="chairs">chairs</a> = 19690.5 <a href="/wiki/searched" title="searched">searched</a> = 19689.7 <a href="/wiki/unlike" title="unlike">unlike</a> = 19687.3 <a href="/wiki/recover" title="recover">recover</a> = 19681.0 <a href="/wiki/mate" title="mate">mate</a> = 19655.7 <a href="/wiki/arrange" title="arrange">arrange</a> = 19648.6 <a href="/wiki/fortunes" title="fortunes">fortunes</a> = 19647.0 <a href="/wiki/puzzled" title="puzzled">puzzled</a> = 19639.1 <a href="/wiki/committee" title="committee">committee</a> = 19637.5 <a href="/wiki/aged" title="aged">aged</a> = 19628.8 <a href="/w/index.php?title=ohio&amp;action=edit&amp;redlink=1" class="new" title="ohio (page does not exist)">ohio</a> = 19605.1 <a href="/wiki/ashes" title="ashes">ashes</a> = 19593.2 <a href="/wiki/ghost" title="ghost">ghost</a> = 19563.9 <a href="/wiki/b" title="b">b</a> = 19549.7 <a href="/wiki/promises" title="promises">promises</a> = 19547.3 <a href="/wiki/bushes" title="bushes">bushes</a> = 19541.0 <a href="/wiki/effective" title="effective">effective</a> = 19525.9 <a href="/wiki/distinguish" title="distinguish">distinguish</a> = 19508.5 <a href="/wiki/manifest" title="manifest">manifest</a> = 19496.7 <a href="/wiki/comparatively" title="comparatively">comparatively</a> = 19486.4 <a href="/wiki/esteem" title="esteem">esteem</a> = 19478.5 <a href="/wiki/blew" title="blew">blew</a> = 19452.4 <a href="/wiki/revelation" title="revelation">revelation</a> = 19451.6 <a href="/wiki/wash" title="wash">wash</a> = 19425.5 <a href="/wiki/recognition" title="recognition">recognition</a> = 19417.6 <a href="/wiki/confession" title="confession">confession</a> = 19405.7 <a href="/wiki/clay" title="clay">clay</a> = 19398.6</p>
307
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=43" title="Edit section: 3701 - 3800">edit</a>]</span> <span class="mw-headline" id="3701_-_3800">3701 - 3800</span></h5>
308
+ <p><a href="/wiki/nonsense" title="nonsense">nonsense</a> = 19375.6 <a href="/wiki/trunk" title="trunk">trunk</a> = 19374.8 <a href="/wiki/management" title="management">management</a> = 19371.7 <a href="/wiki/undoubtedly" title="undoubtedly">undoubtedly</a> = 19371.7 <a href="/wiki/dried" title="dried">dried</a> = 19369.3 <a href="/w/index.php?title=dorothy&amp;action=edit&amp;redlink=1" class="new" title="dorothy (page does not exist)">dorothy</a> = 19360.6 <a href="/wiki/chiefs" title="chiefs">chiefs</a> = 19347.1 <a href="/wiki/coal" title="coal">coal</a> = 19337.7 <a href="/wiki/stolen" title="stolen">stolen</a> = 19337.7 <a href="/wiki/earthly" title="earthly">earthly</a> = 19335.3 <a href="/wiki/restore" title="restore">restore</a> = 19332.1 <a href="/wiki/indirectly" title="indirectly">indirectly</a> = 19327.4 <a href="/wiki/lasted" title="lasted">lasted</a> = 19324.2 <a href="/wiki/selfish" title="selfish">selfish</a> = 19316.3 <a href="/wiki/renewed" title="renewed">renewed</a> = 19313.9 <a href="/wiki/canoe" title="canoe">canoe</a> = 19310.8 <a href="/wiki/protest" title="protest">protest</a> = 19307.6 <a href="/wiki/vice" title="vice">vice</a> = 19294.1 <a href="/wiki/races" title="races">races</a> = 19291.0 <a href="/wiki/deemed" title="deemed">deemed</a> = 19279.1 <a href="/wiki/temporary" title="temporary">temporary</a> = 19278.3 <a href="/wiki/pile" title="pile">pile</a> = 19276.7 <a href="/w/index.php?title=frederick&amp;action=edit&amp;redlink=1" class="new" title="frederick (page does not exist)">frederick</a> = 19263.3 <a href="/wiki/chapel" title="chapel">chapel</a> = 19251.4 <a href="/wiki/moderate" title="moderate">moderate</a> = 19245.9 <a href="/wiki/spell" title="spell">spell</a> = 19236.4 <a href="/w/index.php?title=massachusetts&amp;action=edit&amp;redlink=1" class="new" title="massachusetts (page does not exist)">massachusetts</a> = 19235.6 <a href="/wiki/upright" title="upright">upright</a> = 19228.5 <a href="/wiki/quoted" title="quoted">quoted</a> = 19226.9 <a href="/wiki/area" title="area">area</a> = 19226.1 <a href="/wiki/bone" title="bone">bone</a> = 19221.4 <a href="/wiki/solitude" title="solitude">solitude</a> = 19215.8 <a href="/wiki/instruments" title="instruments">instruments</a> = 19215.0 <a href="/wiki/formal" title="formal">formal</a> = 19211.9 <a href="/wiki/students" title="students">students</a> = 19209.5 <a href="/wiki/greatness" title="greatness">greatness</a> = 19206.3 <a href="/wiki/struggling" title="struggling">struggling</a> = 19192.1 <a href="/wiki/monday" title="monday" class="mw-redirect">monday</a> = 19175.5 <a href="/wiki/reproach" title="reproach">reproach</a> = 19173.1 <a href="/wiki/altered" title="altered">altered</a> = 19167.6 <a href="/wiki/grim" title="grim">grim</a> = 19161.2 <a href="/wiki/leaped" title="leaped">leaped</a> = 19157.3 <a href="/w/index.php?title=venice&amp;action=edit&amp;redlink=1" class="new" title="venice (page does not exist)">venice</a> = 19153.3 <a href="/wiki/federal" title="federal">federal</a> = 19149.4 <a href="/wiki/questioned" title="questioned">questioned</a> = 19147.0 <a href="/wiki/editor" title="editor">editor</a> = 19143.0 <a href="/wiki/desirable" title="desirable">desirable</a> = 19141.5 <a href="/wiki/acknowledge" title="acknowledge">acknowledge</a> = 19137.5 <a href="/wiki/motionless" title="motionless">motionless</a> = 19137.5 <a href="/wiki/remedy" title="remedy">remedy</a> = 19135.9 <a href="/wiki/bestowed" title="bestowed">bestowed</a> = 19130.4 <a href="/wiki/pursue" title="pursue">pursue</a> = 19121.7 <a href="/wiki/representative" title="representative">representative</a> = 19117.7 <a href="/wiki/pole" title="pole">pole</a> = 19116.9 <a href="/wiki/gladly" title="gladly">gladly</a> = 19111.4 <a href="/wiki/linen" title="linen">linen</a> = 19109.8 <a href="/wiki/vital" title="vital">vital</a> = 19099.5 <a href="/wiki/sink" title="sink">sink</a> = 19096.4 <a href="/wiki/pacific" title="pacific">pacific</a> = 19093.2 <a href="/wiki/hopeless" title="hopeless">hopeless</a> = 19090.0 <a href="/wiki/dangers" title="dangers">dangers</a> = 19087.7 <a href="/wiki/gratefully" title="gratefully">gratefully</a> = 19087.7 <a href="/wiki/president" title="president">president</a> = 19068.7 <a href="/wiki/travelled" title="travelled">travelled</a> = 19061.5 <a href="/wiki/ward" title="ward">ward</a> = 19060.8 <a href="/wiki/nephew" title="nephew">nephew</a> = 19041.8 <a href="/wiki/ms" title="ms">ms</a> = 19038.6 <a href="/wiki/cheer" title="cheer">cheer</a> = 19029.9 <a href="/wiki/bloody" title="bloody">bloody</a> = 19023.6 <a href="/wiki/siege" title="siege">siege</a> = 19020.4 <a href="/wiki/commands" title="commands">commands</a> = 19005.4 <a href="/wiki/justified" title="justified">justified</a> = 19003.8 <a href="/wiki/atlantic" title="atlantic" class="mw-redirect">atlantic</a> = 18995.1 <a href="/wiki/stomach" title="stomach">stomach</a> = 18991.9 <a href="/wiki/improved" title="improved">improved</a> = 18971.4 <a href="/wiki/admire" title="admire">admire</a> = 18965.0 <a href="/wiki/openly" title="openly">openly</a> = 18962.7 <a href="/wiki/sailors" title="sailors">sailors</a> = 18961.1 <a href="/wiki/abide" title="abide">abide</a> = 18940.5 <a href="/wiki/advancing" title="advancing">advancing</a> = 18937.3 <a href="/wiki/forests" title="forests">forests</a> = 18927.1 <a href="/wiki/records" title="records">records</a> = 18920.7 <a href="/w/index.php?title=polly&amp;action=edit&amp;redlink=1" class="new" title="polly (page does not exist)">polly</a> = 18909.6 <a href="/wiki/recorded" title="recorded">recorded</a> = 18908.9 <a href="/wiki/modification" title="modification">modification</a> = 18904.9 <a href="/wiki/dramatic" title="dramatic">dramatic</a> = 18897.8 <a href="/wiki/statements" title="statements">statements</a> = 18891.5 <a href="/wiki/upstairs" title="upstairs">upstairs</a> = 18873.3 <a href="/wiki/varied" title="varied">varied</a> = 18858.2 <a href="/wiki/letting" title="letting">letting</a> = 18857.4 <a href="/wiki/wilson" title="wilson" class="mw-redirect">wilson</a> = 18857.4 <a href="/wiki/comrades" title="comrades">comrades</a> = 18855.9 <a href="/wiki/sets" title="sets">sets</a> = 18848.7 <a href="/wiki/descent" title="descent">descent</a> = 18847.9 <a href="/wiki/whither" title="whither">whither</a> = 18847.9 <a href="/wiki/envy" title="envy">envy</a> = 18837.7 <a href="/wiki/load" title="load">load</a> = 18836.9 <a href="/wiki/pretend" title="pretend">pretend</a> = 18834.5 <a href="/wiki/folded" title="folded">folded</a> = 18829.0 <a href="/wiki/brass" title="brass">brass</a> = 18824.2</p>
309
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=44" title="Edit section: 3801 - 3900">edit</a>]</span> <span class="mw-headline" id="3801_-_3900">3801 - 3900</span></h5>
310
+ <p><a href="/wiki/internal" title="internal">internal</a> = 18823.4 <a href="/wiki/furious" title="furious">furious</a> = 18820.3 <a href="/wiki/curtain" title="curtain">curtain</a> = 18816.3 <a href="/wiki/healthy" title="healthy">healthy</a> = 18814.7 <a href="/wiki/obscure" title="obscure">obscure</a> = 18810.0 <a href="/wiki/summit" title="summit">summit</a> = 18806.0 <a href="/wiki/alas" title="alas">alas</a> = 18755.4 <a href="/wiki/fifth" title="fifth">fifth</a> = 18753.0 <a href="/wiki/center" title="center">center</a> = 18747.5 <a href="/wiki/faced" title="faced">faced</a> = 18734.8 <a href="/wiki/cheap" title="cheap">cheap</a> = 18723.7 <a href="/wiki/saints" title="saints">saints</a> = 18722.9 <a href="/wiki/colonel" title="colonel">colonel</a> = 18721.4 <a href="/w/index.php?title=egyptian&amp;action=edit&amp;redlink=1" class="new" title="egyptian (page does not exist)">egyptian</a> = 18719.0 <a href="/wiki/contest" title="contest">contest</a> = 18707.9 <a href="/wiki/owned" title="owned">owned</a> = 18702.4 <a href="/wiki/adventures" title="adventures">adventures</a> = 18700.8 <a href="/wiki/exclusion" title="exclusion">exclusion</a> = 18688.1 <a href="/wiki/seize" title="seize">seize</a> = 18670.7 <a href="/wiki/chances" title="chances">chances</a> = 18669.9 <a href="/wiki/springs" title="springs">springs</a> = 18661.2 <a href="/wiki/alter" title="alter">alter</a> = 18660.4 <a href="/wiki/landing" title="landing">landing</a> = 18659.7 <a href="/wiki/fence" title="fence">fence</a> = 18652.5 <a href="/wiki/leagues" title="leagues">leagues</a> = 18642.2 <a href="/wiki/glimpse" title="glimpse">glimpse</a> = 18634.3 <a href="/wiki/statue" title="statue">statue</a> = 18632.0 <a href="/wiki/contract" title="contract">contract</a> = 18625.6 <a href="/wiki/luxury" title="luxury">luxury</a> = 18614.6 <a href="/wiki/artillery" title="artillery">artillery</a> = 18598.7 <a href="/wiki/doubts" title="doubts">doubts</a> = 18597.2 <a href="/wiki/saving" title="saving">saving</a> = 18594.8 <a href="/wiki/fro" title="fro">fro</a> = 18586.9 <a href="/wiki/string" title="string">string</a> = 18586.1 <a href="/wiki/combination" title="combination">combination</a> = 18582.9 <a href="/wiki/awakened" title="awakened">awakened</a> = 18575.8 <a href="/wiki/faded" title="faded">faded</a> = 18573.4 <a href="/wiki/arrest" title="arrest">arrest</a> = 18570.3 <a href="/wiki/protected" title="protected">protected</a> = 18568.7 <a href="/wiki/temperature" title="temperature">temperature</a> = 18567.1 <a href="/wiki/strict" title="strict">strict</a> = 18564.7 <a href="/wiki/contented" title="contented">contented</a> = 18563.9 <a href="/wiki/professional" title="professional">professional</a> = 18563.9 <a href="/wiki/intent" title="intent">intent</a> = 18559.2 <a href="/w/index.php?title=brother%27s&amp;action=edit&amp;redlink=1" class="new" title="brother's (page does not exist)">brother's</a> = 18548.9 <a href="/wiki/injured" title="injured">injured</a> = 18548.9 <a href="/wiki/neighborhood" title="neighborhood">neighborhood</a> = 18546.5 <a href="/w/index.php?title=andrew&amp;action=edit&amp;redlink=1" class="new" title="andrew (page does not exist)">andrew</a> = 18543.4 <a href="/wiki/abundance" title="abundance">abundance</a> = 18541.0 <a href="/wiki/smoking" title="smoking">smoking</a> = 18541.0 <a href="/wiki/yourselves" title="yourselves">yourselves</a> = 18529.9 <a href="/wiki/medical" title="medical">medical</a> = 18527.5 <a href="/wiki/garrison" title="garrison">garrison</a> = 18525.9 <a href="/wiki/likes" title="likes">likes</a> = 18508.5 <a href="/wiki/corps" title="corps">corps</a> = 18503.8 <a href="/wiki/heroic" title="heroic">heroic</a> = 18497.5 <a href="/wiki/inform" title="inform">inform</a> = 18494.3 <a href="/w/index.php?title=wife%27s&amp;action=edit&amp;redlink=1" class="new" title="wife's (page does not exist)">wife's</a> = 18488.8 <a href="/wiki/retained" title="retained">retained</a> = 18477.7 <a href="/wiki/agitation" title="agitation">agitation</a> = 18469.0 <a href="/wiki/nobles" title="nobles">nobles</a> = 18462.7 <a href="/wiki/prominent" title="prominent">prominent</a> = 18457.1 <a href="/wiki/institution" title="institution">institution</a> = 18454.0 <a href="/wiki/judged" title="judged">judged</a> = 18441.3 <a href="/wiki/embrace" title="embrace">embrace</a> = 18431.0 <a href="/wiki/wheels" title="wheels">wheels</a> = 18427.8 <a href="/wiki/closing" title="closing">closing</a> = 18397.8 <a href="/wiki/damaged" title="damaged">damaged</a> = 18391.5 <a href="/wiki/pack" title="pack">pack</a> = 18390.7 <a href="/wiki/affections" title="affections">affections</a> = 18389.1 <a href="/wiki/eldest" title="eldest">eldest</a> = 18389.1 <a href="/wiki/anguish" title="anguish">anguish</a> = 18382.8 <a href="/wiki/surrounding" title="surrounding">surrounding</a> = 18381.2 <a href="/wiki/obviously" title="obviously">obviously</a> = 18376.4 <a href="/wiki/strictly" title="strictly">strictly</a> = 18366.1 <a href="/wiki/capture" title="capture">capture</a> = 18344.0 <a href="/wiki/drops" title="drops">drops</a> = 18339.2 <a href="/wiki/inquire" title="inquire">inquire</a> = 18336.1 <a href="/wiki/ample" title="ample">ample</a> = 18328.2 <a href="/wiki/remainder" title="remainder">remainder</a> = 18325.8 <a href="/wiki/justly" title="justly">justly</a> = 18324.2 <a href="/wiki/recollection" title="recollection">recollection</a> = 18324.2 <a href="/wiki/deer" title="deer">deer</a> = 18321.0 <a href="/wiki/answers" title="answers">answers</a> = 18317.9 <a href="/wiki/bedroom" title="bedroom">bedroom</a> = 18311.6 <a href="/wiki/purely" title="purely">purely</a> = 18310.0 <a href="/wiki/bush" title="bush">bush</a> = 18306.8 <a href="/wiki/plunged" title="plunged">plunged</a> = 18299.7 <a href="/wiki/thyself" title="thyself">thyself</a> = 18296.5 <a href="/wiki/joint" title="joint">joint</a> = 18291.8 <a href="/wiki/refer" title="refer">refer</a> = 18275.9 <a href="/wiki/expecting" title="expecting">expecting</a> = 18274.4 <a href="/wiki/madam" title="madam">madam</a> = 18271.2 <a href="/wiki/railroad" title="railroad">railroad</a> = 18264.9 <a href="/wiki/spake" title="spake">spake</a> = 18253.8 <a href="/wiki/respecting" title="respecting">respecting</a> = 18252.2 <a href="/wiki/jan" title="jan">jan</a> = 18250.6 <a href="/wiki/columns" title="columns">columns</a> = 18248.3 <a href="/wiki/weep" title="weep">weep</a> = 18242.7 <a href="/wiki/identify" title="identify">identify</a> = 18232.4</p>
311
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=45" title="Edit section: 3901 - 4000">edit</a>]</span> <span class="mw-headline" id="3901_-_4000">3901 - 4000</span></h5>
312
+ <p><a href="/wiki/discharge" title="discharge">discharge</a> = 18215.8 <a href="/wiki/bench" title="bench">bench</a> = 18207.1 <a href="/wiki/ralph" title="ralph">ralph</a> = 18196.0 <a href="/wiki/heir" title="heir">heir</a> = 18192.9 <a href="/wiki/oak" title="oak">oak</a> = 18186.6 <a href="/wiki/rescue" title="rescue">rescue</a> = 18177.1 <a href="/wiki/limit" title="limit">limit</a> = 18168.4 <a href="/wiki/unpleasant" title="unpleasant">unpleasant</a> = 18163.6 <a href="/wiki/anxiously" title="anxiously">anxiously</a> = 18159.7 <a href="/wiki/innocence" title="innocence">innocence</a> = 18153.3 <a href="/wiki/awoke" title="awoke">awoke</a> = 18151.7 <a href="/wiki/expectation" title="expectation">expectation</a> = 18145.4 <a href="/wiki/incomplete" title="incomplete">incomplete</a> = 18143.8 <a href="/wiki/program" title="program">program</a> = 18109.8 <a href="/wiki/reserved" title="reserved">reserved</a> = 18096.4 <a href="/wiki/secretly" title="secretly">secretly</a> = 18083.7 <a href="/wiki/we%27ve" title="we've">we've</a> = 18079.7 <a href="/wiki/invention" title="invention">invention</a> = 18079.0 <a href="/wiki/faults" title="faults">faults</a> = 18075.8 <a href="/wiki/disagreeable" title="disagreeable">disagreeable</a> = 18074.2 <a href="/wiki/piano" title="piano">piano</a> = 18074.2 <a href="/wiki/defeated" title="defeated">defeated</a> = 18073.4 <a href="/wiki/charms" title="charms">charms</a> = 18072.6 <a href="/wiki/purse" title="purse">purse</a> = 18067.9 <a href="/wiki/persuade" title="persuade">persuade</a> = 18066.3 <a href="/wiki/deprived" title="deprived">deprived</a> = 18063.1 <a href="/wiki/electric" title="electric">electric</a> = 18058.4 <a href="/wiki/endless" title="endless">endless</a> = 18058.4 <a href="/wiki/interval" title="interval">interval</a> = 18054.4 <a href="/wiki/chase" title="chase">chase</a> = 18052.8 <a href="/wiki/heroes" title="heroes">heroes</a> = 18052.1 <a href="/wiki/invisible" title="invisible">invisible</a> = 18048.9 <a href="/wiki/well-known" title="well-known">well-known</a> = 18044.9 <a href="/wiki/occupy" title="occupy">occupy</a> = 18038.6 <a href="/w/index.php?title=jacob&amp;action=edit&amp;redlink=1" class="new" title="jacob (page does not exist)">jacob</a> = 18036.2 <a href="/wiki/gown" title="gown">gown</a> = 18026.0 <a href="/wiki/cruelty" title="cruelty">cruelty</a> = 18021.2 <a href="/wiki/lock" title="lock">lock</a> = 18018.0 <a href="/wiki/lowest" title="lowest">lowest</a> = 18007.8 <a href="/wiki/hesitation" title="hesitation">hesitation</a> = 18003.8 <a href="/wiki/withdrew" title="withdrew">withdrew</a> = 18003.8 <a href="/wiki/proposal" title="proposal">proposal</a> = 18001.4 <a href="/wiki/destiny" title="destiny">destiny</a> = 17999.1 <a href="/wiki/recognised" title="recognised">recognised</a> = 17998.3 <a href="/wiki/commons" title="commons">commons</a> = 17995.1 <a href="/wiki/foul" title="foul">foul</a> = 17994.3 <a href="/wiki/loaded" title="loaded">loaded</a> = 17991.9 <a href="/wiki/amidst" title="amidst">amidst</a> = 17989.6 <a href="/wiki/titles" title="titles">titles</a> = 17984.8 <a href="/wiki/ancestors" title="ancestors">ancestors</a> = 17984.0 <a href="/wiki/types" title="types">types</a> = 17972.2 <a href="/wiki/commanding" title="commanding">commanding</a> = 17959.5 <a href="/wiki/madness" title="madness">madness</a> = 17954.7 <a href="/wiki/happily" title="happily">happily</a> = 17954.0 <a href="/wiki/assigned" title="assigned">assigned</a> = 17951.6 <a href="/wiki/declined" title="declined">declined</a> = 17932.6 <a href="/wiki/temptation" title="temptation">temptation</a> = 17932.6 <a href="/w/index.php?title=lady%27s&amp;action=edit&amp;redlink=1" class="new" title="lady's (page does not exist)">lady's</a> = 17929.4 <a href="/wiki/subsequent" title="subsequent">subsequent</a> = 17917.6 <a href="/wiki/jewels" title="jewels">jewels</a> = 17912.8 <a href="/wiki/breathed" title="breathed">breathed</a> = 17910.4 <a href="/wiki/willingly" title="willingly">willingly</a> = 17906.5 <a href="/wiki/youthful" title="youthful">youthful</a> = 17906.5 <a href="/wiki/bells" title="bells">bells</a> = 17904.1 <a href="/wiki/spectacle" title="spectacle">spectacle</a> = 17903.3 <a href="/wiki/uneasy" title="uneasy">uneasy</a> = 17897.8 <a href="/wiki/shine" title="shine">shine</a> = 17896.2 <a href="/wiki/formidable" title="formidable">formidable</a> = 17893.0 <a href="/wiki/stately" title="stately">stately</a> = 17892.2 <a href="/wiki/machinery" title="machinery">machinery</a> = 17886.7 <a href="/wiki/fragments" title="fragments">fragments</a> = 17875.6 <a href="/wiki/rushing" title="rushing">rushing</a> = 17859.0 <a href="/wiki/attractive" title="attractive">attractive</a> = 17857.4 <a href="/wiki/product" title="product">product</a> = 17857.4 <a href="/wiki/economic" title="economic">economic</a> = 17854.3 <a href="/wiki/sickness" title="sickness">sickness</a> = 17847.9 <a href="/wiki/uses" title="uses">uses</a> = 17822.6 <a href="/wiki/dashed" title="dashed">dashed</a> = 17819.5 <a href="/wiki/engine" title="engine">engine</a> = 17817.1 <a href="/wiki/ashore" title="ashore">ashore</a> = 17813.9 <a href="/wiki/dates" title="dates">dates</a> = 17805.2 <a href="/wiki/theirs" title="theirs">theirs</a> = 17793.4 <a href="/wiki/adv" title="adv">adv</a> = 17783.1 <a href="/wiki/clasped" title="clasped">clasped</a> = 17773.6 <a href="/wiki/international" title="international">international</a> = 17772.8 <a href="/wiki/leather" title="leather">leather</a> = 17768.8 <a href="/wiki/spared" title="spared">spared</a> = 17758.5 <a href="/wiki/crushed" title="crushed">crushed</a> = 17753.0 <a href="/wiki/interfere" title="interfere">interfere</a> = 17748.3 <a href="/wiki/subtle" title="subtle">subtle</a> = 17745.9 <a href="/wiki/waved" title="waved">waved</a> = 17743.5 <a href="/wiki/slope" title="slope">slope</a> = 17739.6 <a href="/wiki/floating" title="floating">floating</a> = 17737.2 <a href="/wiki/worry" title="worry">worry</a> = 17730.1 <a href="/wiki/effected" title="effected">effected</a> = 17725.3 <a href="/wiki/passengers" title="passengers">passengers</a> = 17723.7 <a href="/wiki/violently" title="violently">violently</a> = 17715.8 <a href="/wiki/donation" title="donation">donation</a> = 17715.0 <a href="/wiki/steamer" title="steamer">steamer</a> = 17714.2 <a href="/wiki/witnesses" title="witnesses">witnesses</a> = 17712.7</p>
313
+ <h4><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=46" title="Edit section: 4001 - 5000">edit</a>]</span> <span class="mw-headline" id="4001_-_5000">4001 - 5000</span></h4>
314
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=47" title="Edit section: 4001 - 4100">edit</a>]</span> <span class="mw-headline" id="4001_-_4100">4001 - 4100</span></h5>
315
+ <p><a href="/wiki/specified" title="specified">specified</a> = 17710.3 <a href="/wiki/learnt" title="learnt">learnt</a> = 17698.4 <a href="/wiki/stores" title="stores">stores</a> = 17677.9 <a href="/wiki/designed" title="designed">designed</a> = 17666.8 <a href="/wiki/guessed" title="guessed">guessed</a> = 17654.9 <a href="/wiki/roger" title="roger">roger</a> = 17654.9 <a href="/wiki/timber" title="timber">timber</a> = 17654.1 <a href="/wiki/talents" title="talents">talents</a> = 17639.9 <a href="/wiki/heed" title="heed">heed</a> = 17636.7 <a href="/w/index.php?title=jackson&amp;action=edit&amp;redlink=1" class="new" title="jackson (page does not exist)">jackson</a> = 17631.2 <a href="/wiki/murdered" title="murdered">murdered</a> = 17629.6 <a href="/wiki/vivid" title="vivid">vivid</a> = 17628.0 <a href="/wiki/woe" title="woe">woe</a> = 17614.6 <a href="/wiki/calculate" title="calculate">calculate</a> = 17612.2 <a href="/wiki/killing" title="killing">killing</a> = 17608.2 <a href="/wiki/laura" title="laura">laura</a> = 17605.9 <a href="/wiki/savages" title="savages">savages</a> = 17603.5 <a href="/wiki/wasted" title="wasted">wasted</a> = 17600.3 <a href="/wiki/trifle" title="trifle">trifle</a> = 17584.5 <a href="/wiki/funny" title="funny">funny</a> = 17576.6 <a href="/wiki/pockets" title="pockets">pockets</a> = 17560.0 <a href="/wiki/philosopher" title="philosopher">philosopher</a> = 17552.9 <a href="/wiki/insult" title="insult">insult</a> = 17544.2 <a href="/wiki/den" title="den">den</a> = 17543.4 <a href="/wiki/representation" title="representation">representation</a> = 17541.0 <a href="/wiki/incapable" title="incapable">incapable</a> = 17538.6 <a href="/wiki/eloquence" title="eloquence">eloquence</a> = 17537.0 <a href="/wiki/dine" title="dine">dine</a> = 17526.7 <a href="/wiki/temples" title="temples">temples</a> = 17526.0 <a href="/wiki/ann" title="ann">ann</a> = 17521.2 <a href="/wiki/sensitive" title="sensitive">sensitive</a> = 17519.6 <a href="/wiki/robin" title="robin">robin</a> = 17518.8 <a href="/wiki/appetite" title="appetite">appetite</a> = 17507.0 <a href="/wiki/wishing" title="wishing">wishing</a> = 17501.4 <a href="/wiki/picturesque" title="picturesque">picturesque</a> = 17495.9 <a href="/w/index.php?title=douglas&amp;action=edit&amp;redlink=1" class="new" title="douglas (page does not exist)">douglas</a> = 17494.3 <a href="/wiki/courtesy" title="courtesy">courtesy</a> = 17472.2 <a href="/wiki/flowing" title="flowing">flowing</a> = 17467.4 <a href="/wiki/remembrance" title="remembrance">remembrance</a> = 17465.8 <a href="/wiki/lawyers" title="lawyers">lawyers</a> = 17464.2 <a href="/wiki/sphere" title="sphere">sphere</a> = 17464.2 <a href="/wiki/murmur" title="murmur">murmur</a> = 17463.5 <a href="/wiki/elegant" title="elegant">elegant</a> = 17460.3 <a href="/wiki/honourable" title="honourable">honourable</a> = 17453.2 <a href="/wiki/stopping" title="stopping">stopping</a> = 17452.4 <a href="/wiki/guilt" title="guilt">guilt</a> = 17440.5 <a href="/wiki/welfare" title="welfare">welfare</a> = 17437.3 <a href="/wiki/avoided" title="avoided">avoided</a> = 17429.4 <a href="/wiki/fishing" title="fishing">fishing</a> = 17423.9 <a href="/wiki/perish" title="perish">perish</a> = 17420.7 <a href="/wiki/sober" title="sober">sober</a> = 17416.0 <a href="/wiki/steal" title="steal">steal</a> = 17415.2 <a href="/wiki/delicious" title="delicious">delicious</a> = 17401.0 <a href="/wiki/infant" title="infant">infant</a> = 17393.8 <a href="/wiki/lip" title="lip">lip</a> = 17393.0 <a href="/wiki/norman" title="norman">norman</a> = 17392.3 <a href="/wiki/offended" title="offended">offended</a> = 17392.3 <a href="/wiki/dost" title="dost">dost</a> = 17373.3 <a href="/wiki/memories" title="memories">memories</a> = 17358.2 <a href="/wiki/wheat" title="wheat">wheat</a> = 17354.3 <a href="/w/index.php?title=japanese&amp;action=edit&amp;redlink=1" class="new" title="japanese (page does not exist)">japanese</a> = 17343.2 <a href="/wiki/humor" title="humor">humor</a> = 17342.4 <a href="/wiki/exhibited" title="exhibited">exhibited</a> = 17329.0 <a href="/wiki/encounter" title="encounter">encounter</a> = 17321.8 <a href="/wiki/footsteps" title="footsteps">footsteps</a> = 17314.7 <a href="/wiki/marquis" title="marquis">marquis</a> = 17308.4 <a href="/wiki/smiles" title="smiles">smiles</a> = 17302.1 <a href="/wiki/amiable" title="amiable">amiable</a> = 17294.9 <a href="/wiki/twilight" title="twilight">twilight</a> = 17290.2 <a href="/wiki/arrows" title="arrows">arrows</a> = 17287.8 <a href="/wiki/consisting" title="consisting">consisting</a> = 17287.0 <a href="/wiki/park" title="park">park</a> = 17285.4 <a href="/wiki/retire" title="retire">retire</a> = 17280.7 <a href="/wiki/economy" title="economy">economy</a> = 17278.3 <a href="/wiki/sufferings" title="sufferings">sufferings</a> = 17276.7 <a href="/wiki/secrets" title="secrets">secrets</a> = 17276.0 <a href="/wiki/na" title="na">na</a> = 17275.2 <a href="/wiki/halted" title="halted">halted</a> = 17268.0 <a href="/wiki/govern" title="govern">govern</a> = 17262.5 <a href="/wiki/favourable" title="favourable">favourable</a> = 17260.9 <a href="/wiki/colors" title="colors">colors</a> = 17248.3 <a href="/wiki/translated" title="translated">translated</a> = 17245.9 <a href="/wiki/stretch" title="stretch">stretch</a> = 17245.1 <a href="/wiki/formation" title="formation">formation</a> = 17240.4 <a href="/wiki/immortal" title="immortal">immortal</a> = 17234.8 <a href="/wiki/gallery" title="gallery">gallery</a> = 17233.2 <a href="/wiki/parallel" title="parallel">parallel</a> = 17233.2 <a href="/wiki/lean" title="lean">lean</a> = 17230.1 <a href="/wiki/tempted" title="tempted">tempted</a> = 17229.3 <a href="/wiki/frontier" title="frontier">frontier</a> = 17228.5 <a href="/wiki/continent" title="continent">continent</a> = 17226.1 <a href="/wiki/knock" title="knock">knock</a> = 17221.4 <a href="/wiki/impatience" title="impatience">impatience</a> = 17210.3 <a href="/wiki/unity" title="unity">unity</a> = 17210.3 <a href="/wiki/dealing" title="dealing">dealing</a> = 17192.9 <a href="/wiki/prohibition" title="prohibition">prohibition</a> = 17169.9 <a href="/wiki/decent" title="decent">decent</a> = 17166.8 <a href="/wiki/fiery" title="fiery">fiery</a> = 17163.6 <a href="/wiki/images" title="images">images</a> = 17163.6 <a href="/wiki/tie" title="tie">tie</a> = 17162.8</p>
316
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=48" title="Edit section: 4101 - 4200">edit</a>]</span> <span class="mw-headline" id="4101_-_4200">4101 - 4200</span></h5>
317
+ <p><a href="/wiki/punished" title="punished">punished</a> = 17161.2 <a href="/wiki/submitted" title="submitted">submitted</a> = 17161.2 <a href="/w/index.php?title=julia&amp;action=edit&amp;redlink=1" class="new" title="julia (page does not exist)">julia</a> = 17140.7 <a href="/w/index.php?title=albert&amp;action=edit&amp;redlink=1" class="new" title="albert (page does not exist)">albert</a> = 17127.2 <a href="/wiki/rejoined" title="rejoined">rejoined</a> = 17126.4 <a href="/wiki/speedily" title="speedily">speedily</a> = 17125.6 <a href="/wiki/consented" title="consented">consented</a> = 17122.5 <a href="/wiki/major" title="major">major</a> = 17113.8 <a href="/wiki/preliminary" title="preliminary">preliminary</a> = 17113.8 <a href="/wiki/cell" title="cell">cell</a> = 17112.2 <a href="/wiki/void" title="void">void</a> = 17112.2 <a href="/wiki/placing" title="placing">placing</a> = 17111.4 <a href="/wiki/prudence" title="prudence">prudence</a> = 17103.5 <a href="/wiki/egg" title="egg">egg</a> = 17096.4 <a href="/wiki/amazement" title="amazement">amazement</a> = 17090.0 <a href="/wiki/border" title="border">border</a> = 17086.9 <a href="/wiki/artificial" title="artificial">artificial</a> = 17080.5 <a href="/wiki/hereafter" title="hereafter">hereafter</a> = 17075.8 <a href="/wiki/fanny" title="fanny">fanny</a> = 17065.5 <a href="/wiki/crimes" title="crimes">crimes</a> = 17063.1 <a href="/wiki/breathe" title="breathe">breathe</a> = 17060.0 <a href="/wiki/exempt" title="exempt">exempt</a> = 17056.8 <a href="/wiki/anchor" title="anchor">anchor</a> = 17037.8 <a href="/w/index.php?title=chicago&amp;action=edit&amp;redlink=1" class="new" title="chicago (page does not exist)">chicago</a> = 17037.8 <a href="/wiki/sits" title="sits">sits</a> = 17036.2 <a href="/wiki/purchased" title="purchased">purchased</a> = 17032.3 <a href="/wiki/eminent" title="eminent">eminent</a> = 17031.5 <a href="/wiki/neighbors" title="neighbors">neighbors</a> = 17029.1 <a href="/wiki/glowing" title="glowing">glowing</a> = 17016.5 <a href="/wiki/sunlight" title="sunlight">sunlight</a> = 17008.6 <a href="/wiki/examples" title="examples">examples</a> = 17006.2 <a href="/wiki/exercised" title="exercised">exercised</a> = 17005.4 <a href="/wiki/wealthy" title="wealthy">wealthy</a> = 17003.8 <a href="/wiki/seeming" title="seeming">seeming</a> = 16999.1 <a href="/w/index.php?title=bonaparte&amp;action=edit&amp;redlink=1" class="new" title="bonaparte (page does not exist)">bonaparte</a> = 16995.1 <a href="/wiki/shouting" title="shouting">shouting</a> = 16994.3 <a href="/wiki/thanked" title="thanked">thanked</a> = 16992.7 <a href="/wiki/illustrious" title="illustrious">illustrious</a> = 16985.6 <a href="/wiki/curiously" title="curiously">curiously</a> = 16984.8 <a href="/wiki/inspiration" title="inspiration">inspiration</a> = 16984.0 <a href="/wiki/seeds" title="seeds">seeds</a> = 16983.2 <a href="/wiki/naval" title="naval">naval</a> = 16971.4 <a href="/wiki/foes" title="foes">foes</a> = 16954.8 <a href="/wiki/everyone" title="everyone">everyone</a> = 16950.8 <a href="/wiki/longed" title="longed">longed</a> = 16944.5 <a href="/wiki/abundant" title="abundant">abundant</a> = 16940.5 <a href="/wiki/doubted" title="doubted">doubted</a> = 16936.6 <a href="/wiki/painter" title="painter">painter</a> = 16933.4 <a href="/wiki/greeted" title="greeted">greeted</a> = 16931.0 <a href="/wiki/erect" title="erect">erect</a> = 16929.4 <a href="/wiki/glasses" title="glasses">glasses</a> = 16926.3 <a href="/wiki/meanwhile" title="meanwhile">meanwhile</a> = 16926.3 <a href="/wiki/shooting" title="shooting">shooting</a> = 16918.4 <a href="/w/index.php?title=athens&amp;action=edit&amp;redlink=1" class="new" title="athens (page does not exist)">athens</a> = 16914.4 <a href="/wiki/wagon" title="wagon">wagon</a> = 16913.6 <a href="/wiki/lend" title="lend">lend</a> = 16903.3 <a href="/wiki/lent" title="lent">lent</a> = 16901.7 <a href="/wiki/crisis" title="crisis">crisis</a> = 16892.3 <a href="/wiki/undertake" title="undertake">undertake</a> = 16885.9 <a href="/wiki/particulars" title="particulars">particulars</a> = 16872.5 <a href="/wiki/eh" title="eh">eh</a> = 16870.9 <a href="/wiki/veins" title="veins">veins</a> = 16869.3 <a href="/wiki/polite" title="polite">polite</a> = 16864.6 <a href="/wiki/anna" title="anna">anna</a> = 16863.0 <a href="/wiki/experiences" title="experiences">experiences</a> = 16859.0 <a href="/wiki/seal" title="seal">seal</a> = 16858.2 <a href="/wiki/header" title="header">header</a> = 16850.3 <a href="/wiki/clergy" title="clergy">clergy</a> = 16848.7 <a href="/wiki/mount" title="mount">mount</a> = 16843.2 <a href="/wiki/array" title="array">array</a> = 16834.5 <a href="/wiki/corners" title="corners">corners</a> = 16834.5 <a href="/wiki/magazine" title="magazine">magazine</a> = 16833.7 <a href="/wiki/loudly" title="loudly">loudly</a> = 16832.1 <a href="/wiki/bitterness" title="bitterness">bitterness</a> = 16825.8 <a href="/wiki/texas" title="texas">texas</a> = 16816.3 <a href="/wiki/guardian" title="guardian">guardian</a> = 16813.1 <a href="/wiki/searching" title="searching">searching</a> = 16811.6 <a href="/wiki/rejected" title="rejected">rejected</a> = 16802.1 <a href="/wiki/harsh" title="harsh">harsh</a> = 16801.3 <a href="/wiki/includes" title="includes">includes</a> = 16800.5 <a href="/wiki/boldly" title="boldly">boldly</a> = 16791.8 <a href="/w/index.php?title=maurice&amp;action=edit&amp;redlink=1" class="new" title="maurice (page does not exist)">maurice</a> = 16791.8 <a href="/wiki/kate" title="kate">kate</a> = 16790.2 <a href="/wiki/lunch" title="lunch">lunch</a> = 16786.2 <a href="/wiki/pine" title="pine">pine</a> = 16785.5 <a href="/wiki/shells" title="shells">shells</a> = 16783.9 <a href="/wiki/seconds" title="seconds">seconds</a> = 16783.1 <a href="/wiki/despite" title="despite">despite</a> = 16779.1 <a href="/wiki/hoping" title="hoping">hoping</a> = 16776.7 <a href="/wiki/injustice" title="injustice">injustice</a> = 16768.0 <a href="/wiki/expressions" title="expressions">expressions</a> = 16766.5 <a href="/wiki/flies" title="flies">flies</a> = 16766.5 <a href="/wiki/push" title="push">push</a> = 16757.0 <a href="/wiki/tight" title="tight">tight</a> = 16756.2 <a href="/wiki/problems" title="problems">problems</a> = 16753.0 <a href="/wiki/landscape" title="landscape">landscape</a> = 16749.1 <a href="/wiki/sue" title="sue">sue</a> = 16742.7 <a href="/wiki/protested" title="protested">protested</a> = 16739.6 <a href="/wiki/scarlet" title="scarlet">scarlet</a> = 16734.8 <a href="/wiki/abandon" title="abandon">abandon</a> = 16734.0</p>
318
+ <p><br /></p>
319
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=49" title="Edit section: 4201 - 4300">edit</a>]</span> <span class="mw-headline" id="4201_-_4300">4201 - 4300</span></h5>
320
+ <p><a href="/wiki/artistic" title="artistic">artistic</a> = 16721.4 <a href="/wiki/mainly" title="mainly">mainly</a> = 16720.6 <a href="/wiki/measured" title="measured">measured</a> = 16688.9 <a href="/wiki/loyal" title="loyal">loyal</a> = 16683.4 <a href="/wiki/boiling" title="boiling">boiling</a> = 16681.8 <a href="/wiki/desirous" title="desirous">desirous</a> = 16644.6 <a href="/wiki/suited" title="suited">suited</a> = 16644.6 <a href="/wiki/alliance" title="alliance">alliance</a> = 16641.5 <a href="/wiki/advise" title="advise">advise</a> = 16635.1 <a href="/wiki/waist" title="waist">waist</a> = 16634.3 <a href="/wiki/sinking" title="sinking">sinking</a> = 16631.2 <a href="/wiki/apprehension" title="apprehension">apprehension</a> = 16616.1 <a href="/wiki/stable" title="stable">stable</a> = 16611.4 <a href="/w/index.php?title=gregory&amp;action=edit&amp;redlink=1" class="new" title="gregory (page does not exist)">gregory</a> = 16607.4 <a href="/wiki/maximum" title="maximum">maximum</a> = 16592.4 <a href="/wiki/commit" title="commit">commit</a> = 16590.0 <a href="/wiki/hideous" title="hideous">hideous</a> = 16575.0 <a href="/wiki/hamilton" title="hamilton">hamilton</a> = 16571.1 <a href="/wiki/sweetness" title="sweetness">sweetness</a> = 16566.3 <a href="/wiki/dismissed" title="dismissed">dismissed</a> = 16563.9 <a href="/wiki/tore" title="tore">tore</a> = 16560.8 <a href="/wiki/affect" title="affect">affect</a> = 16558.4 <a href="/wiki/shaken" title="shaken">shaken</a> = 16556.0 <a href="/wiki/evils" title="evils">evils</a> = 16552.1 <a href="/wiki/unworthy" title="unworthy">unworthy</a> = 16547.3 <a href="/wiki/significance" title="significance">significance</a> = 16544.9 <a href="/wiki/modified" title="modified">modified</a> = 16531.5 <a href="/wiki/miracle" title="miracle">miracle</a> = 16529.9 <a href="/wiki/lieu" title="lieu">lieu</a> = 16522.0 <a href="/wiki/peasant" title="peasant">peasant</a> = 16519.6 <a href="/wiki/considerably" title="considerably">considerably</a> = 16501.4 <a href="/wiki/observing" title="observing">observing</a> = 16495.9 <a href="/wiki/conveyed" title="conveyed">conveyed</a> = 16494.3 <a href="/wiki/resemblance" title="resemblance">resemblance</a> = 16475.3 <a href="/wiki/extend" title="extend">extend</a> = 16473.0 <a href="/wiki/riches" title="riches">riches</a> = 16471.4 <a href="/wiki/personally" title="personally">personally</a> = 16466.6 <a href="/wiki/morality" title="morality">morality</a> = 16455.5 <a href="/wiki/rebellion" title="rebellion">rebellion</a> = 16450.8 <a href="/wiki/thread" title="thread">thread</a> = 16435.8 <a href="/wiki/dumb" title="dumb">dumb</a> = 16431.8 <a href="/wiki/inclination" title="inclination">inclination</a> = 16427.9 <a href="/wiki/forbidden" title="forbidden">forbidden</a> = 16427.1 <a href="/wiki/copper" title="copper">copper</a> = 16426.3 <a href="/wiki/differences" title="differences">differences</a> = 16418.4 <a href="/wiki/sailor" title="sailor">sailor</a> = 16411.2 <a href="/wiki/requested" title="requested">requested</a> = 16408.1 <a href="/w/index.php?title=alfred&amp;action=edit&amp;redlink=1" class="new" title="alfred (page does not exist)">alfred</a> = 16401.8 <a href="/wiki/response" title="response">response</a> = 16401.8 <a href="/wiki/promoting" title="promoting">promoting</a> = 16398.6 <a href="/wiki/imperial" title="imperial">imperial</a> = 16392.3 <a href="/wiki/blank" title="blank">blank</a> = 16390.7 <a href="/wiki/purity" title="purity">purity</a> = 16382.8 <a href="/wiki/victor" title="victor">victor</a> = 16382.8 <a href="/wiki/bending" title="bending">bending</a> = 16376.4 <a href="/wiki/solemnly" title="solemnly">solemnly</a> = 16363.0 <a href="/wiki/twenty-four" title="twenty-four">twenty-four</a> = 16363.0 <a href="/wiki/minor" title="minor">minor</a> = 16356.7 <a href="/wiki/del" title="del">del</a> = 16353.5 <a href="/wiki/crimson" title="crimson">crimson</a> = 16348.7 <a href="/wiki/republic" title="republic">republic</a> = 16343.2 <a href="/wiki/teachers" title="teachers">teachers</a> = 16332.9 <a href="/wiki/ma%27am" title="ma'am">ma'am</a> = 16329.8 <a href="/wiki/danced" title="danced">danced</a> = 16326.6 <a href="/wiki/bargain" title="bargain">bargain</a> = 16325.8 <a href="/wiki/dealt" title="dealt">dealt</a> = 16321.8 <a href="/wiki/fatigue" title="fatigue">fatigue</a> = 16319.5 <a href="/wiki/telephone" title="telephone">telephone</a> = 16317.9 <a href="/wiki/cents" title="cents">cents</a> = 16317.1 <a href="/wiki/whip" title="whip">whip</a> = 16310.8 <a href="/w/index.php?title=adams&amp;action=edit&amp;redlink=1" class="new" title="adams (page does not exist)">adams</a> = 16303.7 <a href="/wiki/dislike" title="dislike">dislike</a> = 16280.7 <a href="/wiki/witnessed" title="witnessed">witnessed</a> = 16265.7 <a href="/wiki/infantry" title="infantry">infantry</a> = 16260.9 <a href="/wiki/acres" title="acres">acres</a> = 16254.6 <a href="/wiki/checked" title="checked">checked</a> = 16253.8 <a href="/wiki/countrymen" title="countrymen">countrymen</a> = 16252.2 <a href="/w/index.php?title=enemy%27s&amp;action=edit&amp;redlink=1" class="new" title="enemy's (page does not exist)">enemy's</a> = 16249.9 <a href="/wiki/companies" title="companies">companies</a> = 16249.1 <a href="/wiki/normal" title="normal">normal</a> = 16248.3 <a href="/wiki/shirt" title="shirt">shirt</a> = 16247.5 <a href="/wiki/addresses" title="addresses">addresses</a> = 16243.5 <a href="/wiki/introduce" title="introduce">introduce</a> = 16242.7 <a href="/wiki/sofa" title="sofa">sofa</a> = 16237.2 <a href="/wiki/mothers" title="mothers">mothers</a> = 16235.6 <a href="/wiki/sweep" title="sweep">sweep</a> = 16222.2 <a href="/wiki/conversion" title="conversion">conversion</a> = 16219.8 <a href="/wiki/sketch" title="sketch">sketch</a> = 16215.0 <a href="/wiki/african" title="african">african</a> = 16205.6 <a href="/wiki/deserved" title="deserved">deserved</a> = 16204.0 <a href="/wiki/answering" title="answering">answering</a> = 16200.0 <a href="/wiki/virtuous" title="virtuous">virtuous</a> = 16198.4 <a href="/wiki/persian" title="persian">persian</a> = 16176.3 <a href="/wiki/anyway" title="anyway">anyway</a> = 16169.9 <a href="/wiki/thief" title="thief">thief</a> = 16152.5 <a href="/wiki/driver" title="driver">driver</a> = 16147.8 <a href="/wiki/retain" title="retain">retain</a> = 16145.4 <a href="/wiki/constructed" title="constructed">constructed</a> = 16144.6 <a href="/wiki/daniel" title="daniel">daniel</a> = 16143.8 <a href="/wiki/ut" title="ut">ut</a> = 16132.8</p>
321
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=50" title="Edit section: 4301 - 4400">edit</a>]</span> <span class="mw-headline" id="4301_-_4400">4301 - 4400</span></h5>
322
+ <p><a href="/w/index.php?title=philadelphia&amp;action=edit&amp;redlink=1" class="new" title="philadelphia (page does not exist)">philadelphia</a> = 16130.4 <a href="/wiki/conspicuous" title="conspicuous">conspicuous</a> = 16129.6 <a href="/wiki/channel" title="channel">channel</a> = 16126.4 <a href="/wiki/nobility" title="nobility">nobility</a> = 16124.1 <a href="/w/index.php?title=edith&amp;action=edit&amp;redlink=1" class="new" title="edith (page does not exist)">edith</a> = 16114.6 <a href="/w/index.php?title=berlin&amp;action=edit&amp;redlink=1" class="new" title="berlin (page does not exist)">berlin</a> = 16113.8 <a href="/wiki/editing" title="editing">editing</a> = 16105.9 <a href="/w/index.php?title=cambridge&amp;action=edit&amp;redlink=1" class="new" title="cambridge (page does not exist)">cambridge</a> = 16103.5 <a href="/wiki/declaration" title="declaration">declaration</a> = 16094.8 <a href="/wiki/guards" title="guards">guards</a> = 16094.8 <a href="/wiki/personality" title="personality">personality</a> = 16088.5 <a href="/wiki/smallest" title="smallest">smallest</a> = 16080.6 <a href="/wiki/excess" title="excess">excess</a> = 16077.4 <a href="/wiki/separation" title="separation">separation</a> = 16075.8 <a href="/wiki/disgust" title="disgust">disgust</a> = 16071.8 <a href="/wiki/ha" title="ha">ha</a> = 16062.4 <a href="/wiki/accomplish" title="accomplish">accomplish</a> = 16054.4 <a href="/wiki/speeches" title="speeches">speeches</a> = 16054.4 <a href="/wiki/herbert" title="herbert">herbert</a> = 16053.7 <a href="/wiki/convent" title="convent">convent</a> = 16048.1 <a href="/wiki/rightly" title="rightly">rightly</a> = 16044.2 <a href="/wiki/suspended" title="suspended">suspended</a> = 16042.6 <a href="/wiki/reform" title="reform">reform</a> = 16035.5 <a href="/wiki/mob" title="mob">mob</a> = 16028.3 <a href="/wiki/thirst" title="thirst">thirst</a> = 16027.5 <a href="/wiki/unnecessary" title="unnecessary">unnecessary</a> = 16021.2 <a href="/wiki/treasures" title="treasures">treasures</a> = 16018.8 <a href="/wiki/asks" title="asks">asks</a> = 16018.1 <a href="/wiki/viewed" title="viewed">viewed</a> = 16016.5 <a href="/wiki/designs" title="designs">designs</a> = 16004.6 <a href="/wiki/gleam" title="gleam">gleam</a> = 16000.6 <a href="/wiki/threatening" title="threatening">threatening</a> = 15999.1 <a href="/wiki/palm" title="palm">palm</a> = 15994.3 <a href="/w/index.php?title=missouri&amp;action=edit&amp;redlink=1" class="new" title="missouri (page does not exist)">missouri</a> = 15992.7 <a href="/wiki/filling" title="filling">filling</a> = 15984.0 <a href="/wiki/quoth" title="quoth">quoth</a> = 15980.9 <a href="/wiki/fur" title="fur">fur</a> = 15978.5 <a href="/wiki/fortnight" title="fortnight">fortnight</a> = 15973.0 <a href="/wiki/holes" title="holes">holes</a> = 15972.2 <a href="/wiki/addressing" title="addressing">addressing</a> = 15970.6 <a href="/wiki/frightful" title="frightful">frightful</a> = 15954.8 <a href="/wiki/encourage" title="encourage">encourage</a> = 15954.0 <a href="/wiki/speaker" title="speaker">speaker</a> = 15945.3 <a href="/wiki/tribute" title="tribute">tribute</a> = 15944.5 <a href="/wiki/procure" title="procure">procure</a> = 15935.8 <a href="/wiki/frankly" title="frankly">frankly</a> = 15931.0 <a href="/wiki/recommended" title="recommended">recommended</a> = 15913.6 <a href="/wiki/relieve" title="relieve">relieve</a> = 15912.0 <a href="/wiki/intentions" title="intentions">intentions</a> = 15910.5 <a href="/wiki/unjust" title="unjust">unjust</a> = 15909.7 <a href="/wiki/legislation" title="legislation">legislation</a> = 15904.1 <a href="/wiki/project" title="project">project</a> = 15894.6 <a href="/wiki/threshold" title="threshold">threshold</a> = 15894.6 <a href="/wiki/merits" title="merits">merits</a> = 15893.8 <a href="/wiki/morrow" title="morrow">morrow</a> = 15885.1 <a href="/wiki/traces" title="traces">traces</a> = 15885.1 <a href="/wiki/induce" title="induce">induce</a> = 15883.6 <a href="/wiki/spear" title="spear">spear</a> = 15882.0 <a href="/wiki/inward" title="inward">inward</a> = 15873.3 <a href="/wiki/pupils" title="pupils">pupils</a> = 15863.8 <a href="/wiki/corresponding" title="corresponding">corresponding</a> = 15859.0 <a href="/wiki/fairy" title="fairy">fairy</a> = 15854.3 <a href="/wiki/conclude" title="conclude">conclude</a> = 15850.3 <a href="/wiki/clung" title="clung">clung</a> = 15846.4 <a href="/wiki/neat" title="neat">neat</a> = 15845.6 <a href="/wiki/lucky" title="lucky">lucky</a> = 15834.5 <a href="/wiki/lap" title="lap">lap</a> = 15823.4 <a href="/wiki/session" title="session">session</a> = 15822.6 <a href="/wiki/torture" title="torture">torture</a> = 15818.7 <a href="/wiki/damp" title="damp">damp</a> = 15814.7 <a href="/wiki/ridge" title="ridge">ridge</a> = 15802.1 <a href="/wiki/spoil" title="spoil">spoil</a> = 15785.5 <a href="/wiki/liable" title="liable">liable</a> = 15784.7 <a href="/wiki/swords" title="swords">swords</a> = 15780.7 <a href="/wiki/hearty" title="hearty">hearty</a> = 15778.3 <a href="/wiki/bc" title="bc" class="mw-redirect">bc</a> = 15774.4 <a href="/w/index.php?title=abraham&amp;action=edit&amp;redlink=1" class="new" title="abraham (page does not exist)">abraham</a> = 15769.6 <a href="/wiki/thoughtful" title="thoughtful">thoughtful</a> = 15768.8 <a href="/wiki/traveller" title="traveller">traveller</a> = 15764.9 <a href="/wiki/chains" title="chains">chains</a> = 15760.9 <a href="/wiki/favorable" title="favorable">favorable</a> = 15760.1 <a href="/wiki/tin" title="tin">tin</a> = 15755.4 <a href="/wiki/imp." title="imp.">imp.</a> = 15748.3 <a href="/wiki/strongest" title="strongest">strongest</a> = 15748.3 <a href="/w/index.php?title=horace&amp;action=edit&amp;redlink=1" class="new" title="horace (page does not exist)">horace</a> = 15745.1 <a href="/wiki/dependent" title="dependent">dependent</a> = 15738.0 <a href="/wiki/couch" title="couch">couch</a> = 15736.4 <a href="/wiki/bills" title="bills">bills</a> = 15732.5 <a href="/wiki/warrant" title="warrant">warrant</a> = 15731.7 <a href="/wiki/complaint" title="complaint">complaint</a> = 15722.2 <a href="/wiki/endeavour" title="endeavour">endeavour</a> = 15721.4 <a href="/wiki/sails" title="sails">sails</a> = 15716.6 <a href="/wiki/dined" title="dined">dined</a> = 15705.6 <a href="/wiki/convention" title="convention">convention</a> = 15701.6 <a href="/wiki/guarded" title="guarded">guarded</a> = 15696.1 <a href="/wiki/angle" title="angle">angle</a> = 15694.5 <a href="/wiki/widely" title="widely">widely</a> = 15692.1 <a href="/w/index.php?title=illinois&amp;action=edit&amp;redlink=1" class="new" title="illinois (page does not exist)">illinois</a> = 15677.9 <a href="/wiki/charlotte" title="charlotte">charlotte</a> = 15677.1 <a href="/wiki/endeavoured" title="endeavoured">endeavoured</a> = 15677.1</p>
323
+ <p><br /></p>
324
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=51" title="Edit section: 4401 - 4500">edit</a>]</span> <span class="mw-headline" id="4401_-_4500">4401 - 4500</span></h5>
325
+ <p><a href="/wiki/ardent" title="ardent">ardent</a> = 15674.7 <a href="/wiki/cow" title="cow">cow</a> = 15670.0 <a href="/wiki/mill" title="mill">mill</a> = 15668.4 <a href="/wiki/victims" title="victims">victims</a> = 15667.6 <a href="/wiki/prejudice" title="prejudice">prejudice</a> = 15666.0 <a href="/wiki/foremost" title="foremost">foremost</a> = 15665.2 <a href="/wiki/map" title="map">map</a> = 15665.2 <a href="/wiki/probability" title="probability">probability</a> = 15656.5 <a href="/wiki/porch" title="porch">porch</a> = 15645.4 <a href="/wiki/lieutenant" title="lieutenant">lieutenant</a> = 15641.5 <a href="/wiki/surprising" title="surprising">surprising</a> = 15633.6 <a href="/wiki/fountain" title="fountain">fountain</a> = 15632.0 <a href="/wiki/sustained" title="sustained">sustained</a> = 15630.4 <a href="/wiki/appropriate" title="appropriate">appropriate</a> = 15626.4 <a href="/wiki/ford" title="ford">ford</a> = 15620.9 <a href="/wiki/clara" title="clara">clara</a> = 15616.2 <a href="/wiki/assisted" title="assisted">assisted</a> = 15615.4 <a href="/wiki/lewis" title="lewis">lewis</a> = 15615.4 <a href="/wiki/rejoice" title="rejoice">rejoice</a> = 15609.8 <a href="/wiki/extending" title="extending">extending</a> = 15608.2 <a href="/wiki/marvellous" title="marvellous">marvellous</a> = 15601.1 <a href="/wiki/clothed" title="clothed">clothed</a> = 15597.2 <a href="/wiki/jew" title="jew">jew</a> = 15579.8 <a href="/wiki/collar" title="collar">collar</a> = 15568.7 <a href="/wiki/bands" title="bands">bands</a> = 15567.9 <a href="/wiki/confident" title="confident">confident</a> = 15563.1 <a href="/wiki/hasty" title="hasty">hasty</a> = 15560.0 <a href="/wiki/nigh" title="nigh">nigh</a> = 15557.6 <a href="/wiki/organ" title="organ">organ</a> = 15557.6 <a href="/wiki/prose" title="prose">prose</a> = 15545.0 <a href="/wiki/privileges" title="privileges">privileges</a> = 15533.1 <a href="/wiki/selection" title="selection">selection</a> = 15523.6 <a href="/wiki/inquiries" title="inquiries">inquiries</a> = 15522.8 <a href="/wiki/codes" title="codes">codes</a> = 15510.1 <a href="/wiki/replace" title="replace">replace</a> = 15496.7 <a href="/wiki/saint" title="saint">saint</a> = 15492.7 <a href="/wiki/districts" title="districts">districts</a> = 15491.9 <a href="/wiki/deliberately" title="deliberately">deliberately</a> = 15481.7 <a href="/wiki/awe" title="awe">awe</a> = 15474.5 <a href="/wiki/beforehand" title="beforehand">beforehand</a> = 15470.6 <a href="/wiki/strife" title="strife">strife</a> = 15470.6 <a href="/wiki/released" title="released">released</a> = 15468.2 <a href="/wiki/compare" title="compare">compare</a> = 15466.6 <a href="/wiki/beer" title="beer">beer</a> = 15465.0 <a href="/wiki/retorted" title="retorted">retorted</a> = 15461.9 <a href="/wiki/relate" title="relate">relate</a> = 15459.5 <a href="/wiki/cheerfully" title="cheerfully">cheerfully</a> = 15448.4 <a href="/wiki/pistol" title="pistol">pistol</a> = 15448.4 <a href="/wiki/presume" title="presume">presume</a> = 15447.6 <a href="/wiki/velvet" title="velvet">velvet</a> = 15446.1 <a href="/wiki/wretch" title="wretch">wretch</a> = 15446.1 <a href="/w/index.php?title=susan&amp;action=edit&amp;redlink=1" class="new" title="susan (page does not exist)">susan</a> = 15438.2 <a href="/w/index.php?title=pennsylvania&amp;action=edit&amp;redlink=1" class="new" title="pennsylvania (page does not exist)">pennsylvania</a> = 15432.6 <a href="/wiki/stirring" title="stirring">stirring</a> = 15430.2 <a href="/wiki/righteousness" title="righteousness">righteousness</a> = 15429.4 <a href="/wiki/missing" title="missing">missing</a> = 15428.7 <a href="/wiki/fain" title="fain">fain</a> = 15427.1 <a href="/wiki/facing" title="facing">facing</a> = 15425.5 <a href="/wiki/fashionable" title="fashionable">fashionable</a> = 15425.5 <a href="/wiki/producing" title="producing">producing</a> = 15420.7 <a href="/wiki/peoples" title="peoples">peoples</a> = 15416.8 <a href="/wiki/positively" title="positively">positively</a> = 15408.9 <a href="/wiki/reasoning" title="reasoning">reasoning</a> = 15402.5 <a href="/wiki/gravity" title="gravity">gravity</a> = 15401.8 <a href="/wiki/disturb" title="disturb">disturb</a> = 15393.1 <a href="/wiki/sermon" title="sermon">sermon</a> = 15389.1 <a href="/wiki/exchanged" title="exchanged">exchanged</a> = 15385.1 <a href="/wiki/partner" title="partner">partner</a> = 15379.6 <a href="/wiki/brains" title="brains">brains</a> = 15374.1 <a href="/wiki/lowered" title="lowered">lowered</a> = 15372.5 <a href="/wiki/association" title="association">association</a> = 15365.4 <a href="/wiki/estates" title="estates">estates</a> = 15352.7 <a href="/wiki/abuse" title="abuse">abuse</a> = 15338.5 <a href="/wiki/flock" title="flock">flock</a> = 15329.8 <a href="/wiki/niece" title="niece">niece</a> = 15329.8 <a href="/wiki/languages" title="languages">languages</a> = 15325.0 <a href="/wiki/asserted" title="asserted">asserted</a> = 15321.1 <a href="/wiki/bodily" title="bodily">bodily</a> = 15318.7 <a href="/wiki/notions" title="notions">notions</a> = 15315.5 <a href="/wiki/oliver" title="oliver">oliver</a> = 15313.2 <a href="/wiki/faculty" title="faculty">faculty</a> = 15304.4 <a href="/wiki/cannon" title="cannon">cannon</a> = 15302.1 <a href="/wiki/thirteen" title="thirteen">thirteen</a> = 15290.2 <a href="/wiki/sailing" title="sailing">sailing</a> = 15289.4 <a href="/wiki/rings" title="rings">rings</a> = 15285.5 <a href="/wiki/smart" title="smart">smart</a> = 15284.7 <a href="/wiki/possessions" title="possessions">possessions</a> = 15280.7 <a href="/wiki/disciples" title="disciples">disciples</a> = 15272.0 <a href="/wiki/petty" title="petty">petty</a> = 15271.2 <a href="/wiki/widest" title="widest">widest</a> = 15253.0 <a href="/wiki/divisions" title="divisions">divisions</a> = 15252.2 <a href="/wiki/prudent" title="prudent">prudent</a> = 15248.3 <a href="/wiki/caution" title="caution">caution</a> = 15246.7 <a href="/wiki/justify" title="justify">justify</a> = 15239.6 <a href="/wiki/awhile" title="awhile">awhile</a> = 15236.4 <a href="/wiki/boxes" title="boxes">boxes</a> = 15233.2 <a href="/wiki/manuscript" title="manuscript">manuscript</a> = 15228.5 <a href="/wiki/cigar" title="cigar">cigar</a> = 15225.3 <a href="/wiki/warrior" title="warrior">warrior</a> = 15223.0 <a href="/wiki/impressions" title="impressions">impressions</a> = 15221.4</p>
326
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=52" title="Edit section: 4501 - 4600">edit</a>]</span> <span class="mw-headline" id="4501_-_4600">4501 - 4600</span></h5>
327
+ <p><a href="/wiki/aught" title="aught">aught</a> = 15217.4 <a href="/wiki/lifting" title="lifting">lifting</a> = 15217.4 <a href="/wiki/inaccurate" title="inaccurate">inaccurate</a> = 15212.7 <a href="/wiki/tidings" title="tidings">tidings</a> = 15207.9 <a href="/w/index.php?title=friday&amp;action=edit&amp;redlink=1" class="new" title="friday (page does not exist)">friday</a> = 15206.3 <a href="/wiki/liquid" title="liquid">liquid</a> = 15202.4 <a href="/wiki/staying" title="staying">staying</a> = 15202.4 <a href="/wiki/concept" title="concept">concept</a> = 15191.3 <a href="/wiki/creek" title="creek">creek</a> = 15186.6 <a href="/wiki/lo" title="lo">lo</a> = 15173.1 <a href="/wiki/brush" title="brush">brush</a> = 15172.3 <a href="/wiki/download" title="download">download</a> = 15171.5 <a href="/wiki/specially" title="specially">specially</a> = 15168.4 <a href="/wiki/cream" title="cream">cream</a> = 15166.8 <a href="/wiki/meetings" title="meetings">meetings</a> = 15162.0 <a href="/wiki/jump" title="jump">jump</a> = 15159.7 <a href="/wiki/unwilling" title="unwilling">unwilling</a> = 15158.9 <a href="/wiki/adapted" title="adapted">adapted</a> = 15157.3 <a href="/wiki/practised" title="practised">practised</a> = 15157.3 <a href="/wiki/combat" title="combat">combat</a> = 15151.8 <a href="/wiki/subdued" title="subdued">subdued</a> = 15151.8 <a href="/w/index.php?title=jewish&amp;action=edit&amp;redlink=1" class="new" title="jewish (page does not exist)">jewish</a> = 15144.6 <a href="/wiki/innumerable" title="innumerable">innumerable</a> = 15141.5 <a href="/wiki/blowing" title="blowing">blowing</a> = 15139.9 <a href="/wiki/extra" title="extra">extra</a> = 15138.3 <a href="/wiki/civilized" title="civilized">civilized</a> = 15130.4 <a href="/wiki/invented" title="invented">invented</a> = 15123.3 <a href="/wiki/japan" title="japan">japan</a> = 15120.9 <a href="/wiki/pitch" title="pitch">pitch</a> = 15109.8 <a href="/wiki/cliff" title="cliff">cliff</a> = 15107.5 <a href="/wiki/crowned" title="crowned">crowned</a> = 15092.4 <a href="/wiki/portions" title="portions">portions</a> = 15090.8 <a href="/wiki/awkward" title="awkward">awkward</a> = 15086.9 <a href="/wiki/horrid" title="horrid">horrid</a> = 15085.3 <a href="/wiki/pulling" title="pulling">pulling</a> = 15067.1 <a href="/wiki/appreciate" title="appreciate">appreciate</a> = 15065.5 <a href="/wiki/communicated" title="communicated">communicated</a> = 15060.8 <a href="/w/index.php?title=kentucky&amp;action=edit&amp;redlink=1" class="new" title="kentucky (page does not exist)">kentucky</a> = 15056.8 <a href="/wiki/jury" title="jury">jury</a> = 15050.5 <a href="/wiki/encountered" title="encountered">encountered</a> = 15046.5 <a href="/wiki/attacks" title="attacks">attacks</a> = 15041.8 <a href="/wiki/monster" title="monster">monster</a> = 15031.5 <a href="/wiki/simon" title="simon">simon</a> = 15022.0 <a href="/wiki/maintaining" title="maintaining">maintaining</a> = 15021.2 <a href="/wiki/sites" title="sites">sites</a> = 15019.6 <a href="/wiki/frozen" title="frozen">frozen</a> = 15015.7 <a href="/wiki/invariably" title="invariably">invariably</a> = 15010.9 <a href="/wiki/dies" title="dies">dies</a> = 15009.4 <a href="/wiki/survive" title="survive">survive</a> = 15007.8 <a href="/wiki/literally" title="literally">literally</a> = 15005.4 <a href="/wiki/consolation" title="consolation">consolation</a> = 14994.3 <a href="/wiki/m" title="m">m</a> = 14994.3 <a href="/wiki/phenomena" title="phenomena">phenomena</a> = 14994.3 <a href="/wiki/pot" title="pot">pot</a> = 14993.5 <a href="/wiki/ellen" title="ellen">ellen</a> = 14984.0 <a href="/wiki/briefly" title="briefly">briefly</a> = 14979.3 <a href="/wiki/rice" title="rice">rice</a> = 14975.3 <a href="/wiki/planned" title="planned">planned</a> = 14974.5 <a href="/wiki/barbara" title="barbara">barbara</a> = 14966.6 <a href="/wiki/respected" title="respected">respected</a> = 14958.7 <a href="/wiki/sublime" title="sublime">sublime</a> = 14954.0 <a href="/wiki/dropping" title="dropping">dropping</a> = 14948.4 <a href="/wiki/guy" title="guy">guy</a> = 14945.3 <a href="/wiki/behaviour" title="behaviour">behaviour</a> = 14940.5 <a href="/wiki/desolate" title="desolate">desolate</a> = 14938.9 <a href="/wiki/penny" title="penny">penny</a> = 14935.0 <a href="/wiki/adopt" title="adopt">adopt</a> = 14934.2 <a href="/wiki/replaced" title="replaced">replaced</a> = 14933.4 <a href="/wiki/revenue" title="revenue">revenue</a> = 14923.1 <a href="/wiki/formats" title="formats">formats</a> = 14918.4 <a href="/wiki/hired" title="hired">hired</a> = 14912.8 <a href="/wiki/regularly" title="regularly">regularly</a> = 14904.9 <a href="/wiki/infringement" title="infringement">infringement</a> = 14893.8 <a href="/wiki/curtains" title="curtains">curtains</a> = 14892.3 <a href="/wiki/eagerness" title="eagerness">eagerness</a> = 14883.6 <a href="/wiki/helping" title="helping">helping</a> = 14882.8 <a href="/wiki/investigation" title="investigation">investigation</a> = 14882.8 <a href="/wiki/constitutional" title="constitutional">constitutional</a> = 14878.8 <a href="/wiki/insist" title="insist">insist</a> = 14878.8 <a href="/wiki/occurs" title="occurs">occurs</a> = 14875.7 <a href="/wiki/fools" title="fools">fools</a> = 14871.7 <a href="/wiki/inheritance" title="inheritance">inheritance</a> = 14870.9 <a href="/wiki/latest" title="latest">latest</a> = 14868.5 <a href="/wiki/leap" title="leap">leap</a> = 14866.2 <a href="/wiki/games" title="games">games</a> = 14846.4 <a href="/wiki/apple" title="apple">apple</a> = 14840.1 <a href="/wiki/visiting" title="visiting">visiting</a> = 14840.1 <a href="/wiki/travellers" title="travellers">travellers</a> = 14836.1 <a href="/wiki/experiments" title="experiments">experiments</a> = 14830.6 <a href="/wiki/hasn%27t" title="hasn't">hasn't</a> = 14830.6 <a href="/wiki/pupil" title="pupil">pupil</a> = 14830.6 <a href="/wiki/enjoying" title="enjoying">enjoying</a> = 14829.0 <a href="/wiki/totally" title="totally">totally</a> = 14821.9 <a href="/wiki/twisted" title="twisted">twisted</a> = 14821.9 <a href="/wiki/discuss" title="discuss">discuss</a> = 14813.9 <a href="/wiki/firing" title="firing">firing</a> = 14802.9 <a href="/wiki/background" title="background">background</a> = 14801.3 <a href="/wiki/subscribe" title="subscribe">subscribe</a> = 14795.0 <a href="/wiki/tenderly" title="tenderly">tenderly</a> = 14786.3 <a href="/wiki/transcribe" title="transcribe">transcribe</a> = 14783.1</p>
328
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=53" title="Edit section: 4601 - 4700">edit</a>]</span> <span class="mw-headline" id="4601_-_4700">4601 - 4700</span></h5>
329
+ <p><a href="/wiki/descend" title="descend">descend</a> = 14779.9 <a href="/wiki/differ" title="differ">differ</a> = 14772.0 <a href="/w/index.php?title=majesty%27s&amp;action=edit&amp;redlink=1" class="new" title="majesty's (page does not exist)">majesty's</a> = 14763.3 <a href="/wiki/avail" title="avail">avail</a> = 14758.6 <a href="/wiki/disaster" title="disaster">disaster</a> = 14756.2 <a href="/wiki/bet" title="bet">bet</a> = 14753.8 <a href="/wiki/periodic" title="periodic">periodic</a> = 14750.7 <a href="/wiki/bull" title="bull">bull</a> = 14749.1 <a href="/wiki/entertainment" title="entertainment">entertainment</a> = 14748.3 <a href="/wiki/computers" title="computers">computers</a> = 14743.5 <a href="/wiki/cursed" title="cursed">cursed</a> = 14738.0 <a href="/wiki/raw" title="raw">raw</a> = 14734.0 <a href="/wiki/fulfilled" title="fulfilled">fulfilled</a> = 14732.5 <a href="/wiki/georgia" title="georgia">georgia</a> = 14728.5 <a href="/wiki/virus" title="virus">virus</a> = 14726.9 <a href="/wiki/log" title="log">log</a> = 14726.1 <a href="/wiki/skies" title="skies">skies</a> = 14707.9 <a href="/wiki/scotch" title="scotch">scotch</a> = 14706.4 <a href="/wiki/embraced" title="embraced">embraced</a> = 14705.6 <a href="/wiki/hospitality" title="hospitality">hospitality</a> = 14703.2 <a href="/wiki/faintly" title="faintly">faintly</a> = 14701.6 <a href="/w/index.php?title=solomon&amp;action=edit&amp;redlink=1" class="new" title="solomon (page does not exist)">solomon</a> = 14690.5 <a href="/wiki/robbed" title="robbed">robbed</a> = 14689.7 <a href="/wiki/cart" title="cart">cart</a> = 14688.9 <a href="/wiki/influences" title="influences">influences</a> = 14686.6 <a href="/wiki/ascended" title="ascended">ascended</a> = 14682.6 <a href="/wiki/incidents" title="incidents">incidents</a> = 14682.6 <a href="/wiki/childish" title="childish">childish</a> = 14674.7 <a href="/wiki/robe" title="robe">robe</a> = 14668.4 <a href="/wiki/aboard" title="aboard">aboard</a> = 14658.1 <a href="/wiki/resembling" title="resembling">resembling</a> = 14657.3 <a href="/wiki/reflect" title="reflect">reflect</a> = 14652.6 <a href="/wiki/dominion" title="dominion">dominion</a> = 14649.4 <a href="/wiki/dreary" title="dreary">dreary</a> = 14644.6 <a href="/wiki/serving" title="serving">serving</a> = 14639.1 <a href="/wiki/complexion" title="complexion">complexion</a> = 14636.7 <a href="/wiki/engage" title="engage">engage</a> = 14624.1 <a href="/wiki/tents" title="tents">tents</a> = 14620.9 <a href="/wiki/herd" title="herd">herd</a> = 14619.3 <a href="/wiki/attain" title="attain">attain</a> = 14618.5 <a href="/wiki/collect" title="collect">collect</a> = 14617.0 <a href="/wiki/disclaims" title="disclaims">disclaims</a> = 14617.0 <a href="/wiki/pan" title="pan">pan</a> = 14614.6 <a href="/wiki/relatives" title="relatives">relatives</a> = 14613.8 <a href="/wiki/borrowed" title="borrowed">borrowed</a> = 14610.6 <a href="/wiki/convert" title="convert">convert</a> = 14601.9 <a href="/wiki/outline" title="outline">outline</a> = 14598.8 <a href="/wiki/blown" title="blown">blown</a> = 14594.8 <a href="/wiki/comprehend" title="comprehend">comprehend</a> = 14578.2 <a href="/wiki/peasants" title="peasants">peasants</a> = 14575.8 <a href="/wiki/opera" title="opera">opera</a> = 14571.9 <a href="/wiki/assault" title="assault">assault</a> = 14568.7 <a href="/wiki/deceive" title="deceive">deceive</a> = 14566.3 <a href="/wiki/doctrines" title="doctrines">doctrines</a> = 14560.0 <a href="/wiki/representatives" title="representatives">representatives</a> = 14555.2 <a href="/wiki/dedicated" title="dedicated">dedicated</a> = 14553.7 <a href="/wiki/struggled" title="struggled">struggled</a> = 14548.1 <a href="/wiki/officials" title="officials">officials</a> = 14545.8 <a href="/wiki/hiding" title="hiding">hiding</a> = 14540.2 <a href="/wiki/paths" title="paths">paths</a> = 14537.8 <a href="/wiki/backs" title="backs">backs</a> = 14533.9 <a href="/wiki/prominently" title="prominently">prominently</a> = 14518.1 <a href="/wiki/prices" title="prices">prices</a> = 14517.3 <a href="/wiki/procured" title="procured">procured</a> = 14517.3 <a href="/wiki/mourning" title="mourning">mourning</a> = 14510.1 <a href="/wiki/compliment" title="compliment">compliment</a> = 14505.4 <a href="/wiki/heights" title="heights">heights</a> = 14503.0 <a href="/wiki/approval" title="approval">approval</a> = 14502.2 <a href="/wiki/gasped" title="gasped">gasped</a> = 14495.1 <a href="/wiki/breadth" title="breadth">breadth</a> = 14492.0 <a href="/wiki/withdraw" title="withdraw">withdraw</a> = 14488.8 <a href="/wiki/tune" title="tune">tune</a> = 14473.8 <a href="/wiki/compassion" title="compassion">compassion</a> = 14470.6 <a href="/wiki/polished" title="polished">polished</a> = 14468.2 <a href="/wiki/latitude" title="latitude">latitude</a> = 14463.5 <a href="/wiki/dishes" title="dishes">dishes</a> = 14461.1 <a href="/wiki/parent" title="parent">parent</a> = 14461.1 <a href="/wiki/contrived" title="contrived">contrived</a> = 14459.5 <a href="/wiki/delicacy" title="delicacy">delicacy</a> = 14459.5 <a href="/wiki/projected" title="projected">projected</a> = 14456.4 <a href="/wiki/akin" title="akin">akin</a> = 14454.0 <a href="/wiki/f" title="f">f</a> = 14452.4 <a href="/wiki/betray" title="betray">betray</a> = 14448.4 <a href="/wiki/traced" title="traced">traced</a> = 14446.9 <a href="/wiki/resentment" title="resentment">resentment</a> = 14432.6 <a href="/wiki/indemnify" title="indemnify">indemnify</a> = 14431.8 <a href="/wiki/pseud" title="pseud">pseud</a> = 14428.7 <a href="/wiki/sacrifices" title="sacrifices">sacrifices</a> = 14418.4 <a href="/wiki/disguise" title="disguise">disguise</a> = 14416.0 <a href="/wiki/transcription" title="transcription">transcription</a> = 14410.5 <a href="/wiki/document" title="document">document</a> = 14408.1 <a href="/wiki/neighbour" title="neighbour">neighbour</a> = 14405.7 <a href="/wiki/squire" title="squire">squire</a> = 14402.6 <a href="/wiki/punish" title="punish">punish</a> = 14393.9 <a href="/wiki/bars" title="bars">bars</a> = 14391.5 <a href="/wiki/glittering" title="glittering">glittering</a> = 14390.7 <a href="/wiki/tossed" title="tossed">tossed</a> = 14388.3 <a href="/wiki/block" title="block">block</a> = 14383.6 <a href="/wiki/lots" title="lots">lots</a> = 14375.7 <a href="/wiki/worldly" title="worldly">worldly</a> = 14370.1</p>
330
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=54" title="Edit section: 4701 - 4800">edit</a>]</span> <span class="mw-headline" id="4701_-_4800">4701 - 4800</span></h5>
331
+ <p><a href="/wiki/muscles" title="muscles">muscles</a> = 14367.0 <a href="/wiki/elbow" title="elbow">elbow</a> = 14365.4 <a href="/wiki/obligation" title="obligation">obligation</a> = 14359.8 <a href="/wiki/trifling" title="trifling">trifling</a> = 14359.8 <a href="/wiki/decline" title="decline">decline</a> = 14357.5 <a href="/wiki/attachment" title="attachment">attachment</a> = 14356.7 <a href="/wiki/ambitious" title="ambitious">ambitious</a> = 14355.9 <a href="/wiki/filename" title="filename">filename</a> = 14351.1 <a href="/wiki/artists" title="artists">artists</a> = 14341.6 <a href="/wiki/bloom" title="bloom">bloom</a> = 14341.6 <a href="/wiki/holiday" title="holiday">holiday</a> = 14340.8 <a href="/wiki/brute" title="brute">brute</a> = 14335.3 <a href="/wiki/repair" title="repair">repair</a> = 14329.8 <a href="/wiki/fist" title="fist">fist</a> = 14325.8 <a href="/wiki/recollect" title="recollect">recollect</a> = 14324.2 <a href="/wiki/eagle" title="eagle">eagle</a> = 14313.9 <a href="/wiki/honorable" title="honorable">honorable</a> = 14313.9 <a href="/wiki/significant" title="significant">significant</a> = 14309.2 <a href="/wiki/barren" title="barren">barren</a> = 14302.9 <a href="/wiki/functions" title="functions">functions</a> = 14296.5 <a href="/wiki/guided" title="guided">guided</a> = 14289.4 <a href="/wiki/dense" title="dense">dense</a> = 14283.9 <a href="/wiki/fiction" title="fiction">fiction</a> = 14277.6 <a href="/wiki/viz." title="viz.">viz.</a> = 14273.6 <a href="/wiki/adds" title="adds">adds</a> = 14270.4 <a href="/wiki/rows" title="rows">rows</a> = 14270.4 <a href="/wiki/recommend" title="recommend">recommend</a> = 14264.1 <a href="/wiki/suspicious" title="suspicious">suspicious</a> = 14261.7 <a href="/wiki/resulting" title="resulting">resulting</a> = 14257.8 <a href="/wiki/seventy" title="seventy">seventy</a> = 14257.0 <a href="/wiki/shillings" title="shillings">shillings</a> = 14253.8 <a href="/wiki/educational" title="educational">educational</a> = 14252.2 <a href="/wiki/duly" title="duly">duly</a> = 14247.5 <a href="/wiki/governed" title="governed">governed</a> = 14246.7 <a href="/wiki/scripture" title="scripture">scripture</a> = 14237.2 <a href="/wiki/upwards" title="upwards">upwards</a> = 14235.6 <a href="/wiki/sworn" title="sworn">sworn</a> = 14234.0 <a href="/w/index.php?title=nicholas&amp;action=edit&amp;redlink=1" class="new" title="nicholas (page does not exist)">nicholas</a> = 14226.9 <a href="/wiki/horn" title="horn">horn</a> = 14226.1 <a href="/wiki/brook" title="brook">brook</a> = 14225.3 <a href="/wiki/fund" title="fund">fund</a> = 14222.2 <a href="/w/index.php?title=vienna&amp;action=edit&amp;redlink=1" class="new" title="vienna (page does not exist)">vienna</a> = 14213.5 <a href="/wiki/lodge" title="lodge">lodge</a> = 14209.5 <a href="/wiki/infinitely" title="infinitely">infinitely</a> = 14207.9 <a href="/wiki/clergyman" title="clergyman">clergyman</a> = 14207.1 <a href="/wiki/marshal" title="marshal">marshal</a> = 14206.4 <a href="/wiki/ruled" title="ruled">ruled</a> = 14205.6 <a href="/wiki/fiercely" title="fiercely">fiercely</a> = 14200.0 <a href="/w/index.php?title=portuguese&amp;action=edit&amp;redlink=1" class="new" title="portuguese (page does not exist)">portuguese</a> = 14200.0 <a href="/wiki/costume" title="costume">costume</a> = 14192.9 <a href="/wiki/pit" title="pit">pit</a> = 14192.1 <a href="/wiki/disorder" title="disorder">disorder</a> = 14188.2 <a href="/wiki/sheer" title="sheer">sheer</a> = 14184.2 <a href="/wiki/exalted" title="exalted">exalted</a> = 14179.5 <a href="/wiki/fare" title="fare">fare</a> = 14175.5 <a href="/wiki/applause" title="applause">applause</a> = 14173.9 <a href="/w/index.php?title=chaucer&amp;action=edit&amp;redlink=1" class="new" title="chaucer (page does not exist)">chaucer</a> = 14166.8 <a href="/wiki/remind" title="remind">remind</a> = 14161.3 <a href="/wiki/binary" title="binary">binary</a> = 14155.7 <a href="/wiki/packed" title="packed">packed</a> = 14141.5 <a href="/wiki/pillow" title="pillow">pillow</a> = 14140.7 <a href="/wiki/jersey" title="jersey">jersey</a> = 14139.1 <a href="/wiki/abbey" title="abbey">abbey</a> = 14136.7 <a href="/wiki/nowhere" title="nowhere">nowhere</a> = 14135.2 <a href="/wiki/anyhow" title="anyhow">anyhow</a> = 14125.7 <a href="/wiki/agitated" title="agitated">agitated</a> = 14122.5 <a href="/wiki/marching" title="marching">marching</a> = 14122.5 <a href="/wiki/catching" title="catching">catching</a> = 14121.7 <a href="/wiki/el" title="el">el</a> = 14119.3 <a href="/wiki/grasped" title="grasped">grasped</a> = 14117.7 <a href="/wiki/arrow" title="arrow">arrow</a> = 14115.4 <a href="/wiki/tend" title="tend">tend</a> = 14113.8 <a href="/wiki/carved" title="carved">carved</a> = 14109.8 <a href="/wiki/fitting" title="fitting">fitting</a> = 14108.3 <a href="/wiki/bonds" title="bonds">bonds</a> = 14105.9 <a href="/wiki/instructed" title="instructed">instructed</a> = 14105.9 <a href="/wiki/elaborate" title="elaborate">elaborate</a> = 14101.1 <a href="/wiki/corpse" title="corpse">corpse</a> = 14095.6 <a href="/wiki/bewildered" title="bewildered">bewildered</a> = 14088.5 <a href="/wiki/essence" title="essence">essence</a> = 14071.9 <a href="/wiki/positions" title="positions">positions</a> = 14071.9 <a href="/w/index.php?title=emily&amp;action=edit&amp;redlink=1" class="new" title="emily (page does not exist)">emily</a> = 14067.1 <a href="/wiki/edited" title="edited">edited</a> = 14063.9 <a href="/wiki/continues" title="continues">continues</a> = 14062.4 <a href="/w/index.php?title=harold&amp;action=edit&amp;redlink=1" class="new" title="harold (page does not exist)">harold</a> = 14056.8 <a href="/wiki/elevation" title="elevation">elevation</a> = 14055.2 <a href="/wiki/realm" title="realm">realm</a> = 14041.8 <a href="/wiki/debts" title="debts">debts</a> = 14032.3 <a href="/wiki/glancing" title="glancing">glancing</a> = 14027.6 <a href="/wiki/shops" title="shops">shops</a> = 14013.3 <a href="/wiki/complained" title="complained">complained</a> = 14008.6 <a href="/wiki/loyalty" title="loyalty">loyalty</a> = 14001.4 <a href="/wiki/coin" title="coin">coin</a> = 13996.7 <a href="/wiki/clad" title="clad">clad</a> = 13992.0 <a href="/wiki/staircase" title="staircase">staircase</a> = 13988.8 <a href="/wiki/documents" title="documents">documents</a> = 13976.9 <a href="/wiki/interpreted" title="interpreted">interpreted</a> = 13969.8 <a href="/wiki/4th" title="4th">4th</a> = 13969.0 <a href="/wiki/extremity" title="extremity">extremity</a> = 13966.6 <a href="/wiki/accord" title="accord">accord</a> = 13965.1</p>
332
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=55" title="Edit section: 4801 - 4900">edit</a>]</span> <span class="mw-headline" id="4801_-_4900">4801 - 4900</span></h5>
333
+ <p><a href="/wiki/sally" title="sally">sally</a> = 13963.5 <a href="/wiki/lace" title="lace">lace</a> = 13960.3 <a href="/wiki/tremble" title="tremble">tremble</a> = 13957.9 <a href="/wiki/exile" title="exile">exile</a> = 13955.6 <a href="/wiki/gospel" title="gospel">gospel</a> = 13947.7 <a href="/wiki/mechanical" title="mechanical">mechanical</a> = 13947.7 <a href="/wiki/successfully" title="successfully">successfully</a> = 13943.7 <a href="/wiki/scholar" title="scholar">scholar</a> = 13932.6 <a href="/wiki/wonders" title="wonders">wonders</a> = 13923.9 <a href="/wiki/arab" title="arab">arab</a> = 13920.0 <a href="/wiki/temperament" title="temperament">temperament</a> = 13920.0 <a href="/wiki/expressing" title="expressing">expressing</a> = 13918.4 <a href="/wiki/fred" title="fred">fred</a> = 13917.6 <a href="/wiki/trap" title="trap">trap</a> = 13917.6 <a href="/wiki/spots" title="spots">spots</a> = 13914.4 <a href="/wiki/awaiting" title="awaiting">awaiting</a> = 13910.5 <a href="/wiki/potatoes" title="potatoes">potatoes</a> = 13909.7 <a href="/wiki/likeness" title="likeness">likeness</a> = 13902.6 <a href="/wiki/harbour" title="harbour">harbour</a> = 13898.6 <a href="/wiki/proofs" title="proofs">proofs</a> = 13885.2 <a href="/wiki/jolly" title="jolly">jolly</a> = 13883.6 <a href="/wiki/contributed" title="contributed">contributed</a> = 13879.6 <a href="/wiki/wits" title="wits">wits</a> = 13876.5 <a href="/wiki/generosity" title="generosity">generosity</a> = 13869.3 <a href="/wiki/ruler" title="ruler">ruler</a> = 13866.2 <a href="/w/index.php?title=lawrence&amp;action=edit&amp;redlink=1" class="new" title="lawrence (page does not exist)">lawrence</a> = 13858.3 <a href="/wiki/cake" title="cake">cake</a> = 13856.7 <a href="/wiki/lamps" title="lamps">lamps</a> = 13855.9 <a href="/wiki/crazy" title="crazy">crazy</a> = 13852.7 <a href="/wiki/sincerity" title="sincerity">sincerity</a> = 13852.7 <a href="/wiki/entertain" title="entertain">entertain</a> = 13851.1 <a href="/wiki/madame" title="madame">madame</a> = 13849.6 <a href="/wiki/sir" title="sir">sir</a> = 13849.6 <a href="/wiki/faculties" title="faculties">faculties</a> = 13845.6 <a href="/wiki/hesitate" title="hesitate">hesitate</a> = 13840.1 <a href="/wiki/deepest" title="deepest">deepest</a> = 13836.9 <a href="/wiki/seventeen" title="seventeen">seventeen</a> = 13830.6 <a href="/wiki/lordship" title="lordship">lordship</a> = 13817.9 <a href="/wiki/greeting" title="greeting">greeting</a> = 13808.4 <a href="/wiki/feminine" title="feminine">feminine</a> = 13805.2 <a href="/wiki/monstrous" title="monstrous">monstrous</a> = 13802.9 <a href="/wiki/tongues" title="tongues">tongues</a> = 13799.7 <a href="/wiki/barely" title="barely">barely</a> = 13795.8 <a href="/wiki/3d" title="3d">3d</a> = 13785.5 <a href="/wiki/mansion" title="mansion">mansion</a> = 13784.7 <a href="/wiki/facility" title="facility">facility</a> = 13783.9 <a href="/wiki/praised" title="praised">praised</a> = 13779.1 <a href="/wiki/warranties" title="warranties">warranties</a> = 13776.0 <a href="/w/index.php?title=sarah&amp;action=edit&amp;redlink=1" class="new" title="sarah (page does not exist)">sarah</a> = 13775.2 <a href="/wiki/happier" title="happier">happier</a> = 13772.8 <a href="/wiki/indicating" title="indicating">indicating</a> = 13772.0 <a href="/wiki/rob" title="rob">rob</a> = 13764.1 <a href="/wiki/gigantic" title="gigantic">gigantic</a> = 13763.3 <a href="/wiki/honey" title="honey">honey</a> = 13760.9 <a href="/wiki/ladder" title="ladder">ladder</a> = 13757.8 <a href="/wiki/ending" title="ending">ending</a> = 13754.6 <a href="/wiki/wales" title="wales">wales</a> = 13754.6 <a href="/wiki/swallowed" title="swallowed">swallowed</a> = 13751.5 <a href="/wiki/sunny" title="sunny">sunny</a> = 13747.5 <a href="/wiki/knelt" title="knelt">knelt</a> = 13743.5 <a href="/wiki/tyranny" title="tyranny">tyranny</a> = 13742.7 <a href="/wiki/decree" title="decree">decree</a> = 13739.6 <a href="/wiki/stake" title="stake">stake</a> = 13738.0 <a href="/wiki/divide" title="divide">divide</a> = 13734.0 <a href="/wiki/dreaming" title="dreaming">dreaming</a> = 13734.0 <a href="/wiki/proclaimed" title="proclaimed">proclaimed</a> = 13732.5 <a href="/wiki/dignified" title="dignified">dignified</a> = 13730.9 <a href="/wiki/tread" title="tread">tread</a> = 13729.3 <a href="/wiki/mines" title="mines">mines</a> = 13724.6 <a href="/wiki/viewing" title="viewing">viewing</a> = 13723.8 <a href="/wiki/defense" title="defense">defense</a> = 13723.0 <a href="/wiki/oldest" title="oldest">oldest</a> = 13720.6 <a href="/wiki/incredible" title="incredible">incredible</a> = 13718.2 <a href="/wiki/bidding" title="bidding">bidding</a> = 13711.9 <a href="/wiki/brick" title="brick">brick</a> = 13711.9 <a href="/wiki/arch" title="arch">arch</a> = 13707.1 <a href="/wiki/everlasting" title="everlasting">everlasting</a> = 13703.2 <a href="/wiki/elect" title="elect">elect</a> = 13700.0 <a href="/wiki/sprung" title="sprung">sprung</a> = 13696.9 <a href="/wiki/harder" title="harder">harder</a> = 13688.2 <a href="/wiki/winding" title="winding">winding</a> = 13686.6 <a href="/wiki/deductible" title="deductible">deductible</a> = 13684.2 <a href="/wiki/magistrate" title="magistrate">magistrate</a> = 13681.8 <a href="/wiki/respective" title="respective">respective</a> = 13679.5 <a href="/wiki/liquor" title="liquor">liquor</a> = 13676.3 <a href="/wiki/imitation" title="imitation">imitation</a> = 13670.0 <a href="/wiki/shy" title="shy">shy</a> = 13670.0 <a href="/wiki/perished" title="perished">perished</a> = 13669.2 <a href="/wiki/prime" title="prime">prime</a> = 13666.0 <a href="/wiki/studying" title="studying">studying</a> = 13662.8 <a href="/wiki/eighty" title="eighty">eighty</a> = 13661.3 <a href="/w/index.php?title=hebrew&amp;action=edit&amp;redlink=1" class="new" title="hebrew (page does not exist)">hebrew</a> = 13658.1 <a href="/wiki/unfortunately" title="unfortunately">unfortunately</a> = 13656.5 <a href="/wiki/licensed" title="licensed">licensed</a> = 13654.9 <a href="/wiki/fog" title="fog">fog</a> = 13651.0 <a href="/wiki/coloured" title="coloured">coloured</a> = 13648.6 <a href="/wiki/bits" title="bits">bits</a> = 13647.0 <a href="/wiki/consult" title="consult">consult</a> = 13642.3 <a href="/wiki/moves" title="moves">moves</a> = 13642.3 <a href="/wiki/r" title="r">r</a> = 13642.3</p>
334
+ <p><br /></p>
335
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=56" title="Edit section: 4901 - 5000">edit</a>]</span> <span class="mw-headline" id="4901_-_5000">4901 - 5000</span></h5>
336
+ <p><a href="/wiki/warn" title="warn">warn</a> = 13639.9 <a href="/wiki/taylor" title="taylor" class="mw-redirect">taylor</a> = 13638.3 <a href="/wiki/vile" title="vile">vile</a> = 13616.2 <a href="/wiki/depended" title="depended">depended</a> = 13612.2 <a href="/w/index.php?title=phil&amp;action=edit&amp;redlink=1" class="new" title="phil (page does not exist)">phil</a> = 13609.8 <a href="/wiki/legend" title="legend">legend</a> = 13609.0 <a href="/wiki/locations" title="locations">locations</a> = 13604.3 <a href="/wiki/shallow" title="shallow">shallow</a> = 13602.7 <a href="/wiki/doom" title="doom">doom</a> = 13601.1 <a href="/wiki/dreaded" title="dreaded">dreaded</a> = 13595.6 <a href="/wiki/encouragement" title="encouragement">encouragement</a> = 13592.4 <a href="/wiki/impatiently" title="impatiently">impatiently</a> = 13575.8 <a href="/wiki/scent" title="scent">scent</a> = 13567.9 <a href="/wiki/varieties" title="varieties">varieties</a> = 13567.1 <a href="/wiki/irregular" title="irregular">irregular</a> = 13555.2 <a href="/wiki/battles" title="battles">battles</a> = 13554.5 <a href="/wiki/compass" title="compass">compass</a> = 13543.4 <a href="/wiki/neighbouring" title="neighbouring">neighbouring</a> = 13538.6 <a href="/wiki/bliss" title="bliss">bliss</a> = 13536.3 <a href="/wiki/harvest" title="harvest">harvest</a> = 13533.9 <a href="/wiki/promotion" title="promotion">promotion</a> = 13533.1 <a href="/wiki/stove" title="stove">stove</a> = 13519.6 <a href="/wiki/faithfully" title="faithfully">faithfully</a> = 13518.9 <a href="/w/index.php?title=anthony&amp;action=edit&amp;redlink=1" class="new" title="anthony (page does not exist)">anthony</a> = 13517.3 <a href="/wiki/excellence" title="excellence">excellence</a> = 13515.7 <a href="/wiki/transfer" title="transfer">transfer</a> = 13515.7 <a href="/wiki/awaited" title="awaited">awaited</a> = 13511.7 <a href="/wiki/heathen" title="heathen">heathen</a> = 13510.9 <a href="/wiki/poetic" title="poetic">poetic</a> = 13510.9 <a href="/wiki/consulted" title="consulted">consulted</a> = 13509.4 <a href="/wiki/illustrated" title="illustrated">illustrated</a> = 13507.0 <a href="/wiki/gilbert" title="gilbert">gilbert</a> = 13501.5 <a href="/wiki/br" title="br" class="mw-redirect">br</a> = 13497.5 <a href="/wiki/fundamental" title="fundamental">fundamental</a> = 13496.7 <a href="/wiki/bundle" title="bundle">bundle</a> = 13492.0 <a href="/wiki/rebel" title="rebel">rebel</a> = 13481.7 <a href="/wiki/cultivation" title="cultivation">cultivation</a> = 13478.5 <a href="/wiki/joys" title="joys">joys</a> = 13478.5 <a href="/wiki/rigid" title="rigid">rigid</a> = 13476.9 <a href="/wiki/tragic" title="tragic">tragic</a> = 13468.2 <a href="/wiki/review" title="review">review</a> = 13462.7 <a href="/wiki/representing" title="representing">representing</a> = 13459.5 <a href="/wiki/flowed" title="flowed">flowed</a> = 13455.6 <a href="/wiki/brows" title="brows">brows</a> = 13454.0 <a href="/wiki/whereupon" title="whereupon">whereupon</a> = 13451.6 <a href="/wiki/terribly" title="terribly">terribly</a> = 13438.2 <a href="/wiki/melted" title="melted">melted</a> = 13435.8 <a href="/wiki/venerable" title="venerable">venerable</a> = 13435.8 <a href="/wiki/towers" title="towers">towers</a> = 13434.2 <a href="/wiki/cooking" title="cooking">cooking</a> = 13432.6 <a href="/wiki/mustn%27t" title="mustn't">mustn't</a> = 13422.3 <a href="/wiki/suspicions" title="suspicions">suspicions</a> = 13420.8 <a href="/wiki/old-fashioned" title="old-fashioned">old-fashioned</a> = 13419.2 <a href="/wiki/oppressed" title="oppressed">oppressed</a> = 13418.4 <a href="/wiki/australia" title="australia">australia</a> = 13413.6 <a href="/w/index.php?title=friend%27s&amp;action=edit&amp;redlink=1" class="new" title="friend's (page does not exist)">friend's</a> = 13412.1 <a href="/wiki/revolt" title="revolt">revolt</a> = 13411.3 <a href="/wiki/swell" title="swell">swell</a> = 13407.3 <a href="/wiki/improve" title="improve">improve</a> = 13405.7 <a href="/w/index.php?title=williams&amp;action=edit&amp;redlink=1" class="new" title="williams (page does not exist)">williams</a> = 13405.7 <a href="/wiki/describes" title="describes">describes</a> = 13403.4 <a href="/wiki/goddess" title="goddess">goddess</a> = 13401.8 <a href="/wiki/wreck" title="wreck">wreck</a> = 13393.1 <a href="/w/index.php?title=tennessee&amp;action=edit&amp;redlink=1" class="new" title="tennessee (page does not exist)">tennessee</a> = 13392.3 <a href="/wiki/convince" title="convince">convince</a> = 13384.4 <a href="/wiki/sentences" title="sentences">sentences</a> = 13377.2 <a href="/wiki/bowl" title="bowl">bowl</a> = 13376.5 <a href="/wiki/radiant" title="radiant">radiant</a> = 13367.8 <a href="/w/index.php?title=prussia&amp;action=edit&amp;redlink=1" class="new" title="prussia (page does not exist)">prussia</a> = 13364.6 <a href="/wiki/westward" title="westward">westward</a> = 13357.5 <a href="/wiki/indignant" title="indignant">indignant</a> = 13355.9 <a href="/wiki/refined" title="refined">refined</a> = 13345.6 <a href="/wiki/unseen" title="unseen">unseen</a> = 13344.8 <a href="/wiki/illustration" title="illustration">illustration</a> = 13340.9 <a href="/wiki/pertaining" title="pertaining">pertaining</a> = 13333.7 <a href="/wiki/swamp" title="swamp">swamp</a> = 13330.6 <a href="/wiki/austrian" title="austrian" class="mw-redirect">austrian</a> = 13329.0 <a href="/wiki/saxon" title="saxon" class="mw-redirect">saxon</a> = 13325.0 <a href="/wiki/congregation" title="congregation">congregation</a> = 13323.4 <a href="/wiki/nerve" title="nerve">nerve</a> = 13321.1 <a href="/wiki/undertaking" title="undertaking">undertaking</a> = 13321.1 <a href="/wiki/disclaimer" title="disclaimer">disclaimer</a> = 13317.1 <a href="/wiki/characteristics" title="characteristics">characteristics</a> = 13302.9 <a href="/wiki/stare" title="stare">stare</a> = 13291.8 <a href="/wiki/specimens" title="specimens">specimens</a> = 13291.0 <a href="/wiki/ascertain" title="ascertain">ascertain</a> = 13288.6 <a href="/wiki/pledge" title="pledge">pledge</a> = 13287.1 <a href="/wiki/earn" title="earn">earn</a> = 13286.3 <a href="/wiki/warfare" title="warfare">warfare</a> = 13285.5 <a href="/wiki/supposing" title="supposing">supposing</a> = 13279.9 <a href="/wiki/subsequently" title="subsequently">subsequently</a> = 13279.1 <a href="/wiki/attending" title="attending">attending</a> = 13278.4 <a href="/wiki/angrily" title="angrily">angrily</a> = 13273.6 <a href="/wiki/select" title="select">select</a> = 13268.9 <a href="/wiki/animated" title="animated">animated</a> = 13267.3 <a href="/wiki/industrial" title="industrial">industrial</a> = 13267.3 <a href="/wiki/hurriedly" title="hurriedly">hurriedly</a> = 13259.4 <a href="/wiki/manhood" title="manhood">manhood</a> = 13257.0 <a href="/wiki/quantities" title="quantities">quantities</a> = 13246.7 <a href="/wiki/interpretation" title="interpretation">interpretation</a> = 13245.9</p>
337
+ <h4><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=57" title="Edit section: 5001 - 6000">edit</a>]</span> <span class="mw-headline" id="5001_-_6000">5001 - 6000</span></h4>
338
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=58" title="Edit section: 5001 - 5100">edit</a>]</span> <span class="mw-headline" id="5001_-_5100">5001 - 5100</span></h5>
339
+ <p><a href="/wiki/dressing" title="dressing">dressing</a> = 13242.0 <a href="/wiki/rejoiced" title="rejoiced">rejoiced</a> = 13241.2 <a href="/w/index.php?title=edinburgh&amp;action=edit&amp;redlink=1" class="new" title="edinburgh (page does not exist)">edinburgh</a> = 13238.8 <a href="/w/index.php?title=catherine&amp;action=edit&amp;redlink=1" class="new" title="catherine (page does not exist)">catherine</a> = 13236.4 <a href="/wiki/challenge" title="challenge">challenge</a> = 13236.4 <a href="/wiki/produces" title="produces">produces</a> = 13236.4 <a href="/wiki/forbid" title="forbid">forbid</a> = 13235.6 <a href="/wiki/gang" title="gang">gang</a> = 13234.8 <a href="/wiki/boiled" title="boiled">boiled</a> = 13233.3 <a href="/wiki/shouts" title="shouts">shouts</a> = 13231.7 <a href="/wiki/so-called" title="so-called">so-called</a> = 13229.3 <a href="/wiki/theme" title="theme">theme</a> = 13229.3 <a href="/wiki/thankful" title="thankful">thankful</a> = 13227.7 <a href="/wiki/admission" title="admission">admission</a> = 13226.9 <a href="/wiki/enters" title="enters">enters</a> = 13218.2 <a href="/wiki/elevated" title="elevated">elevated</a> = 13217.4 <a href="/w/index.php?title=frenchman&amp;action=edit&amp;redlink=1" class="new" title="frenchman (page does not exist)">frenchman</a> = 13208.7 <a href="/wiki/pool" title="pool">pool</a> = 13204.8 <a href="/wiki/terrified" title="terrified">terrified</a> = 13203.2 <a href="/wiki/lads" title="lads">lads</a> = 13202.4 <a href="/wiki/persisted" title="persisted">persisted</a> = 13189.7 <a href="/wiki/conference" title="conference">conference</a> = 13185.0 <a href="/wiki/equality" title="equality">equality</a> = 13183.4 <a href="/wiki/genus" title="genus">genus</a> = 13180.3 <a href="/wiki/didst" title="didst">didst</a> = 13176.3 <a href="/wiki/newly" title="newly">newly</a> = 13172.3 <a href="/wiki/generals" title="generals">generals</a> = 13171.5 <a href="/wiki/surroundings" title="surroundings">surroundings</a> = 13162.1 <a href="/wiki/sorrows" title="sorrows">sorrows</a> = 13158.9 <a href="/wiki/occasioned" title="occasioned">occasioned</a> = 13154.1 <a href="/wiki/invasion" title="invasion">invasion</a> = 13151.0 <a href="/wiki/workmen" title="workmen">workmen</a> = 13147.0 <a href="/wiki/monks" title="monks">monks</a> = 13145.4 <a href="/wiki/sends" title="sends">sends</a> = 13145.4 <a href="/w/index.php?title=turkish&amp;action=edit&amp;redlink=1" class="new" title="turkish (page does not exist)">turkish</a> = 13144.7 <a href="/wiki/discretion" title="discretion">discretion</a> = 13141.5 <a href="/wiki/pattern" title="pattern">pattern</a> = 13139.9 <a href="/wiki/reveal" title="reveal">reveal</a> = 13139.1 <a href="/wiki/endured" title="endured">endured</a> = 13128.8 <a href="/wiki/resolve" title="resolve">resolve</a> = 13128.0 <a href="/w/index.php?title=columbia&amp;action=edit&amp;redlink=1" class="new" title="columbia (page does not exist)">columbia</a> = 13121.7 <a href="/wiki/preach" title="preach">preach</a> = 13120.9 <a href="/wiki/exceeding" title="exceeding">exceeding</a> = 13119.3 <a href="/wiki/ringing" title="ringing">ringing</a> = 13117.0 <a href="/wiki/triumphant" title="triumphant">triumphant</a> = 13117.0 <a href="/wiki/defiance" title="defiance">defiance</a> = 13113.8 <a href="/wiki/errand" title="errand">errand</a> = 13105.1 <a href="/wiki/woke" title="woke">woke</a> = 13104.3 <a href="/wiki/grandmother" title="grandmother">grandmother</a> = 13103.5 <a href="/wiki/weighed" title="weighed">weighed</a> = 13095.6 <a href="/wiki/wool" title="wool">wool</a> = 13092.4 <a href="/wiki/orleans" title="orleans" class="mw-redirect">orleans</a> = 13080.6 <a href="/wiki/communicate" title="communicate">communicate</a> = 13078.2 <a href="/wiki/strikes" title="strikes">strikes</a> = 13075.8 <a href="/wiki/promising" title="promising">promising</a> = 13066.3 <a href="/wiki/scenery" title="scenery">scenery</a> = 13066.3 <a href="/wiki/righteous" title="righteous">righteous</a> = 13065.5 <a href="/wiki/essentially" title="essentially">essentially</a> = 13064.0 <a href="/wiki/oppose" title="oppose">oppose</a> = 13060.8 <a href="/wiki/joyous" title="joyous">joyous</a> = 13053.7 <a href="/wiki/specimen" title="specimen">specimen</a> = 13052.9 <a href="/wiki/doctors" title="doctors">doctors</a> = 13049.7 <a href="/wiki/eloquent" title="eloquent">eloquent</a> = 13045.0 <a href="/wiki/manager" title="manager">manager</a> = 13045.0 <a href="/wiki/organs" title="organs">organs</a> = 13043.4 <a href="/wiki/sticks" title="sticks">sticks</a> = 13042.6 <a href="/wiki/drag" title="drag">drag</a> = 13041.0 <a href="/wiki/haunted" title="haunted">haunted</a> = 13041.0 <a href="/wiki/chorus" title="chorus">chorus</a> = 13040.2 <a href="/wiki/rational" title="rational">rational</a> = 13025.2 <a href="/wiki/crop" title="crop">crop</a> = 13023.6 <a href="/wiki/processing" title="processing">processing</a> = 13023.6 <a href="/wiki/accurate" title="accurate">accurate</a> = 13018.9 <a href="/wiki/wolf" title="wolf">wolf</a> = 13010.9 <a href="/wiki/adorned" title="adorned">adorned</a> = 13009.4 <a href="/wiki/sheets" title="sheets">sheets</a> = 13007.8 <a href="/wiki/resort" title="resort">resort</a> = 13006.2 <a href="/wiki/refusal" title="refusal">refusal</a> = 13002.2 <a href="/wiki/bond" title="bond">bond</a> = 12999.1 <a href="/wiki/vicinity" title="vicinity">vicinity</a> = 12992.8 <a href="/wiki/preacher" title="preacher">preacher</a> = 12990.4 <a href="/wiki/sympathetic" title="sympathetic">sympathetic</a> = 12988.0 <a href="/wiki/casting" title="casting">casting</a> = 12987.2 <a href="/wiki/opens" title="opens">opens</a> = 12982.5 <a href="/wiki/prophets" title="prophets">prophets</a> = 12980.1 <a href="/wiki/horns" title="horns">horns</a> = 12978.5 <a href="/wiki/warmly" title="warmly">warmly</a> = 12976.1 <a href="/wiki/salary" title="salary">salary</a> = 12970.6 <a href="/wiki/continuous" title="continuous">continuous</a> = 12965.9 <a href="/wiki/satan" title="satan">satan</a> = 12962.7 <a href="/wiki/continual" title="continual">continual</a> = 12959.5 <a href="/wiki/defended" title="defended">defended</a> = 12959.5 <a href="/wiki/breaks" title="breaks">breaks</a> = 12958.7 <a href="/wiki/workers" title="workers">workers</a> = 12957.9 <a href="/wiki/lantern" title="lantern">lantern</a> = 12957.2 <a href="/wiki/balls" title="balls">balls</a> = 12955.6 <a href="/wiki/rod" title="rod">rod</a> = 12955.6 <a href="/wiki/blaze" title="blaze">blaze</a> = 12952.4 <a href="/wiki/examining" title="examining">examining</a> = 12951.6 <a href="/w/index.php?title=naples&amp;action=edit&amp;redlink=1" class="new" title="naples (page does not exist)">naples</a> = 12951.6</p>
340
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=59" title="Edit section: 5101 - 5200">edit</a>]</span> <span class="mw-headline" id="5101_-_5200">5101 - 5200</span></h5>
341
+ <p><a href="/wiki/peculiarly" title="peculiarly">peculiarly</a> = 12950.0 <a href="/wiki/vegetables" title="vegetables">vegetables</a> = 12950.0 <a href="/wiki/ingenious" title="ingenious">ingenious</a> = 12948.4 <a href="/wiki/excite" title="excite">excite</a> = 12942.1 <a href="/wiki/howard" title="howard" class="mw-redirect">howard</a> = 12937.4 <a href="/wiki/horseback" title="horseback">horseback</a> = 12935.8 <a href="/wiki/re-use" title="re-use">re-use</a> = 12923.1 <a href="/w/index.php?title=louisiana&amp;action=edit&amp;redlink=1" class="new" title="louisiana (page does not exist)">louisiana</a> = 12921.6 <a href="/wiki/farmers" title="farmers">farmers</a> = 12920.0 <a href="/wiki/wildly" title="wildly">wildly</a> = 12919.2 <a href="/wiki/mouths" title="mouths">mouths</a> = 12916.8 <a href="/wiki/carpet" title="carpet">carpet</a> = 12912.8 <a href="/wiki/sadness" title="sadness">sadness</a> = 12910.5 <a href="/wiki/customary" title="customary">customary</a> = 12904.1 <a href="/wiki/circles" title="circles">circles</a> = 12903.4 <a href="/wiki/aren%27t" title="aren't">aren't</a> = 12895.4 <a href="/wiki/wonderfully" title="wonderfully">wonderfully</a> = 12891.5 <a href="/wiki/max" title="max">max</a> = 12889.9 <a href="/wiki/juan" title="juan">juan</a> = 12885.9 <a href="/wiki/successor" title="successor">successor</a> = 12871.7 <a href="/wiki/allied" title="allied">allied</a> = 12869.3 <a href="/wiki/ceiling" title="ceiling">ceiling</a> = 12863.8 <a href="/wiki/confirmation" title="confirmation">confirmation</a> = 12855.9 <a href="/wiki/glances" title="glances">glances</a> = 12855.1 <a href="/wiki/diamonds" title="diamonds">diamonds</a> = 12851.1 <a href="/wiki/goal" title="goal">goal</a> = 12848.0 <a href="/wiki/representations" title="representations">representations</a> = 12845.6 <a href="/wiki/cash" title="cash">cash</a> = 12840.1 <a href="/wiki/vacant" title="vacant">vacant</a> = 12837.7 <a href="/wiki/antiquity" title="antiquity">antiquity</a> = 12829.8 <a href="/wiki/despise" title="despise">despise</a> = 12826.6 <a href="/wiki/lawn" title="lawn">lawn</a> = 12817.9 <a href="/wiki/they%27ll" title="they'll">they'll</a> = 12817.9 <a href="/wiki/appealed" title="appealed">appealed</a> = 12814.0 <a href="/wiki/turkey" title="turkey">turkey</a> = 12811.6 <a href="/wiki/texts" title="texts">texts</a> = 12809.2 <a href="/wiki/neighbor" title="neighbor">neighbor</a> = 12805.3 <a href="/wiki/spreading" title="spreading">spreading</a> = 12802.9 <a href="/wiki/discharged" title="discharged">discharged</a> = 12792.6 <a href="/wiki/phrases" title="phrases">phrases</a> = 12791.8 <a href="/wiki/ultimate" title="ultimate">ultimate</a> = 12785.5 <a href="/wiki/tastes" title="tastes">tastes</a> = 12781.5 <a href="/wiki/submission" title="submission">submission</a> = 12779.1 <a href="/wiki/entry" title="entry">entry</a> = 12775.2 <a href="/w/index.php?title=rachel&amp;action=edit&amp;redlink=1" class="new" title="rachel (page does not exist)">rachel</a> = 12769.7 <a href="/wiki/blush" title="blush">blush</a> = 12760.2 <a href="/wiki/monument" title="monument">monument</a> = 12757.8 <a href="/wiki/hardy" title="hardy">hardy</a> = 12756.2 <a href="/wiki/thorough" title="thorough">thorough</a> = 12755.4 <a href="/wiki/ein" title="ein">ein</a> = 12753.8 <a href="/wiki/ecclesiastical" title="ecclesiastical">ecclesiastical</a> = 12751.5 <a href="/wiki/fertile" title="fertile">fertile</a> = 12745.1 <a href="/wiki/exciting" title="exciting">exciting</a> = 12744.3 <a href="/wiki/captive" title="captive">captive</a> = 12738.8 <a href="/wiki/severity" title="severity">severity</a> = 12736.4 <a href="/wiki/considerations" title="considerations">considerations</a> = 12735.6 <a href="/wiki/shew" title="shew">shew</a> = 12734.8 <a href="/wiki/faster" title="faster">faster</a> = 12730.9 <a href="/w/index.php?title=louise&amp;action=edit&amp;redlink=1" class="new" title="louise (page does not exist)">louise</a> = 12726.1 <a href="/wiki/grandeur" title="grandeur">grandeur</a> = 12723.0 <a href="/wiki/winning" title="winning">winning</a> = 12716.6 <a href="/wiki/solely" title="solely">solely</a> = 12713.5 <a href="/wiki/globe" title="globe">globe</a> = 12709.5 <a href="/wiki/malice" title="malice">malice</a> = 12708.7 <a href="/wiki/echoed" title="echoed">echoed</a> = 12706.4 <a href="/wiki/lodging" title="lodging">lodging</a> = 12692.9 <a href="/wiki/conservative" title="conservative">conservative</a> = 12692.1 <a href="/wiki/throng" title="throng">throng</a> = 12691.3 <a href="/wiki/prosperous" title="prosperous">prosperous</a> = 12688.2 <a href="/wiki/whistle" title="whistle">whistle</a> = 12685.0 <a href="/wiki/floated" title="floated">floated</a> = 12671.6 <a href="/wiki/transferred" title="transferred">transferred</a> = 12667.6 <a href="/wiki/declaring" title="declaring">declaring</a> = 12662.1 <a href="/wiki/reckoned" title="reckoned">reckoned</a> = 12655.7 <a href="/wiki/cheese" title="cheese">cheese</a> = 12654.9 <a href="/wiki/bite" title="bite">bite</a> = 12653.4 <a href="/wiki/thoughtfully" title="thoughtfully">thoughtfully</a> = 12652.6 <a href="/wiki/breach" title="breach">breach</a> = 12643.1 <a href="/wiki/enthusiastic" title="enthusiastic">enthusiastic</a> = 12642.3 <a href="/wiki/cars" title="cars">cars</a> = 12638.3 <a href="/wiki/downstairs" title="downstairs">downstairs</a> = 12638.3 <a href="/wiki/allowing" title="allowing">allowing</a> = 12631.2 <a href="/wiki/invite" title="invite">invite</a> = 12629.6 <a href="/wiki/adjoining" title="adjoining">adjoining</a> = 12620.1 <a href="/wiki/dusk" title="dusk">dusk</a> = 12618.5 <a href="/wiki/cathedral" title="cathedral">cathedral</a> = 12617.0 <a href="/wiki/truths" title="truths">truths</a> = 12616.2 <a href="/wiki/plague" title="plague">plague</a> = 12612.2 <a href="/wiki/sandy" title="sandy">sandy</a> = 12609.8 <a href="/wiki/boil" title="boil">boil</a> = 12606.7 <a href="/wiki/caroline" title="caroline">caroline</a> = 12603.5 <a href="/wiki/beautifully" title="beautifully">beautifully</a> = 12600.4 <a href="/wiki/inhabited" title="inhabited">inhabited</a> = 12600.4 <a href="/wiki/tomorrow" title="tomorrow">tomorrow</a> = 12600.4 <a href="/wiki/exclamation" title="exclamation">exclamation</a> = 12599.6 <a href="/wiki/finishing" title="finishing">finishing</a> = 12590.9 <a href="/wiki/shocked" title="shocked">shocked</a> = 12589.3 <a href="/wiki/escort" title="escort">escort</a> = 12588.5 <a href="/wiki/forgetting" title="forgetting">forgetting</a> = 12584.5 <a href="/wiki/hanged" title="hanged">hanged</a> = 12582.9</p>
342
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=60" title="Edit section: 5201 - 5300">edit</a>]</span> <span class="mw-headline" id="5201_-_5300">5201 - 5300</span></h5>
343
+ <p><a href="/wiki/hats" title="hats">hats</a> = 12576.6 <a href="/wiki/mirth" title="mirth">mirth</a> = 12576.6 <a href="/wiki/uncomfortable" title="uncomfortable">uncomfortable</a> = 12574.2 <a href="/w/index.php?title=connecticut&amp;action=edit&amp;redlink=1" class="new" title="connecticut (page does not exist)">connecticut</a> = 12571.1 <a href="/wiki/bows" title="bows">bows</a> = 12568.7 <a href="/wiki/pierced" title="pierced">pierced</a> = 12562.4 <a href="/wiki/harbor" title="harbor">harbor</a> = 12561.6 <a href="/wiki/tricks" title="tricks">tricks</a> = 12560.0 <a href="/wiki/rubbed" title="rubbed">rubbed</a> = 12559.2 <a href="/wiki/apparatus" title="apparatus">apparatus</a> = 12556.0 <a href="/wiki/mysteries" title="mysteries">mysteries</a> = 12541.0 <a href="/wiki/honesty" title="honesty">honesty</a> = 12537.9 <a href="/wiki/negroes" title="negroes">negroes</a> = 12535.5 <a href="/wiki/concerns" title="concerns">concerns</a> = 12529.9 <a href="/wiki/wander" title="wander">wander</a> = 12529.9 <a href="/wiki/assert" title="assert">assert</a> = 12528.4 <a href="/wiki/ceremonies" title="ceremonies">ceremonies</a> = 12528.4 <a href="/wiki/sacrificed" title="sacrificed">sacrificed</a> = 12520.4 <a href="/wiki/utterance" title="utterance">utterance</a> = 12518.1 <a href="/wiki/dismay" title="dismay">dismay</a> = 12513.3 <a href="/wiki/fright" title="fright">fright</a> = 12510.2 <a href="/wiki/rail" title="rail">rail</a> = 12509.4 <a href="/wiki/reflections" title="reflections">reflections</a> = 12508.6 <a href="/wiki/crops" title="crops">crops</a> = 12501.5 <a href="/wiki/pushing" title="pushing">pushing</a> = 12498.3 <a href="/wiki/proves" title="proves">proves</a> = 12496.7 <a href="/wiki/jimmy" title="jimmy">jimmy</a> = 12495.1 <a href="/wiki/pathetic" title="pathetic">pathetic</a> = 12493.5 <a href="/wiki/imperfect" title="imperfect">imperfect</a> = 12487.2 <a href="/wiki/haughty" title="haughty">haughty</a> = 12481.7 <a href="/wiki/navy" title="navy">navy</a> = 12481.7 <a href="/wiki/fortress" title="fortress">fortress</a> = 12478.5 <a href="/wiki/hurrying" title="hurrying">hurrying</a> = 12476.9 <a href="/wiki/x" title="x">x</a> = 12474.6 <a href="/wiki/blessings" title="blessings">blessings</a> = 12471.4 <a href="/wiki/attempting" title="attempting">attempting</a> = 12466.6 <a href="/wiki/insects" title="insects">insects</a> = 12465.9 <a href="/wiki/selling" title="selling">selling</a> = 12456.4 <a href="/wiki/appreciation" title="appreciation">appreciation</a> = 12455.6 <a href="/wiki/suppressed" title="suppressed">suppressed</a> = 12446.1 <a href="/wiki/acquire" title="acquire">acquire</a> = 12444.5 <a href="/wiki/offensive" title="offensive">offensive</a> = 12443.7 <a href="/wiki/ripe" title="ripe">ripe</a> = 12435.0 <a href="/wiki/dresses" title="dresses">dresses</a> = 12432.6 <a href="/wiki/reigned" title="reigned">reigned</a> = 12427.9 <a href="/wiki/coldly" title="coldly">coldly</a> = 12417.6 <a href="/wiki/candles" title="candles">candles</a> = 12412.1 <a href="/wiki/km" title="km">km</a> = 12409.7 <a href="/wiki/sixth" title="sixth">sixth</a> = 12398.6 <a href="/wiki/blazing" title="blazing">blazing</a> = 12397.8 <a href="/wiki/youngest" title="youngest">youngest</a> = 12395.4 <a href="/wiki/mask" title="mask">mask</a> = 12394.7 <a href="/wiki/florida" title="florida">florida</a> = 12393.9 <a href="/wiki/lecture" title="lecture">lecture</a> = 12393.9 <a href="/wiki/parlor" title="parlor">parlor</a> = 12393.9 <a href="/wiki/decidedly" title="decidedly">decidedly</a> = 12392.3 <a href="/wiki/whereby" title="whereby">whereby</a> = 12390.7 <a href="/wiki/gordon" title="gordon">gordon</a> = 12386.0 <a href="/wiki/reverend" title="reverend">reverend</a> = 12386.0 <a href="/wiki/successive" title="successive">successive</a> = 12385.2 <a href="/wiki/perception" title="perception">perception</a> = 12383.6 <a href="/wiki/buffalo" title="buffalo">buffalo</a> = 12381.2 <a href="/wiki/sire" title="sire">sire</a> = 12378.8 <a href="/wiki/quitted" title="quitted">quitted</a> = 12375.7 <a href="/wiki/keys" title="keys">keys</a> = 12374.9 <a href="/wiki/develop" title="develop">develop</a> = 12373.3 <a href="/wiki/function" title="function">function</a> = 12358.3 <a href="/wiki/morals" title="morals">morals</a> = 12356.7 <a href="/wiki/damned" title="damned">damned</a> = 12355.1 <a href="/wiki/vexed" title="vexed">vexed</a> = 12345.6 <a href="/wiki/2d" title="2d">2d</a> = 12344.8 <a href="/wiki/pouring" title="pouring">pouring</a> = 12340.9 <a href="/wiki/bullet" title="bullet">bullet</a> = 12333.7 <a href="/wiki/excessive" title="excessive">excessive</a> = 12332.9 <a href="/wiki/bind" title="bind">bind</a> = 12325.8 <a href="/wiki/identical" title="identical">identical</a> = 12325.0 <a href="/wiki/cliffs" title="cliffs">cliffs</a> = 12317.9 <a href="/wiki/tools" title="tools">tools</a> = 12312.4 <a href="/w/index.php?title=byron&amp;action=edit&amp;redlink=1" class="new" title="byron (page does not exist)">byron</a> = 12309.2 <a href="/wiki/mexican" title="mexican">mexican</a> = 12308.4 <a href="/wiki/piety" title="piety">piety</a> = 12308.4 <a href="/wiki/superstition" title="superstition">superstition</a> = 12304.5 <a href="/wiki/git" title="git">git</a> = 12302.9 <a href="/wiki/substantial" title="substantial">substantial</a> = 12302.9 <a href="/wiki/bulk" title="bulk">bulk</a> = 12293.4 <a href="/wiki/prevail" title="prevail">prevail</a> = 12293.4 <a href="/wiki/wiser" title="wiser">wiser</a> = 12291.8 <a href="/wiki/preaching" title="preaching">preaching</a> = 12284.7 <a href="/wiki/prolonged" title="prolonged">prolonged</a> = 12284.7 <a href="/wiki/annoyed" title="annoyed">annoyed</a> = 12276.0 <a href="/w/index.php?title=westminster&amp;action=edit&amp;redlink=1" class="new" title="westminster (page does not exist)">westminster</a> = 12275.2 <a href="/wiki/splendour" title="splendour">splendour</a> = 12273.6 <a href="/wiki/remembering" title="remembering">remembering</a> = 12272.0 <a href="/w/index.php?title=richmond&amp;action=edit&amp;redlink=1" class="new" title="richmond (page does not exist)">richmond</a> = 12259.4 <a href="/wiki/upset" title="upset">upset</a> = 12251.5 <a href="/wiki/cab" title="cab">cab</a> = 12250.7 <a href="/wiki/bunch" title="bunch">bunch</a> = 12244.3 <a href="/wiki/pencil" title="pencil">pencil</a> = 12243.5 <a href="/wiki/subjected" title="subjected">subjected</a> = 12243.5 <a href="/wiki/vegetable" title="vegetable">vegetable</a> = 12241.2</p>
344
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=61" title="Edit section: 5301 - 5400">edit</a>]</span> <span class="mw-headline" id="5301_-_5400">5301 - 5400</span></h5>
345
+ <p><a href="/wiki/exhibit" title="exhibit">exhibit</a> = 12238.8 <a href="/wiki/emerged" title="emerged">emerged</a> = 12237.2 <a href="/wiki/cooked" title="cooked">cooked</a> = 12235.6 <a href="/wiki/hay" title="hay">hay</a> = 12233.3 <a href="/w/index.php?title=kansas&amp;action=edit&amp;redlink=1" class="new" title="kansas (page does not exist)">kansas</a> = 12233.3 <a href="/wiki/gale" title="gale">gale</a> = 12226.9 <a href="/wiki/preached" title="preached">preached</a> = 12226.9 <a href="/w/index.php?title=arnold&amp;action=edit&amp;redlink=1" class="new" title="arnold (page does not exist)">arnold</a> = 12219.0 <a href="/wiki/trousers" title="trousers">trousers</a> = 12217.4 <a href="/wiki/debate" title="debate">debate</a> = 12213.5 <a href="/wiki/dated" title="dated">dated</a> = 12204.0 <a href="/wiki/tumult" title="tumult">tumult</a> = 12204.0 <a href="/wiki/corruption" title="corruption">corruption</a> = 12202.4 <a href="/wiki/summons" title="summons">summons</a> = 12201.6 <a href="/wiki/comrade" title="comrade">comrade</a> = 12193.7 <a href="/wiki/eternity" title="eternity">eternity</a> = 12193.7 <a href="/wiki/hears" title="hears">hears</a> = 12193.7 <a href="/wiki/lingered" title="lingered">lingered</a> = 12188.2 <a href="/wiki/propriety" title="propriety">propriety</a> = 12187.4 <a href="/wiki/stillness" title="stillness">stillness</a> = 12185.8 <a href="/wiki/partial" title="partial">partial</a> = 12182.6 <a href="/wiki/welcomed" title="welcomed">welcomed</a> = 12182.6 <a href="/wiki/cabinet" title="cabinet">cabinet</a> = 12178.7 <a href="/wiki/proceeds" title="proceeds">proceeds</a> = 12177.9 <a href="/wiki/vow" title="vow">vow</a> = 12176.3 <a href="/wiki/quaint" title="quaint">quaint</a> = 12174.7 <a href="/wiki/soup" title="soup">soup</a> = 12173.9 <a href="/wiki/beef" title="beef">beef</a> = 12170.8 <a href="/wiki/rests" title="rests">rests</a> = 12165.2 <a href="/wiki/slay" title="slay">slay</a> = 12164.4 <a href="/wiki/surgeon" title="surgeon">surgeon</a> = 12163.6 <a href="/wiki/irresistible" title="irresistible">irresistible</a> = 12158.9 <a href="/wiki/sealed" title="sealed">sealed</a> = 12149.4 <a href="/wiki/repeating" title="repeating">repeating</a> = 12146.2 <a href="/wiki/needn%27t" title="needn't">needn't</a> = 12144.7 <a href="/wiki/allowance" title="allowance">allowance</a> = 12143.1 <a href="/wiki/undertaken" title="undertaken">undertaken</a> = 12136.7 <a href="/wiki/treachery" title="treachery">treachery</a> = 12135.2 <a href="/wiki/posts" title="posts">posts</a> = 12131.2 <a href="/wiki/borders" title="borders">borders</a> = 12128.8 <a href="/wiki/attendant" title="attendant">attendant</a> = 12127.3 <a href="/wiki/unite" title="unite">unite</a> = 12123.3 <a href="/wiki/murderer" title="murderer">murderer</a> = 12120.9 <a href="/wiki/owners" title="owners">owners</a> = 12116.2 <a href="/wiki/nm" title="nm">nm</a> = 12115.4 <a href="/wiki/sweeping" title="sweeping">sweeping</a> = 12114.6 <a href="/wiki/unconsciously" title="unconsciously">unconsciously</a> = 12108.3 <a href="/wiki/blade" title="blade">blade</a> = 12101.9 <a href="/wiki/saviour" title="saviour">saviour</a> = 12099.6 <a href="/wiki/theories" title="theories">theories</a> = 12099.6 <a href="/wiki/graham" title="graham">graham</a> = 12098.8 <a href="/wiki/behaved" title="behaved">behaved</a> = 12096.4 <a href="/wiki/pleaded" title="pleaded">pleaded</a> = 12095.6 <a href="/wiki/spy" title="spy">spy</a> = 12094.8 <a href="/wiki/possesses" title="possesses">possesses</a> = 12094.0 <a href="/wiki/lawful" title="lawful">lawful</a> = 12091.7 <a href="/w/index.php?title=tommy&amp;action=edit&amp;redlink=1" class="new" title="tommy (page does not exist)">tommy</a> = 12091.7 <a href="/wiki/seasons" title="seasons">seasons</a> = 12090.1 <a href="/wiki/withdrawn" title="withdrawn">withdrawn</a> = 12090.1 <a href="/wiki/reckless" title="reckless">reckless</a> = 12086.9 <a href="/wiki/factory" title="factory">factory</a> = 12086.1 <a href="/wiki/shades" title="shades">shades</a> = 12083.7 <a href="/wiki/gossip" title="gossip">gossip</a> = 12080.6 <a href="/wiki/seventh" title="seventh">seventh</a> = 12079.0 <a href="/wiki/attendance" title="attendance">attendance</a> = 12075.0 <a href="/wiki/robes" title="robes">robes</a> = 12071.9 <a href="/wiki/journal" title="journal">journal</a> = 12065.5 <a href="/wiki/systems" title="systems">systems</a> = 12063.2 <a href="/w/index.php?title=dryden&amp;action=edit&amp;redlink=1" class="new" title="dryden (page does not exist)">dryden</a> = 12060.0 <a href="/wiki/maine" title="maine">maine</a> = 12059.2 <a href="/wiki/token" title="token">token</a> = 12054.5 <a href="/wiki/intimacy" title="intimacy">intimacy</a> = 12049.7 <a href="/wiki/abstract" title="abstract">abstract</a> = 12048.9 <a href="/wiki/machines" title="machines">machines</a> = 12048.1 <a href="/wiki/bestow" title="bestow">bestow</a> = 12037.1 <a href="/wiki/chanced" title="chanced">chanced</a> = 12036.3 <a href="/wiki/locks" title="locks">locks</a> = 12027.6 <a href="/wiki/honestly" title="honestly">honestly</a> = 12026.0 <a href="/wiki/legitimate" title="legitimate">legitimate</a> = 12026.0 <a href="/wiki/accent" title="accent">accent</a> = 12023.6 <a href="/wiki/symptoms" title="symptoms">symptoms</a> = 12017.3 <a href="/wiki/votes" title="votes">votes</a> = 12011.7 <a href="/wiki/ragged" title="ragged">ragged</a> = 12010.2 <a href="/w/index.php?title=thursday&amp;action=edit&amp;redlink=1" class="new" title="thursday (page does not exist)">thursday</a> = 12009.4 <a href="/wiki/manifested" title="manifested">manifested</a> = 12008.6 <a href="/wiki/fidelity" title="fidelity">fidelity</a> = 12006.2 <a href="/wiki/swinging" title="swinging">swinging</a> = 12000.7 <a href="/wiki/descending" title="descending">descending</a> = 11999.9 <a href="/wiki/sincerely" title="sincerely">sincerely</a> = 11999.9 <a href="/wiki/bred" title="bred">bred</a> = 11995.9 <a href="/wiki/whereof" title="whereof">whereof</a> = 11995.9 <a href="/wiki/indies" title="indies">indies</a> = 11994.3 <a href="/wiki/novels" title="novels">novels</a> = 11990.4 <a href="/wiki/league" title="league">league</a> = 11988.8 <a href="/wiki/failing" title="failing">failing</a> = 11984.1 <a href="/wiki/succeeding" title="succeeding">succeeding</a> = 11981.7 <a href="/wiki/santa" title="santa">santa</a> = 11979.3 <a href="/wiki/approve" title="approve">approve</a> = 11976.9 <a href="/wiki/cautiously" title="cautiously">cautiously</a> = 11976.1 <a href="/wiki/miller" title="miller">miller</a> = 11974.6</p>
346
+ <p><br /></p>
347
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=62" title="Edit section: 5401 - 5500">edit</a>]</span> <span class="mw-headline" id="5401_-_5500">5401 - 5500</span></h5>
348
+ <p><a href="/wiki/afflicted" title="afflicted">afflicted</a> = 11972.2 <a href="/wiki/lodgings" title="lodgings">lodgings</a> = 11972.2 <a href="/wiki/petition" title="petition">petition</a> = 11965.1 <a href="/wiki/traffic" title="traffic">traffic</a> = 11963.5 <a href="/wiki/sparkling" title="sparkling">sparkling</a> = 11957.2 <a href="/wiki/limb" title="limb">limb</a> = 11955.6 <a href="/wiki/architecture" title="architecture">architecture</a> = 11951.6 <a href="/wiki/disposal" title="disposal">disposal</a> = 11936.6 <a href="/wiki/carriages" title="carriages">carriages</a> = 11929.5 <a href="/wiki/crack" title="crack">crack</a> = 11929.5 <a href="/wiki/kindred" title="kindred">kindred</a> = 11927.1 <a href="/wiki/naught" title="naught">naught</a> = 11927.1 <a href="/wiki/ornament" title="ornament">ornament</a> = 11921.6 <a href="/wiki/slew" title="slew">slew</a> = 11916.8 <a href="/wiki/steward" title="steward">steward</a> = 11911.3 <a href="/wiki/fantastic" title="fantastic">fantastic</a> = 11905.7 <a href="/wiki/evolution" title="evolution">evolution</a> = 11901.0 <a href="/wiki/patiently" title="patiently">patiently</a> = 11901.0 <a href="/wiki/reverse" title="reverse">reverse</a> = 11896.2 <a href="/wiki/survey" title="survey">survey</a> = 11890.7 <a href="/wiki/dug" title="dug">dug</a> = 11889.1 <a href="/wiki/amuse" title="amuse">amuse</a> = 11881.2 <a href="/wiki/stretching" title="stretching">stretching</a> = 11879.6 <a href="/w/index.php?title=isaac&amp;action=edit&amp;redlink=1" class="new" title="isaac (page does not exist)">isaac</a> = 11874.1 <a href="/wiki/forthwith" title="forthwith">forthwith</a> = 11873.3 <a href="/wiki/contemporary" title="contemporary">contemporary</a> = 11869.3 <a href="/wiki/foliage" title="foliage">foliage</a> = 11867.8 <a href="/wiki/receives" title="receives">receives</a> = 11865.4 <a href="/wiki/scandal" title="scandal">scandal</a> = 11861.4 <a href="/wiki/donors" title="donors">donors</a> = 11858.3 <a href="/wiki/deliberate" title="deliberate">deliberate</a> = 11855.9 <a href="/wiki/influenced" title="influenced">influenced</a> = 11855.1 <a href="/wiki/intolerable" title="intolerable">intolerable</a> = 11851.1 <a href="/wiki/hearth" title="hearth">hearth</a> = 11849.6 <a href="/wiki/symbol" title="symbol">symbol</a> = 11847.2 <a href="/wiki/governments" title="governments">governments</a> = 11844.8 <a href="/wiki/repaired" title="repaired">repaired</a> = 11844.8 <a href="/wiki/pleasantly" title="pleasantly">pleasantly</a> = 11837.7 <a href="/wiki/homage" title="homage">homage</a> = 11836.1 <a href="/wiki/victorious" title="victorious">victorious</a> = 11835.3 <a href="/wiki/columbus" title="columbus">columbus</a> = 11831.4 <a href="/wiki/recovery" title="recovery">recovery</a> = 11830.6 <a href="/wiki/defined" title="defined">defined</a> = 11829.8 <a href="/wiki/attendants" title="attendants">attendants</a> = 11828.2 <a href="/wiki/modesty" title="modesty">modesty</a> = 11824.2 <a href="/wiki/diana" title="diana">diana</a> = 11821.1 <a href="/wiki/washing" title="washing">washing</a> = 11817.9 <a href="/wiki/pavement" title="pavement">pavement</a> = 11815.5 <a href="/wiki/unnatural" title="unnatural">unnatural</a> = 11814.8 <a href="/wiki/decisive" title="decisive">decisive</a> = 11811.6 <a href="/wiki/wisely" title="wisely">wisely</a> = 11806.1 <a href="/wiki/precise" title="precise">precise</a> = 11799.7 <a href="/wiki/negative" title="negative">negative</a> = 11798.9 <a href="/wiki/occurrence" title="occurrence">occurrence</a> = 11798.1 <a href="/wiki/snatched" title="snatched">snatched</a> = 11796.6 <a href="/wiki/shaft" title="shaft">shaft</a> = 11795.0 <a href="/wiki/linked" title="linked">linked</a> = 11793.4 <a href="/wiki/festival" title="festival">festival</a> = 11792.6 <a href="/wiki/exclusively" title="exclusively">exclusively</a> = 11788.6 <a href="/wiki/jove" title="jove">jove</a> = 11788.6 <a href="/wiki/wickedness" title="wickedness">wickedness</a> = 11785.5 <a href="/wiki/visions" title="visions">visions</a> = 11782.3 <a href="/wiki/maggie" title="maggie">maggie</a> = 11779.9 <a href="/wiki/rosy" title="rosy">rosy</a> = 11777.6 <a href="/wiki/carelessly" title="carelessly">carelessly</a> = 11776.0 <a href="/wiki/stem" title="stem">stem</a> = 11775.2 <a href="/wiki/corporation" title="corporation">corporation</a> = 11772.0 <a href="/wiki/dec" title="dec">dec</a> = 11771.2 <a href="/wiki/feeding" title="feeding">feeding</a> = 11771.2 <a href="/wiki/allen" title="allen">allen</a> = 11767.3 <a href="/wiki/cows" title="cows">cows</a> = 11762.5 <a href="/wiki/schemes" title="schemes">schemes</a> = 11754.6 <a href="/wiki/preference" title="preference">preference</a> = 11753.8 <a href="/wiki/urge" title="urge">urge</a> = 11753.8 <a href="/wiki/husbands" title="husbands">husbands</a> = 11752.3 <a href="/wiki/labours" title="labours">labours</a> = 11751.5 <a href="/wiki/shrill" title="shrill">shrill</a> = 11750.7 <a href="/wiki/exercises" title="exercises">exercises</a> = 11746.7 <a href="/wiki/sovereignty" title="sovereignty">sovereignty</a> = 11745.1 <a href="/wiki/reduce" title="reduce">reduce</a> = 11740.4 <a href="/wiki/distressed" title="distressed">distressed</a> = 11731.7 <a href="/wiki/clearing" title="clearing">clearing</a> = 11730.1 <a href="/wiki/removal" title="removal">removal</a> = 11727.7 <a href="/wiki/dean" title="dean">dean</a> = 11725.4 <a href="/wiki/scottish" title="scottish">scottish</a> = 11722.2 <a href="/wiki/assertion" title="assertion">assertion</a> = 11719.8 <a href="/wiki/accessible" title="accessible">accessible</a> = 11718.2 <a href="/wiki/comedy" title="comedy">comedy</a> = 11718.2 <a href="/wiki/flush" title="flush">flush</a> = 11718.2 <a href="/wiki/code" title="code">code</a> = 11715.9 <a href="/wiki/philosophers" title="philosophers">philosophers</a> = 11713.5 <a href="/wiki/adequate" title="adequate">adequate</a> = 11711.1 <a href="/wiki/vaguely" title="vaguely">vaguely</a> = 11711.1 <a href="/wiki/treason" title="treason">treason</a> = 11709.5 <a href="/wiki/hunter" title="hunter">hunter</a> = 11702.4 <a href="/wiki/chambers" title="chambers">chambers</a> = 11697.7 <a href="/wiki/split" title="split">split</a> = 11695.3 <a href="/wiki/yielding" title="yielding">yielding</a> = 11692.9 <a href="/wiki/newsletter" title="newsletter">newsletter</a> = 11691.3 <a href="/wiki/snake" title="snake">snake</a> = 11689.0</p>
349
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=63" title="Edit section: 5501 - 5600">edit</a>]</span> <span class="mw-headline" id="5501_-_5600">5501 - 5600</span></h5>
350
+ <p><a href="/wiki/pub" title="pub">pub</a> = 11685.8 <a href="/wiki/historian" title="historian">historian</a> = 11681.8 <a href="/wiki/ass" title="ass">ass</a> = 11678.7 <a href="/wiki/intensity" title="intensity">intensity</a> = 11678.7 <a href="/wiki/democracy" title="democracy">democracy</a> = 11669.2 <a href="/wiki/battery" title="battery">battery</a> = 11668.4 <a href="/wiki/draws" title="draws">draws</a> = 11666.8 <a href="/w/index.php?title=netherlands&amp;action=edit&amp;redlink=1" class="new" title="netherlands (page does not exist)">netherlands</a> = 11666.8 <a href="/wiki/creed" title="creed">creed</a> = 11666.0 <a href="/wiki/liking" title="liking">liking</a> = 11666.0 <a href="/wiki/luke" title="luke">luke</a> = 11655.7 <a href="/wiki/tyrant" title="tyrant">tyrant</a> = 11654.2 <a href="/wiki/strove" title="strove">strove</a> = 11647.8 <a href="/wiki/attraction" title="attraction">attraction</a> = 11647.0 <a href="/wiki/slaughter" title="slaughter">slaughter</a> = 11647.0 <a href="/wiki/dismal" title="dismal">dismal</a> = 11639.1 <a href="/wiki/deposited" title="deposited">deposited</a> = 11636.0 <a href="/wiki/assent" title="assent">assent</a> = 11632.8 <a href="/wiki/cups" title="cups">cups</a> = 11632.8 <a href="/wiki/concert" title="concert">concert</a> = 11628.8 <a href="/wiki/downward" title="downward">downward</a> = 11620.1 <a href="/wiki/canal" title="canal">canal</a> = 11616.2 <a href="/wiki/evenings" title="evenings">evenings</a> = 11612.2 <a href="/wiki/wax" title="wax">wax</a> = 11612.2 <a href="/wiki/detective" title="detective">detective</a> = 11609.1 <a href="/wiki/fancies" title="fancies">fancies</a> = 11604.3 <a href="/wiki/spoiled" title="spoiled">spoiled</a> = 11604.3 <a href="/wiki/revolver" title="revolver">revolver</a> = 11599.6 <a href="/wiki/murray" title="murray" class="mw-redirect">murray</a> = 11598.0 <a href="/wiki/earned" title="earned">earned</a> = 11586.1 <a href="/wiki/analysis" title="analysis">analysis</a> = 11582.2 <a href="/wiki/finer" title="finer">finer</a> = 11579.0 <a href="/wiki/paces" title="paces">paces</a> = 11575.8 <a href="/wiki/roaring" title="roaring">roaring</a> = 11573.5 <a href="/wiki/prompt" title="prompt">prompt</a> = 11570.3 <a href="/wiki/paperwork" title="paperwork">paperwork</a> = 11568.7 <a href="/wiki/wherefore" title="wherefore">wherefore</a> = 11567.9 <a href="/wiki/emphasis" title="emphasis">emphasis</a> = 11560.8 <a href="/wiki/sharing" title="sharing">sharing</a> = 11551.3 <a href="/wiki/delayed" title="delayed">delayed</a> = 11550.5 <a href="/wiki/inherited" title="inherited">inherited</a> = 11549.7 <a href="/wiki/bronze" title="bronze">bronze</a> = 11545.0 <a href="/wiki/waking" title="waking">waking</a> = 11542.6 <a href="/wiki/garment" title="garment">garment</a> = 11541.8 <a href="/wiki/redistributing" title="redistributing">redistributing</a> = 11541.8 <a href="/wiki/wholesome" title="wholesome">wholesome</a> = 11537.9 <a href="/wiki/remorse" title="remorse">remorse</a> = 11537.1 <a href="/wiki/plato" title="plato">plato</a> = 11535.5 <a href="/wiki/morris" title="morris">morris</a> = 11533.1 <a href="/wiki/stooped" title="stooped">stooped</a> = 11527.6 <a href="/wiki/dew" title="dew">dew</a> = 11524.4 <a href="/wiki/monk" title="monk">monk</a> = 11522.8 <a href="/wiki/thrill" title="thrill">thrill</a> = 11522.0 <a href="/wiki/hue" title="hue">hue</a> = 11515.7 <a href="/wiki/exclusive" title="exclusive">exclusive</a> = 11507.8 <a href="/wiki/funds" title="funds">funds</a> = 11507.8 <a href="/wiki/porter" title="porter">porter</a> = 11503.0 <a href="/wiki/uncommon" title="uncommon">uncommon</a> = 11502.3 <a href="/wiki/dash" title="dash">dash</a> = 11496.7 <a href="/wiki/strained" title="strained">strained</a> = 11494.3 <a href="/wiki/confounded" title="confounded">confounded</a> = 11492.8 <a href="/wiki/swim" title="swim">swim</a> = 11492.8 <a href="/wiki/strip" title="strip">strip</a> = 11488.0 <a href="/wiki/middle-aged" title="middle-aged">middle-aged</a> = 11483.3 <a href="/wiki/ultimately" title="ultimately">ultimately</a> = 11481.7 <a href="/wiki/team" title="team">team</a> = 11477.7 <a href="/wiki/missionary" title="missionary">missionary</a> = 11476.9 <a href="/wiki/esteemed" title="esteemed">esteemed</a> = 11461.9 <a href="/wiki/tracks" title="tracks">tracks</a> = 11446.9 <a href="/wiki/envelope" title="envelope">envelope</a> = 11444.5 <a href="/wiki/whoever" title="whoever">whoever</a> = 11443.7 <a href="/wiki/expensive" title="expensive">expensive</a> = 11442.9 <a href="/wiki/headquarters" title="headquarters">headquarters</a> = 11442.1 <a href="/wiki/cherished" title="cherished">cherished</a> = 11440.5 <a href="/wiki/brandy" title="brandy">brandy</a> = 11429.5 <a href="/wiki/startling" title="startling">startling</a> = 11427.1 <a href="/wiki/homer" title="homer">homer</a> = 11426.3 <a href="/wiki/talks" title="talks">talks</a> = 11425.5 <a href="/wiki/acute" title="acute">acute</a> = 11422.4 <a href="/wiki/cigarette" title="cigarette">cigarette</a> = 11417.6 <a href="/wiki/motor" title="motor">motor</a> = 11417.6 <a href="/wiki/embarrassed" title="embarrassed">embarrassed</a> = 11413.6 <a href="/wiki/janet" title="janet" class="mw-redirect">janet</a> = 11407.3 <a href="/wiki/volunteer" title="volunteer">volunteer</a> = 11402.6 <a href="/wiki/offspring" title="offspring">offspring</a> = 11401.8 <a href="/wiki/network" title="network">network</a> = 11397.8 <a href="/wiki/reaches" title="reaches">reaches</a> = 11397.8 <a href="/wiki/indispensable" title="indispensable">indispensable</a> = 11397.0 <a href="/wiki/plane" title="plane">plane</a> = 11393.9 <a href="/wiki/reaction" title="reaction">reaction</a> = 11392.3 <a href="/wiki/regiments" title="regiments">regiments</a> = 11385.2 <a href="/wiki/g" title="g">g</a> = 11383.6 <a href="/wiki/sums" title="sums">sums</a> = 11380.4 <a href="/wiki/partially" title="partially">partially</a> = 11379.6 <a href="/wiki/prejudices" title="prejudices">prejudices</a> = 11375.7 <a href="/wiki/proudly" title="proudly">proudly</a> = 11370.1 <a href="/wiki/baggage" title="baggage">baggage</a> = 11364.6 <a href="/wiki/terrace" title="terrace">terrace</a> = 11360.6 <a href="/wiki/deaf" title="deaf">deaf</a> = 11358.3 <a href="/wiki/allusion" title="allusion">allusion</a> = 11357.5</p>
351
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=64" title="Edit section: 5601 - 5700">edit</a>]</span> <span class="mw-headline" id="5601_-_5700">5601 - 5700</span></h5>
352
+ <p><a href="/wiki/grip" title="grip">grip</a> = 11357.5 <a href="/wiki/juice" title="juice">juice</a> = 11354.3 <a href="/w/index.php?title=isabel&amp;action=edit&amp;redlink=1" class="new" title="isabel (page does not exist)">isabel</a> = 11346.4 <a href="/wiki/resigned" title="resigned">resigned</a> = 11346.4 <a href="/wiki/humility" title="humility">humility</a> = 11343.2 <a href="/wiki/benjamin" title="benjamin">benjamin</a> = 11330.6 <a href="/wiki/blast" title="blast">blast</a> = 11330.6 <a href="/wiki/ministry" title="ministry">ministry</a> = 11329.8 <a href="/wiki/sexual" title="sexual">sexual</a> = 11329.8 <a href="/w/index.php?title=nile&amp;action=edit&amp;redlink=1" class="new" title="nile (page does not exist)">nile</a> = 11329.0 <a href="/wiki/diameter" title="diameter">diameter</a> = 11327.4 <a href="/wiki/troop" title="troop">troop</a> = 11325.8 <a href="/wiki/onward" title="onward">onward</a> = 11316.3 <a href="/wiki/crowds" title="crowds">crowds</a> = 11313.2 <a href="/wiki/marrying" title="marrying">marrying</a> = 11309.2 <a href="/wiki/tightly" title="tightly">tightly</a> = 11309.2 <a href="/wiki/sullen" title="sullen">sullen</a> = 11302.1 <a href="/wiki/brutal" title="brutal">brutal</a> = 11301.3 <a href="/wiki/axe" title="axe">axe</a> = 11300.5 <a href="/wiki/holmes" title="holmes">holmes</a> = 11293.4 <a href="/wiki/penalty" title="penalty">penalty</a> = 11292.6 <a href="/wiki/tops" title="tops">tops</a> = 11290.2 <a href="/wiki/diamond" title="diamond">diamond</a> = 11283.1 <a href="/wiki/boards" title="boards">boards</a> = 11274.4 <a href="/wiki/corridor" title="corridor">corridor</a> = 11274.4 <a href="/wiki/endowed" title="endowed">endowed</a> = 11266.5 <a href="/wiki/strengthened" title="strengthened">strengthened</a> = 11266.5 <a href="/wiki/cells" title="cells">cells</a> = 11248.3 <a href="/wiki/proportions" title="proportions">proportions</a> = 11246.7 <a href="/wiki/alternate" title="alternate">alternate</a> = 11242.8 <a href="/wiki/echo" title="echo">echo</a> = 11242.0 <a href="/wiki/restraint" title="restraint">restraint</a> = 11241.2 <a href="/wiki/trials" title="trials">trials</a> = 11240.4 <a href="/wiki/reads" title="reads">reads</a> = 11239.6 <a href="/wiki/identity" title="identity">identity</a> = 11238.8 <a href="/wiki/headed" title="headed">headed</a> = 11238.0 <a href="/wiki/softened" title="softened">softened</a> = 11237.2 <a href="/wiki/quivering" title="quivering">quivering</a> = 11231.7 <a href="/wiki/stages" title="stages">stages</a> = 11230.1 <a href="/wiki/sway" title="sway">sway</a> = 11225.4 <a href="/wiki/poetical" title="poetical">poetical</a> = 11224.6 <a href="/wiki/objected" title="objected">objected</a> = 11222.2 <a href="/wiki/screen" title="screen">screen</a> = 11220.6 <a href="/wiki/professed" title="professed">professed</a> = 11216.7 <a href="/wiki/dirt" title="dirt">dirt</a> = 11215.9 <a href="/wiki/ascertained" title="ascertained">ascertained</a> = 11215.1 <a href="/wiki/era" title="era">era</a> = 11213.5 <a href="/wiki/wider" title="wider">wider</a> = 11208.0 <a href="/wiki/ambassador" title="ambassador">ambassador</a> = 11205.6 <a href="/wiki/constituted" title="constituted">constituted</a> = 11205.6 <a href="/wiki/breed" title="breed">breed</a> = 11204.0 <a href="/wiki/interference" title="interference">interference</a> = 11204.0 <a href="/wiki/eyebrows" title="eyebrows">eyebrows</a> = 11197.7 <a href="/wiki/shapes" title="shapes">shapes</a> = 11197.7 <a href="/wiki/afar" title="afar">afar</a> = 11192.9 <a href="/wiki/consist" title="consist">consist</a> = 11183.4 <a href="/wiki/acceptance" title="acceptance">acceptance</a> = 11180.3 <a href="/wiki/displays" title="displays">displays</a> = 11176.3 <a href="/wiki/flashing" title="flashing">flashing</a> = 11176.3 <a href="/wiki/hunted" title="hunted">hunted</a> = 11173.1 <a href="/wiki/beauties" title="beauties">beauties</a> = 11172.4 <a href="/wiki/lazy" title="lazy">lazy</a> = 11172.4 <a href="/wiki/shrewd" title="shrewd">shrewd</a> = 11170.0 <a href="/wiki/extravagant" title="extravagant">extravagant</a> = 11169.2 <a href="/wiki/momentary" title="momentary">momentary</a> = 11169.2 <a href="/wiki/cordial" title="cordial">cordial</a> = 11166.8 <a href="/wiki/engineer" title="engineer">engineer</a> = 11166.0 <a href="/wiki/rapidity" title="rapidity">rapidity</a> = 11166.0 <a href="/wiki/nov" title="nov">nov</a> = 11163.6 <a href="/wiki/halt" title="halt">halt</a> = 11158.9 <a href="/wiki/alternative" title="alternative">alternative</a> = 11158.1 <a href="/wiki/devils" title="devils">devils</a> = 11156.5 <a href="/wiki/stamp" title="stamp">stamp</a> = 11154.9 <a href="/wiki/compact" title="compact">compact</a> = 11152.6 <a href="/wiki/whites" title="whites">whites</a> = 11147.0 <a href="/wiki/breathless" title="breathless">breathless</a> = 11146.2 <a href="/wiki/encoding" title="encoding">encoding</a> = 11146.2 <a href="/wiki/drift" title="drift">drift</a> = 11145.5 <a href="/wiki/disappear" title="disappear">disappear</a> = 11141.5 <a href="/wiki/roared" title="roared">roared</a> = 11138.3 <a href="/wiki/revived" title="revived">revived</a> = 11136.8 <a href="/wiki/counter" title="counter">counter</a> = 11134.4 <a href="/wiki/venus" title="venus">venus</a> = 11128.8 <a href="/wiki/imaginary" title="imaginary">imaginary</a> = 11128.0 <a href="/wiki/diminished" title="diminished">diminished</a> = 11127.3 <a href="/wiki/honoured" title="honoured">honoured</a> = 11123.3 <a href="/wiki/5th" title="5th">5th</a> = 11111.4 <a href="/wiki/despatched" title="despatched">despatched</a> = 11111.4 <a href="/wiki/objections" title="objections">objections</a> = 11111.4 <a href="/wiki/ray" title="ray">ray</a> = 11110.6 <a href="/wiki/climbing" title="climbing">climbing</a> = 11105.1 <a href="/wiki/attract" title="attract">attract</a> = 11103.5 <a href="/wiki/astonishing" title="astonishing">astonishing</a> = 11099.6 <a href="/wiki/competition" title="competition">competition</a> = 11097.2 <a href="/wiki/suggestions" title="suggestions">suggestions</a> = 11096.4 <a href="/wiki/ink" title="ink">ink</a> = 11082.2 <a href="/wiki/oft" title="oft">oft</a> = 11076.6 <a href="/wiki/crystal" title="crystal">crystal</a> = 11074.3 <a href="/wiki/shower" title="shower">shower</a> = 11074.3 <a href="/wiki/diseases" title="diseases">diseases</a> = 11067.1</p>
353
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=65" title="Edit section: 5701 - 5800">edit</a>]</span> <span class="mw-headline" id="5701_-_5800">5701 - 5800</span></h5>
354
+ <p><a href="/w/index.php?title=ferdinand&amp;action=edit&amp;redlink=1" class="new" title="ferdinand (page does not exist)">ferdinand</a> = 11065.5 <a href="/wiki/obedient" title="obedient">obedient</a> = 11062.4 <a href="/wiki/draught" title="draught">draught</a> = 11061.6 <a href="/wiki/wondrous" title="wondrous">wondrous</a> = 11057.6 <a href="/wiki/await" title="await">await</a> = 11049.7 <a href="/wiki/armour" title="armour">armour</a> = 11048.9 <a href="/wiki/massive" title="massive">massive</a> = 11048.1 <a href="/wiki/bottles" title="bottles">bottles</a> = 11047.4 <a href="/wiki/kin" title="kin">kin</a> = 11045.8 <a href="/wiki/cellar" title="cellar">cellar</a> = 11045.0 <a href="/wiki/falsehood" title="falsehood">falsehood</a> = 11041.8 <a href="/wiki/pillars" title="pillars">pillars</a> = 11041.0 <a href="/wiki/edgar" title="edgar" class="mw-redirect">edgar</a> = 11038.7 <a href="/wiki/philosophical" title="philosophical">philosophical</a> = 11033.1 <a href="/wiki/martha" title="martha" class="mw-redirect">martha</a> = 11031.5 <a href="/wiki/worlds" title="worlds">worlds</a> = 11022.0 <a href="/wiki/memorable" title="memorable">memorable</a> = 11015.7 <a href="/w/index.php?title=jacques&amp;action=edit&amp;redlink=1" class="new" title="jacques (page does not exist)">jacques</a> = 11011.0 <a href="/wiki/detected" title="detected">detected</a> = 11007.8 <a href="/wiki/stealing" title="stealing">stealing</a> = 11006.2 <a href="/wiki/noisy" title="noisy">noisy</a> = 11004.6 <a href="/wiki/henceforth" title="henceforth">henceforth</a> = 10996.7 <a href="/wiki/cicero" title="cicero">cicero</a> = 10995.1 <a href="/wiki/laden" title="laden">laden</a> = 10992.0 <a href="/wiki/frost" title="frost">frost</a> = 10986.4 <a href="/wiki/device" title="device">device</a> = 10984.9 <a href="/wiki/glare" title="glare">glare</a> = 10984.9 <a href="/wiki/touches" title="touches">touches</a> = 10984.1 <a href="/wiki/senate" title="senate">senate</a> = 10981.7 <a href="/wiki/lasting" title="lasting">lasting</a> = 10979.3 <a href="/wiki/communion" title="communion">communion</a> = 10976.9 <a href="/wiki/transport" title="transport">transport</a> = 10976.2 <a href="/w/index.php?title=constantinople&amp;action=edit&amp;redlink=1" class="new" title="constantinople (page does not exist)">constantinople</a> = 10975.4 <a href="/wiki/coffin" title="coffin">coffin</a> = 10973.8 <a href="/wiki/eventually" title="eventually">eventually</a> = 10973.0 <a href="/wiki/johnny" title="johnny">johnny</a> = 10973.0 <a href="/wiki/enclosed" title="enclosed">enclosed</a> = 10970.6 <a href="/wiki/forgiveness" title="forgiveness">forgiveness</a> = 10970.6 <a href="/wiki/awfully" title="awfully">awfully</a> = 10966.7 <a href="/wiki/clinging" title="clinging">clinging</a> = 10947.7 <a href="/wiki/darkened" title="darkened">darkened</a> = 10946.9 <a href="/wiki/contemplation" title="contemplation">contemplation</a> = 10944.5 <a href="/wiki/termed" title="termed">termed</a> = 10944.5 <a href="/wiki/manufacture" title="manufacture">manufacture</a> = 10942.1 <a href="/wiki/swallow" title="swallow">swallow</a> = 10935.0 <a href="/wiki/commonplace" title="commonplace">commonplace</a> = 10931.1 <a href="/wiki/nancy" title="nancy">nancy</a> = 10929.5 <a href="/wiki/resembled" title="resembled">resembled</a> = 10927.9 <a href="/wiki/she%27d" title="she'd">she'd</a> = 10927.1 <a href="/wiki/labors" title="labors">labors</a> = 10922.4 <a href="/wiki/contracted" title="contracted">contracted</a> = 10921.6 <a href="/wiki/inscription" title="inscription">inscription</a> = 10921.6 <a href="/wiki/comfortably" title="comfortably">comfortably</a> = 10905.7 <a href="/wiki/indulge" title="indulge">indulge</a> = 10901.0 <a href="/wiki/indulgence" title="indulgence">indulgence</a> = 10898.6 <a href="/wiki/bravely" title="bravely">bravely</a> = 10892.3 <a href="/wiki/kneeling" title="kneeling">kneeling</a> = 10890.7 <a href="/wiki/yea" title="yea">yea</a> = 10888.3 <a href="/wiki/keenly" title="keenly">keenly</a> = 10886.8 <a href="/wiki/exhibition" title="exhibition">exhibition</a> = 10884.4 <a href="/wiki/agricultural" title="agricultural">agricultural</a> = 10881.2 <a href="/wiki/enlightened" title="enlightened">enlightened</a> = 10879.6 <a href="/wiki/quest" title="quest">quest</a> = 10878.1 <a href="/wiki/compliments" title="compliments">compliments</a> = 10874.9 <a href="/wiki/crest" title="crest">crest</a> = 10868.6 <a href="/wiki/extension" title="extension">extension</a> = 10865.4 <a href="/wiki/uneasiness" title="uneasiness">uneasiness</a> = 10856.7 <a href="/wiki/constitute" title="constitute">constitute</a> = 10851.2 <a href="/wiki/inflicted" title="inflicted">inflicted</a> = 10850.4 <a href="/wiki/lakes" title="lakes">lakes</a> = 10848.0 <a href="/wiki/swing" title="swing">swing</a> = 10845.6 <a href="/wiki/meadow" title="meadow">meadow</a> = 10836.1 <a href="/wiki/noblest" title="noblest">noblest</a> = 10836.1 <a href="/wiki/downloading" title="downloading">downloading</a> = 10834.5 <a href="/wiki/complex" title="complex">complex</a> = 10826.6 <a href="/wiki/controversy" title="controversy">controversy</a> = 10824.3 <a href="/wiki/freed" title="freed">freed</a> = 10819.5 <a href="/wiki/resignation" title="resignation">resignation</a> = 10819.5 <a href="/wiki/tempest" title="tempest">tempest</a> = 10818.7 <a href="/wiki/guidance" title="guidance">guidance</a> = 10817.9 <a href="/wiki/prospects" title="prospects">prospects</a> = 10816.3 <a href="/wiki/humbly" title="humbly">humbly</a> = 10811.6 <a href="/wiki/lined" title="lined">lined</a> = 10809.2 <a href="/wiki/serene" title="serene">serene</a> = 10804.5 <a href="/wiki/shrugged" title="shrugged">shrugged</a> = 10797.4 <a href="/wiki/honours" title="honours">honours</a> = 10796.6 <a href="/wiki/roughly" title="roughly">roughly</a> = 10796.6 <a href="/wiki/checks" title="checks">checks</a> = 10795.0 <a href="/wiki/remarkably" title="remarkably">remarkably</a> = 10789.4 <a href="/wiki/dainty" title="dainty">dainty</a> = 10784.7 <a href="/wiki/overhead" title="overhead">overhead</a> = 10783.1 <a href="/wiki/commencement" title="commencement">commencement</a> = 10778.4 <a href="/wiki/singularly" title="singularly">singularly</a> = 10776.8 <a href="/wiki/brightness" title="brightness">brightness</a> = 10761.0 <a href="/wiki/oppression" title="oppression">oppression</a> = 10760.2 <a href="/wiki/repeatedly" title="repeatedly">repeatedly</a> = 10759.4 <a href="/wiki/conspiracy" title="conspiracy">conspiracy</a> = 10755.4 <a href="/wiki/restrain" title="restrain">restrain</a> = 10751.5 <a href="/wiki/splendor" title="splendor">splendor</a> = 10742.8 <a href="/wiki/preservation" title="preservation">preservation</a> = 10740.4</p>
355
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=66" title="Edit section: 5801 - 5900">edit</a>]</span> <span class="mw-headline" id="5801_-_5900">5801 - 5900</span></h5>
356
+ <p><a href="/wiki/pub" title="pub">pub</a> = 10739.6 <a href="/wiki/pepper" title="pepper">pepper</a> = 10738.0 <a href="/wiki/basin" title="basin">basin</a> = 10736.4 <a href="/wiki/creeping" title="creeping">creeping</a> = 10735.6 <a href="/wiki/matthew" title="matthew" class="mw-redirect">matthew</a> = 10730.9 <a href="/wiki/publicly" title="publicly">publicly</a> = 10729.3 <a href="/w/index.php?title=percy&amp;action=edit&amp;redlink=1" class="new" title="percy (page does not exist)">percy</a> = 10725.4 <a href="/wiki/continuing" title="continuing">continuing</a> = 10723.8 <a href="/wiki/grove" title="grove">grove</a> = 10721.4 <a href="/wiki/calamity" title="calamity">calamity</a> = 10719.8 <a href="/wiki/pony" title="pony">pony</a> = 10715.1 <a href="/wiki/vigour" title="vigour">vigour</a> = 10715.1 <a href="/wiki/melody" title="melody">melody</a> = 10711.1 <a href="/wiki/profitable" title="profitable">profitable</a> = 10711.1 <a href="/wiki/descendants" title="descendants">descendants</a> = 10710.3 <a href="/wiki/hire" title="hire">hire</a> = 10704.8 <a href="/wiki/speculation" title="speculation">speculation</a> = 10704.0 <a href="/wiki/discoveries" title="discoveries">discoveries</a> = 10699.3 <a href="/wiki/accepts" title="accepts">accepts</a> = 10698.5 <a href="/wiki/drunken" title="drunken">drunken</a> = 10698.5 <a href="/wiki/candidate" title="candidate">candidate</a> = 10696.9 <a href="/wiki/principally" title="principally">principally</a> = 10694.5 <a href="/wiki/worried" title="worried">worried</a> = 10692.1 <a href="/wiki/obstinate" title="obstinate">obstinate</a> = 10689.0 <a href="/wiki/hasten" title="hasten">hasten</a> = 10686.6 <a href="/wiki/foreigners" title="foreigners">foreigners</a> = 10682.6 <a href="/wiki/elderly" title="elderly">elderly</a> = 10681.1 <a href="/wiki/overwhelmed" title="overwhelmed">overwhelmed</a> = 10681.1 <a href="/wiki/instincts" title="instincts">instincts</a> = 10677.9 <a href="/wiki/telegraph" title="telegraph">telegraph</a> = 10670.8 <a href="/w/index.php?title=russell&amp;action=edit&amp;redlink=1" class="new" title="russell (page does not exist)">russell</a> = 10662.9 <a href="/wiki/university" title="university">university</a> = 10661.3 <a href="/wiki/ghastly" title="ghastly">ghastly</a> = 10660.5 <a href="/wiki/patron" title="patron">patron</a> = 10659.7 <a href="/wiki/varying" title="varying">varying</a> = 10658.1 <a href="/wiki/barbarous" title="barbarous">barbarous</a> = 10655.7 <a href="/wiki/celestial" title="celestial">celestial</a> = 10655.7 <a href="/wiki/t%27" title="t'">t'</a> = 10654.2 <a href="/wiki/patriotism" title="patriotism">patriotism</a> = 10653.4 <a href="/wiki/modify" title="modify">modify</a> = 10649.4 <a href="/wiki/earnestness" title="earnestness">earnestness</a> = 10647.0 <a href="/wiki/exertion" title="exertion">exertion</a> = 10646.2 <a href="/wiki/fox" title="fox">fox</a> = 10645.5 <a href="/wiki/refusing" title="refusing">refusing</a> = 10643.1 <a href="/wiki/horsemen" title="horsemen">horsemen</a> = 10639.1 <a href="/wiki/inspection" title="inspection">inspection</a> = 10634.4 <a href="/wiki/stations" title="stations">stations</a> = 10633.6 <a href="/wiki/grieved" title="grieved">grieved</a> = 10632.0 <a href="/wiki/louder" title="louder">louder</a> = 10632.0 <a href="/wiki/bursting" title="bursting">bursting</a> = 10625.7 <a href="/wiki/regretted" title="regretted">regretted</a> = 10620.9 <a href="/wiki/mournful" title="mournful">mournful</a> = 10615.4 <a href="/wiki/pursuing" title="pursuing">pursuing</a> = 10612.2 <a href="/wiki/traitor" title="traitor">traitor</a> = 10609.1 <a href="/wiki/associations" title="associations">associations</a> = 10601.9 <a href="/wiki/cautious" title="cautious">cautious</a> = 10598.0 <a href="/wiki/foundations" title="foundations">foundations</a> = 10598.0 <a href="/wiki/stamped" title="stamped">stamped</a> = 10598.0 <a href="/wiki/prior" title="prior">prior</a> = 10597.2 <a href="/wiki/undertook" title="undertook">undertook</a> = 10594.0 <a href="/wiki/telegram" title="telegram">telegram</a> = 10592.5 <a href="/wiki/beggar" title="beggar">beggar</a> = 10591.7 <a href="/wiki/chimney" title="chimney">chimney</a> = 10590.9 <a href="/wiki/complicated" title="complicated">complicated</a> = 10586.9 <a href="/wiki/davis" title="davis" class="mw-redirect">davis</a> = 10586.1 <a href="/wiki/striving" title="striving">striving</a> = 10586.1 <a href="/wiki/magistrates" title="magistrates">magistrates</a> = 10584.5 <a href="/wiki/converse" title="converse">converse</a> = 10582.2 <a href="/wiki/graces" title="graces">graces</a> = 10581.4 <a href="/wiki/wiped" title="wiped">wiped</a> = 10575.8 <a href="/wiki/oars" title="oars">oars</a> = 10572.7 <a href="/wiki/apology" title="apology">apology</a> = 10571.1 <a href="/wiki/scared" title="scared">scared</a> = 10571.1 <a href="/wiki/imprisonment" title="imprisonment">imprisonment</a> = 10569.5 <a href="/wiki/eastward" title="eastward">eastward</a> = 10567.9 <a href="/wiki/substitute" title="substitute">substitute</a> = 10565.6 <a href="/w/index.php?title=yahweh&amp;action=edit&amp;redlink=1" class="new" title="yahweh (page does not exist)">yahweh</a> = 10560.8 <a href="/wiki/handful" title="handful">handful</a> = 10557.6 <a href="/wiki/usage" title="usage">usage</a> = 10556.1 <a href="/wiki/lodged" title="lodged">lodged</a> = 10551.3 <a href="/w/index.php?title=of.&amp;action=edit&amp;redlink=1" class="new" title="of. (page does not exist)">of.</a> = 10551.3 <a href="/wiki/villain" title="villain">villain</a> = 10551.3 <a href="/wiki/banished" title="banished">banished</a> = 10541.8 <a href="/wiki/restoration" title="restoration">restoration</a> = 10541.0 <a href="/wiki/serpent" title="serpent">serpent</a> = 10538.7 <a href="/wiki/hedge" title="hedge">hedge</a> = 10534.7 <a href="/wiki/k" title="k">k</a> = 10534.7 <a href="/wiki/jurisdiction" title="jurisdiction">jurisdiction</a> = 10532.3 <a href="/wiki/captains" title="captains">captains</a> = 10530.7 <a href="/wiki/settlers" title="settlers">settlers</a> = 10530.7 <a href="/wiki/gaining" title="gaining">gaining</a> = 10530.0 <a href="/wiki/valiant" title="valiant">valiant</a> = 10530.0 <a href="/wiki/primary" title="primary">primary</a> = 10525.2 <a href="/wiki/storms" title="storms">storms</a> = 10525.2 <a href="/wiki/beam" title="beam">beam</a> = 10522.8 <a href="/wiki/victoria" title="victoria">victoria</a> = 10522.8 <a href="/wiki/tour" title="tour">tour</a> = 10512.5 <a href="/wiki/prophecy" title="prophecy">prophecy</a> = 10510.2 <a href="/wiki/spectacles" title="spectacles">spectacles</a> = 10510.2 <a href="/wiki/obsolete" title="obsolete">obsolete</a> = 10507.0</p>
357
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=67" title="Edit section: 5901 - 6000">edit</a>]</span> <span class="mw-headline" id="5901_-_6000">5901 - 6000</span></h5>
358
+ <p><a href="/wiki/buying" title="buying">buying</a> = 10502.3 <a href="/wiki/shepherd" title="shepherd">shepherd</a> = 10500.7 <a href="/wiki/wells" title="wells">wells</a> = 10500.7 <a href="/w/index.php?title=harriet&amp;action=edit&amp;redlink=1" class="new" title="harriet (page does not exist)">harriet</a> = 10496.7 <a href="/wiki/exaggerated" title="exaggerated">exaggerated</a> = 10495.1 <a href="/wiki/heated" title="heated">heated</a> = 10494.4 <a href="/wiki/penetrated" title="penetrated">penetrated</a> = 10493.6 <a href="/wiki/travels" title="travels">travels</a> = 10492.0 <a href="/wiki/earl" title="earl">earl</a> = 10489.6 <a href="/wiki/hereditary" title="hereditary">hereditary</a> = 10488.8 <a href="/wiki/ali" title="ali">ali</a> = 10488.0 <a href="/wiki/supernatural" title="supernatural">supernatural</a> = 10486.4 <a href="/wiki/competent" title="competent">competent</a> = 10482.5 <a href="/wiki/piled" title="piled">piled</a> = 10481.7 <a href="/wiki/hostess" title="hostess">hostess</a> = 10480.1 <a href="/wiki/agriculture" title="agriculture">agriculture</a> = 10478.5 <a href="/wiki/boughs" title="boughs">boughs</a> = 10476.2 <a href="/wiki/urgent" title="urgent">urgent</a> = 10476.2 <a href="/wiki/gratified" title="gratified">gratified</a> = 10475.4 <a href="/wiki/suffice" title="suffice">suffice</a> = 10474.6 <a href="/wiki/ports" title="ports">ports</a> = 10473.0 <a href="/wiki/drifted" title="drifted">drifted</a> = 10470.6 <a href="/wiki/accuracy" title="accuracy">accuracy</a> = 10465.9 <a href="/wiki/deceased" title="deceased">deceased</a> = 10465.9 <a href="/wiki/circular" title="circular">circular</a> = 10463.5 <a href="/wiki/securing" title="securing">securing</a> = 10458.7 <a href="/wiki/possibilities" title="possibilities">possibilities</a> = 10455.6 <a href="/w/index.php?title=rhine&amp;action=edit&amp;redlink=1" class="new" title="rhine (page does not exist)">rhine</a> = 10454.8 <a href="/wiki/alert" title="alert">alert</a> = 10451.6 <a href="/wiki/neighboring" title="neighboring">neighboring</a> = 10442.9 <a href="/wiki/democratic" title="democratic">democratic</a> = 10440.6 <a href="/w/index.php?title=quebec&amp;action=edit&amp;redlink=1" class="new" title="quebec (page does not exist)">quebec</a> = 10440.6 <a href="/wiki/bud" title="bud">bud</a> = 10439.8 <a href="/wiki/accounted" title="accounted">accounted</a> = 10431.9 <a href="/wiki/aided" title="aided">aided</a> = 10427.1 <a href="/wiki/augustus" title="augustus">augustus</a> = 10425.5 <a href="/wiki/blanket" title="blanket">blanket</a> = 10425.5 <a href="/wiki/hail" title="hail">hail</a> = 10423.9 <a href="/wiki/pretence" title="pretence">pretence</a> = 10422.4 <a href="/wiki/beams" title="beams">beams</a> = 10417.6 <a href="/w/index.php?title=andy&amp;action=edit&amp;redlink=1" class="new" title="andy (page does not exist)">andy</a> = 10416.8 <a href="/wiki/pig" title="pig">pig</a> = 10416.0 <a href="/wiki/shaped" title="shaped">shaped</a> = 10408.1 <a href="/wiki/oven" title="oven">oven</a> = 10407.3 <a href="/wiki/rounded" title="rounded">rounded</a> = 10406.5 <a href="/wiki/ivory" title="ivory">ivory</a> = 10400.2 <a href="/wiki/northward" title="northward">northward</a> = 10395.5 <a href="/wiki/isolated" title="isolated">isolated</a> = 10390.7 <a href="/wiki/policeman" title="policeman">policeman</a> = 10382.0 <a href="/wiki/aug" title="aug">aug</a> = 10381.2 <a href="/wiki/conventional" title="conventional">conventional</a> = 10380.4 <a href="/w/index.php?title=babylon&amp;action=edit&amp;redlink=1" class="new" title="babylon (page does not exist)">babylon</a> = 10378.1 <a href="/wiki/dusty" title="dusty">dusty</a> = 10378.1 <a href="/wiki/bishops" title="bishops">bishops</a> = 10374.1 <a href="/wiki/complaints" title="complaints">complaints</a> = 10372.5 <a href="/wiki/stripped" title="stripped">stripped</a> = 10370.1 <a href="/wiki/plead" title="plead">plead</a> = 10367.8 <a href="/wiki/hinder" title="hinder">hinder</a> = 10365.4 <a href="/wiki/8vo" title="8vo">8vo</a> = 10363.0 <a href="/wiki/cord" title="cord">cord</a> = 10355.1 <a href="/wiki/flows" title="flows">flows</a> = 10351.9 <a href="/wiki/personage" title="personage">personage</a> = 10351.9 <a href="/wiki/classical" title="classical">classical</a> = 10351.2 <a href="/wiki/alongside" title="alongside">alongside</a> = 10349.6 <a href="/wiki/wrongs" title="wrongs">wrongs</a> = 10348.0 <a href="/wiki/extract" title="extract">extract</a> = 10345.6 <a href="/wiki/rewarded" title="rewarded">rewarded</a> = 10343.2 <a href="/wiki/lungs" title="lungs">lungs</a> = 10334.5 <a href="/wiki/lighter" title="lighter">lighter</a> = 10332.2 <a href="/wiki/kisses" title="kisses">kisses</a> = 10331.4 <a href="/wiki/serves" title="serves">serves</a> = 10329.8 <a href="/wiki/pint" title="pint">pint</a> = 10324.3 <a href="/wiki/forgiven" title="forgiven">forgiven</a> = 10322.7 <a href="/wiki/sternly" title="sternly">sternly</a> = 10321.1 <a href="/wiki/proclamation" title="proclamation">proclamation</a> = 10320.3 <a href="/wiki/realised" title="realised">realised</a> = 10320.3 <a href="/wiki/pipes" title="pipes">pipes</a> = 10316.3 <a href="/wiki/arising" title="arising">arising</a> = 10314.0 <a href="/wiki/pitched" title="pitched">pitched</a> = 10314.0 <a href="/wiki/tube" title="tube">tube</a> = 10310.8 <a href="/wiki/observer" title="observer">observer</a> = 10308.4 <a href="/wiki/smote" title="smote">smote</a> = 10308.4 <a href="/wiki/avenue" title="avenue">avenue</a> = 10302.9 <a href="/wiki/elephant" title="elephant">elephant</a> = 10298.9 <a href="/wiki/burke" title="burke">burke</a> = 10297.4 <a href="/wiki/footing" title="footing">footing</a> = 10295.8 <a href="/wiki/statesman" title="statesman">statesman</a> = 10295.8 <a href="/wiki/rebels" title="rebels">rebels</a> = 10292.6 <a href="/wiki/nails" title="nails">nails</a> = 10291.0 <a href="/wiki/wears" title="wears">wears</a> = 10290.2 <a href="/wiki/doomed" title="doomed">doomed</a> = 10289.4 <a href="/wiki/edges" title="edges">edges</a> = 10283.9 <a href="/w/index.php?title=esther&amp;action=edit&amp;redlink=1" class="new" title="esther (page does not exist)">esther</a> = 10278.4 <a href="/wiki/indiana" title="indiana">indiana</a> = 10276.0 <a href="/wiki/affecting" title="affecting">affecting</a> = 10274.4 <a href="/wiki/stormy" title="stormy">stormy</a> = 10274.4 <a href="/wiki/bee" title="bee">bee</a> = 10268.9 <a href="/wiki/bury" title="bury">bury</a> = 10267.3 <a href="/wiki/efficient" title="efficient">efficient</a> = 10266.5 <a href="/wiki/mix" title="mix">mix</a> = 10266.5</p>
359
+ <h4><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=68" title="Edit section: 6001 - 7000">edit</a>]</span> <span class="mw-headline" id="6001_-_7000">6001 - 7000</span></h4>
360
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=69" title="Edit section: 6001 - 6100">edit</a>]</span> <span class="mw-headline" id="6001_-_6100">6001 - 6100</span></h5>
361
+ <p><a href="/wiki/supporting" title="supporting">supporting</a> = 10266.5 <a href="/wiki/actor" title="actor">actor</a> = 10261.8 <a href="/wiki/disturbance" title="disturbance">disturbance</a> = 10261.0 <a href="/wiki/sweat" title="sweat">sweat</a> = 10260.2 <a href="/wiki/executive" title="executive">executive</a> = 10258.6 <a href="/wiki/seemingly" title="seemingly">seemingly</a> = 10258.6 <a href="/wiki/tenth" title="tenth">tenth</a> = 10252.3 <a href="/wiki/blossoms" title="blossoms">blossoms</a> = 10250.7 <a href="/wiki/ethel" title="ethel">ethel</a> = 10247.5 <a href="/wiki/folds" title="folds">folds</a> = 10245.1 <a href="/wiki/painfully" title="painfully">painfully</a> = 10245.1 <a href="/wiki/polish" title="polish">polish</a> = 10245.1 <a href="/wiki/shudder" title="shudder">shudder</a> = 10240.4 <a href="/w/index.php?title=oe.&amp;action=edit&amp;redlink=1" class="new" title="oe. (page does not exist)">oe.</a> = 10235.6 <a href="/wiki/roofs" title="roofs">roofs</a> = 10229.3 <a href="/wiki/comparative" title="comparative">comparative</a> = 10222.2 <a href="/wiki/begging" title="begging">begging</a> = 10216.7 <a href="/wiki/imposing" title="imposing">imposing</a> = 10216.7 <a href="/wiki/notable" title="notable">notable</a> = 10213.5 <a href="/wiki/invested" title="invested">invested</a> = 10209.5 <a href="/wiki/imprisoned" title="imprisoned">imprisoned</a> = 10208.0 <a href="/wiki/mute" title="mute">mute</a> = 10199.3 <a href="/wiki/amy" title="amy">amy</a> = 10196.9 <a href="/wiki/cage" title="cage">cage</a> = 10195.3 <a href="/wiki/esq" title="esq" class="mw-redirect">esq</a> = 10195.3 <a href="/wiki/pg" title="pg">pg</a> = 10192.1 <a href="/wiki/cured" title="cured">cured</a> = 10190.6 <a href="/wiki/cargo" title="cargo">cargo</a> = 10187.4 <a href="/wiki/prof." title="prof.">prof.</a> = 10185.8 <a href="/wiki/negotiations" title="negotiations">negotiations</a> = 10181.9 <a href="/wiki/assented" title="assented">assented</a> = 10180.3 <a href="/wiki/jail" title="jail">jail</a> = 10180.3 <a href="/wiki/skilful" title="skilful">skilful</a> = 10180.3 <a href="/wiki/ideals" title="ideals">ideals</a> = 10178.7 <a href="/wiki/conferred" title="conferred">conferred</a> = 10177.1 <a href="/wiki/resulted" title="resulted">resulted</a> = 10171.6 <a href="/wiki/illusion" title="illusion">illusion</a> = 10169.2 <a href="/wiki/torment" title="torment">torment</a> = 10167.6 <a href="/wiki/troublesome" title="troublesome">troublesome</a> = 10162.1 <a href="/wiki/crowns" title="crowns">crowns</a> = 10158.9 <a href="/wiki/feb" title="feb">feb</a> = 10155.7 <a href="/wiki/repentance" title="repentance">repentance</a> = 10152.6 <a href="/wiki/blankets" title="blankets">blankets</a> = 10151.0 <a href="/wiki/proprietor" title="proprietor">proprietor</a> = 10144.7 <a href="/wiki/uncertainty" title="uncertainty">uncertainty</a> = 10144.7 <a href="/wiki/concentrated" title="concentrated">concentrated</a> = 10143.9 <a href="/wiki/mediterranean" title="mediterranean" class="mw-redirect">mediterranean</a> = 10143.9 <a href="/wiki/covers" title="covers">covers</a> = 10141.5 <a href="/wiki/scream" title="scream">scream</a> = 10140.7 <a href="/wiki/compromise" title="compromise">compromise</a> = 10137.5 <a href="/wiki/respectful" title="respectful">respectful</a> = 10137.5 <a href="/wiki/chariot" title="chariot">chariot</a> = 10136.8 <a href="/wiki/ammunition" title="ammunition">ammunition</a> = 10136.0 <a href="/wiki/bonnet" title="bonnet">bonnet</a> = 10135.2 <a href="/wiki/secondary" title="secondary">secondary</a> = 10132.8 <a href="/wiki/persia" title="persia">persia</a> = 10126.5 <a href="/wiki/persecution" title="persecution">persecution</a> = 10122.5 <a href="/wiki/lesser" title="lesser">lesser</a> = 10120.1 <a href="/wiki/assistant" title="assistant">assistant</a> = 10119.4 <a href="/wiki/saluted" title="saluted">saluted</a> = 10116.2 <a href="/wiki/fits" title="fits">fits</a> = 10112.2 <a href="/wiki/indulged" title="indulged">indulged</a> = 10111.4 <a href="/wiki/springing" title="springing">springing</a> = 10109.1 <a href="/wiki/cane" title="cane">cane</a> = 10106.7 <a href="/wiki/fold" title="fold">fold</a> = 10106.7 <a href="/wiki/boundary" title="boundary">boundary</a> = 10105.1 <a href="/wiki/valued" title="valued">valued</a> = 10101.9 <a href="/wiki/she%27ll" title="she'll">she'll</a> = 10099.6 <a href="/wiki/rugged" title="rugged">rugged</a> = 10098.8 <a href="/wiki/aloft" title="aloft">aloft</a> = 10098.0 <a href="/wiki/thieves" title="thieves">thieves</a> = 10093.2 <a href="/wiki/parlour" title="parlour">parlour</a> = 10091.7 <a href="/wiki/indebted" title="indebted">indebted</a> = 10090.1 <a href="/wiki/tons" title="tons">tons</a> = 10088.5 <a href="/wiki/processes" title="processes">processes</a> = 10085.3 <a href="/wiki/dave" title="dave">dave</a> = 10078.2 <a href="/wiki/moore" title="moore">moore</a> = 10076.6 <a href="/wiki/argue" title="argue">argue</a> = 10074.3 <a href="/wiki/dearly" title="dearly">dearly</a> = 10056.1 <a href="/wiki/logic" title="logic">logic</a> = 10054.5 <a href="/wiki/panic" title="panic">panic</a> = 10047.4 <a href="/wiki/restrained" title="restrained">restrained</a> = 10045.8 <a href="/wiki/lb" title="lb">lb</a> = 10043.4 <a href="/wiki/vainly" title="vainly">vainly</a> = 10043.4 <a href="/wiki/weariness" title="weariness">weariness</a> = 10041.0 <a href="/wiki/enlarged" title="enlarged">enlarged</a> = 10036.3 <a href="/wiki/franklin" title="franklin">franklin</a> = 10035.5 <a href="/wiki/tasted" title="tasted">tasted</a> = 10033.9 <a href="/wiki/rural" title="rural">rural</a> = 10030.0 <a href="/wiki/torrent" title="torrent">torrent</a> = 10030.0 <a href="/wiki/resolute" title="resolute">resolute</a> = 10026.8 <a href="/wiki/refrain" title="refrain">refrain</a> = 10024.4 <a href="/wiki/kissing" title="kissing">kissing</a> = 10021.3 <a href="/wiki/gorgeous" title="gorgeous">gorgeous</a> = 10015.7 <a href="/wiki/meets" title="meets">meets</a> = 10015.7 <a href="/wiki/circulation" title="circulation">circulation</a> = 10014.9 <a href="/wiki/passionately" title="passionately">passionately</a> = 10009.4 <a href="/wiki/inasmuch" title="inasmuch">inasmuch</a> = 10005.4 <a href="/wiki/unexpectedly" title="unexpectedly">unexpectedly</a> = 10004.6 <a href="/wiki/stress" title="stress">stress</a> = 10002.3</p>
362
+ <p><br /></p>
363
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=70" title="Edit section: 6101 - 6200">edit</a>]</span> <span class="mw-headline" id="6101_-_6200">6101 - 6200</span></h5>
364
+ <p><a href="/wiki/consumption" title="consumption">consumption</a> = 9999.94 <a href="/wiki/groan" title="groan">groan</a> = 9995.98 <a href="/wiki/suits" title="suits">suits</a> = 9994.40 <a href="/wiki/sustain" title="sustain">sustain</a> = 9993.61 <a href="/wiki/hosts" title="hosts">hosts</a> = 9987.28 <a href="/wiki/crash" title="crash">crash</a> = 9985.70 <a href="/wiki/resemble" title="resemble">resemble</a> = 9984.11 <a href="/wiki/epoch" title="epoch">epoch</a> = 9979.37 <a href="/wiki/quote" title="quote">quote</a> = 9975.41 <a href="/wiki/lacking" title="lacking">lacking</a> = 9971.46 <a href="/wiki/nominally" title="nominally">nominally</a> = 9971.46 <a href="/wiki/choked" title="choked">choked</a> = 9970.66 <a href="/wiki/aristocracy" title="aristocracy">aristocracy</a> = 9969.87 <a href="/wiki/granite" title="granite">granite</a> = 9969.08 <a href="/wiki/gradual" title="gradual">gradual</a> = 9967.50 <a href="/wiki/delights" title="delights">delights</a> = 9964.33 <a href="/wiki/hurled" title="hurled">hurled</a> = 9964.33 <a href="/wiki/joyful" title="joyful">joyful</a> = 9961.96 <a href="/wiki/sack" title="sack">sack</a> = 9960.38 <a href="/wiki/slumber" title="slumber">slumber</a> = 9958.01 <a href="/wiki/detached" title="detached">detached</a> = 9956.42 <a href="/wiki/snapped" title="snapped">snapped</a> = 9956.42 <a href="/wiki/shadowy" title="shadowy">shadowy</a> = 9954.05 <a href="/wiki/accompanying" title="accompanying">accompanying</a> = 9950.09 <a href="/wiki/annoyance" title="annoyance">annoyance</a> = 9948.51 <a href="/wiki/crush" title="crush">crush</a> = 9947.72 <a href="/wiki/needle" title="needle">needle</a> = 9941.39 <a href="/wiki/repent" title="repent">repent</a> = 9934.27 <a href="/wiki/phenomenon" title="phenomenon">phenomenon</a> = 9927.94 <a href="/wiki/execute" title="execute">execute</a> = 9926.36 <a href="/wiki/canst" title="canst">canst</a> = 9920.82 <a href="/wiki/smoked" title="smoked">smoked</a> = 9914.49 <a href="/wiki/greet" title="greet">greet</a> = 9911.33 <a href="/wiki/monarchy" title="monarchy">monarchy</a> = 9908.16 <a href="/wiki/behave" title="behave">behave</a> = 9905.00 <a href="/wiki/richly" title="richly">richly</a> = 9905.00 <a href="/wiki/controlled" title="controlled">controlled</a> = 9904.21 <a href="/wiki/strive" title="strive">strive</a> = 9902.63 <a href="/wiki/endeavor" title="endeavor">endeavor</a> = 9901.84 <a href="/wiki/barrier" title="barrier">barrier</a> = 9897.88 <a href="/wiki/canadian" title="canadian">canadian</a> = 9897.88 <a href="/wiki/curve" title="curve">curve</a> = 9890.76 <a href="/wiki/politeness" title="politeness">politeness</a> = 9889.18 <a href="/wiki/flora" title="flora">flora</a> = 9883.64 <a href="/wiki/rely" title="rely">rely</a> = 9875.73 <a href="/wiki/flank" title="flank">flank</a> = 9872.56 <a href="/wiki/convenience" title="convenience">convenience</a> = 9870.98 <a href="/wiki/courteous" title="courteous">courteous</a> = 9866.23 <a href="/wiki/logs" title="logs">logs</a> = 9866.23 <a href="/wiki/lamb" title="lamb">lamb</a> = 9863.86 <a href="/wiki/effectually" title="effectually">effectually</a> = 9859.11 <a href="/w/index.php?title=robinson&amp;action=edit&amp;redlink=1" class="new" title="robinson (page does not exist)">robinson</a> = 9856.74 <a href="/wiki/logical" title="logical">logical</a> = 9855.16 <a href="/wiki/shan%27t" title="shan't">shan't</a> = 9855.16 <a href="/wiki/dimly" title="dimly">dimly</a> = 9853.58 <a href="/wiki/withered" title="withered">withered</a> = 9851.99 <a href="/wiki/diet" title="diet">diet</a> = 9851.20 <a href="/wiki/praises" title="praises">praises</a> = 9851.20 <a href="/wiki/fulfil" title="fulfil">fulfil</a> = 9849.62 <a href="/wiki/mantle" title="mantle">mantle</a> = 9848.83 <a href="/wiki/ne%27er" title="ne'er">ne'er</a> = 9848.83 <a href="/wiki/discussing" title="discussing">discussing</a> = 9843.29 <a href="/wiki/chicken" title="chicken">chicken</a> = 9838.54 <a href="/wiki/judicial" title="judicial">judicial</a> = 9838.54 <a href="/wiki/consistent" title="consistent">consistent</a> = 9836.17 <a href="/wiki/ridicule" title="ridicule">ridicule</a> = 9835.38 <a href="/w/index.php?title=as.&amp;action=edit&amp;redlink=1" class="new" title="as. (page does not exist)">as.</a> = 9834.59 <a href="/wiki/reins" title="reins">reins</a> = 9834.59 <a href="/wiki/barrel" title="barrel">barrel</a> = 9833.01 <a href="/wiki/distrust" title="distrust">distrust</a> = 9832.22 <a href="/wiki/trunks" title="trunks">trunks</a> = 9829.84 <a href="/wiki/verily" title="verily">verily</a> = 9829.05 <a href="/wiki/hunters" title="hunters">hunters</a> = 9827.47 <a href="/wiki/feather" title="feather">feather</a> = 9825.10 <a href="/wiki/desperately" title="desperately">desperately</a> = 9820.35 <a href="/wiki/goodly" title="goodly">goodly</a> = 9817.18 <a href="/wiki/habitual" title="habitual">habitual</a> = 9815.60 <a href="/wiki/voluntary" title="voluntary">voluntary</a> = 9815.60 <a href="/wiki/luncheon" title="luncheon">luncheon</a> = 9812.44 <a href="/wiki/eighteenth" title="eighteenth">eighteenth</a> = 9808.48 <a href="/wiki/exertions" title="exertions">exertions</a> = 9807.69 <a href="/wiki/expert" title="expert">expert</a> = 9806.90 <a href="/wiki/coolly" title="coolly">coolly</a> = 9806.11 <a href="/wiki/mistakes" title="mistakes">mistakes</a> = 9804.53 <a href="/wiki/tedious" title="tedious">tedious</a> = 9802.94 <a href="/wiki/contemplated" title="contemplated">contemplated</a> = 9796.61 <a href="/w/index.php?title=clark&amp;action=edit&amp;redlink=1" class="new" title="clark (page does not exist)">clark</a> = 9795.82 <a href="/wiki/jacket" title="jacket">jacket</a> = 9795.82 <a href="/wiki/gleaming" title="gleaming">gleaming</a> = 9792.66 <a href="/wiki/shrank" title="shrank">shrank</a> = 9787.91 <a href="/wiki/swimming" title="swimming">swimming</a> = 9787.12 <a href="/wiki/kent" title="kent">kent</a> = 9785.54 <a href="/wiki/perplexed" title="perplexed">perplexed</a> = 9782.37 <a href="/wiki/impressive" title="impressive">impressive</a> = 9780.79 <a href="/wiki/universally" title="universally">universally</a> = 9780.00 <a href="/wiki/displeasure" title="displeasure">displeasure</a> = 9776.84 <a href="/wiki/maids" title="maids">maids</a> = 9772.09 <a href="/wiki/rates" title="rates">rates</a> = 9772.09 <a href="/wiki/underneath" title="underneath">underneath</a> = 9771.30 <a href="/wiki/expedient" title="expedient">expedient</a> = 9767.34</p>
365
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=71" title="Edit section: 6201 - 6300">edit</a>]</span> <span class="mw-headline" id="6201_-_6300">6201 - 6300</span></h5>
366
+ <p><a href="/wiki/emma" title="emma">emma</a> = 9758.64 <a href="/wiki/impress" title="impress">impress</a> = 9755.48 <a href="/wiki/bees" title="bees">bees</a> = 9751.52 <a href="/wiki/bounded" title="bounded">bounded</a> = 9751.52 <a href="/wiki/worshipped" title="worshipped">worshipped</a> = 9750.73 <a href="/wiki/resisted" title="resisted">resisted</a> = 9749.94 <a href="/wiki/provincial" title="provincial">provincial</a> = 9749.15 <a href="/wiki/popularity" title="popularity">popularity</a> = 9748.36 <a href="/wiki/baker" title="baker">baker</a> = 9747.56 <a href="/wiki/shattered" title="shattered">shattered</a> = 9747.56 <a href="/wiki/merciful" title="merciful">merciful</a> = 9745.98 <a href="/wiki/olive" title="olive">olive</a> = 9745.19 <a href="/wiki/tramp" title="tramp">tramp</a> = 9742.82 <a href="/wiki/compensation" title="compensation">compensation</a> = 9740.44 <a href="/wiki/ernest" title="ernest">ernest</a> = 9736.49 <a href="/wiki/martial" title="martial">martial</a> = 9736.49 <a href="/wiki/genial" title="genial">genial</a> = 9735.70 <a href="/w/index.php?title=syria&amp;action=edit&amp;redlink=1" class="new" title="syria (page does not exist)">syria</a> = 9735.70 <a href="/wiki/conjecture" title="conjecture">conjecture</a> = 9734.91 <a href="/wiki/van" title="van">van</a> = 9734.91 <a href="/wiki/waiter" title="waiter">waiter</a> = 9734.11 <a href="/wiki/detained" title="detained">detained</a> = 9730.95 <a href="/wiki/items" title="items">items</a> = 9728.58 <a href="/wiki/promote" title="promote">promote</a> = 9727.79 <a href="/w/index.php?title=delaware&amp;action=edit&amp;redlink=1" class="new" title="delaware (page does not exist)">delaware</a> = 9726.99 <a href="/wiki/covenant" title="covenant">covenant</a> = 9725.41 <a href="/wiki/nought" title="nought">nought</a> = 9722.25 <a href="/wiki/interposed" title="interposed">interposed</a> = 9721.46 <a href="/wiki/seizing" title="seizing">seizing</a> = 9721.46 <a href="/wiki/sinner" title="sinner">sinner</a> = 9719.08 <a href="/wiki/vigor" title="vigor">vigor</a> = 9715.92 <a href="/wiki/devote" title="devote">devote</a> = 9715.13 <a href="/wiki/decorated" title="decorated">decorated</a> = 9705.63 <a href="/wiki/sentimental" title="sentimental">sentimental</a> = 9700.10 <a href="/wiki/yoke" title="yoke">yoke</a> = 9700.10 <a href="/wiki/properties" title="properties">properties</a> = 9698.51 <a href="/wiki/warlike" title="warlike">warlike</a> = 9696.93 <a href="/wiki/perilous" title="perilous">perilous</a> = 9694.56 <a href="/wiki/threats" title="threats">threats</a> = 9687.44 <a href="/wiki/kindled" title="kindled">kindled</a> = 9684.27 <a href="/wiki/lays" title="lays">lays</a> = 9684.27 <a href="/wiki/hostility" title="hostility">hostility</a> = 9682.69 <a href="/wiki/dragging" title="dragging">dragging</a> = 9679.53 <a href="/wiki/mare" title="mare">mare</a> = 9677.94 <a href="/wiki/regulations" title="regulations">regulations</a> = 9676.36 <a href="/wiki/obstacle" title="obstacle">obstacle</a> = 9674.78 <a href="/wiki/sage" title="sage">sage</a> = 9673.20 <a href="/wiki/destitute" title="destitute">destitute</a> = 9672.41 <a href="/wiki/pays" title="pays">pays</a> = 9671.62 <a href="/wiki/sleepy" title="sleepy">sleepy</a> = 9669.24 <a href="/w/index.php?title=dublin&amp;action=edit&amp;redlink=1" class="new" title="dublin (page does not exist)">dublin</a> = 9662.91 <a href="/wiki/jonathan" title="jonathan" class="mw-redirect">jonathan</a> = 9661.33 <a href="/wiki/posterity" title="posterity">posterity</a> = 9661.33 <a href="/wiki/they%27d" title="they'd">they'd</a> = 9661.33 <a href="/wiki/nod" title="nod">nod</a> = 9658.96 <a href="/wiki/mason" title="mason">mason</a> = 9655.00 <a href="/wiki/patriotic" title="patriotic">patriotic</a> = 9653.42 <a href="/wiki/plantation" title="plantation">plantation</a> = 9650.25 <a href="/wiki/pitiful" title="pitiful">pitiful</a> = 9649.46 <a href="/wiki/foster" title="foster">foster</a> = 9648.67 <a href="/wiki/requisite" title="requisite">requisite</a> = 9647.88 <a href="/wiki/expose" title="expose">expose</a> = 9647.09 <a href="/wiki/oxen" title="oxen">oxen</a> = 9647.09 <a href="/wiki/patch" title="patch">patch</a> = 9647.09 <a href="/w/index.php?title=anderson&amp;action=edit&amp;redlink=1" class="new" title="anderson (page does not exist)">anderson</a> = 9644.72 <a href="/w/index.php?title=stuart&amp;action=edit&amp;redlink=1" class="new" title="stuart (page does not exist)">stuart</a> = 9643.13 <a href="/wiki/interruption" title="interruption">interruption</a> = 9641.55 <a href="/wiki/lance" title="lance">lance</a> = 9641.55 <a href="/wiki/payable" title="payable">payable</a> = 9639.18 <a href="/wiki/definition" title="definition">definition</a> = 9637.60 <a href="/wiki/birthday" title="birthday">birthday</a> = 9636.81 <a href="/wiki/thumb" title="thumb">thumb</a> = 9636.81 <a href="/wiki/wolves" title="wolves">wolves</a> = 9635.22 <a href="/wiki/hammer" title="hammer">hammer</a> = 9632.06 <a href="/wiki/overwhelming" title="overwhelming">overwhelming</a> = 9631.27 <a href="/wiki/intensely" title="intensely">intensely</a> = 9628.10 <a href="/wiki/revolutionary" title="revolutionary">revolutionary</a> = 9627.31 <a href="/wiki/fragrant" title="fragrant">fragrant</a> = 9626.52 <a href="/wiki/bleeding" title="bleeding">bleeding</a> = 9625.73 <a href="/wiki/sheltered" title="sheltered">sheltered</a> = 9625.73 <a href="/wiki/circuit" title="circuit">circuit</a> = 9624.15 <a href="/wiki/dominions" title="dominions">dominions</a> = 9623.36 <a href="/wiki/sales" title="sales">sales</a> = 9616.24 <a href="/wiki/energetic" title="energetic">energetic</a> = 9615.44 <a href="/wiki/insignificant" title="insignificant">insignificant</a> = 9612.28 <a href="/wiki/repetition" title="repetition">repetition</a> = 9610.70 <a href="/wiki/we%27d" title="we'd">we'd</a> = 9602.00 <a href="/wiki/amazing" title="amazing">amazing</a> = 9595.67 <a href="/wiki/trains" title="trains">trains</a> = 9591.71 <a href="/wiki/skirts" title="skirts">skirts</a> = 9590.13 <a href="/wiki/tip" title="tip">tip</a> = 9589.34 <a href="/wiki/trivial" title="trivial">trivial</a> = 9589.34 <a href="/wiki/kick" title="kick">kick</a> = 9588.55 <a href="/wiki/tended" title="tended">tended</a> = 9586.17 <a href="/wiki/rejoicing" title="rejoicing">rejoicing</a> = 9581.43 <a href="/wiki/dig" title="dig">dig</a> = 9579.05 <a href="/wiki/pet" title="pet">pet</a> = 9575.89 <a href="/wiki/skull" title="skull">skull</a> = 9575.89 <a href="/wiki/lectures" title="lectures">lectures</a> = 9574.31 <a href="/wiki/ness" title="ness">ness</a> = 9573.51</p>
367
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=72" title="Edit section: 6301 - 6400">edit</a>]</span> <span class="mw-headline" id="6301_-_6400">6301 - 6400</span></h5>
368
+ <p><a href="/wiki/threat" title="threat">threat</a> = 9571.93 <a href="/wiki/legislature" title="legislature">legislature</a> = 9570.35 <a href="/wiki/plunder" title="plunder">plunder</a> = 9567.98 <a href="/wiki/removing" title="removing">removing</a> = 9567.98 <a href="/wiki/jungle" title="jungle">jungle</a> = 9567.19 <a href="/wiki/ghosts" title="ghosts">ghosts</a> = 9566.39 <a href="/wiki/numbered" title="numbered">numbered</a> = 9562.44 <a href="/wiki/famine" title="famine">famine</a> = 9559.27 <a href="/wiki/palaces" title="palaces">palaces</a> = 9552.94 <a href="/wiki/sorrowful" title="sorrowful">sorrowful</a> = 9547.41 <a href="/wiki/improvements" title="improvements">improvements</a> = 9543.45 <a href="/w/index.php?title=coleridge&amp;action=edit&amp;redlink=1" class="new" title="coleridge (page does not exist)">coleridge</a> = 9542.66 <a href="/wiki/fuller" title="fuller">fuller</a> = 9540.29 <a href="/wiki/asp" title="asp">asp</a> = 9533.96 <a href="/wiki/blocks" title="blocks">blocks</a> = 9531.58 <a href="/wiki/darted" title="darted">darted</a> = 9526.05 <a href="/wiki/shrine" title="shrine">shrine</a> = 9524.46 <a href="/wiki/heel" title="heel">heel</a> = 9522.88 <a href="/wiki/typical" title="typical">typical</a> = 9518.93 <a href="/wiki/throws" title="throws">throws</a> = 9516.55 <a href="/wiki/fortunately" title="fortunately">fortunately</a> = 9514.97 <a href="/wiki/recognise" title="recognise">recognise</a> = 9512.60 <a href="/wiki/fuel" title="fuel">fuel</a> = 9511.01 <a href="/wiki/6th" title="6th">6th</a> = 9507.85 <a href="/wiki/tranquil" title="tranquil">tranquil</a> = 9507.06 <a href="/wiki/frown" title="frown">frown</a> = 9501.52 <a href="/wiki/destination" title="destination">destination</a> = 9498.36 <a href="/wiki/plunge" title="plunge">plunge</a> = 9494.40 <a href="/wiki/moor" title="moor">moor</a> = 9488.86 <a href="/wiki/pin" title="pin">pin</a> = 9485.70 <a href="/wiki/mars" title="mars">mars</a> = 9484.91 <a href="/wiki/associate" title="associate">associate</a> = 9484.12 <a href="/wiki/here%27s" title="here's">here's</a> = 9480.95 <a href="/w/index.php?title=owen&amp;action=edit&amp;redlink=1" class="new" title="owen (page does not exist)">owen</a> = 9480.95 <a href="/wiki/10th" title="10th">10th</a> = 9480.16 <a href="/w/index.php?title=arabic&amp;action=edit&amp;redlink=1" class="new" title="arabic (page does not exist)">arabic</a> = 9478.58 <a href="/wiki/vicious" title="vicious">vicious</a> = 9478.58 <a href="/wiki/framed" title="framed">framed</a> = 9477.79 <a href="/wiki/banquet" title="banquet">banquet</a> = 9477.00 <a href="/wiki/expressive" title="expressive">expressive</a> = 9474.62 <a href="/wiki/instinctively" title="instinctively">instinctively</a> = 9461.96 <a href="/wiki/lighting" title="lighting">lighting</a> = 9461.96 <a href="/wiki/scanning" title="scanning">scanning</a> = 9461.96 <a href="/wiki/subordinate" title="subordinate">subordinate</a> = 9461.17 <a href="/wiki/jaws" title="jaws">jaws</a> = 9458.80 <a href="/wiki/patent" title="patent">patent</a> = 9458.80 <a href="/wiki/courtyard" title="courtyard">courtyard</a> = 9452.47 <a href="/wiki/gulf" title="gulf">gulf</a> = 9449.31 <a href="/wiki/destroying" title="destroying">destroying</a> = 9446.93 <a href="/wiki/detailed" title="detailed">detailed</a> = 9439.81 <a href="/wiki/regulating" title="regulating">regulating</a> = 9430.32 <a href="/wiki/closet" title="closet">closet</a> = 9429.53 <a href="/wiki/compel" title="compel">compel</a> = 9427.15 <a href="/wiki/inland" title="inland">inland</a> = 9426.36 <a href="/wiki/excepting" title="excepting">excepting</a> = 9423.20 <a href="/wiki/pretext" title="pretext">pretext</a> = 9417.66 <a href="/wiki/legislative" title="legislative">legislative</a> = 9414.50 <a href="/wiki/stationed" title="stationed">stationed</a> = 9413.71 <a href="/wiki/rash" title="rash">rash</a> = 9408.17 <a href="/wiki/margin" title="margin">margin</a> = 9401.05 <a href="/wiki/champion" title="champion">champion</a> = 9400.26 <a href="/wiki/settling" title="settling">settling</a> = 9400.26 <a href="/wiki/billion" title="billion">billion</a> = 9396.30 <a href="/wiki/shorter" title="shorter">shorter</a> = 9393.93 <a href="/wiki/betwixt" title="betwixt">betwixt</a> = 9393.14 <a href="/wiki/admiring" title="admiring">admiring</a> = 9392.34 <a href="/wiki/morgan" title="morgan">morgan</a> = 9390.76 <a href="/wiki/nick" title="nick">nick</a> = 9390.76 <a href="/wiki/chemical" title="chemical">chemical</a> = 9389.97 <a href="/wiki/chapters" title="chapters">chapters</a> = 9389.18 <a href="/wiki/worthless" title="worthless">worthless</a> = 9386.02 <a href="/wiki/aristocratic" title="aristocratic">aristocratic</a> = 9382.85 <a href="/wiki/nan" title="nan">nan</a> = 9382.06 <a href="/wiki/especial" title="especial">especial</a> = 9378.10 <a href="/wiki/hon" title="hon">hon</a> = 9378.10 <a href="/wiki/attentive" title="attentive">attentive</a> = 9376.52 <a href="/wiki/maintenance" title="maintenance">maintenance</a> = 9374.15 <a href="/wiki/charlie" title="charlie" class="mw-redirect">charlie</a> = 9372.57 <a href="/wiki/explanatory" title="explanatory">explanatory</a> = 9371.78 <a href="/wiki/differently" title="differently">differently</a> = 9367.82 <a href="/wiki/furiously" title="furiously">furiously</a> = 9367.82 <a href="/wiki/pulse" title="pulse">pulse</a> = 9367.03 <a href="/wiki/scanty" title="scanty">scanty</a> = 9367.03 <a href="/wiki/flee" title="flee">flee</a> = 9364.65 <a href="/wiki/admiral" title="admiral">admiral</a> = 9363.86 <a href="/wiki/clause" title="clause">clause</a> = 9360.70 <a href="/wiki/resume" title="resume">resume</a> = 9359.12 <a href="/wiki/compound" title="compound">compound</a> = 9358.33 <a href="/wiki/pilot" title="pilot">pilot</a> = 9353.58 <a href="/wiki/growled" title="growled">growled</a> = 9351.21 <a href="/wiki/charmed" title="charmed">charmed</a> = 9344.09 <a href="/wiki/imitate" title="imitate">imitate</a> = 9341.71 <a href="/wiki/happening" title="happening">happening</a> = 9339.34 <a href="/wiki/knot" title="knot">knot</a> = 9335.38 <a href="/wiki/rags" title="rags">rags</a> = 9329.85 <a href="/wiki/mock" title="mock">mock</a> = 9320.35 <a href="/wiki/majestic" title="majestic">majestic</a> = 9316.40 <a href="/wiki/messages" title="messages">messages</a> = 9314.02 <a href="/w/index.php?title=prussian&amp;action=edit&amp;redlink=1" class="new" title="prussian (page does not exist)">prussian</a> = 9312.44 <a href="/wiki/suspense" title="suspense">suspense</a> = 9312.44</p>
369
+ <p><br /></p>
370
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=73" title="Edit section: 6401 - 6500">edit</a>]</span> <span class="mw-headline" id="6401_-_6500">6401 - 6500</span></h5>
371
+ <p><a href="/wiki/clare" title="clare">clare</a> = 9310.07 <a href="/wiki/relationship" title="relationship">relationship</a> = 9309.28 <a href="/wiki/skirt" title="skirt">skirt</a> = 9308.48 <a href="/wiki/agency" title="agency">agency</a> = 9303.74 <a href="/wiki/arisen" title="arisen">arisen</a> = 9302.95 <a href="/wiki/grin" title="grin">grin</a> = 9301.36 <a href="/wiki/unusually" title="unusually">unusually</a> = 9300.57 <a href="/w/index.php?title=michigan&amp;action=edit&amp;redlink=1" class="new" title="michigan (page does not exist)">michigan</a> = 9298.99 <a href="/wiki/hoarse" title="hoarse">hoarse</a> = 9296.62 <a href="/wiki/mills" title="mills">mills</a> = 9286.33 <a href="/wiki/intently" title="intently">intently</a> = 9283.17 <a href="/wiki/dining" title="dining">dining</a> = 9281.59 <a href="/wiki/demonstration" title="demonstration">demonstration</a> = 9280.79 <a href="/wiki/depression" title="depression">depression</a> = 9277.63 <a href="/wiki/lain" title="lain">lain</a> = 9276.84 <a href="/wiki/expectations" title="expectations">expectations</a> = 9272.88 <a href="/wiki/joining" title="joining">joining</a> = 9272.09 <a href="/wiki/weekly" title="weekly">weekly</a> = 9268.14 <a href="/wiki/trenches" title="trenches">trenches</a> = 9267.35 <a href="/wiki/technical" title="technical">technical</a> = 9262.60 <a href="/wiki/vehicle" title="vehicle">vehicle</a> = 9262.60 <a href="/wiki/aimed" title="aimed">aimed</a> = 9253.10 <a href="/wiki/borrow" title="borrow">borrow</a> = 9253.10 <a href="/wiki/flattering" title="flattering">flattering</a> = 9249.15 <a href="/w/index.php?title=portugal&amp;action=edit&amp;redlink=1" class="new" title="portugal (page does not exist)">portugal</a> = 9248.36 <a href="/wiki/prodigious" title="prodigious">prodigious</a> = 9246.78 <a href="/wiki/scope" title="scope">scope</a> = 9245.98 <a href="/wiki/vegetation" title="vegetation">vegetation</a> = 9245.98 <a href="/w/index.php?title=switzerland&amp;action=edit&amp;redlink=1" class="new" title="switzerland (page does not exist)">switzerland</a> = 9243.61 <a href="/w/index.php?title=arkansas&amp;action=edit&amp;redlink=1" class="new" title="arkansas (page does not exist)">arkansas</a> = 9242.82 <a href="/wiki/swelling" title="swelling">swelling</a> = 9242.82 <a href="/wiki/fortified" title="fortified">fortified</a> = 9241.24 <a href="/wiki/favoured" title="favoured">favoured</a> = 9238.07 <a href="/wiki/salute" title="salute">salute</a> = 9238.07 <a href="/wiki/topic" title="topic">topic</a> = 9237.28 <a href="/wiki/blushed" title="blushed">blushed</a> = 9233.33 <a href="/wiki/superb" title="superb">superb</a> = 9231.74 <a href="/wiki/strengthen" title="strengthen">strengthen</a> = 9230.16 <a href="/wiki/confidential" title="confidential">confidential</a> = 9228.58 <a href="/wiki/crow" title="crow">crow</a> = 9227.79 <a href="/wiki/shawl" title="shawl">shawl</a> = 9226.21 <a href="/wiki/sunrise" title="sunrise">sunrise</a> = 9226.21 <a href="/wiki/sings" title="sings">sings</a> = 9224.62 <a href="/wiki/coats" title="coats">coats</a> = 9220.67 <a href="/wiki/sturdy" title="sturdy">sturdy</a> = 9219.88 <a href="/wiki/dissolved" title="dissolved">dissolved</a> = 9218.30 <a href="/wiki/lifetime" title="lifetime">lifetime</a> = 9218.30 <a href="/wiki/dispersed" title="dispersed">dispersed</a> = 9217.50 <a href="/wiki/sergeant" title="sergeant">sergeant</a> = 9216.71 <a href="/wiki/contribute" title="contribute">contribute</a> = 9215.92 <a href="/wiki/strode" title="strode">strode</a> = 9215.13 <a href="/wiki/brigade" title="brigade">brigade</a> = 9214.34 <a href="/wiki/verdict" title="verdict">verdict</a> = 9211.97 <a href="/wiki/they%27ve" title="they've">they've</a> = 9203.26 <a href="/wiki/honors" title="honors">honors</a> = 9198.52 <a href="/wiki/panting" title="panting">panting</a> = 9188.23 <a href="/wiki/females" title="females">females</a> = 9187.44 <a href="/wiki/richest" title="richest">richest</a> = 9187.44 <a href="/wiki/attribute" title="attribute">attribute</a> = 9186.65 <a href="/wiki/brighter" title="brighter">brighter</a> = 9184.28 <a href="/wiki/hook" title="hook">hook</a> = 9183.49 <a href="/wiki/discontent" title="discontent">discontent</a> = 9173.20 <a href="/wiki/orderly" title="orderly">orderly</a> = 9172.41 <a href="/wiki/airs" title="airs">airs</a> = 9165.29 <a href="/wiki/tiger" title="tiger">tiger</a> = 9165.29 <a href="/wiki/messengers" title="messengers">messengers</a> = 9163.71 <a href="/wiki/penetrate" title="penetrate">penetrate</a> = 9157.38 <a href="/wiki/sabbath" title="sabbath" class="mw-redirect">sabbath</a> = 9157.38 <a href="/wiki/identification" title="identification">identification</a> = 9156.59 <a href="/wiki/holiness" title="holiness">holiness</a> = 9155.80 <a href="/wiki/crooked" title="crooked">crooked</a> = 9154.21 <a href="/wiki/housekeeper" title="housekeeper">housekeeper</a> = 9144.72 <a href="/wiki/productions" title="productions">productions</a> = 9142.35 <a href="/wiki/prescribed" title="prescribed">prescribed</a> = 9139.18 <a href="/wiki/rector" title="rector">rector</a> = 9139.18 <a href="/wiki/spark" title="spark">spark</a> = 9135.23 <a href="/wiki/sleeve" title="sleeve">sleeve</a> = 9132.06 <a href="/wiki/honored" title="honored">honored</a> = 9127.31 <a href="/wiki/tame" title="tame">tame</a> = 9124.94 <a href="/wiki/highway" title="highway">highway</a> = 9124.15 <a href="/wiki/alabama" title="alabama">alabama</a> = 9123.36 <a href="/w/index.php?title=edmund&amp;action=edit&amp;redlink=1" class="new" title="edmund (page does not exist)">edmund</a> = 9118.61 <a href="/wiki/militia" title="militia">militia</a> = 9113.87 <a href="/wiki/nobleman" title="nobleman">nobleman</a> = 9113.87 <a href="/wiki/energies" title="energies">energies</a> = 9112.28 <a href="/wiki/spacious" title="spacious">spacious</a> = 9109.12 <a href="/wiki/tearing" title="tearing">tearing</a> = 9102.00 <a href="/wiki/affliction" title="affliction">affliction</a> = 9099.62 <a href="/wiki/photograph" title="photograph">photograph</a> = 9094.88 <a href="/wiki/ally" title="ally">ally</a> = 9090.92 <a href="/w/index.php?title=hampshire&amp;action=edit&amp;redlink=1" class="new" title="hampshire (page does not exist)">hampshire</a> = 9088.55 <a href="/wiki/ascent" title="ascent">ascent</a> = 9086.18 <a href="/wiki/ditch" title="ditch">ditch</a> = 9084.59 <a href="/wiki/fishes" title="fishes">fishes</a> = 9083.80 <a href="/w/index.php?title=jupiter&amp;action=edit&amp;redlink=1" class="new" title="jupiter (page does not exist)">jupiter</a> = 9080.64 <a href="/wiki/rubbing" title="rubbing">rubbing</a> = 9071.94 <a href="/wiki/tract" title="tract">tract</a> = 9069.56 <a href="/wiki/standards" title="standards">standards</a> = 9064.81 <a href="/wiki/afore" title="afore">afore</a> = 9064.02 <a href="/wiki/ribbon" title="ribbon">ribbon</a> = 9063.23</p>
372
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=74" title="Edit section: 6501 - 6600">edit</a>]</span> <span class="mw-headline" id="6501_-_6600">6501 - 6600</span></h5>
373
+ <p><a href="/w/index.php?title=cecilia&amp;action=edit&amp;redlink=1" class="new" title="cecilia (page does not exist)">cecilia</a> = 9058.49 <a href="/w/index.php?title=oregon&amp;action=edit&amp;redlink=1" class="new" title="oregon (page does not exist)">oregon</a> = 9057.69 <a href="/wiki/integrity" title="integrity">integrity</a> = 9054.53 <a href="/wiki/plus" title="plus">plus</a> = 9051.37 <a href="/wiki/transparent" title="transparent">transparent</a> = 9048.20 <a href="/wiki/farms" title="farms">farms</a> = 9043.45 <a href="/wiki/pulpit" title="pulpit">pulpit</a> = 9036.33 <a href="/wiki/ropes" title="ropes">ropes</a> = 9034.75 <a href="/wiki/nineteen" title="nineteen">nineteen</a> = 9033.96 <a href="/wiki/rescued" title="rescued">rescued</a> = 9032.38 <a href="/wiki/counting" title="counting">counting</a> = 9030.80 <a href="/wiki/perfume" title="perfume">perfume</a> = 9030.80 <a href="/w/index.php?title=socrates&amp;action=edit&amp;redlink=1" class="new" title="socrates (page does not exist)">socrates</a> = 9030.80 <a href="/wiki/hounds" title="hounds">hounds</a> = 9028.42 <a href="/wiki/solicited" title="solicited">solicited</a> = 9028.42 <a href="/wiki/bother" title="bother">bother</a> = 9022.88 <a href="/wiki/fascinating" title="fascinating">fascinating</a> = 9016.56 <a href="/wiki/qualified" title="qualified">qualified</a> = 9016.56 <a href="/wiki/desolation" title="desolation">desolation</a> = 9015.76 <a href="/wiki/essay" title="essay">essay</a> = 9014.97 <a href="/wiki/rains" title="rains">rains</a> = 9014.97 <a href="/wiki/renew" title="renew">renew</a> = 9014.18 <a href="/wiki/odious" title="odious">odious</a> = 9011.81 <a href="/wiki/assuredly" title="assuredly">assuredly</a> = 9011.02 <a href="/wiki/suggests" title="suggests">suggests</a> = 9005.48 <a href="/wiki/rider" title="rider">rider</a> = 8996.78 <a href="/wiki/loneliness" title="loneliness">loneliness</a> = 8992.82 <a href="/wiki/pond" title="pond">pond</a> = 8992.03 <a href="/wiki/activities" title="activities">activities</a> = 8982.54 <a href="/wiki/dazzling" title="dazzling">dazzling</a> = 8981.75 <a href="/wiki/leaping" title="leaping">leaping</a> = 8981.75 <a href="/wiki/squadron" title="squadron">squadron</a> = 8980.16 <a href="/wiki/bowing" title="bowing">bowing</a> = 8977.79 <a href="/wiki/novelty" title="novelty">novelty</a> = 8977.79 <a href="/wiki/wrist" title="wrist">wrist</a> = 8971.46 <a href="/wiki/keeper" title="keeper">keeper</a> = 8968.30 <a href="/wiki/homeward" title="homeward">homeward</a> = 8966.71 <a href="/w/index.php?title=alexandria&amp;action=edit&amp;redlink=1" class="new" title="alexandria (page does not exist)">alexandria</a> = 8965.92 <a href="/wiki/finely" title="finely">finely</a> = 8962.76 <a href="/wiki/li" title="li">li</a> = 8960.39 <a href="/wiki/efficiency" title="efficiency">efficiency</a> = 8958.80 <a href="/wiki/marvel" title="marvel">marvel</a> = 8956.43 <a href="/wiki/tranquillity" title="tranquillity">tranquillity</a> = 8954.85 <a href="/w/index.php?title=agnes&amp;action=edit&amp;redlink=1" class="new" title="agnes (page does not exist)">agnes</a> = 8951.68 <a href="/wiki/charities" title="charities">charities</a> = 8951.68 <a href="/w/index.php?title=spenser&amp;action=edit&amp;redlink=1" class="new" title="spenser (page does not exist)">spenser</a> = 8950.10 <a href="/wiki/condemn" title="condemn">condemn</a> = 8946.14 <a href="/wiki/elephants" title="elephants">elephants</a> = 8945.35 <a href="/wiki/elders" title="elders">elders</a> = 8942.98 <a href="/w/index.php?title=julian&amp;action=edit&amp;redlink=1" class="new" title="julian (page does not exist)">julian</a> = 8942.98 <a href="/wiki/tries" title="tries">tries</a> = 8942.98 <a href="/wiki/2nd" title="2nd">2nd</a> = 8939.82 <a href="/wiki/sweetly" title="sweetly">sweetly</a> = 8939.02 <a href="/wiki/endurance" title="endurance">endurance</a> = 8937.44 <a href="/wiki/bags" title="bags">bags</a> = 8936.65 <a href="/wiki/reared" title="reared">reared</a> = 8932.70 <a href="/wiki/jaw" title="jaw">jaw</a> = 8931.90 <a href="/wiki/unique" title="unique">unique</a> = 8931.90 <a href="/wiki/navigation" title="navigation">navigation</a> = 8931.11 <a href="/wiki/inevitably" title="inevitably">inevitably</a> = 8928.74 <a href="/wiki/admirably" title="admirably">admirably</a> = 8927.16 <a href="/wiki/sect" title="sect">sect</a> = 8927.16 <a href="/wiki/drum" title="drum">drum</a> = 8923.20 <a href="/wiki/poles" title="poles">poles</a> = 8921.62 <a href="/wiki/verge" title="verge">verge</a> = 8918.46 <a href="/wiki/piercing" title="piercing">piercing</a> = 8912.13 <a href="/wiki/sanction" title="sanction">sanction</a> = 8911.33 <a href="/w/index.php?title=russians&amp;action=edit&amp;redlink=1" class="new" title="russians (page does not exist)">russians</a> = 8904.21 <a href="/wiki/forlorn" title="forlorn">forlorn</a> = 8901.84 <a href="/wiki/approbation" title="approbation">approbation</a> = 8899.47 <a href="/wiki/organic" title="organic">organic</a> = 8895.51 <a href="/w/index.php?title=stanley&amp;action=edit&amp;redlink=1" class="new" title="stanley (page does not exist)">stanley</a> = 8895.51 <a href="/wiki/allegiance" title="allegiance">allegiance</a> = 8891.56 <a href="/wiki/bin" title="bin">bin</a> = 8891.56 <a href="/wiki/expressly" title="expressly">expressly</a> = 8879.69 <a href="/wiki/ingenuity" title="ingenuity">ingenuity</a> = 8877.32 <a href="/wiki/dispose" title="dispose">dispose</a> = 8873.36 <a href="/wiki/stained" title="stained">stained</a> = 8873.36 <a href="/wiki/theology" title="theology">theology</a> = 8870.20 <a href="/wiki/withal" title="withal">withal</a> = 8870.20 <a href="/wiki/duration" title="duration">duration</a> = 8868.61 <a href="/wiki/fundraising" title="fundraising">fundraising</a> = 8851.21 <a href="/wiki/adj." title="adj.">adj.</a> = 8846.46 <a href="/wiki/collecting" title="collecting">collecting</a> = 8846.46 <a href="/wiki/weigh" title="weigh">weigh</a> = 8841.71 <a href="/wiki/sweetest" title="sweetest">sweetest</a> = 8840.13 <a href="/wiki/float" title="float">float</a> = 8839.34 <a href="/wiki/consul" title="consul">consul</a> = 8837.76 <a href="/wiki/monastery" title="monastery">monastery</a> = 8837.76 <a href="/wiki/raging" title="raging">raging</a> = 8836.18 <a href="/wiki/publish" title="publish">publish</a> = 8833.80 <a href="/wiki/knocking" title="knocking">knocking</a> = 8832.22 <a href="/wiki/precaution" title="precaution">precaution</a> = 8832.22 <a href="/wiki/privately" title="privately">privately</a> = 8832.22 <a href="/w/index.php?title=aaron&amp;action=edit&amp;redlink=1" class="new" title="aaron (page does not exist)">aaron</a> = 8828.27 <a href="/wiki/endeavored" title="endeavored">endeavored</a> = 8827.47 <a href="/wiki/insight" title="insight">insight</a> = 8827.47 <a href="/wiki/definitely" title="definitely">definitely</a> = 8825.89 <a href="/wiki/stature" title="stature">stature</a> = 8825.10 <a href="/wiki/troy" title="troy">troy</a> = 8825.10</p>
374
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=75" title="Edit section: 6601 - 6700">edit</a>]</span> <span class="mw-headline" id="6601_-_6700">6601 - 6700</span></h5>
375
+ <p><a href="/w/index.php?title=miriam&amp;action=edit&amp;redlink=1" class="new" title="miriam (page does not exist)">miriam</a> = 8824.31 <a href="/w/index.php?title=judah&amp;action=edit&amp;redlink=1" class="new" title="judah (page does not exist)">judah</a> = 8823.52 <a href="/wiki/oblige" title="oblige">oblige</a> = 8822.73 <a href="/wiki/urging" title="urging">urging</a> = 8816.40 <a href="/wiki/shift" title="shift">shift</a> = 8810.86 <a href="/wiki/mould" title="mould">mould</a> = 8808.49 <a href="/wiki/courses" title="courses">courses</a> = 8807.70 <a href="/wiki/countless" title="countless">countless</a> = 8806.11 <a href="/wiki/associates" title="associates">associates</a> = 8798.20 <a href="/wiki/hymn" title="hymn">hymn</a> = 8797.41 <a href="/wiki/rapture" title="rapture">rapture</a> = 8797.41 <a href="/wiki/tonight" title="tonight">tonight</a> = 8797.41 <a href="/wiki/trumpet" title="trumpet">trumpet</a> = 8795.83 <a href="/wiki/parker" title="parker">parker</a> = 8791.87 <a href="/wiki/entrusted" title="entrusted">entrusted</a> = 8787.92 <a href="/wiki/firmness" title="firmness">firmness</a> = 8787.92 <a href="/wiki/comic" title="comic">comic</a> = 8780.80 <a href="/wiki/breeding" title="breeding">breeding</a> = 8780.01 <a href="/wiki/ken" title="ken">ken</a> = 8775.26 <a href="/wiki/questioning" title="questioning">questioning</a> = 8772.89 <a href="/wiki/factor" title="factor">factor</a> = 8772.10 <a href="/wiki/monuments" title="monuments">monuments</a> = 8767.35 <a href="/wiki/loveliness" title="loveliness">loveliness</a> = 8766.56 <a href="/wiki/handled" title="handled">handled</a> = 8761.02 <a href="/wiki/communities" title="communities">communities</a> = 8754.69 <a href="/wiki/saloon" title="saloon">saloon</a> = 8754.69 <a href="/wiki/stumbled" title="stumbled">stumbled</a> = 8749.15 <a href="/wiki/witch" title="witch">witch</a> = 8748.36 <a href="/wiki/confronted" title="confronted">confronted</a> = 8747.57 <a href="/wiki/traveling" title="traveling">traveling</a> = 8747.57 <a href="/wiki/seamen" title="seamen">seamen</a> = 8745.99 <a href="/wiki/backed" title="backed">backed</a> = 8744.41 <a href="/wiki/profoundly" title="profoundly">profoundly</a> = 8742.03 <a href="/wiki/gladness" title="gladness">gladness</a> = 8738.87 <a href="/wiki/pomp" title="pomp">pomp</a> = 8737.29 <a href="/wiki/mess" title="mess">mess</a> = 8735.70 <a href="/wiki/practise" title="practise">practise</a> = 8734.12 <a href="/wiki/sanctuary" title="sanctuary">sanctuary</a> = 8734.12 <a href="/wiki/superstitious" title="superstitious">superstitious</a> = 8734.12 <a href="/wiki/casual" title="casual">casual</a> = 8732.54 <a href="/w/index.php?title=iowa&amp;action=edit&amp;redlink=1" class="new" title="iowa (page does not exist)">iowa</a> = 8732.54 <a href="/wiki/analyzed" title="analyzed">analyzed</a> = 8725.42 <a href="/wiki/historic" title="historic">historic</a> = 8724.63 <a href="/wiki/bored" title="bored">bored</a> = 8723.84 <a href="/wiki/shrink" title="shrink">shrink</a> = 8723.84 <a href="/wiki/judging" title="judging">judging</a> = 8723.04 <a href="/wiki/treating" title="treating">treating</a> = 8717.51 <a href="/wiki/expenditure" title="expenditure">expenditure</a> = 8716.72 <a href="/wiki/encouraging" title="encouraging">encouraging</a> = 8715.13 <a href="/wiki/diplomatic" title="diplomatic">diplomatic</a> = 8714.34 <a href="/wiki/forcing" title="forcing">forcing</a> = 8713.55 <a href="/wiki/studio" title="studio">studio</a> = 8712.76 <a href="/wiki/exposure" title="exposure">exposure</a> = 8710.39 <a href="/wiki/crude" title="crude">crude</a> = 8705.64 <a href="/wiki/compilation" title="compilation">compilation</a> = 8704.85 <a href="/w/index.php?title=vermont&amp;action=edit&amp;redlink=1" class="new" title="vermont (page does not exist)">vermont</a> = 8692.98 <a href="/wiki/eve" title="eve">eve</a> = 8689.82 <a href="/wiki/ascend" title="ascend">ascend</a> = 8689.03 <a href="/wiki/unbroken" title="unbroken">unbroken</a> = 8689.03 <a href="/wiki/apollo" title="apollo">apollo</a> = 8688.23 <a href="/wiki/countess" title="countess">countess</a> = 8682.70 <a href="/wiki/binding" title="binding">binding</a> = 8680.32 <a href="/wiki/exceed" title="exceed">exceed</a> = 8677.95 <a href="/wiki/frail" title="frail">frail</a> = 8677.16 <a href="/wiki/hans" title="hans">hans</a> = 8676.37 <a href="/wiki/champagne" title="champagne">champagne</a> = 8671.62 <a href="/wiki/shuddered" title="shuddered">shuddered</a> = 8671.62 <a href="/wiki/carter" title="carter">carter</a> = 8670.83 <a href="/wiki/mule" title="mule">mule</a> = 8667.67 <a href="/wiki/inserted" title="inserted">inserted</a> = 8666.87 <a href="/wiki/parson" title="parson">parson</a> = 8666.08 <a href="/wiki/rascal" title="rascal">rascal</a> = 8664.50 <a href="/wiki/inspire" title="inspire">inspire</a> = 8660.55 <a href="/wiki/banner" title="banner">banner</a> = 8657.38 <a href="/wiki/divorce" title="divorce">divorce</a> = 8655.01 <a href="/wiki/treacherous" title="treacherous">treacherous</a> = 8655.01 <a href="/wiki/nineteenth" title="nineteenth">nineteenth</a> = 8651.84 <a href="/wiki/invalid" title="invalid">invalid</a> = 8650.26 <a href="/wiki/weaker" title="weaker">weaker</a> = 8650.26 <a href="/wiki/organizations" title="organizations">organizations</a> = 8648.68 <a href="/wiki/bolt" title="bolt">bolt</a> = 8646.30 <a href="/wiki/ticket" title="ticket">ticket</a> = 8643.14 <a href="/wiki/backwards" title="backwards">backwards</a> = 8642.35 <a href="/wiki/captivity" title="captivity">captivity</a> = 8642.35 <a href="/wiki/lame" title="lame">lame</a> = 8640.77 <a href="/wiki/provoked" title="provoked">provoked</a> = 8639.18 <a href="/wiki/vein" title="vein">vein</a> = 8636.02 <a href="/wiki/lists" title="lists">lists</a> = 8625.74 <a href="/wiki/gallop" title="gallop">gallop</a> = 8624.94 <a href="/wiki/communications" title="communications">communications</a> = 8622.57 <a href="/wiki/dagger" title="dagger">dagger</a> = 8619.41 <a href="/wiki/passive" title="passive">passive</a> = 8618.62 <a href="/wiki/shoe" title="shoe">shoe</a> = 8618.62 <a href="/wiki/thrice" title="thrice">thrice</a> = 8613.08 <a href="/wiki/corrected" title="corrected">corrected</a> = 8611.49 <a href="/wiki/mystic" title="mystic">mystic</a> = 8605.17 <a href="/wiki/infancy" title="infancy">infancy</a> = 8602.00 <a href="/wiki/foam" title="foam">foam</a> = 8600.42 <a href="/wiki/keith" title="keith" class="mw-redirect">keith</a> = 8600.42 <a href="/wiki/tavern" title="tavern">tavern</a> = 8599.63</p>
376
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=76" title="Edit section: 6701 - 6800">edit</a>]</span> <span class="mw-headline" id="6701_-_6800">6701 - 6800</span></h5>
377
+ <p><a href="/wiki/fraud" title="fraud">fraud</a> = 8597.25 <a href="/wiki/7th" title="7th">7th</a> = 8596.46 <a href="/wiki/cradle" title="cradle">cradle</a> = 8594.09 <a href="/wiki/rifles" title="rifles">rifles</a> = 8589.34 <a href="/wiki/vigorously" title="vigorously">vigorously</a> = 8589.34 <a href="/wiki/censure" title="censure">censure</a> = 8587.76 <a href="/wiki/gentleness" title="gentleness">gentleness</a> = 8587.76 <a href="/wiki/jr" title="jr" class="mw-redirect">jr</a> = 8587.76 <a href="/wiki/sobbing" title="sobbing">sobbing</a> = 8586.18 <a href="/wiki/monotonous" title="monotonous">monotonous</a> = 8579.85 <a href="/wiki/explosion" title="explosion">explosion</a> = 8578.27 <a href="/wiki/catastrophe" title="catastrophe">catastrophe</a> = 8570.36 <a href="/wiki/respectfully" title="respectfully">respectfully</a> = 8567.98 <a href="/wiki/wearied" title="wearied">wearied</a> = 8565.61 <a href="/wiki/cats" title="cats">cats</a> = 8564.82 <a href="/wiki/blamed" title="blamed">blamed</a> = 8563.24 <a href="/wiki/needful" title="needful">needful</a> = 8562.44 <a href="/wiki/fireplace" title="fireplace">fireplace</a> = 8561.65 <a href="/wiki/gravel" title="gravel">gravel</a> = 8560.86 <a href="/wiki/affords" title="affords">affords</a> = 8560.07 <a href="/wiki/discovering" title="discovering">discovering</a> = 8560.07 <a href="/wiki/jar" title="jar">jar</a> = 8560.07 <a href="/wiki/selfishness" title="selfishness">selfishness</a> = 8557.70 <a href="/wiki/tolerably" title="tolerably">tolerably</a> = 8553.74 <a href="/wiki/clerks" title="clerks">clerks</a> = 8551.37 <a href="/wiki/ark" title="ark">ark</a> = 8549.00 <a href="/wiki/moist" title="moist">moist</a> = 8549.00 <a href="/wiki/wid" title="wid">wid</a> = 8544.25 <a href="/wiki/sauce" title="sauce">sauce</a> = 8543.46 <a href="/wiki/prompted" title="prompted">prompted</a> = 8534.75 <a href="/wiki/exceptions" title="exceptions">exceptions</a> = 8532.38 <a href="/wiki/bullets" title="bullets">bullets</a> = 8527.63 <a href="/wiki/writ" title="writ">writ</a> = 8527.63 <a href="/wiki/bruce" title="bruce">bruce</a> = 8526.84 <a href="/wiki/insolent" title="insolent">insolent</a> = 8523.68 <a href="/wiki/moisture" title="moisture">moisture</a> = 8523.68 <a href="/w/index.php?title=thompson&amp;action=edit&amp;redlink=1" class="new" title="thompson (page does not exist)">thompson</a> = 8522.89 <a href="/wiki/furnace" title="furnace">furnace</a> = 8519.72 <a href="/wiki/healing" title="healing">healing</a> = 8519.72 <a href="/wiki/fewer" title="fewer">fewer</a> = 8517.35 <a href="/wiki/deem" title="deem">deem</a> = 8515.77 <a href="/wiki/apron" title="apron">apron</a> = 8513.39 <a href="/wiki/humiliation" title="humiliation">humiliation</a> = 8513.39 <a href="/wiki/punctuation" title="punctuation">punctuation</a> = 8512.60 <a href="/wiki/rolls" title="rolls">rolls</a> = 8511.81 <a href="/wiki/doe" title="doe">doe</a> = 8509.44 <a href="/wiki/rotten" title="rotten">rotten</a> = 8507.86 <a href="/wiki/richer" title="richer">richer</a> = 8505.48 <a href="/w/index.php?title=swiss&amp;action=edit&amp;redlink=1" class="new" title="swiss (page does not exist)">swiss</a> = 8505.48 <a href="/wiki/behavior" title="behavior">behavior</a> = 8503.90 <a href="/wiki/nowadays" title="nowadays">nowadays</a> = 8501.53 <a href="/wiki/pamphlet" title="pamphlet">pamphlet</a> = 8499.15 <a href="/wiki/loan" title="loan">loan</a> = 8497.57 <a href="/wiki/beads" title="beads">beads</a> = 8494.41 <a href="/wiki/divers" title="divers">divers</a> = 8493.62 <a href="/wiki/unreasonable" title="unreasonable">unreasonable</a> = 8492.03 <a href="/wiki/realise" title="realise">realise</a> = 8490.45 <a href="/wiki/lust" title="lust">lust</a> = 8484.12 <a href="/wiki/ah" title="ah">ah</a> = 8480.17 <a href="/wiki/annually" title="annually">annually</a> = 8479.38 <a href="/wiki/detach" title="detach">detach</a> = 8478.58 <a href="/wiki/gaily" title="gaily">gaily</a> = 8477.00 <a href="/wiki/shares" title="shares">shares</a> = 8477.00 <a href="/wiki/gifted" title="gifted">gifted</a> = 8473.05 <a href="/wiki/planet" title="planet">planet</a> = 8473.05 <a href="/wiki/feverish" title="feverish">feverish</a> = 8466.72 <a href="/wiki/resurrection" title="resurrection">resurrection</a> = 8466.72 <a href="/wiki/saul" title="saul" class="mw-redirect">saul</a> = 8464.34 <a href="/wiki/consecrated" title="consecrated">consecrated</a> = 8461.97 <a href="/wiki/enforced" title="enforced">enforced</a> = 8460.39 <a href="/wiki/vincent" title="vincent">vincent</a> = 8453.27 <a href="/wiki/shelf" title="shelf">shelf</a> = 8451.69 <a href="/wiki/fan" title="fan">fan</a> = 8450.89 <a href="/wiki/fluid" title="fluid">fluid</a> = 8449.31 <a href="/wiki/brightly" title="brightly">brightly</a> = 8448.52 <a href="/wiki/damsel" title="damsel">damsel</a> = 8448.52 <a href="/w/index.php?title=gabriel&amp;action=edit&amp;redlink=1" class="new" title="gabriel (page does not exist)">gabriel</a> = 8447.73 <a href="/wiki/kid" title="kid">kid</a> = 8446.94 <a href="/wiki/frantic" title="frantic">frantic</a> = 8441.40 <a href="/wiki/neatly" title="neatly">neatly</a> = 8441.40 <a href="/wiki/anon" title="anon">anon</a> = 8435.86 <a href="/wiki/ascribed" title="ascribed">ascribed</a> = 8435.07 <a href="/wiki/insane" title="insane">insane</a> = 8435.07 <a href="/wiki/tropical" title="tropical">tropical</a> = 8434.28 <a href="/wiki/8th" title="8th">8th</a> = 8431.12 <a href="/wiki/milan" title="milan">milan</a> = 8429.53 <a href="/wiki/hardened" title="hardened">hardened</a> = 8427.95 <a href="/wiki/overthrow" title="overthrow">overthrow</a> = 8427.16 <a href="/wiki/phase" title="phase">phase</a> = 8427.16 <a href="/wiki/achievement" title="achievement">achievement</a> = 8424.79 <a href="/wiki/immortality" title="immortality">immortality</a> = 8424.79 <a href="/wiki/obscurity" title="obscurity">obscurity</a> = 8421.62 <a href="/wiki/assumption" title="assumption">assumption</a> = 8420.04 <a href="/wiki/discern" title="discern">discern</a> = 8412.92 <a href="/wiki/hopeful" title="hopeful">hopeful</a> = 8412.13 <a href="/wiki/humorous" title="humorous">humorous</a> = 8410.55 <a href="/wiki/composure" title="composure">composure</a> = 8408.17 <a href="/wiki/turf" title="turf">turf</a> = 8408.17 <a href="/w/index.php?title=poland&amp;action=edit&amp;redlink=1" class="new" title="poland (page does not exist)">poland</a> = 8407.38 <a href="/wiki/dame" title="dame">dame</a> = 8406.59</p>
378
+ <p><br /></p>
379
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=77" title="Edit section: 6801 - 6900">edit</a>]</span> <span class="mw-headline" id="6801_-_6900">6801 - 6900</span></h5>
380
+ <p><a href="/wiki/missionaries" title="missionaries">missionaries</a> = 8406.59 <a href="/wiki/orator" title="orator">orator</a> = 8405.01 <a href="/wiki/perpetually" title="perpetually">perpetually</a> = 8405.01 <a href="/wiki/arbitrary" title="arbitrary">arbitrary</a> = 8403.43 <a href="/wiki/ecstasy" title="ecstasy">ecstasy</a> = 8397.89 <a href="/wiki/retirement" title="retirement">retirement</a> = 8397.10 <a href="/wiki/pronounce" title="pronounce">pronounce</a> = 8393.14 <a href="/wiki/authorized" title="authorized">authorized</a> = 8387.60 <a href="/wiki/familiarity" title="familiarity">familiarity</a> = 8387.60 <a href="/wiki/nl" title="nl">nl</a> = 8386.02 <a href="/wiki/hastings" title="hastings">hastings</a> = 8384.44 <a href="/wiki/clubs" title="clubs">clubs</a> = 8383.65 <a href="/wiki/reconciled" title="reconciled">reconciled</a> = 8383.65 <a href="/wiki/grievous" title="grievous">grievous</a> = 8382.86 <a href="/wiki/mercury" title="mercury">mercury</a> = 8381.27 <a href="/wiki/elegance" title="elegance">elegance</a> = 8379.69 <a href="/wiki/chivalry" title="chivalry">chivalry</a> = 8378.90 <a href="/wiki/luminous" title="luminous">luminous</a> = 8377.32 <a href="/wiki/beseech" title="beseech">beseech</a> = 8375.74 <a href="/wiki/benevolent" title="benevolent">benevolent</a> = 8374.95 <a href="/wiki/confided" title="confided">confided</a> = 8374.95 <a href="/wiki/dances" title="dances">dances</a> = 8374.15 <a href="/wiki/perplexity" title="perplexity">perplexity</a> = 8370.20 <a href="/wiki/escaping" title="escaping">escaping</a> = 8369.41 <a href="/wiki/terrific" title="terrific">terrific</a> = 8369.41 <a href="/wiki/companionship" title="companionship">companionship</a> = 8365.45 <a href="/wiki/commence" title="commence">commence</a> = 8364.66 <a href="/wiki/daisy" title="daisy">daisy</a> = 8364.66 <a href="/wiki/parliament" title="parliament">parliament</a> = 8361.50 <a href="/wiki/9th" title="9th">9th</a> = 8353.58 <a href="/wiki/creep" title="creep">creep</a> = 8352.79 <a href="/wiki/pleading" title="pleading">pleading</a> = 8347.26 <a href="/wiki/disdain" title="disdain">disdain</a> = 8345.67 <a href="/wiki/pm" title="pm">pm</a> = 8345.67 <a href="/wiki/sympathies" title="sympathies">sympathies</a> = 8341.72 <a href="/wiki/guides" title="guides">guides</a> = 8340.93 <a href="/wiki/emergency" title="emergency">emergency</a> = 8338.55 <a href="/wiki/parcel" title="parcel">parcel</a> = 8337.76 <a href="/wiki/suicide" title="suicide">suicide</a> = 8337.76 <a href="/wiki/replies" title="replies">replies</a> = 8336.18 <a href="/wiki/drawer" title="drawer">drawer</a> = 8335.39 <a href="/wiki/contribution" title="contribution">contribution</a> = 8334.60 <a href="/wiki/supposition" title="supposition">supposition</a> = 8331.43 <a href="/wiki/vii" title="vii">vii</a> = 8329.85 <a href="/wiki/weren%27t" title="weren't">weren't</a> = 8325.90 <a href="/wiki/link" title="link">link</a> = 8325.10 <a href="/wiki/homely" title="homely">homely</a> = 8321.94 <a href="/wiki/pluck" title="pluck">pluck</a> = 8321.94 <a href="/wiki/ruling" title="ruling">ruling</a> = 8317.19 <a href="/w/index.php?title=patrick&amp;action=edit&amp;redlink=1" class="new" title="patrick (page does not exist)">patrick</a> = 8316.40 <a href="/wiki/statesmen" title="statesmen">statesmen</a> = 8311.65 <a href="/w/index.php?title=hannah&amp;action=edit&amp;redlink=1" class="new" title="hannah (page does not exist)">hannah</a> = 8310.86 <a href="/wiki/printing" title="printing">printing</a> = 8310.86 <a href="/w/index.php?title=joshua&amp;action=edit&amp;redlink=1" class="new" title="joshua (page does not exist)">joshua</a> = 8309.28 <a href="/wiki/synonymous" title="synonymous">synonymous</a> = 8307.70 <a href="/wiki/sinister" title="sinister">sinister</a> = 8306.91 <a href="/wiki/advocate" title="advocate">advocate</a> = 8306.12 <a href="/wiki/destructive" title="destructive">destructive</a> = 8304.53 <a href="/wiki/environment" title="environment">environment</a> = 8304.53 <a href="/wiki/blossom" title="blossom">blossom</a> = 8302.16 <a href="/wiki/bridle" title="bridle">bridle</a> = 8296.62 <a href="/wiki/yon" title="yon">yon</a> = 8295.83 <a href="/wiki/waistcoat" title="waistcoat">waistcoat</a> = 8291.88 <a href="/wiki/extends" title="extends">extends</a> = 8291.09 <a href="/wiki/confirm" title="confirm">confirm</a> = 8289.50 <a href="/wiki/listing" title="listing">listing</a> = 8287.13 <a href="/wiki/solemnity" title="solemnity">solemnity</a> = 8287.13 <a href="/wiki/projects" title="projects">projects</a> = 8284.76 <a href="/wiki/reporter" title="reporter">reporter</a> = 8284.76 <a href="/wiki/deprive" title="deprive">deprive</a> = 8283.17 <a href="/wiki/detachment" title="detachment">detachment</a> = 8280.80 <a href="/wiki/infernal" title="infernal">infernal</a> = 8270.52 <a href="/wiki/traversed" title="traversed">traversed</a> = 8269.72 <a href="/wiki/moss" title="moss">moss</a> = 8266.56 <a href="/wiki/skilled" title="skilled">skilled</a> = 8264.98 <a href="/wiki/announce" title="announce">announce</a> = 8263.40 <a href="/wiki/hateful" title="hateful">hateful</a> = 8260.23 <a href="/wiki/fugitive" title="fugitive">fugitive</a> = 8257.07 <a href="/wiki/gothic" title="gothic">gothic</a> = 8257.07 <a href="/wiki/coolness" title="coolness">coolness</a> = 8256.28 <a href="/wiki/insurrection" title="insurrection">insurrection</a> = 8254.69 <a href="/wiki/cum" title="cum">cum</a> = 8252.32 <a href="/wiki/med" title="med">med</a> = 8251.53 <a href="/wiki/coachman" title="coachman">coachman</a> = 8249.16 <a href="/wiki/expend" title="expend">expend</a> = 8249.16 <a href="/wiki/stepping" title="stepping">stepping</a> = 8248.36 <a href="/w/index.php?title=julius&amp;action=edit&amp;redlink=1" class="new" title="julius (page does not exist)">julius</a> = 8242.83 <a href="/wiki/resign" title="resign">resign</a> = 8237.29 <a href="/wiki/despatch" title="despatch">despatch</a> = 8233.33 <a href="/wiki/excluded" title="excluded">excluded</a> = 8233.33 <a href="/wiki/reject" title="reject">reject</a> = 8233.33 <a href="/wiki/tough" title="tough">tough</a> = 8230.17 <a href="/wiki/plea" title="plea">plea</a> = 8228.59 <a href="/wiki/roy" title="roy">roy</a> = 8227.79 <a href="/wiki/fragment" title="fragment">fragment</a> = 8227.00 <a href="/wiki/lacked" title="lacked">lacked</a> = 8227.00 <a href="/w/index.php?title=wordsworth&amp;action=edit&amp;redlink=1" class="new" title="wordsworth (page does not exist)">wordsworth</a> = 8224.63 <a href="/wiki/balcony" title="balcony">balcony</a> = 8223.84 <a href="/wiki/darker" title="darker">darker</a> = 8222.26 <a href="/wiki/mac" title="mac">mac</a> = 8222.26</p>
381
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=78" title="Edit section: 6901 - 7000">edit</a>]</span> <span class="mw-headline" id="6901_-_7000">6901 - 7000</span></h5>
382
+ <p><a href="/wiki/nevada" title="nevada">nevada</a> = 8222.26 <a href="/w/index.php?title=christopher&amp;action=edit&amp;redlink=1" class="new" title="christopher (page does not exist)">christopher</a> = 8219.88 <a href="/wiki/fork" title="fork">fork</a> = 8219.88 <a href="/wiki/flatter" title="flatter">flatter</a> = 8219.09 <a href="/wiki/iniquity" title="iniquity">iniquity</a> = 8212.76 <a href="/wiki/meditation" title="meditation">meditation</a> = 8212.76 <a href="/wiki/disastrous" title="disastrous">disastrous</a> = 8211.18 <a href="/wiki/stain" title="stain">stain</a> = 8209.60 <a href="/wiki/patches" title="patches">patches</a> = 8208.02 <a href="/wiki/hints" title="hints">hints</a> = 8203.27 <a href="/wiki/ordained" title="ordained">ordained</a> = 8198.52 <a href="/wiki/drinks" title="drinks">drinks</a> = 8197.73 <a href="/wiki/whipped" title="whipped">whipped</a> = 8197.73 <a href="/wiki/burial" title="burial">burial</a> = 8196.15 <a href="/wiki/matt" title="matt">matt</a> = 8196.15 <a href="/wiki/employee" title="employee">employee</a> = 8193.78 <a href="/wiki/employer" title="employer">employer</a> = 8192.19 <a href="/wiki/hypothesis" title="hypothesis">hypothesis</a> = 8192.19 <a href="/wiki/steed" title="steed">steed</a> = 8191.40 <a href="/wiki/width" title="width">width</a> = 8189.82 <a href="/w/index.php?title=sweden&amp;action=edit&amp;redlink=1" class="new" title="sweden (page does not exist)">sweden</a> = 8187.45 <a href="/wiki/transaction" title="transaction">transaction</a> = 8184.28 <a href="/wiki/victories" title="victories">victories</a> = 8182.70 <a href="/wiki/devout" title="devout">devout</a> = 8181.91 <a href="/wiki/outrage" title="outrage">outrage</a> = 8181.91 <a href="/wiki/vary" title="vary">vary</a> = 8179.54 <a href="/wiki/attorney" title="attorney">attorney</a> = 8176.37 <a href="/wiki/rouse" title="rouse">rouse</a> = 8175.58 <a href="/wiki/doubled" title="doubled">doubled</a> = 8170.04 <a href="/wiki/sidney" title="sidney" class="mw-redirect">sidney</a> = 8168.46 <a href="/wiki/schooner" title="schooner">schooner</a> = 8166.88 <a href="/wiki/flaming" title="flaming">flaming</a> = 8165.29 <a href="/wiki/offend" title="offend">offend</a> = 8161.34 <a href="/wiki/sheriff" title="sheriff">sheriff</a> = 8161.34 <a href="/wiki/encamped" title="encamped">encamped</a> = 8160.55 <a href="/wiki/magnificence" title="magnificence">magnificence</a> = 8158.17 <a href="/wiki/vent" title="vent">vent</a> = 8145.52 <a href="/wiki/politely" title="politely">politely</a> = 8144.73 <a href="/wiki/vines" title="vines">vines</a> = 8144.73 <a href="/wiki/flags" title="flags">flags</a> = 8142.35 <a href="/wiki/italians" title="italians">italians</a> = 8138.40 <a href="/wiki/necessities" title="necessities">necessities</a> = 8136.81 <a href="/wiki/austin" title="austin" class="mw-redirect">austin</a> = 8135.23 <a href="/wiki/nobler" title="nobler">nobler</a> = 8132.07 <a href="/wiki/accusation" title="accusation">accusation</a> = 8117.04 <a href="/wiki/impulses" title="impulses">impulses</a> = 8113.08 <a href="/wiki/packet" title="packet">packet</a> = 8112.29 <a href="/wiki/shabby" title="shabby">shabby</a> = 8111.50 <a href="/wiki/irritated" title="irritated">irritated</a> = 8108.33 <a href="/w/index.php?title=dakota&amp;action=edit&amp;redlink=1" class="new" title="dakota (page does not exist)">dakota</a> = 8107.54 <a href="/wiki/industrious" title="industrious">industrious</a> = 8105.17 <a href="/wiki/classic" title="classic">classic</a> = 8103.59 <a href="/wiki/ranch" title="ranch">ranch</a> = 8102.80 <a href="/wiki/ascending" title="ascending">ascending</a> = 8097.26 <a href="/wiki/cruelly" title="cruelly">cruelly</a> = 8096.47 <a href="/wiki/happiest" title="happiest">happiest</a> = 8095.68 <a href="/w/index.php?title=antonio&amp;action=edit&amp;redlink=1" class="new" title="antonio (page does not exist)">antonio</a> = 8094.88 <a href="/wiki/accuse" title="accuse">accuse</a> = 8092.51 <a href="/wiki/insulted" title="insulted">insulted</a> = 8089.35 <a href="/wiki/bridges" title="bridges">bridges</a> = 8086.97 <a href="/wiki/players" title="players">players</a> = 8086.97 <a href="/wiki/sixteenth" title="sixteenth">sixteenth</a> = 8084.60 <a href="/wiki/solicitation" title="solicitation">solicitation</a> = 8083.81 <a href="/wiki/embarked" title="embarked">embarked</a> = 8075.11 <a href="/wiki/idol" title="idol">idol</a> = 8071.94 <a href="/wiki/odds" title="odds">odds</a> = 8071.94 <a href="/wiki/aims" title="aims">aims</a> = 8067.99 <a href="/wiki/illuminated" title="illuminated">illuminated</a> = 8067.99 <a href="/wiki/enchanted" title="enchanted">enchanted</a> = 8064.82 <a href="/wiki/adversary" title="adversary">adversary</a> = 8060.87 <a href="/wiki/pie" title="pie">pie</a> = 8060.87 <a href="/wiki/reflecting" title="reflecting">reflecting</a> = 8059.28 <a href="/wiki/pension" title="pension">pension</a> = 8057.70 <a href="/wiki/luxurious" title="luxurious">luxurious</a> = 8056.12 <a href="/wiki/pigs" title="pigs">pigs</a> = 8055.33 <a href="/wiki/choir" title="choir">choir</a> = 8053.74 <a href="/wiki/tumbled" title="tumbled">tumbled</a> = 8052.16 <a href="/wiki/conqueror" title="conqueror">conqueror</a> = 8051.37 <a href="/wiki/irritation" title="irritation">irritation</a> = 8049.00 <a href="/wiki/verb" title="verb">verb</a> = 8049.00 <a href="/wiki/monkey" title="monkey">monkey</a> = 8046.62 <a href="/wiki/acceptable" title="acceptable">acceptable</a> = 8045.04 <a href="/wiki/dynasty" title="dynasty">dynasty</a> = 8045.04 <a href="/wiki/accurately" title="accurately">accurately</a> = 8043.46 <a href="/wiki/divinity" title="divinity">divinity</a> = 8042.67 <a href="/wiki/signature" title="signature">signature</a> = 8042.67 <a href="/wiki/heretofore" title="heretofore">heretofore</a> = 8041.88 <a href="/wiki/hazard" title="hazard">hazard</a> = 8041.09 <a href="/wiki/dora" title="dora">dora</a> = 8040.30 <a href="/wiki/sq." title="sq.">sq.</a> = 8039.50 <a href="/wiki/stead" title="stead">stead</a> = 8037.92 <a href="/wiki/attire" title="attire">attire</a> = 8037.13 <a href="/wiki/fling" title="fling">fling</a> = 8036.34 <a href="/wiki/marine" title="marine">marine</a> = 8034.76 <a href="/wiki/occupations" title="occupations">occupations</a> = 8031.59 <a href="/wiki/soothing" title="soothing">soothing</a> = 8031.59 <a href="/wiki/devised" title="devised">devised</a> = 8030.80 <a href="/wiki/singer" title="singer">singer</a> = 8028.43 <a href="/wiki/spaces" title="spaces">spaces</a> = 8027.64 <a href="/w/index.php?title=emerson&amp;action=edit&amp;redlink=1" class="new" title="emerson (page does not exist)">emerson</a> = 8026.06</p>
383
+ <h4><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=79" title="Edit section: 7001 - 8000">edit</a>]</span> <span class="mw-headline" id="7001_-_8000">7001 - 8000</span></h4>
384
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=80" title="Edit section: 7001 - 7100">edit</a>]</span> <span class="mw-headline" id="7001_-_7100">7001 - 7100</span></h5>
385
+ <p><a href="/wiki/disguised" title="disguised">disguised</a> = 8023.68 <a href="/wiki/antique" title="antique">antique</a> = 8022.10 <a href="/wiki/orthodox" title="orthodox">orthodox</a> = 8019.73 <a href="/wiki/poisoned" title="poisoned">poisoned</a> = 8016.56 <a href="/wiki/dove" title="dove">dove</a> = 8015.77 <a href="/wiki/gratification" title="gratification">gratification</a> = 8014.98 <a href="/w/index.php?title=sydney&amp;action=edit&amp;redlink=1" class="new" title="sydney (page does not exist)">sydney</a> = 8011.81 <a href="/wiki/electricity" title="electricity">electricity</a> = 8008.65 <a href="/wiki/alien" title="alien">alien</a> = 8002.32 <a href="/wiki/sorely" title="sorely">sorely</a> = 8002.32 <a href="/wiki/cracked" title="cracked">cracked</a> = 7994.41 <a href="/wiki/supremacy" title="supremacy">supremacy</a> = 7994.41 <a href="/wiki/summon" title="summon">summon</a> = 7991.25 <a href="/wiki/depressed" title="depressed">depressed</a> = 7989.66 <a href="/wiki/sexes" title="sexes">sexes</a> = 7988.87 <a href="/wiki/offerings" title="offerings">offerings</a> = 7988.08 <a href="/wiki/pledged" title="pledged">pledged</a> = 7988.08 <a href="/wiki/irony" title="irony">irony</a> = 7987.29 <a href="/wiki/recourse" title="recourse">recourse</a> = 7982.54 <a href="/wiki/tortured" title="tortured">tortured</a> = 7982.54 <a href="/wiki/thickly" title="thickly">thickly</a> = 7978.59 <a href="/wiki/correspondent" title="correspondent">correspondent</a> = 7976.21 <a href="/wiki/sounding" title="sounding">sounding</a> = 7975.42 <a href="/w/index.php?title=64&amp;action=edit&amp;redlink=1" class="new" title="64 (page does not exist)">64</a> = 7973.84 <a href="/wiki/sombre" title="sombre">sombre</a> = 7969.88 <a href="/wiki/brushed" title="brushed">brushed</a> = 7968.30 <a href="/wiki/reasonably" title="reasonably">reasonably</a> = 7957.23 <a href="/wiki/12th" title="12th">12th</a> = 7956.44 <a href="/wiki/duel" title="duel">duel</a> = 7956.44 <a href="/wiki/reluctantly" title="reluctantly">reluctantly</a> = 7956.44 <a href="/wiki/implies" title="implies">implies</a> = 7955.64 <a href="/wiki/cable" title="cable">cable</a> = 7954.85 <a href="/wiki/ridden" title="ridden">ridden</a> = 7949.32 <a href="/wiki/acre" title="acre">acre</a> = 7948.52 <a href="/wiki/grieve" title="grieve">grieve</a> = 7945.36 <a href="/wiki/inquiring" title="inquiring">inquiring</a> = 7944.57 <a href="/wiki/colonists" title="colonists">colonists</a> = 7942.19 <a href="/w/index.php?title=addison&amp;action=edit&amp;redlink=1" class="new" title="addison (page does not exist)">addison</a> = 7938.24 <a href="/wiki/republican" title="republican">republican</a> = 7938.24 <a href="/wiki/illustrate" title="illustrate">illustrate</a> = 7937.45 <a href="/wiki/tim" title="tim">tim</a> = 7937.45 <a href="/w/index.php?title=liverpool&amp;action=edit&amp;redlink=1" class="new" title="liverpool (page does not exist)">liverpool</a> = 7936.66 <a href="/wiki/gilded" title="gilded">gilded</a> = 7935.87 <a href="/wiki/clumsy" title="clumsy">clumsy</a> = 7935.07 <a href="/wiki/satin" title="satin">satin</a> = 7931.12 <a href="/wiki/displeased" title="displeased">displeased</a> = 7927.95 <a href="/wiki/odor" title="odor">odor</a> = 7927.16 <a href="/wiki/clearer" title="clearer">clearer</a> = 7926.37 <a href="/wiki/prairie" title="prairie">prairie</a> = 7921.63 <a href="/w/index.php?title=hudson&amp;action=edit&amp;redlink=1" class="new" title="hudson (page does not exist)">hudson</a> = 7919.25 <a href="/wiki/feudal" title="feudal">feudal</a> = 7916.09 <a href="/wiki/flint" title="flint">flint</a> = 7908.97 <a href="/wiki/easter" title="easter">easter</a> = 7908.18 <a href="/wiki/freshness" title="freshness">freshness</a> = 7908.18 <a href="/wiki/nursery" title="nursery">nursery</a> = 7906.59 <a href="/wiki/explanations" title="explanations">explanations</a> = 7905.01 <a href="/wiki/adoption" title="adoption">adoption</a> = 7902.64 <a href="/wiki/reluctance" title="reluctance">reluctance</a> = 7902.64 <a href="/wiki/crosses" title="crosses">crosses</a> = 7898.68 <a href="/wiki/blushing" title="blushing">blushing</a> = 7897.89 <a href="/wiki/imported" title="imported">imported</a> = 7897.89 <a href="/wiki/notorious" title="notorious">notorious</a> = 7895.52 <a href="/wiki/equipped" title="equipped">equipped</a> = 7893.94 <a href="/wiki/sinful" title="sinful">sinful</a> = 7890.77 <a href="/wiki/starving" title="starving">starving</a> = 7890.77 <a href="/w/index.php?title=eugene&amp;action=edit&amp;redlink=1" class="new" title="eugene (page does not exist)">eugene</a> = 7886.02 <a href="/wiki/bedside" title="bedside">bedside</a> = 7884.44 <a href="/wiki/sovereigns" title="sovereigns">sovereigns</a> = 7883.65 <a href="/wiki/abrupt" title="abrupt">abrupt</a> = 7882.86 <a href="/wiki/excused" title="excused">excused</a> = 7879.70 <a href="/wiki/injure" title="injure">injure</a> = 7877.32 <a href="/wiki/incessant" title="incessant">incessant</a> = 7876.53 <a href="/wiki/correctly" title="correctly">correctly</a> = 7874.95 <a href="/wiki/drooping" title="drooping">drooping</a> = 7872.58 <a href="/wiki/adored" title="adored">adored</a> = 7871.78 <a href="/wiki/embroidered" title="embroidered">embroidered</a> = 7871.78 <a href="/wiki/pasture" title="pasture">pasture</a> = 7871.78 <a href="/wiki/pillar" title="pillar">pillar</a> = 7870.20 <a href="/wiki/import" title="import">import</a> = 7867.83 <a href="/wiki/founder" title="founder">founder</a> = 7862.29 <a href="/wiki/torch" title="torch">torch</a> = 7862.29 <a href="/wiki/vault" title="vault">vault</a> = 7862.29 <a href="/wiki/worm" title="worm">worm</a> = 7862.29 <a href="/wiki/ay" title="ay">ay</a> = 7859.92 <a href="/wiki/bravery" title="bravery">bravery</a> = 7859.13 <a href="/wiki/confinement" title="confinement">confinement</a> = 7853.59 <a href="/wiki/trusting" title="trusting">trusting</a> = 7846.47 <a href="/wiki/butler" title="butler">butler</a> = 7844.89 <a href="/wiki/rattle" title="rattle">rattle</a> = 7844.89 <a href="/wiki/transported" title="transported">transported</a> = 7844.89 <a href="/wiki/estimation" title="estimation">estimation</a> = 7844.09 <a href="/wiki/edit" title="edit">edit</a> = 7840.93 <a href="/wiki/gotten" title="gotten">gotten</a> = 7839.35 <a href="/wiki/cuts" title="cuts">cuts</a> = 7838.56 <a href="/wiki/headlong" title="headlong">headlong</a> = 7836.97 <a href="/wiki/outfit" title="outfit">outfit</a> = 7836.18 <a href="/wiki/insolence" title="insolence">insolence</a> = 7829.85 <a href="/wiki/secrecy" title="secrecy">secrecy</a> = 7829.85 <a href="/wiki/thereupon" title="thereupon">thereupon</a> = 7820.36 <a href="/wiki/unlucky" title="unlucky">unlucky</a> = 7817.20</p>
386
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=81" title="Edit section: 7101 - 7200">edit</a>]</span> <span class="mw-headline" id="7101_-_7200">7101 - 7200</span></h5>
387
+ <p><a href="/wiki/eighth" title="eighth">eighth</a> = 7816.40 <a href="/wiki/valour" title="valour">valour</a> = 7815.61 <a href="/wiki/grammar" title="grammar">grammar</a> = 7814.03 <a href="/wiki/relaxed" title="relaxed">relaxed</a> = 7812.45 <a href="/wiki/mentions" title="mentions">mentions</a> = 7804.54 <a href="/wiki/adjacent" title="adjacent">adjacent</a> = 7802.96 <a href="/wiki/knives" title="knives">knives</a> = 7802.16 <a href="/wiki/attacking" title="attacking">attacking</a> = 7801.37 <a href="/wiki/exceptional" title="exceptional">exceptional</a> = 7801.37 <a href="/wiki/recollections" title="recollections">recollections</a> = 7800.58 <a href="/wiki/deposit" title="deposit">deposit</a> = 7794.25 <a href="/wiki/establishing" title="establishing">establishing</a> = 7794.25 <a href="/wiki/muddy" title="muddy">muddy</a> = 7794.25 <a href="/wiki/arches" title="arches">arches</a> = 7793.46 <a href="/wiki/aspects" title="aspects">aspects</a> = 7790.30 <a href="/wiki/senior" title="senior">senior</a> = 7788.71 <a href="/wiki/fragrance" title="fragrance">fragrance</a> = 7785.55 <a href="/wiki/colonial" title="colonial">colonial</a> = 7784.76 <a href="/wiki/penetrating" title="penetrating">penetrating</a> = 7783.18 <a href="/wiki/refinement" title="refinement">refinement</a> = 7779.22 <a href="/wiki/te" title="te">te</a> = 7776.85 <a href="/wiki/yacht" title="yacht">yacht</a> = 7776.85 <a href="/wiki/intelligible" title="intelligible">intelligible</a> = 7776.06 <a href="/wiki/stray" title="stray">stray</a> = 7772.89 <a href="/wiki/forcibly" title="forcibly">forcibly</a> = 7771.31 <a href="/wiki/jenny" title="jenny">jenny</a> = 7771.31 <a href="/wiki/superficial" title="superficial">superficial</a> = 7771.31 <a href="/wiki/tends" title="tends">tends</a> = 7767.35 <a href="/wiki/identified" title="identified">identified</a> = 7766.56 <a href="/wiki/wan" title="wan">wan</a> = 7766.56 <a href="/wiki/choosing" title="choosing">choosing</a> = 7764.19 <a href="/wiki/frighten" title="frighten">frighten</a> = 7762.61 <a href="/wiki/grotesque" title="grotesque">grotesque</a> = 7762.61 <a href="/wiki/reprinted" title="reprinted">reprinted</a> = 7761.82 <a href="/wiki/tutor" title="tutor">tutor</a> = 7761.82 <a href="/wiki/contributing" title="contributing">contributing</a> = 7761.03 <a href="/wiki/welsh" title="welsh">welsh</a> = 7757.07 <a href="/wiki/gaiety" title="gaiety">gaiety</a> = 7756.28 <a href="/wiki/besieged" title="besieged">besieged</a> = 7753.90 <a href="/wiki/robbery" title="robbery">robbery</a> = 7753.11 <a href="/wiki/transmitted" title="transmitted">transmitted</a> = 7753.11 <a href="/wiki/swam" title="swam">swam</a> = 7749.95 <a href="/wiki/consequential" title="consequential">consequential</a> = 7746.78 <a href="/wiki/slid" title="slid">slid</a> = 7743.62 <a href="/wiki/stony" title="stony">stony</a> = 7742.83 <a href="/w/index.php?title=donald&amp;action=edit&amp;redlink=1" class="new" title="donald (page does not exist)">donald</a> = 7741.25 <a href="/wiki/gratify" title="gratify">gratify</a> = 7741.25 <a href="/wiki/heavier" title="heavier">heavier</a> = 7741.25 <a href="/wiki/confidently" title="confidently">confidently</a> = 7740.46 <a href="/w/index.php?title=mabel&amp;action=edit&amp;redlink=1" class="new" title="mabel (page does not exist)">mabel</a> = 7739.66 <a href="/wiki/demon" title="demon">demon</a> = 7734.92 <a href="/wiki/treatise" title="treatise">treatise</a> = 7734.92 <a href="/wiki/mechanically" title="mechanically">mechanically</a> = 7732.54 <a href="/wiki/batteries" title="batteries">batteries</a> = 7728.59 <a href="/wiki/trading" title="trading">trading</a> = 7728.59 <a href="/wiki/cock" title="cock">cock</a> = 7727.80 <a href="/wiki/pilgrimage" title="pilgrimage">pilgrimage</a> = 7727.80 <a href="/wiki/extinct" title="extinct">extinct</a> = 7726.22 <a href="/wiki/idleness" title="idleness">idleness</a> = 7725.42 <a href="/w/index.php?title=sicily&amp;action=edit&amp;redlink=1" class="new" title="sicily (page does not exist)">sicily</a> = 7724.63 <a href="/wiki/merrily" title="merrily">merrily</a> = 7723.84 <a href="/wiki/excursion" title="excursion">excursion</a> = 7721.47 <a href="/wiki/handling" title="handling">handling</a> = 7719.89 <a href="/w/index.php?title=utah&amp;action=edit&amp;redlink=1" class="new" title="utah (page does not exist)">utah</a> = 7719.89 <a href="/wiki/eminence" title="eminence">eminence</a> = 7718.30 <a href="/wiki/lump" title="lump">lump</a> = 7714.35 <a href="/wiki/boyhood" title="boyhood">boyhood</a> = 7713.56 <a href="/wiki/montana" title="montana">montana</a> = 7713.56 <a href="/wiki/superfluous" title="superfluous">superfluous</a> = 7713.56 <a href="/wiki/wee" title="wee">wee</a> = 7711.97 <a href="/wiki/dome" title="dome">dome</a> = 7709.60 <a href="/wiki/shivering" title="shivering">shivering</a> = 7708.81 <a href="/wiki/accidental" title="accidental">accidental</a> = 7708.02 <a href="/wiki/thickness" title="thickness">thickness</a> = 7708.02 <a href="/w/index.php?title=darwin&amp;action=edit&amp;redlink=1" class="new" title="darwin (page does not exist)">darwin</a> = 7706.44 <a href="/wiki/continuance" title="continuance">continuance</a> = 7704.06 <a href="/wiki/fixing" title="fixing">fixing</a> = 7703.27 <a href="/w/index.php?title=harris&amp;action=edit&amp;redlink=1" class="new" title="harris (page does not exist)">harris</a> = 7703.27 <a href="/wiki/rustic" title="rustic">rustic</a> = 7703.27 <a href="/wiki/cheered" title="cheered">cheered</a> = 7697.73 <a href="/w/index.php?title=vernon&amp;action=edit&amp;redlink=1" class="new" title="vernon (page does not exist)">vernon</a> = 7696.94 <a href="/wiki/premises" title="premises">premises</a> = 7694.57 <a href="/wiki/delivery" title="delivery">delivery</a> = 7687.45 <a href="/wiki/nodding" title="nodding">nodding</a> = 7687.45 <a href="/wiki/snowy" title="snowy">snowy</a> = 7681.91 <a href="/wiki/curved" title="curved">curved</a> = 7680.33 <a href="/wiki/productive" title="productive">productive</a> = 7679.54 <a href="/wiki/discouraged" title="discouraged">discouraged</a> = 7677.96 <a href="/wiki/variations" title="variations">variations</a> = 7677.16 <a href="/wiki/shilling" title="shilling">shilling</a> = 7674.79 <a href="/wiki/swollen" title="swollen">swollen</a> = 7674.79 <a href="/wiki/miraculous" title="miraculous">miraculous</a> = 7673.21 <a href="/wiki/stubborn" title="stubborn">stubborn</a> = 7673.21 <a href="/w/index.php?title=belgium&amp;action=edit&amp;redlink=1" class="new" title="belgium (page does not exist)">belgium</a> = 7669.25 <a href="/wiki/drives" title="drives">drives</a> = 7668.46 <a href="/w/index.php?title=jerome&amp;action=edit&amp;redlink=1" class="new" title="jerome (page does not exist)">jerome</a> = 7667.67 <a href="/wiki/orchard" title="orchard">orchard</a> = 7666.88 <a href="/wiki/persuasion" title="persuasion">persuasion</a> = 7666.88 <a href="/wiki/invaded" title="invaded">invaded</a> = 7666.09 <a href="/wiki/alps" title="alps">alps</a> = 7661.34</p>
388
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=82" title="Edit section: 7201 - 7300">edit</a>]</span> <span class="mw-headline" id="7201_-_7300">7201 - 7300</span></h5>
389
+ <p><a href="/wiki/ungrateful" title="ungrateful">ungrateful</a> = 7658.97 <a href="/wiki/insensible" title="insensible">insensible</a> = 7658.18 <a href="/wiki/muscle" title="muscle">muscle</a> = 7655.80 <a href="/w/index.php?title=madrid&amp;action=edit&amp;redlink=1" class="new" title="madrid (page does not exist)">madrid</a> = 7655.01 <a href="/w/index.php?title=flanders&amp;action=edit&amp;redlink=1" class="new" title="flanders (page does not exist)">flanders</a> = 7654.22 <a href="/wiki/cultivate" title="cultivate">cultivate</a> = 7652.64 <a href="/wiki/involuntarily" title="involuntarily">involuntarily</a> = 7652.64 <a href="/wiki/speedy" title="speedy">speedy</a> = 7651.06 <a href="/wiki/variation" title="variation">variation</a> = 7649.48 <a href="/w/index.php?title=marian&amp;action=edit&amp;redlink=1" class="new" title="marian (page does not exist)">marian</a> = 7648.68 <a href="/wiki/harp" title="harp">harp</a> = 7647.89 <a href="/wiki/peaks" title="peaks">peaks</a> = 7643.94 <a href="/wiki/daybreak" title="daybreak">daybreak</a> = 7642.35 <a href="/wiki/magnitude" title="magnitude">magnitude</a> = 7642.35 <a href="/wiki/precautions" title="precautions">precautions</a> = 7640.77 <a href="/wiki/rub" title="rub">rub</a> = 7640.77 <a href="/wiki/requiring" title="requiring">requiring</a> = 7638.40 <a href="/wiki/coral" title="coral">coral</a> = 7636.03 <a href="/wiki/grapes" title="grapes">grapes</a> = 7634.44 <a href="/wiki/fairest" title="fairest">fairest</a> = 7628.91 <a href="/wiki/locality" title="locality">locality</a> = 7628.91 <a href="/wiki/opponent" title="opponent">opponent</a> = 7622.58 <a href="/wiki/bondage" title="bondage">bondage</a> = 7621.79 <a href="/wiki/beans" title="beans">beans</a> = 7620.99 <a href="/wiki/cowardly" title="cowardly">cowardly</a> = 7619.41 <a href="/wiki/grandson" title="grandson">grandson</a> = 7614.67 <a href="/wiki/leo" title="leo">leo</a> = 7612.29 <a href="/w/index.php?title=gertrude&amp;action=edit&amp;redlink=1" class="new" title="gertrude (page does not exist)">gertrude</a> = 7605.17 <a href="/wiki/nail" title="nail">nail</a> = 7605.17 <a href="/wiki/protecting" title="protecting">protecting</a> = 7604.38 <a href="/wiki/hospitable" title="hospitable">hospitable</a> = 7603.59 <a href="/wiki/proving" title="proving">proving</a> = 7603.59 <a href="/wiki/benevolence" title="benevolence">benevolence</a> = 7594.89 <a href="/w/index.php?title=brussels&amp;action=edit&amp;redlink=1" class="new" title="brussels (page does not exist)">brussels</a> = 7594.89 <a href="/wiki/civilisation" title="civilisation">civilisation</a> = 7594.89 <a href="/wiki/mounting" title="mounting">mounting</a> = 7591.72 <a href="/wiki/desiring" title="desiring">desiring</a> = 7590.93 <a href="/wiki/rushes" title="rushes">rushes</a> = 7588.56 <a href="/wiki/precision" title="precision">precision</a> = 7587.77 <a href="/wiki/watchful" title="watchful">watchful</a> = 7586.18 <a href="/wiki/harness" title="harness">harness</a> = 7584.60 <a href="/wiki/perchance" title="perchance">perchance</a> = 7584.60 <a href="/wiki/forbade" title="forbade">forbade</a> = 7579.06 <a href="/wiki/channels" title="channels">channels</a> = 7577.48 <a href="/wiki/indication" title="indication">indication</a> = 7576.69 <a href="/wiki/zealous" title="zealous">zealous</a> = 7576.69 <a href="/wiki/tact" title="tact">tact</a> = 7574.32 <a href="/wiki/seventeenth" title="seventeenth">seventeenth</a> = 7567.99 <a href="/w/index.php?title=theodore&amp;action=edit&amp;redlink=1" class="new" title="theodore (page does not exist)">theodore</a> = 7565.61 <a href="/wiki/stating" title="stating">stating</a> = 7564.82 <a href="/wiki/toast" title="toast">toast</a> = 7564.03 <a href="/wiki/dreadfully" title="dreadfully">dreadfully</a> = 7562.45 <a href="/w/index.php?title=judith&amp;action=edit&amp;redlink=1" class="new" title="judith (page does not exist)">judith</a> = 7561.66 <a href="/wiki/asterisk" title="asterisk">asterisk</a> = 7560.08 <a href="/w/index.php?title=virgil&amp;action=edit&amp;redlink=1" class="new" title="virgil (page does not exist)">virgil</a> = 7559.29 <a href="/wiki/edifice" title="edifice">edifice</a> = 7556.12 <a href="/wiki/swelled" title="swelled">swelled</a> = 7556.12 <a href="/wiki/accomplishment" title="accomplishment">accomplishment</a> = 7555.33 <a href="/wiki/sundry" title="sundry">sundry</a> = 7550.58 <a href="/wiki/reckoning" title="reckoning">reckoning</a> = 7548.21 <a href="/wiki/mouse" title="mouse">mouse</a> = 7544.25 <a href="/wiki/prostrate" title="prostrate">prostrate</a> = 7544.25 <a href="/wiki/helm" title="helm">helm</a> = 7541.09 <a href="/wiki/slim" title="slim">slim</a> = 7541.09 <a href="/wiki/whistling" title="whistling">whistling</a> = 7537.93 <a href="/wiki/syllable" title="syllable">syllable</a> = 7537.13 <a href="/wiki/handwriting" title="handwriting">handwriting</a> = 7536.34 <a href="/wiki/commissioners" title="commissioners">commissioners</a> = 7535.55 <a href="/wiki/lime" title="lime">lime</a> = 7535.55 <a href="/wiki/spur" title="spur">spur</a> = 7534.76 <a href="/wiki/unfit" title="unfit">unfit</a> = 7532.39 <a href="/wiki/gen." title="gen." class="mw-redirect">gen.</a> = 7531.60 <a href="/wiki/relish" title="relish">relish</a> = 7529.22 <a href="/wiki/reduction" title="reduction">reduction</a> = 7526.06 <a href="/wiki/sown" title="sown">sown</a> = 7526.06 <a href="/w/index.php?title=venetian&amp;action=edit&amp;redlink=1" class="new" title="venetian (page does not exist)">venetian</a> = 7525.27 <a href="/wiki/cordially" title="cordially">cordially</a> = 7521.31 <a href="/wiki/hush" title="hush">hush</a> = 7520.52 <a href="/wiki/breasts" title="breasts">breasts</a> = 7515.77 <a href="/wiki/slipping" title="slipping">slipping</a> = 7514.98 <a href="/wiki/pat" title="pat">pat</a> = 7513.40 <a href="/wiki/arabian" title="arabian">arabian</a> = 7512.61 <a href="/wiki/dialogue" title="dialogue">dialogue</a> = 7511.82 <a href="/wiki/forwards" title="forwards">forwards</a> = 7511.82 <a href="/wiki/entreat" title="entreat">entreat</a> = 7511.03 <a href="/wiki/fascination" title="fascination">fascination</a> = 7510.24 <a href="/wiki/belly" title="belly">belly</a> = 7509.44 <a href="/wiki/neutral" title="neutral">neutral</a> = 7509.44 <a href="/wiki/grasping" title="grasping">grasping</a> = 7507.86 <a href="/wiki/diligence" title="diligence">diligence</a> = 7505.49 <a href="/wiki/disgusted" title="disgusted">disgusted</a> = 7504.70 <a href="/wiki/retiring" title="retiring">retiring</a> = 7503.12 <a href="/wiki/strokes" title="strokes">strokes</a> = 7500.74 <a href="/wiki/sob" title="sob">sob</a> = 7497.58 <a href="/wiki/vine" title="vine">vine</a> = 7496.00 <a href="/wiki/compose" title="compose">compose</a> = 7495.20 <a href="/wiki/valentine" title="valentine">valentine</a> = 7492.04 <a href="/w/index.php?title=harvey&amp;action=edit&amp;redlink=1" class="new" title="harvey (page does not exist)">harvey</a> = 7489.67 <a href="/wiki/icy" title="icy">icy</a> = 7488.08 <a href="/wiki/inconvenience" title="inconvenience">inconvenience</a> = 7488.08</p>
390
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=83" title="Edit section: 7301 - 7400">edit</a>]</span> <span class="mw-headline" id="7301_-_7400">7301 - 7400</span></h5>
391
+ <p><a href="/wiki/v" title="v">v</a> = 7483.34 <a href="/wiki/pots" title="pots">pots</a> = 7482.55 <a href="/wiki/dimensions" title="dimensions">dimensions</a> = 7480.96 <a href="/wiki/abused" title="abused">abused</a> = 7479.38 <a href="/wiki/armor" title="armor">armor</a> = 7478.59 <a href="/wiki/detect" title="detect">detect</a> = 7478.59 <a href="/wiki/contradiction" title="contradiction">contradiction</a> = 7473.84 <a href="/wiki/banker" title="banker">banker</a> = 7468.31 <a href="/wiki/infamous" title="infamous">infamous</a> = 7463.56 <a href="/wiki/powerless" title="powerless">powerless</a> = 7461.19 <a href="/wiki/passenger" title="passenger">passenger</a> = 7458.81 <a href="/wiki/crust" title="crust">crust</a> = 7456.44 <a href="/wiki/historians" title="historians">historians</a> = 7455.65 <a href="/wiki/disclaim" title="disclaim">disclaim</a> = 7453.27 <a href="/w/index.php?title=norway&amp;action=edit&amp;redlink=1" class="new" title="norway (page does not exist)">norway</a> = 7451.69 <a href="/wiki/peculiarities" title="peculiarities">peculiarities</a> = 7450.90 <a href="/wiki/sting" title="sting">sting</a> = 7450.90 <a href="/wiki/simultaneously" title="simultaneously">simultaneously</a> = 7445.36 <a href="/wiki/watches" title="watches">watches</a> = 7445.36 <a href="/w/index.php?title=cong.&amp;action=edit&amp;redlink=1" class="new" title="cong. (page does not exist)">cong.</a> = 7444.57 <a href="/wiki/episode" title="episode">episode</a> = 7443.78 <a href="/wiki/achieve" title="achieve">achieve</a> = 7439.82 <a href="/wiki/populace" title="populace">populace</a> = 7439.03 <a href="/w/index.php?title=sherman&amp;action=edit&amp;redlink=1" class="new" title="sherman (page does not exist)">sherman</a> = 7439.03 <a href="/wiki/incense" title="incense">incense</a> = 7438.24 <a href="/w/index.php?title=rebecca&amp;action=edit&amp;redlink=1" class="new" title="rebecca (page does not exist)">rebecca</a> = 7436.66 <a href="/w/index.php?title=jordan&amp;action=edit&amp;redlink=1" class="new" title="jordan (page does not exist)">jordan</a> = 7435.08 <a href="/wiki/persistent" title="persistent">persistent</a> = 7435.08 <a href="/w/index.php?title=wisconsin&amp;action=edit&amp;redlink=1" class="new" title="wisconsin (page does not exist)">wisconsin</a> = 7435.08 <a href="/wiki/ho" title="ho">ho</a> = 7428.75 <a href="/wiki/ta" title="ta">ta</a> = 7428.75 <a href="/wiki/fruitful" title="fruitful">fruitful</a> = 7427.17 <a href="/wiki/scoundrel" title="scoundrel">scoundrel</a> = 7427.17 <a href="/wiki/coasts" title="coasts">coasts</a> = 7424.00 <a href="/wiki/starve" title="starve">starve</a> = 7419.26 <a href="/w/index.php?title=denmark&amp;action=edit&amp;redlink=1" class="new" title="denmark (page does not exist)">denmark</a> = 7415.30 <a href="/wiki/scots" title="scots">scots</a> = 7415.30 <a href="/wiki/consultation" title="consultation">consultation</a> = 7414.51 <a href="/wiki/habitation" title="habitation">habitation</a> = 7410.55 <a href="/wiki/goat" title="goat">goat</a> = 7406.60 <a href="/wiki/howling" title="howling">howling</a> = 7406.60 <a href="/wiki/tailor" title="tailor">tailor</a> = 7406.60 <a href="/wiki/flourish" title="flourish">flourish</a> = 7401.85 <a href="/wiki/trifles" title="trifles">trifles</a> = 7394.73 <a href="/wiki/dashing" title="dashing">dashing</a> = 7393.94 <a href="/wiki/disappearance" title="disappearance">disappearance</a> = 7393.15 <a href="/wiki/sour" title="sour">sour</a> = 7393.15 <a href="/wiki/practicable" title="practicable">practicable</a> = 7390.77 <a href="/wiki/shameful" title="shameful">shameful</a> = 7389.19 <a href="/wiki/inviting" title="inviting">inviting</a> = 7386.03 <a href="/wiki/criminals" title="criminals">criminals</a> = 7383.65 <a href="/wiki/leisurely" title="leisurely">leisurely</a> = 7383.65 <a href="/wiki/accumulated" title="accumulated">accumulated</a> = 7382.07 <a href="/wiki/audible" title="audible">audible</a> = 7380.49 <a href="/wiki/topics" title="topics">topics</a> = 7380.49 <a href="/wiki/expends" title="expends">expends</a> = 7378.91 <a href="/wiki/radiance" title="radiance">radiance</a> = 7377.32 <a href="/wiki/underline" title="underline">underline</a> = 7375.74 <a href="/wiki/parade" title="parade">parade</a> = 7374.95 <a href="/wiki/spoils" title="spoils">spoils</a> = 7374.95 <a href="/wiki/helmet" title="helmet">helmet</a> = 7365.46 <a href="/wiki/consternation" title="consternation">consternation</a> = 7364.67 <a href="/wiki/expenditures" title="expenditures">expenditures</a> = 7364.67 <a href="/wiki/impose" title="impose">impose</a> = 7363.88 <a href="/wiki/originator" title="originator">originator</a> = 7363.08 <a href="/wiki/pa" title="pa">pa</a> = 7362.29 <a href="/wiki/unequal" title="unequal">unequal</a> = 7362.29 <a href="/wiki/wooded" title="wooded">wooded</a> = 7356.76 <a href="/wiki/enduring" title="enduring">enduring</a> = 7352.01 <a href="/wiki/ox" title="ox">ox</a> = 7349.64 <a href="/wiki/valet" title="valet">valet</a> = 7349.64 <a href="/wiki/proclaim" title="proclaim">proclaim</a> = 7348.05 <a href="/wiki/carl" title="carl">carl</a> = 7346.47 <a href="/wiki/impossibility" title="impossibility">impossibility</a> = 7346.47 <a href="/w/index.php?title=lydia&amp;action=edit&amp;redlink=1" class="new" title="lydia (page does not exist)">lydia</a> = 7344.10 <a href="/wiki/territories" title="territories">territories</a> = 7342.51 <a href="/wiki/deference" title="deference">deference</a> = 7340.93 <a href="/wiki/ravine" title="ravine">ravine</a> = 7340.93 <a href="/w/index.php?title=geoffrey&amp;action=edit&amp;redlink=1" class="new" title="geoffrey (page does not exist)">geoffrey</a> = 7339.35 <a href="/wiki/blanche" title="blanche">blanche</a> = 7336.98 <a href="/wiki/accommodation" title="accommodation">accommodation</a> = 7333.02 <a href="/wiki/boyish" title="boyish">boyish</a> = 7331.44 <a href="/wiki/spray" title="spray">spray</a> = 7329.07 <a href="/wiki/theological" title="theological">theological</a> = 7328.27 <a href="/wiki/anonymous" title="anonymous">anonymous</a> = 7327.48 <a href="/wiki/injurious" title="injurious">injurious</a> = 7326.69 <a href="/wiki/formally" title="formally">formally</a> = 7324.32 <a href="/wiki/sports" title="sports">sports</a> = 7324.32 <a href="/wiki/ab" title="ab">ab</a> = 7322.74 <a href="/wiki/scales" title="scales">scales</a> = 7322.74 <a href="/w/index.php?title=wyoming&amp;action=edit&amp;redlink=1" class="new" title="wyoming (page does not exist)">wyoming</a> = 7321.95 <a href="/wiki/discontinue" title="discontinue">discontinue</a> = 7321.15 <a href="/wiki/calf" title="calf">calf</a> = 7319.57 <a href="/wiki/manual" title="manual">manual</a> = 7318.78 <a href="/wiki/disturbing" title="disturbing">disturbing</a> = 7317.99 <a href="/wiki/potent" title="potent">potent</a> = 7317.20 <a href="/wiki/anticipation" title="anticipation">anticipation</a> = 7316.41 <a href="/wiki/melt" title="melt">melt</a> = 7314.83 <a href="/wiki/tilde" title="tilde">tilde</a> = 7314.83 <a href="/w/index.php?title=thames&amp;action=edit&amp;redlink=1" class="new" title="thames (page does not exist)">thames</a> = 7314.03</p>
392
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=84" title="Edit section: 7401 - 7500">edit</a>]</span> <span class="mw-headline" id="7401_-_7500">7401 - 7500</span></h5>
393
+ <p><a href="/wiki/grade" title="grade">grade</a> = 7312.45 <a href="/wiki/mischievous" title="mischievous">mischievous</a> = 7310.87 <a href="/wiki/pang" title="pang">pang</a> = 7310.87 <a href="/wiki/pathos" title="pathos">pathos</a> = 7308.50 <a href="/wiki/alternately" title="alternately">alternately</a> = 7306.12 <a href="/wiki/brisk" title="brisk">brisk</a> = 7305.33 <a href="/wiki/stool" title="stool">stool</a> = 7304.54 <a href="/wiki/justification" title="justification">justification</a> = 7299.79 <a href="/wiki/foreigner" title="foreigner">foreigner</a> = 7298.21 <a href="/wiki/endeavouring" title="endeavouring">endeavouring</a> = 7297.42 <a href="/wiki/satire" title="satire">satire</a> = 7297.42 <a href="/wiki/al" title="al">al</a> = 7295.84 <a href="/wiki/delete" title="delete">delete</a> = 7294.26 <a href="/wiki/masculine" title="masculine">masculine</a> = 7293.46 <a href="/wiki/spies" title="spies">spies</a> = 7291.88 <a href="/wiki/umbrella" title="umbrella">umbrella</a> = 7284.76 <a href="/wiki/transportation" title="transportation">transportation</a> = 7283.18 <a href="/wiki/yell" title="yell">yell</a> = 7281.60 <a href="/wiki/remnant" title="remnant">remnant</a> = 7280.81 <a href="/wiki/boot" title="boot">boot</a> = 7279.22 <a href="/wiki/ignored" title="ignored">ignored</a> = 7276.06 <a href="/wiki/thrilling" title="thrilling">thrilling</a> = 7276.06 <a href="/wiki/ale" title="ale">ale</a> = 7270.52 <a href="/wiki/mineral" title="mineral">mineral</a> = 7265.77 <a href="/wiki/goose" title="goose">goose</a> = 7263.40 <a href="/w/index.php?title=nebraska&amp;action=edit&amp;redlink=1" class="new" title="nebraska (page does not exist)">nebraska</a> = 7261.82 <a href="/wiki/truce" title="truce">truce</a> = 7261.82 <a href="/wiki/lastly" title="lastly">lastly</a> = 7260.24 <a href="/wiki/airy" title="airy">airy</a> = 7254.70 <a href="/wiki/sketches" title="sketches">sketches</a> = 7254.70 <a href="/wiki/groves" title="groves">groves</a> = 7253.91 <a href="/wiki/col." title="col.">col.</a> = 7253.12 <a href="/wiki/11th" title="11th">11th</a> = 7250.74 <a href="/wiki/comprehension" title="comprehension">comprehension</a> = 7250.74 <a href="/wiki/cling" title="cling">cling</a> = 7247.58 <a href="/wiki/duck" title="duck">duck</a> = 7247.58 <a href="/wiki/abyss" title="abyss">abyss</a> = 7246.79 <a href="/wiki/alaska" title="alaska">alaska</a> = 7246.79 <a href="/wiki/baffled" title="baffled">baffled</a> = 7246.79 <a href="/wiki/planning" title="planning">planning</a> = 7246.00 <a href="/wiki/abominable" title="abominable">abominable</a> = 7235.71 <a href="/wiki/aversion" title="aversion">aversion</a> = 7235.71 <a href="/wiki/drawings" title="drawings">drawings</a> = 7234.13 <a href="/wiki/customers" title="customers">customers</a> = 7233.34 <a href="/wiki/weird" title="weird">weird</a> = 7230.96 <a href="/w/index.php?title=stewart&amp;action=edit&amp;redlink=1" class="new" title="stewart (page does not exist)">stewart</a> = 7230.17 <a href="/wiki/traveled" title="traveled">traveled</a> = 7230.17 <a href="/wiki/alan" title="alan">alan</a> = 7228.59 <a href="/wiki/incessantly" title="incessantly">incessantly</a> = 7226.22 <a href="/wiki/flattery" title="flattery">flattery</a> = 7223.84 <a href="/wiki/director" title="director">director</a> = 7221.47 <a href="/wiki/improbable" title="improbable">improbable</a> = 7221.47 <a href="/wiki/moderation" title="moderation">moderation</a> = 7219.89 <a href="/wiki/awakening" title="awakening">awakening</a> = 7219.10 <a href="/wiki/males" title="males">males</a> = 7219.10 <a href="/wiki/pairs" title="pairs">pairs</a> = 7218.31 <a href="/wiki/temporal" title="temporal">temporal</a> = 7217.52 <a href="/wiki/con" title="con">con</a> = 7215.93 <a href="/wiki/nicely" title="nicely">nicely</a> = 7215.93 <a href="/wiki/lapse" title="lapse">lapse</a> = 7212.77 <a href="/wiki/vitality" title="vitality">vitality</a> = 7211.98 <a href="/wiki/soap" title="soap">soap</a> = 7208.02 <a href="/wiki/patriot" title="patriot">patriot</a> = 7207.23 <a href="/wiki/malicious" title="malicious">malicious</a> = 7206.44 <a href="/wiki/eyed" title="eyed">eyed</a> = 7205.65 <a href="/wiki/pirates" title="pirates">pirates</a> = 7205.65 <a href="/wiki/enforce" title="enforce">enforce</a> = 7203.28 <a href="/wiki/doll" title="doll">doll</a> = 7199.32 <a href="/wiki/briskly" title="briskly">briskly</a> = 7195.36 <a href="/wiki/sez" title="sez">sez</a> = 7191.41 <a href="/wiki/skeleton" title="skeleton">skeleton</a> = 7189.83 <a href="/wiki/comprehensive" title="comprehensive">comprehensive</a> = 7188.24 <a href="/wiki/buttons" title="buttons">buttons</a> = 7187.45 <a href="/wiki/crushing" title="crushing">crushing</a> = 7186.66 <a href="/wiki/personages" title="personages">personages</a> = 7185.08 <a href="/wiki/threaten" title="threaten">threaten</a> = 7184.29 <a href="/wiki/nuts" title="nuts">nuts</a> = 7182.71 <a href="/wiki/undone" title="undone">undone</a> = 7181.12 <a href="/wiki/wright" title="wright">wright</a> = 7181.12 <a href="/wiki/frankness" title="frankness">frankness</a> = 7179.54 <a href="/wiki/hides" title="hides">hides</a> = 7177.96 <a href="/wiki/progressive" title="progressive">progressive</a> = 7170.05 <a href="/wiki/rogers" title="rogers">rogers</a> = 7170.05 <a href="/wiki/villa" title="villa">villa</a> = 7163.72 <a href="/w/index.php?title=aristotle&amp;action=edit&amp;redlink=1" class="new" title="aristotle (page does not exist)">aristotle</a> = 7160.55 <a href="/wiki/resource" title="resource">resource</a> = 7160.55 <a href="/wiki/irs" title="irs" class="mw-redirect">irs</a> = 7155.81 <a href="/wiki/confine" title="confine">confine</a> = 7154.22 <a href="/wiki/sewing" title="sewing">sewing</a> = 7154.22 <a href="/wiki/co" title="co">co</a> = 7148.69 <a href="/wiki/congratulate" title="congratulate">congratulate</a> = 7144.73 <a href="/wiki/walt" title="walt">walt</a> = 7141.57 <a href="/wiki/reconcile" title="reconcile">reconcile</a> = 7139.19 <a href="/wiki/insurance" title="insurance">insurance</a> = 7138.40 <a href="/wiki/terminated" title="terminated">terminated</a> = 7137.61 <a href="/wiki/dusky" title="dusky">dusky</a> = 7134.45 <a href="/wiki/appoint" title="appoint">appoint</a> = 7133.66 <a href="/wiki/pearl" title="pearl">pearl</a> = 7132.86 <a href="/wiki/thrilled" title="thrilled">thrilled</a> = 7131.28 <a href="/wiki/gains" title="gains">gains</a> = 7127.33</p>
394
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=85" title="Edit section: 7501 - 7600">edit</a>]</span> <span class="mw-headline" id="7501_-_7600">7501 - 7600</span></h5>
395
+ <p><a href="/wiki/interrupt" title="interrupt">interrupt</a> = 7122.58 <a href="/wiki/extravagance" title="extravagance">extravagance</a> = 7121.79 <a href="/wiki/jokes" title="jokes">jokes</a> = 7121.79 <a href="/wiki/suppress" title="suppress">suppress</a> = 7121.79 <a href="/wiki/quod" title="quod">quod</a> = 7121.00 <a href="/wiki/signify" title="signify">signify</a> = 7120.21 <a href="/wiki/layer" title="layer">layer</a> = 7117.04 <a href="/wiki/clue" title="clue">clue</a> = 7116.25 <a href="/wiki/kettle" title="kettle">kettle</a> = 7115.46 <a href="/wiki/contemplate" title="contemplate">contemplate</a> = 7113.09 <a href="/wiki/aforesaid" title="aforesaid">aforesaid</a> = 7111.50 <a href="/wiki/tooth" title="tooth">tooth</a> = 7109.13 <a href="/wiki/sensibility" title="sensibility">sensibility</a> = 7106.76 <a href="/wiki/boldness" title="boldness">boldness</a> = 7105.97 <a href="/wiki/mature" title="mature">mature</a> = 7105.17 <a href="/wiki/cuba" title="cuba">cuba</a> = 7098.05 <a href="/wiki/tolerable" title="tolerable">tolerable</a> = 7096.47 <a href="/wiki/rabbit" title="rabbit">rabbit</a> = 7095.68 <a href="/wiki/befallen" title="befallen">befallen</a> = 7092.52 <a href="/wiki/needless" title="needless">needless</a> = 7092.52 <a href="/w/index.php?title=yankee&amp;action=edit&amp;redlink=1" class="new" title="yankee (page does not exist)">yankee</a> = 7091.73 <a href="/wiki/awaken" title="awaken">awaken</a> = 7083.02 <a href="/wiki/clasp" title="clasp">clasp</a> = 7083.02 <a href="/wiki/lets" title="lets">lets</a> = 7080.65 <a href="/wiki/blinded" title="blinded">blinded</a> = 7079.07 <a href="/wiki/conductor" title="conductor">conductor</a> = 7078.28 <a href="/wiki/dependence" title="dependence">dependence</a> = 7077.48 <a href="/wiki/guarantee" title="guarantee">guarantee</a> = 7076.69 <a href="/wiki/affectionately" title="affectionately">affectionately</a> = 7073.53 <a href="/wiki/player" title="player">player</a> = 7072.74 <a href="/wiki/wires" title="wires">wires</a> = 7072.74 <a href="/wiki/thicket" title="thicket">thicket</a> = 7066.41 <a href="/wiki/walker" title="walker">walker</a> = 7062.45 <a href="/wiki/outstretched" title="outstretched">outstretched</a> = 7061.66 <a href="/wiki/procedure" title="procedure">procedure</a> = 7061.66 <a href="/wiki/wheeled" title="wheeled">wheeled</a> = 7060.87 <a href="/wiki/aye" title="aye">aye</a> = 7059.29 <a href="/wiki/oneself" title="oneself">oneself</a> = 7056.12 <a href="/wiki/recommendation" title="recommendation">recommendation</a> = 7055.33 <a href="/wiki/projecting" title="projecting">projecting</a> = 7054.54 <a href="/wiki/shriek" title="shriek">shriek</a> = 7052.96 <a href="/wiki/futile" title="futile">futile</a> = 7052.17 <a href="/wiki/cheerfulness" title="cheerfulness">cheerfulness</a> = 7051.38 <a href="/wiki/deity" title="deity">deity</a> = 7051.38 <a href="/wiki/fifteenth" title="fifteenth">fifteenth</a> = 7045.84 <a href="/wiki/gap" title="gap">gap</a> = 7045.05 <a href="/wiki/muscular" title="muscular">muscular</a> = 7045.05 <a href="/wiki/dripping" title="dripping">dripping</a> = 7044.26 <a href="/wiki/insect" title="insect">insect</a> = 7041.88 <a href="/wiki/values" title="values">values</a> = 7039.51 <a href="/wiki/brooding" title="brooding">brooding</a> = 7038.72 <a href="/wiki/restaurant" title="restaurant">restaurant</a> = 7037.14 <a href="/wiki/baptism" title="baptism">baptism</a> = 7036.35 <a href="/wiki/imaginative" title="imaginative">imaginative</a> = 7036.35 <a href="/wiki/rhyme" title="rhyme">rhyme</a> = 7033.18 <a href="/wiki/exhaustion" title="exhaustion">exhaustion</a> = 7031.60 <a href="/wiki/intrigue" title="intrigue">intrigue</a> = 7031.60 <a href="/wiki/senseless" title="senseless">senseless</a> = 7031.60 <a href="/wiki/hercules" title="hercules" class="mw-redirect">hercules</a> = 7030.81 <a href="/wiki/yearly" title="yearly">yearly</a> = 7030.81 <a href="/wiki/baron" title="baron">baron</a> = 7028.43 <a href="/wiki/occupying" title="occupying">occupying</a> = 7026.85 <a href="/wiki/imply" title="imply">imply</a> = 7022.90 <a href="/wiki/absurdity" title="absurdity">absurdity</a> = 7020.52 <a href="/wiki/launched" title="launched">launched</a> = 7020.52 <a href="/wiki/resolutely" title="resolutely">resolutely</a> = 7015.78 <a href="/wiki/vowed" title="vowed">vowed</a> = 7014.99 <a href="/wiki/attach" title="attach">attach</a> = 7011.82 <a href="/wiki/characterized" title="characterized">characterized</a> = 7010.24 <a href="/wiki/fellowship" title="fellowship">fellowship</a> = 7010.24 <a href="/wiki/posture" title="posture">posture</a> = 7006.28 <a href="/wiki/caps" title="caps">caps</a> = 7005.49 <a href="/wiki/leon" title="leon">leon</a> = 7004.70 <a href="/wiki/demanding" title="demanding">demanding</a> = 7003.12 <a href="/wiki/owl" title="owl">owl</a> = 7002.33 <a href="/wiki/beset" title="beset">beset</a> = 7001.54 <a href="/wiki/ensuring" title="ensuring">ensuring</a> = 7001.54 <a href="/wiki/suite" title="suite">suite</a> = 6997.58 <a href="/w/index.php?title=tennyson&amp;action=edit&amp;redlink=1" class="new" title="tennyson (page does not exist)">tennyson</a> = 6996.79 <a href="/wiki/thereto" title="thereto">thereto</a> = 6996.00 <a href="/wiki/heaped" title="heaped">heaped</a> = 6992.04 <a href="/wiki/jewel" title="jewel">jewel</a> = 6992.04 <a href="/wiki/regained" title="regained">regained</a> = 6991.25 <a href="/wiki/voluntarily" title="voluntarily">voluntarily</a> = 6984.92 <a href="/wiki/longitude" title="longitude">longitude</a> = 6977.01 <a href="/wiki/permanently" title="permanently">permanently</a> = 6976.22 <a href="/wiki/jumping" title="jumping">jumping</a> = 6974.64 <a href="/wiki/babe" title="babe">babe</a> = 6973.85 <a href="/wiki/secondly" title="secondly">secondly</a> = 6973.06 <a href="/wiki/violin" title="violin">violin</a> = 6971.47 <a href="/wiki/rogue" title="rogue">rogue</a> = 6969.10 <a href="/wiki/rainy" title="rainy">rainy</a> = 6968.31 <a href="/wiki/reconciliation" title="reconciliation">reconciliation</a> = 6968.31 <a href="/wiki/emotional" title="emotional">emotional</a> = 6967.52 <a href="/wiki/radical" title="radical">radical</a> = 6962.77 <a href="/wiki/accursed" title="accursed">accursed</a> = 6958.81 <a href="/wiki/tendencies" title="tendencies">tendencies</a> = 6958.02 <a href="/wiki/concrete" title="concrete">concrete</a> = 6957.23 <a href="/wiki/resident" title="resident">resident</a> = 6956.44 <a href="/wiki/lustre" title="lustre">lustre</a> = 6954.86</p>
396
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=86" title="Edit section: 7601 - 7700">edit</a>]</span> <span class="mw-headline" id="7601_-_7700">7601 - 7700</span></h5>
397
+ <p><a href="/wiki/hull" title="hull">hull</a> = 6954.07 <a href="/wiki/ominous" title="ominous">ominous</a> = 6953.28 <a href="/wiki/overboard" title="overboard">overboard</a> = 6952.49 <a href="/wiki/uproar" title="uproar">uproar</a> = 6951.69 <a href="/wiki/cavern" title="cavern">cavern</a> = 6950.90 <a href="/wiki/combine" title="combine">combine</a> = 6950.11 <a href="/wiki/respectively" title="respectively">respectively</a> = 6950.11 <a href="/wiki/menace" title="menace">menace</a> = 6946.95 <a href="/wiki/pilgrims" title="pilgrims">pilgrims</a> = 6945.37 <a href="/wiki/jeff" title="jeff">jeff</a> = 6942.99 <a href="/wiki/peak" title="peak">peak</a> = 6942.20 <a href="/wiki/currency" title="currency">currency</a> = 6941.41 <a href="/wiki/silken" title="silken">silken</a> = 6941.41 <a href="/wiki/violet" title="violet">violet</a> = 6939.83 <a href="/wiki/khan" title="khan">khan</a> = 6937.45 <a href="/wiki/mastery" title="mastery">mastery</a> = 6937.45 <a href="/wiki/objective" title="objective">objective</a> = 6929.54 <a href="/wiki/plucked" title="plucked">plucked</a> = 6927.17 <a href="/wiki/litter" title="litter">litter</a> = 6926.38 <a href="/wiki/memorial" title="memorial">memorial</a> = 6925.59 <a href="/wiki/bids" title="bids">bids</a> = 6923.21 <a href="/wiki/fondly" title="fondly">fondly</a> = 6923.21 <a href="/wiki/clapped" title="clapped">clapped</a> = 6920.84 <a href="/wiki/tariff" title="tariff">tariff</a> = 6917.68 <a href="/wiki/beneficial" title="beneficial">beneficial</a> = 6916.88 <a href="/wiki/unsolicited" title="unsolicited">unsolicited</a> = 6916.88 <a href="/wiki/reluctant" title="reluctant">reluctant</a> = 6914.51 <a href="/wiki/separately" title="separately">separately</a> = 6906.60 <a href="/wiki/patronage" title="patronage">patronage</a> = 6905.81 <a href="/wiki/revenues" title="revenues">revenues</a> = 6904.23 <a href="/wiki/dragon" title="dragon">dragon</a> = 6903.44 <a href="/w/index.php?title=zeus&amp;action=edit&amp;redlink=1" class="new" title="zeus (page does not exist)">zeus</a> = 6901.85 <a href="/wiki/mike" title="mike">mike</a> = 6899.48 <a href="/wiki/ranges" title="ranges">ranges</a> = 6897.90 <a href="/wiki/vexation" title="vexation">vexation</a> = 6897.11 <a href="/wiki/indicates" title="indicates">indicates</a> = 6896.32 <a href="/wiki/overheard" title="overheard">overheard</a> = 6895.52 <a href="/wiki/tray" title="tray">tray</a> = 6894.73 <a href="/w/index.php?title=raymond&amp;action=edit&amp;redlink=1" class="new" title="raymond (page does not exist)">raymond</a> = 6891.57 <a href="/wiki/thereafter" title="thereafter">thereafter</a> = 6890.78 <a href="/wiki/exporting" title="exporting">exporting</a> = 6889.99 <a href="/wiki/mound" title="mound">mound</a> = 6889.99 <a href="/wiki/taxation" title="taxation">taxation</a> = 6886.82 <a href="/wiki/frenzy" title="frenzy">frenzy</a> = 6884.45 <a href="/wiki/horizontal" title="horizontal">horizontal</a> = 6881.28 <a href="/wiki/thirsty" title="thirsty">thirsty</a> = 6880.49 <a href="/wiki/disputed" title="disputed">disputed</a> = 6879.70 <a href="/wiki/charter" title="charter">charter</a> = 6876.54 <a href="/wiki/redistribution" title="redistribution">redistribution</a> = 6876.54 <a href="/wiki/boasted" title="boasted">boasted</a> = 6875.75 <a href="/wiki/item" title="item">item</a> = 6875.75 <a href="/w/index.php?title=moscow&amp;action=edit&amp;redlink=1" class="new" title="moscow (page does not exist)">moscow</a> = 6873.37 <a href="/wiki/termination" title="termination">termination</a> = 6872.58 <a href="/wiki/eminently" title="eminently">eminently</a> = 6871.79 <a href="/wiki/suggestive" title="suggestive">suggestive</a> = 6871.00 <a href="/wiki/linger" title="linger">linger</a> = 6869.42 <a href="/wiki/shady" title="shady">shady</a> = 6868.63 <a href="/wiki/calculation" title="calculation">calculation</a> = 6867.04 <a href="/wiki/expansion" title="expansion">expansion</a> = 6864.67 <a href="/wiki/mast" title="mast">mast</a> = 6859.92 <a href="/wiki/confer" title="confer">confer</a> = 6859.13 <a href="/wiki/sophia" title="sophia">sophia</a> = 6859.13 <a href="/wiki/commanders" title="commanders">commanders</a> = 6853.59 <a href="/wiki/pitied" title="pitied">pitied</a> = 6852.01 <a href="/wiki/twist" title="twist">twist</a> = 6852.01 <a href="/wiki/traditional" title="traditional">traditional</a> = 6851.22 <a href="/wiki/involve" title="involve">involve</a> = 6850.43 <a href="/wiki/interfered" title="interfered">interfered</a> = 6848.06 <a href="/w/index.php?title=achilles&amp;action=edit&amp;redlink=1" class="new" title="achilles (page does not exist)">achilles</a> = 6846.47 <a href="/wiki/wanton" title="wanton">wanton</a> = 6846.47 <a href="/wiki/repay" title="repay">repay</a> = 6845.68 <a href="/wiki/brother-in-law" title="brother-in-law">brother-in-law</a> = 6844.89 <a href="/wiki/routine" title="routine">routine</a> = 6844.89 <a href="/wiki/son-in-law" title="son-in-law">son-in-law</a> = 6842.52 <a href="/w/index.php?title=gaul&amp;action=edit&amp;redlink=1" class="new" title="gaul (page does not exist)">gaul</a> = 6841.73 <a href="/wiki/groom" title="groom">groom</a> = 6840.14 <a href="/wiki/solve" title="solve">solve</a> = 6840.14 <a href="/wiki/grassy" title="grassy">grassy</a> = 6836.98 <a href="/wiki/tempt" title="tempt">tempt</a> = 6836.19 <a href="/wiki/unsuccessful" title="unsuccessful">unsuccessful</a> = 6836.19 <a href="/wiki/witty" title="witty">witty</a> = 6836.19 <a href="/wiki/politician" title="politician">politician</a> = 6834.61 <a href="/wiki/yearning" title="yearning">yearning</a> = 6834.61 <a href="/wiki/lid" title="lid">lid</a> = 6833.02 <a href="/wiki/noticing" title="noticing">noticing</a> = 6833.02 <a href="/wiki/courtiers" title="courtiers">courtiers</a> = 6831.44 <a href="/wiki/cheering" title="cheering">cheering</a> = 6829.86 <a href="/wiki/bounty" title="bounty">bounty</a> = 6828.28 <a href="/wiki/consequent" title="consequent">consequent</a> = 6826.70 <a href="/wiki/renown" title="renown">renown</a> = 6824.32 <a href="/wiki/regulation" title="regulation">regulation</a> = 6823.53 <a href="/wiki/fowl" title="fowl">fowl</a> = 6820.37 <a href="/wiki/mayor" title="mayor">mayor</a> = 6818.78 <a href="/wiki/wrinkled" title="wrinkled">wrinkled</a> = 6817.99 <a href="/wiki/defy" title="defy">defy</a> = 6817.20 <a href="/wiki/threads" title="threads">threads</a> = 6817.20 <a href="/wiki/violation" title="violation">violation</a> = 6817.20 <a href="/wiki/junction" title="junction">junction</a> = 6816.41 <a href="/wiki/boss" title="boss">boss</a> = 6814.83 <a href="/wiki/particles" title="particles">particles</a> = 6814.04</p>
398
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=87" title="Edit section: 7701 - 7800">edit</a>]</span> <span class="mw-headline" id="7701_-_7800">7701 - 7800</span></h5>
399
+ <p><a href="/wiki/glories" title="glories">glories</a> = 6810.87 <a href="/wiki/signifies" title="signifies">signifies</a> = 6810.08 <a href="/wiki/constrained" title="constrained">constrained</a> = 6806.92 <a href="/wiki/paternal" title="paternal">paternal</a> = 6806.92 <a href="/wiki/piles" title="piles">piles</a> = 6805.33 <a href="/wiki/hardware" title="hardware">hardware</a> = 6804.54 <a href="/wiki/engaging" title="engaging">engaging</a> = 6803.75 <a href="/wiki/e.g." title="e.g.">e.g.</a> = 6802.17 <a href="/wiki/peer" title="peer">peer</a> = 6802.17 <a href="/wiki/counties" title="counties">counties</a> = 6801.38 <a href="/wiki/mocking" title="mocking">mocking</a> = 6801.38 <a href="/wiki/ch." title="ch.">ch.</a> = 6799.01 <a href="/wiki/avoiding" title="avoiding">avoiding</a> = 6798.21 <a href="/wiki/rebuke" title="rebuke">rebuke</a> = 6796.63 <a href="/wiki/abolished" title="abolished">abolished</a> = 6793.47 <a href="/wiki/cheers" title="cheers">cheers</a> = 6792.68 <a href="/wiki/idiot" title="idiot">idiot</a> = 6791.09 <a href="/wiki/3rd" title="3rd">3rd</a> = 6790.30 <a href="/wiki/morbid" title="morbid">morbid</a> = 6790.30 <a href="/wiki/wrung" title="wrung">wrung</a> = 6787.93 <a href="/wiki/e-mail" title="e-mail">e-mail</a> = 6787.14 <a href="/wiki/outcome" title="outcome">outcome</a> = 6782.39 <a href="/wiki/gilt" title="gilt">gilt</a> = 6774.48 <a href="/wiki/coldness" title="coldness">coldness</a> = 6768.94 <a href="/wiki/applying" title="applying">applying</a> = 6768.15 <a href="/wiki/strand" title="strand">strand</a> = 6761.82 <a href="/wiki/renowned" title="renowned">renowned</a> = 6760.24 <a href="/wiki/fishermen" title="fishermen">fishermen</a> = 6757.08 <a href="/wiki/creative" title="creative">creative</a> = 6755.49 <a href="/wiki/circus" title="circus">circus</a> = 6753.12 <a href="/wiki/moustache" title="moustache">moustache</a> = 6753.12 <a href="/wiki/proverb" title="proverb">proverb</a> = 6750.75 <a href="/wiki/lowering" title="lowering">lowering</a> = 6746.79 <a href="/wiki/biggest" title="biggest">biggest</a> = 6746.00 <a href="/wiki/sly" title="sly">sly</a> = 6742.83 <a href="/wiki/nursing" title="nursing">nursing</a> = 6741.25 <a href="/wiki/boon" title="boon">boon</a> = 6739.67 <a href="/wiki/weighing" title="weighing">weighing</a> = 6738.09 <a href="/w/index.php?title=oklahoma&amp;action=edit&amp;redlink=1" class="new" title="oklahoma (page does not exist)">oklahoma</a> = 6735.71 <a href="/wiki/brink" title="brink">brink</a> = 6734.13 <a href="/wiki/degraded" title="degraded">degraded</a> = 6734.13 <a href="/wiki/avenge" title="avenge">avenge</a> = 6731.76 <a href="/wiki/hum" title="hum">hum</a> = 6730.97 <a href="/wiki/minority" title="minority">minority</a> = 6730.97 <a href="/w/index.php?title=spaniard&amp;action=edit&amp;redlink=1" class="new" title="spaniard (page does not exist)">spaniard</a> = 6730.97 <a href="/wiki/ridges" title="ridges">ridges</a> = 6729.39 <a href="/wiki/perils" title="perils">perils</a> = 6727.80 <a href="/w/index.php?title=larry&amp;action=edit&amp;redlink=1" class="new" title="larry (page does not exist)">larry</a> = 6725.43 <a href="/wiki/merchandise" title="merchandise">merchandise</a> = 6723.06 <a href="/wiki/aloof" title="aloof">aloof</a> = 6721.47 <a href="/wiki/despairing" title="despairing">despairing</a> = 6720.68 <a href="/wiki/acquisition" title="acquisition">acquisition</a> = 6719.10 <a href="/wiki/asylum" title="asylum">asylum</a> = 6718.31 <a href="/wiki/chickens" title="chickens">chickens</a> = 6718.31 <a href="/wiki/placid" title="placid">placid</a> = 6718.31 <a href="/wiki/affirm" title="affirm">affirm</a> = 6715.94 <a href="/wiki/trod" title="trod">trod</a> = 6715.94 <a href="/wiki/gardener" title="gardener">gardener</a> = 6711.98 <a href="/wiki/schedule" title="schedule">schedule</a> = 6711.19 <a href="/wiki/calmness" title="calmness">calmness</a> = 6710.40 <a href="/wiki/protector" title="protector">protector</a> = 6710.40 <a href="/wiki/concealment" title="concealment">concealment</a> = 6707.23 <a href="/wiki/trench" title="trench">trench</a> = 6704.86 <a href="/wiki/fore" title="fore">fore</a> = 6699.32 <a href="/wiki/accession" title="accession">accession</a> = 6689.83 <a href="/wiki/h" title="h">h</a> = 6688.25 <a href="/wiki/dey" title="dey">dey</a> = 6685.87 <a href="/wiki/connexion" title="connexion">connexion</a> = 6685.08 <a href="/w/index.php?title=cairo&amp;action=edit&amp;redlink=1" class="new" title="cairo (page does not exist)">cairo</a> = 6684.29 <a href="/wiki/mend" title="mend">mend</a> = 6681.92 <a href="/wiki/considers" title="considers">considers</a> = 6677.17 <a href="/wiki/twenty-one" title="twenty-one">twenty-one</a> = 6677.17 <a href="/wiki/municipal" title="municipal">municipal</a> = 6675.59 <a href="/wiki/achievements" title="achievements">achievements</a> = 6674.80 <a href="/wiki/cherish" title="cherish">cherish</a> = 6674.80 <a href="/wiki/deserving" title="deserving">deserving</a> = 6674.80 <a href="/wiki/exert" title="exert">exert</a> = 6672.42 <a href="/wiki/riot" title="riot">riot</a> = 6672.42 <a href="/wiki/veteran" title="veteran">veteran</a> = 6672.42 <a href="/wiki/advancement" title="advancement">advancement</a> = 6670.05 <a href="/wiki/inventor" title="inventor">inventor</a> = 6666.89 <a href="/wiki/meek" title="meek">meek</a> = 6666.09 <a href="/w/index.php?title=cameron&amp;action=edit&amp;redlink=1" class="new" title="cameron (page does not exist)">cameron</a> = 6662.93 <a href="/wiki/hopelessly" title="hopelessly">hopelessly</a> = 6661.35 <a href="/wiki/judicious" title="judicious">judicious</a> = 6661.35 <a href="/wiki/tending" title="tending">tending</a> = 6658.18 <a href="/wiki/testify" title="testify">testify</a> = 6657.39 <a href="/wiki/governess" title="governess">governess</a> = 6656.60 <a href="/wiki/orchestra" title="orchestra">orchestra</a> = 6655.81 <a href="/wiki/garb" title="garb">garb</a> = 6655.02 <a href="/wiki/condemnation" title="condemnation">condemnation</a> = 6653.44 <a href="/wiki/foregoing" title="foregoing">foregoing</a> = 6652.65 <a href="/wiki/bacon" title="bacon">bacon</a> = 6649.48 <a href="/wiki/maternal" title="maternal">maternal</a> = 6648.69 <a href="/wiki/wasting" title="wasting">wasting</a> = 6648.69 <a href="/w/index.php?title=australian&amp;action=edit&amp;redlink=1" class="new" title="australian (page does not exist)">australian</a> = 6645.53 <a href="/wiki/strata" title="strata">strata</a> = 6645.53 <a href="/wiki/hushed" title="hushed">hushed</a> = 6644.73 <a href="/wiki/maryland" title="maryland">maryland</a> = 6644.73 <a href="/wiki/sculpture" title="sculpture">sculpture</a> = 6644.73</p>
400
+ <p><br /></p>
401
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=88" title="Edit section: 7801 - 7900">edit</a>]</span> <span class="mw-headline" id="7801_-_7900">7801 - 7900</span></h5>
402
+ <p><a href="/wiki/miniature" title="miniature">miniature</a> = 6640.78 <a href="/wiki/corrections" title="corrections">corrections</a> = 6639.99 <a href="/wiki/tangled" title="tangled">tangled</a> = 6638.41 <a href="/wiki/completion" title="completion">completion</a> = 6631.28 <a href="/wiki/regulated" title="regulated">regulated</a> = 6631.28 <a href="/w/index.php?title=athenian&amp;action=edit&amp;redlink=1" class="new" title="athenian (page does not exist)">athenian</a> = 6629.70 <a href="/wiki/flavor" title="flavor">flavor</a> = 6628.12 <a href="/wiki/brand" title="brand">brand</a> = 6627.33 <a href="/wiki/intimately" title="intimately">intimately</a> = 6625.75 <a href="/wiki/unlimited" title="unlimited">unlimited</a> = 6625.75 <a href="/wiki/dipped" title="dipped">dipped</a> = 6622.58 <a href="/wiki/luggage" title="luggage">luggage</a> = 6621.79 <a href="/wiki/inconsistent" title="inconsistent">inconsistent</a> = 6621.00 <a href="/wiki/forsaken" title="forsaken">forsaken</a> = 6619.42 <a href="/wiki/feebly" title="feebly">feebly</a> = 6618.63 <a href="/wiki/woven" title="woven">woven</a> = 6617.84 <a href="/w/index.php?title=lloyd&amp;action=edit&amp;redlink=1" class="new" title="lloyd (page does not exist)">lloyd</a> = 6617.04 <a href="/wiki/rubbish" title="rubbish">rubbish</a> = 6617.04 <a href="/wiki/tool" title="tool">tool</a> = 6617.04 <a href="/wiki/spirited" title="spirited">spirited</a> = 6615.46 <a href="/wiki/christendom" title="christendom">christendom</a> = 6614.67 <a href="/wiki/chaos" title="chaos">chaos</a> = 6610.72 <a href="/wiki/twinkling" title="twinkling">twinkling</a> = 6610.72 <a href="/wiki/muffled" title="muffled">muffled</a> = 6609.13 <a href="/wiki/accents" title="accents">accents</a> = 6607.55 <a href="/wiki/accidentally" title="accidentally">accidentally</a> = 6603.60 <a href="/wiki/degradation" title="degradation">degradation</a> = 6599.64 <a href="/wiki/emancipation" title="emancipation">emancipation</a> = 6598.06 <a href="/wiki/prosecution" title="prosecution">prosecution</a> = 6596.48 <a href="/w/index.php?title=cleveland&amp;action=edit&amp;redlink=1" class="new" title="cleveland (page does not exist)">cleveland</a> = 6595.68 <a href="/wiki/outbreak" title="outbreak">outbreak</a> = 6594.89 <a href="/wiki/defending" title="defending">defending</a> = 6593.31 <a href="/wiki/dwarf" title="dwarf">dwarf</a> = 6592.52 <a href="/wiki/abundantly" title="abundantly">abundantly</a> = 6590.15 <a href="/wiki/turner" title="turner">turner</a> = 6590.15 <a href="/wiki/disadvantage" title="disadvantage">disadvantage</a> = 6586.19 <a href="/wiki/abolition" title="abolition">abolition</a> = 6585.40 <a href="/wiki/disregard" title="disregard">disregard</a> = 6585.40 <a href="/wiki/deliberation" title="deliberation">deliberation</a> = 6584.61 <a href="/wiki/filthy" title="filthy">filthy</a> = 6583.82 <a href="/wiki/ak" title="ak">ak</a> = 6579.07 <a href="/wiki/notifies" title="notifies">notifies</a> = 6577.49 <a href="/wiki/dealings" title="dealings">dealings</a> = 6576.70 <a href="/wiki/demonstrated" title="demonstrated">demonstrated</a> = 6576.70 <a href="/wiki/paced" title="paced">paced</a> = 6575.91 <a href="/wiki/tense" title="tense">tense</a> = 6575.91 <a href="/wiki/drums" title="drums">drums</a> = 6573.53 <a href="/wiki/interpreter" title="interpreter">interpreter</a> = 6573.53 <a href="/wiki/vanish" title="vanish">vanish</a> = 6572.74 <a href="/wiki/astray" title="astray">astray</a> = 6571.16 <a href="/wiki/hen" title="hen">hen</a> = 6569.58 <a href="/wiki/workman" title="workman">workman</a> = 6569.58 <a href="/wiki/asunder" title="asunder">asunder</a> = 6566.41 <a href="/wiki/baked" title="baked">baked</a> = 6566.41 <a href="/w/index.php?title=baltimore&amp;action=edit&amp;redlink=1" class="new" title="baltimore (page does not exist)">baltimore</a> = 6566.41 <a href="/wiki/bustle" title="bustle">bustle</a> = 6565.62 <a href="/wiki/winged" title="winged">winged</a> = 6565.62 <a href="/wiki/mentioning" title="mentioning">mentioning</a> = 6564.04 <a href="/wiki/pastoral" title="pastoral">pastoral</a> = 6564.04 <a href="/wiki/fabric" title="fabric">fabric</a> = 6563.25 <a href="/wiki/trim" title="trim">trim</a> = 6563.25 <a href="/wiki/musician" title="musician">musician</a> = 6558.50 <a href="/wiki/twenty-two" title="twenty-two">twenty-two</a> = 6558.50 <a href="/wiki/patty" title="patty">patty</a> = 6556.92 <a href="/wiki/mentally" title="mentally">mentally</a> = 6553.75 <a href="/wiki/wrecked" title="wrecked">wrecked</a> = 6553.75 <a href="/wiki/discreet" title="discreet">discreet</a> = 6552.96 <a href="/w/index.php?title=godfrey&amp;action=edit&amp;redlink=1" class="new" title="godfrey (page does not exist)">godfrey</a> = 6552.96 <a href="/wiki/apostle" title="apostle">apostle</a> = 6552.17 <a href="/wiki/ledge" title="ledge">ledge</a> = 6549.80 <a href="/wiki/roast" title="roast">roast</a> = 6549.80 <a href="/wiki/accessed" title="accessed">accessed</a> = 6547.42 <a href="/wiki/preface" title="preface">preface</a> = 6546.63 <a href="/wiki/convincing" title="convincing">convincing</a> = 6542.68 <a href="/wiki/quiver" title="quiver">quiver</a> = 6537.93 <a href="/wiki/stocks" title="stocks">stocks</a> = 6537.93 <a href="/wiki/mourn" title="mourn">mourn</a> = 6534.77 <a href="/wiki/commented" title="commented">commented</a> = 6533.98 <a href="/wiki/redistribute" title="redistribute">redistribute</a> = 6532.39 <a href="/wiki/precipice" title="precipice">precipice</a> = 6528.44 <a href="/wiki/outdated" title="outdated">outdated</a> = 6527.65 <a href="/w/index.php?title=juliet&amp;action=edit&amp;redlink=1" class="new" title="juliet (page does not exist)">juliet</a> = 6526.86 <a href="/wiki/dialect" title="dialect">dialect</a> = 6526.06 <a href="/wiki/elementary" title="elementary">elementary</a> = 6525.27 <a href="/wiki/freight" title="freight">freight</a> = 6525.27 <a href="/wiki/cowardice" title="cowardice">cowardice</a> = 6522.90 <a href="/wiki/wipe" title="wipe">wipe</a> = 6522.90 <a href="/wiki/deserts" title="deserts">deserts</a> = 6519.74 <a href="/wiki/shelves" title="shelves">shelves</a> = 6517.36 <a href="/wiki/denial" title="denial">denial</a> = 6514.20 <a href="/w/index.php?title=1b&amp;action=edit&amp;redlink=1" class="new" title="1b (page does not exist)">1b</a> = 6504.70 <a href="/wiki/traits" title="traits">traits</a> = 6503.91 <a href="/wiki/denounced" title="denounced">denounced</a> = 6503.12 <a href="/wiki/eric" title="eric">eric</a> = 6503.12 <a href="/wiki/underground" title="underground">underground</a> = 6499.17 <a href="/wiki/phantom" title="phantom">phantom</a> = 6498.37 <a href="/wiki/whirling" title="whirling">whirling</a> = 6498.37 <a href="/wiki/pecuniary" title="pecuniary">pecuniary</a> = 6494.42 <a href="/wiki/dire" title="dire">dire</a> = 6493.63 <a href="/wiki/hostilities" title="hostilities">hostilities</a> = 6493.63</p>
403
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=89" title="Edit section: 7901 - 8000">edit</a>]</span> <span class="mw-headline" id="7901_-_8000">7901 - 8000</span></h5>
404
+ <p><a href="/wiki/gait" title="gait">gait</a> = 6492.84 <a href="/wiki/it%27ll" title="it'll">it'll</a> = 6492.05 <a href="/wiki/vividly" title="vividly">vividly</a> = 6490.46 <a href="/wiki/instruct" title="instruct">instruct</a> = 6488.88 <a href="/wiki/dickens" title="dickens">dickens</a> = 6486.51 <a href="/wiki/puritan" title="puritan">puritan</a> = 6486.51 <a href="/wiki/clutched" title="clutched">clutched</a> = 6484.93 <a href="/wiki/acknowledgment" title="acknowledgment">acknowledgment</a> = 6484.13 <a href="/wiki/conjunction" title="conjunction">conjunction</a> = 6481.76 <a href="/wiki/oppressive" title="oppressive">oppressive</a> = 6480.97 <a href="/wiki/intermediate" title="intermediate">intermediate</a> = 6480.18 <a href="/wiki/formula" title="formula">formula</a> = 6478.60 <a href="/w/index.php?title=hungary&amp;action=edit&amp;redlink=1" class="new" title="hungary (page does not exist)">hungary</a> = 6477.01 <a href="/wiki/sneer" title="sneer">sneer</a> = 6469.10 <a href="/wiki/ore" title="ore">ore</a> = 6468.31 <a href="/wiki/plentiful" title="plentiful">plentiful</a> = 6468.31 <a href="/wiki/plump" title="plump">plump</a> = 6467.52 <a href="/wiki/combinations" title="combinations">combinations</a> = 6464.36 <a href="/wiki/purest" title="purest">purest</a> = 6463.56 <a href="/wiki/cheat" title="cheat">cheat</a> = 6462.77 <a href="/wiki/doubly" title="doubly">doubly</a> = 6462.77 <a href="/wiki/inadequate" title="inadequate">inadequate</a> = 6461.19 <a href="/w/index.php?title=leslie&amp;action=edit&amp;redlink=1" class="new" title="leslie (page does not exist)">leslie</a> = 6459.61 <a href="/wiki/blest" title="blest">blest</a> = 6458.82 <a href="/wiki/forbear" title="forbear">forbear</a> = 6457.24 <a href="/wiki/haunt" title="haunt">haunt</a> = 6454.07 <a href="/wiki/treaties" title="treaties">treaties</a> = 6454.07 <a href="/wiki/fearless" title="fearless">fearless</a> = 6453.28 <a href="/wiki/constable" title="constable">constable</a> = 6452.49 <a href="/wiki/enveloped" title="enveloped">enveloped</a> = 6450.91 <a href="/wiki/enmity" title="enmity">enmity</a> = 6449.32 <a href="/wiki/watson" title="watson" class="mw-redirect">watson</a> = 6447.74 <a href="/wiki/bridegroom" title="bridegroom">bridegroom</a> = 6446.16 <a href="/wiki/curate" title="curate">curate</a> = 6445.37 <a href="/wiki/developing" title="developing">developing</a> = 6445.37 <a href="/wiki/frock" title="frock">frock</a> = 6442.99 <a href="/wiki/mining" title="mining">mining</a> = 6439.83 <a href="/wiki/audacity" title="audacity">audacity</a> = 6436.67 <a href="/wiki/improper" title="improper">improper</a> = 6434.29 <a href="/wiki/motto" title="motto">motto</a> = 6432.71 <a href="/w/index.php?title=parisian&amp;action=edit&amp;redlink=1" class="new" title="parisian (page does not exist)">parisian</a> = 6431.92 <a href="/wiki/faction" title="faction">faction</a> = 6424.80 <a href="/wiki/architect" title="architect">architect</a> = 6422.43 <a href="/wiki/melting" title="melting">melting</a> = 6421.63 <a href="/wiki/delicately" title="delicately">delicately</a> = 6420.05 <a href="/wiki/register" title="register">register</a> = 6419.26 <a href="/wiki/heroine" title="heroine">heroine</a> = 6416.89 <a href="/wiki/indefinite" title="indefinite">indefinite</a> = 6412.14 <a href="/wiki/console" title="console">console</a> = 6408.19 <a href="/wiki/defensive" title="defensive">defensive</a> = 6408.19 <a href="/wiki/perceptible" title="perceptible">perceptible</a> = 6406.60 <a href="/wiki/fruitless" title="fruitless">fruitless</a> = 6405.81 <a href="/wiki/ransom" title="ransom">ransom</a> = 6401.06 <a href="/wiki/surplus" title="surplus">surplus</a> = 6398.69 <a href="/wiki/solicitude" title="solicitude">solicitude</a> = 6396.32 <a href="/wiki/effectual" title="effectual">effectual</a> = 6393.15 <a href="/wiki/shiver" title="shiver">shiver</a> = 6387.62 <a href="/wiki/gal" title="gal">gal</a> = 6386.82 <a href="/wiki/wed" title="wed">wed</a> = 6386.03 <a href="/wiki/contemptuous" title="contemptuous">contemptuous</a> = 6385.24 <a href="/wiki/plough" title="plough">plough</a> = 6382.87 <a href="/wiki/snakes" title="snakes">snakes</a> = 6381.29 <a href="/wiki/felicity" title="felicity">felicity</a> = 6380.50 <a href="/wiki/reef" title="reef">reef</a> = 6380.50 <a href="/wiki/outset" title="outset">outset</a> = 6379.70 <a href="/wiki/constitutes" title="constitutes">constitutes</a> = 6378.91 <a href="/wiki/lament" title="lament">lament</a> = 6378.91 <a href="/wiki/tissue" title="tissue">tissue</a> = 6378.12 <a href="/wiki/draft" title="draft">draft</a> = 6377.33 <a href="/wiki/impelled" title="impelled">impelled</a> = 6376.54 <a href="/wiki/epic" title="epic">epic</a> = 6374.96 <a href="/wiki/fisherman" title="fisherman">fisherman</a> = 6369.42 <a href="/w/index.php?title=hawaii&amp;action=edit&amp;redlink=1" class="new" title="hawaii (page does not exist)">hawaii</a> = 6368.63 <a href="/wiki/obstinacy" title="obstinacy">obstinacy</a> = 6367.84 <a href="/w/index.php?title=ulysses&amp;action=edit&amp;redlink=1" class="new" title="ulysses (page does not exist)">ulysses</a> = 6367.84 <a href="/wiki/lemon" title="lemon">lemon</a> = 6367.05 <a href="/w/index.php?title=voltaire&amp;action=edit&amp;redlink=1" class="new" title="voltaire (page does not exist)">voltaire</a> = 6365.46 <a href="/wiki/hound" title="hound">hound</a> = 6364.67 <a href="/wiki/measuring" title="measuring">measuring</a> = 6361.51 <a href="/wiki/conscientious" title="conscientious">conscientious</a> = 6358.34 <a href="/wiki/robber" title="robber">robber</a> = 6355.97 <a href="/wiki/toy" title="toy">toy</a> = 6355.97 <a href="/wiki/impart" title="impart">impart</a> = 6355.18 <a href="/wiki/statute" title="statute">statute</a> = 6353.60 <a href="/wiki/barry" title="barry">barry</a> = 6352.81 <a href="/wiki/girdle" title="girdle">girdle</a> = 6352.01 <a href="/wiki/basil" title="basil">basil</a> = 6348.06 <a href="/wiki/rebellious" title="rebellious">rebellious</a> = 6348.06 <a href="/wiki/stair" title="stair">stair</a> = 6346.48 <a href="/wiki/biting" title="biting">biting</a> = 6344.89 <a href="/wiki/consulting" title="consulting">consulting</a> = 6344.89 <a href="/wiki/perseverance" title="perseverance">perseverance</a> = 6344.89 <a href="/wiki/manila" title="manila">manila</a> = 6340.94 <a href="/wiki/massacre" title="massacre">massacre</a> = 6339.36 <a href="/wiki/cough" title="cough">cough</a> = 6338.57 <a href="/wiki/blazed" title="blazed">blazed</a> = 6337.77 <a href="/wiki/claude" title="claude">claude</a> = 6337.77 <a href="/wiki/transition" title="transition">transition</a> = 6337.77 <a href="/wiki/button" title="button">button</a> = 6334.61 <a href="/wiki/headache" title="headache">headache</a> = 6332.24</p>
405
+ <h4><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=90" title="Edit section: 8001 - 9000">edit</a>]</span> <span class="mw-headline" id="8001_-_9000">8001 - 9000</span></h4>
406
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=91" title="Edit section: 8001 - 8100">edit</a>]</span> <span class="mw-headline" id="8001_-_8100">8001 - 8100</span></h5>
407
+ <p><a href="/wiki/tenant" title="tenant">tenant</a> = 6331.44 <a href="/wiki/burns" title="burns">burns</a> = 6330.65 <a href="/wiki/harmonious" title="harmonious">harmonious</a> = 6329.86 <a href="/wiki/dreamy" title="dreamy">dreamy</a> = 6325.91 <a href="/wiki/burgundy" title="burgundy">burgundy</a> = 6324.32 <a href="/wiki/collections" title="collections">collections</a> = 6321.95 <a href="/wiki/unkind" title="unkind">unkind</a> = 6321.16 <a href="/wiki/inscribed" title="inscribed">inscribed</a> = 6319.58 <a href="/wiki/cushions" title="cushions">cushions</a> = 6318.79 <a href="/wiki/programme" title="programme">programme</a> = 6317.20 <a href="/wiki/din" title="din">din</a> = 6316.41 <a href="/wiki/laborious" title="laborious">laborious</a> = 6316.41 <a href="/wiki/manufacturing" title="manufacturing">manufacturing</a> = 6315.62 <a href="/wiki/markets" title="markets">markets</a> = 6312.46 <a href="/wiki/zone" title="zone">zone</a> = 6308.50 <a href="/wiki/humane" title="humane">humane</a> = 6306.92 <a href="/wiki/ac" title="ac">ac</a> = 6306.13 <a href="/wiki/fertility" title="fertility">fertility</a> = 6305.34 <a href="/wiki/languid" title="languid">languid</a> = 6305.34 <a href="/wiki/ninth" title="ninth">ninth</a> = 6304.55 <a href="/wiki/curses" title="curses">curses</a> = 6303.76 <a href="/wiki/introducing" title="introducing">introducing</a> = 6302.96 <a href="/wiki/alcohol" title="alcohol">alcohol</a> = 6300.59 <a href="/wiki/impending" title="impending">impending</a> = 6299.01 <a href="/wiki/declining" title="declining">declining</a> = 6297.43 <a href="/wiki/advantageous" title="advantageous">advantageous</a> = 6295.05 <a href="/wiki/heal" title="heal">heal</a> = 6294.26 <a href="/wiki/millennium" title="millennium">millennium</a> = 6294.26 <a href="/wiki/karl" title="karl">karl</a> = 6293.47 <a href="/wiki/ft." title="ft.">ft.</a> = 6291.10 <a href="/wiki/staid" title="staid">staid</a> = 6289.51 <a href="/wiki/planting" title="planting">planting</a> = 6287.93 <a href="/wiki/theatrical" title="theatrical">theatrical</a> = 6287.93 <a href="/wiki/spectator" title="spectator">spectator</a> = 6286.35 <a href="/w/index.php?title=winchester&amp;action=edit&amp;redlink=1" class="new" title="winchester (page does not exist)">winchester</a> = 6283.19 <a href="/wiki/greedy" title="greedy">greedy</a> = 6281.60 <a href="/wiki/commonwealth" title="commonwealth">commonwealth</a> = 6280.81 <a href="/wiki/suffrage" title="suffrage">suffrage</a> = 6280.81 <a href="/wiki/tremulous" title="tremulous">tremulous</a> = 6280.81 <a href="/wiki/commodities" title="commodities">commodities</a> = 6280.02 <a href="/wiki/stuffed" title="stuffed">stuffed</a> = 6280.02 <a href="/wiki/admitting" title="admitting">admitting</a> = 6275.27 <a href="/wiki/aching" title="aching">aching</a> = 6273.69 <a href="/wiki/ninety" title="ninety">ninety</a> = 6273.69 <a href="/wiki/discomfort" title="discomfort">discomfort</a> = 6272.90 <a href="/wiki/imperative" title="imperative">imperative</a> = 6272.90 <a href="/w/index.php?title=montreal&amp;action=edit&amp;redlink=1" class="new" title="montreal (page does not exist)">montreal</a> = 6272.11 <a href="/wiki/bobby" title="bobby">bobby</a> = 6271.32 <a href="/wiki/bachelor" title="bachelor">bachelor</a> = 6269.74 <a href="/wiki/geographical" title="geographical">geographical</a> = 6268.95 <a href="/wiki/longest" title="longest">longest</a> = 6268.95 <a href="/wiki/courageous" title="courageous">courageous</a> = 6266.57 <a href="/wiki/carpenter" title="carpenter">carpenter</a> = 6259.45 <a href="/w/index.php?title=sundays&amp;action=edit&amp;redlink=1" class="new" title="sundays (page does not exist)">sundays</a> = 6254.70 <a href="/wiki/concluding" title="concluding">concluding</a> = 6253.12 <a href="/wiki/danish" title="danish">danish</a> = 6252.33 <a href="/wiki/steer" title="steer">steer</a> = 6251.54 <a href="/wiki/influential" title="influential">influential</a> = 6249.96 <a href="/wiki/surround" title="surround">surround</a> = 6249.96 <a href="/wiki/random" title="random">random</a> = 6249.17 <a href="/wiki/ounce" title="ounce">ounce</a> = 6248.38 <a href="/wiki/afresh" title="afresh">afresh</a> = 6246.79 <a href="/wiki/dictated" title="dictated">dictated</a> = 6239.67 <a href="/wiki/ruddy" title="ruddy">ruddy</a> = 6239.67 <a href="/wiki/rusty" title="rusty">rusty</a> = 6239.67 <a href="/wiki/drown" title="drown">drown</a> = 6238.88 <a href="/w/index.php?title=irving&amp;action=edit&amp;redlink=1" class="new" title="irving (page does not exist)">irving</a> = 6238.09 <a href="/wiki/slide" title="slide">slide</a> = 6238.09 <a href="/wiki/sow" title="sow">sow</a> = 6237.30 <a href="/wiki/appalling" title="appalling">appalling</a> = 6236.51 <a href="/wiki/profess" title="profess">profess</a> = 6234.93 <a href="/wiki/sickly" title="sickly">sickly</a> = 6234.14 <a href="/wiki/rides" title="rides">rides</a> = 6233.34 <a href="/wiki/spoon" title="spoon">spoon</a> = 6233.34 <a href="/wiki/imminent" title="imminent">imminent</a> = 6232.55 <a href="/wiki/dominant" title="dominant">dominant</a> = 6230.97 <a href="/wiki/leadership" title="leadership">leadership</a> = 6224.64 <a href="/wiki/pinch" title="pinch">pinch</a> = 6223.06 <a href="/wiki/wearily" title="wearily">wearily</a> = 6223.06 <a href="/wiki/ducks" title="ducks">ducks</a> = 6222.27 <a href="/wiki/diary" title="diary">diary</a> = 6219.10 <a href="/wiki/duchess" title="duchess">duchess</a> = 6218.31 <a href="/wiki/regain" title="regain">regain</a> = 6218.31 <a href="/wiki/rum" title="rum">rum</a> = 6217.52 <a href="/wiki/churchyard" title="churchyard">churchyard</a> = 6214.36 <a href="/wiki/fondness" title="fondness">fondness</a> = 6214.36 <a href="/wiki/apprehend" title="apprehend">apprehend</a> = 6212.77 <a href="/wiki/ordinarily" title="ordinarily">ordinarily</a> = 6211.19 <a href="/wiki/quicker" title="quicker">quicker</a> = 6211.19 <a href="/wiki/thereon" title="thereon">thereon</a> = 6211.19 <a href="/wiki/ni" title="ni">ni</a> = 6209.61 <a href="/wiki/balloon" title="balloon">balloon</a> = 6208.03 <a href="/wiki/individuality" title="individuality">individuality</a> = 6208.03 <a href="/wiki/securely" title="securely">securely</a> = 6208.03 <a href="/wiki/connecting" title="connecting">connecting</a> = 6207.24 <a href="/wiki/celebrate" title="celebrate">celebrate</a> = 6206.45 <a href="/wiki/bluff" title="bluff">bluff</a> = 6205.65 <a href="/wiki/dawned" title="dawned">dawned</a> = 6205.65 <a href="/wiki/amiss" title="amiss">amiss</a> = 6204.86 <a href="/wiki/chalk" title="chalk">chalk</a> = 6203.28</p>
408
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=92" title="Edit section: 8101 - 8200">edit</a>]</span> <span class="mw-headline" id="8101_-_8200">8101 - 8200</span></h5>
409
+ <p><a href="/wiki/sticking" title="sticking">sticking</a> = 6201.70 <a href="/wiki/fuss" title="fuss">fuss</a> = 6200.91 <a href="/wiki/dazed" title="dazed">dazed</a> = 6199.33 <a href="/wiki/deputy" title="deputy">deputy</a> = 6199.33 <a href="/wiki/forsake" title="forsake">forsake</a> = 6197.74 <a href="/wiki/automobile" title="automobile">automobile</a> = 6196.95 <a href="/wiki/discussions" title="discussions">discussions</a> = 6195.37 <a href="/w/index.php?title=harrison&amp;action=edit&amp;redlink=1" class="new" title="harrison (page does not exist)">harrison</a> = 6195.37 <a href="/wiki/refreshment" title="refreshment">refreshment</a> = 6195.37 <a href="/wiki/amendment" title="amendment">amendment</a> = 6194.58 <a href="/wiki/appealing" title="appealing">appealing</a> = 6189.04 <a href="/wiki/eden" title="eden">eden</a> = 6189.04 <a href="/wiki/vertical" title="vertical">vertical</a> = 6188.25 <a href="/wiki/insufficient" title="insufficient">insufficient</a> = 6184.29 <a href="/wiki/manchester" title="manchester">manchester</a> = 6182.71 <a href="/wiki/hem" title="hem">hem</a> = 6179.55 <a href="/wiki/gorge" title="gorge">gorge</a> = 6177.96 <a href="/wiki/baptized" title="baptized">baptized</a> = 6175.59 <a href="/wiki/damn" title="damn">damn</a> = 6174.01 <a href="/wiki/silvery" title="silvery">silvery</a> = 6173.22 <a href="/wiki/pastor" title="pastor">pastor</a> = 6171.64 <a href="/wiki/inherent" title="inherent">inherent</a> = 6170.05 <a href="/wiki/preventing" title="preventing">preventing</a> = 6169.26 <a href="/wiki/inference" title="inference">inference</a> = 6168.47 <a href="/wiki/advertisement" title="advertisement">advertisement</a> = 6167.68 <a href="/wiki/mutton" title="mutton">mutton</a> = 6167.68 <a href="/wiki/packing" title="packing">packing</a> = 6167.68 <a href="/wiki/enclosure" title="enclosure">enclosure</a> = 6165.31 <a href="/wiki/theft" title="theft">theft</a> = 6164.52 <a href="/wiki/publisher" title="publisher">publisher</a> = 6162.93 <a href="/wiki/spontaneous" title="spontaneous">spontaneous</a> = 6161.35 <a href="/wiki/otto" title="otto">otto</a> = 6158.98 <a href="/wiki/rats" title="rats">rats</a> = 6158.98 <a href="/wiki/apparition" title="apparition">apparition</a> = 6158.19 <a href="/wiki/refreshing" title="refreshing">refreshing</a> = 6158.19 <a href="/wiki/irene" title="irene">irene</a> = 6156.60 <a href="/wiki/sweetheart" title="sweetheart">sweetheart</a> = 6156.60 <a href="/wiki/renounce" title="renounce">renounce</a> = 6155.02 <a href="/wiki/lifeless" title="lifeless">lifeless</a> = 6154.23 <a href="/wiki/adore" title="adore">adore</a> = 6153.44 <a href="/wiki/vinegar" title="vinegar">vinegar</a> = 6149.48 <a href="/w/index.php?title=normandy&amp;action=edit&amp;redlink=1" class="new" title="normandy (page does not exist)">normandy</a> = 6147.11 <a href="/wiki/uncovered" title="uncovered">uncovered</a> = 6147.11 <a href="/wiki/utility" title="utility">utility</a> = 6146.32 <a href="/wiki/orphan" title="orphan">orphan</a> = 6144.74 <a href="/wiki/symbols" title="symbols">symbols</a> = 6143.15 <a href="/wiki/gracefully" title="gracefully">gracefully</a> = 6142.36 <a href="/wiki/mightily" title="mightily">mightily</a> = 6142.36 <a href="/wiki/peculiarity" title="peculiarity">peculiarity</a> = 6142.36 <a href="/wiki/ash" title="ash">ash</a> = 6141.57 <a href="/wiki/floods" title="floods">floods</a> = 6139.20 <a href="/wiki/partake" title="partake">partake</a> = 6138.41 <a href="/wiki/contemptible" title="contemptible">contemptible</a> = 6137.62 <a href="/wiki/deities" title="deities">deities</a> = 6135.24 <a href="/wiki/profane" title="profane">profane</a> = 6134.45 <a href="/wiki/foreseen" title="foreseen">foreseen</a> = 6133.66 <a href="/wiki/ti" title="ti">ti</a> = 6132.87 <a href="/wiki/conceit" title="conceit">conceit</a> = 6132.08 <a href="/wiki/commend" title="commend">commend</a> = 6129.71 <a href="/wiki/twelfth" title="twelfth">twelfth</a> = 6129.71 <a href="/wiki/bristol" title="bristol">bristol</a> = 6127.33 <a href="/wiki/manifestation" title="manifestation">manifestation</a> = 6126.54 <a href="/wiki/revive" title="revive">revive</a> = 6126.54 <a href="/wiki/prone" title="prone">prone</a> = 6123.38 <a href="/wiki/connect" title="connect">connect</a> = 6121.79 <a href="/wiki/princely" title="princely">princely</a> = 6117.84 <a href="/wiki/overtake" title="overtake">overtake</a> = 6117.05 <a href="/wiki/improving" title="improving">improving</a> = 6115.47 <a href="/wiki/downwards" title="downwards">downwards</a> = 6112.30 <a href="/wiki/ferocious" title="ferocious">ferocious</a> = 6111.51 <a href="/wiki/intervention" title="intervention">intervention</a> = 6110.72 <a href="/wiki/subsistence" title="subsistence">subsistence</a> = 6109.14 <a href="/wiki/susceptible" title="susceptible">susceptible</a> = 6109.14 <a href="/wiki/tunnel" title="tunnel">tunnel</a> = 6109.14 <a href="/wiki/disciple" title="disciple">disciple</a> = 6108.35 <a href="/wiki/revival" title="revival">revival</a> = 6107.55 <a href="/wiki/twins" title="twins">twins</a> = 6106.76 <a href="/wiki/ivy" title="ivy">ivy</a> = 6105.97 <a href="/wiki/puzzle" title="puzzle">puzzle</a> = 6103.60 <a href="/wiki/citadel" title="citadel">citadel</a> = 6100.43 <a href="/wiki/temporarily" title="temporarily">temporarily</a> = 6100.43 <a href="/wiki/despotism" title="despotism">despotism</a> = 6099.64 <a href="/wiki/internet" title="internet">internet</a> = 6099.64 <a href="/wiki/mechanism" title="mechanism">mechanism</a> = 6098.85 <a href="/wiki/stoop" title="stoop">stoop</a> = 6098.85 <a href="/wiki/directors" title="directors">directors</a> = 6097.27 <a href="/wiki/mathematics" title="mathematics">mathematics</a> = 6095.69 <a href="/wiki/raft" title="raft">raft</a> = 6095.69 <a href="/wiki/fade" title="fade">fade</a> = 6094.90 <a href="/wiki/soothe" title="soothe">soothe</a> = 6093.31 <a href="/wiki/pork" title="pork">pork</a> = 6092.52 <a href="/wiki/substituted" title="substituted">substituted</a> = 6092.52 <a href="/wiki/physically" title="physically">physically</a> = 6091.73 <a href="/wiki/brilliancy" title="brilliancy">brilliancy</a> = 6086.98 <a href="/wiki/dot" title="dot">dot</a> = 6086.98 <a href="/wiki/loaf" title="loaf">loaf</a> = 6086.19 <a href="/wiki/expanse" title="expanse">expanse</a> = 6079.86 <a href="/wiki/shocking" title="shocking">shocking</a> = 6079.07 <a href="/wiki/rudely" title="rudely">rudely</a> = 6075.12 <a href="/wiki/isle" title="isle">isle</a> = 6074.33</p>
410
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=93" title="Edit section: 8201 - 8300">edit</a>]</span> <span class="mw-headline" id="8201_-_8300">8201 - 8300</span></h5>
411
+ <p><a href="/wiki/balanced" title="balanced">balanced</a> = 6072.74 <a href="/wiki/extracted" title="extracted">extracted</a> = 6071.95 <a href="/wiki/fable" title="fable">fable</a> = 6071.95 <a href="/wiki/matches" title="matches">matches</a> = 6071.95 <a href="/wiki/index" title="index">index</a> = 6068.00 <a href="/w/index.php?title=gerard&amp;action=edit&amp;redlink=1" class="new" title="gerard (page does not exist)">gerard</a> = 6066.41 <a href="/wiki/cigars" title="cigars">cigars</a> = 6065.62 <a href="/wiki/liver" title="liver">liver</a> = 6063.25 <a href="/wiki/transmit" title="transmit">transmit</a> = 6063.25 <a href="/wiki/dispatch" title="dispatch">dispatch</a> = 6061.67 <a href="/wiki/onto" title="onto">onto</a> = 6056.13 <a href="/wiki/veranda" title="veranda">veranda</a> = 6056.13 <a href="/wiki/dip" title="dip">dip</a> = 6054.55 <a href="/wiki/inexplicable" title="inexplicable">inexplicable</a> = 6052.97 <a href="/wiki/liar" title="liar">liar</a> = 6052.17 <a href="/wiki/diminish" title="diminish">diminish</a> = 6049.80 <a href="/wiki/dungeon" title="dungeon">dungeon</a> = 6045.85 <a href="/wiki/unit" title="unit">unit</a> = 6043.47 <a href="/wiki/pagan" title="pagan">pagan</a> = 6042.68 <a href="/w/index.php?title=phillips&amp;action=edit&amp;redlink=1" class="new" title="phillips (page does not exist)">phillips</a> = 6040.31 <a href="/wiki/brig" title="brig">brig</a> = 6039.52 <a href="/wiki/monopoly" title="monopoly">monopoly</a> = 6039.52 <a href="/wiki/rim" title="rim">rim</a> = 6039.52 <a href="/wiki/sordid" title="sordid">sordid</a> = 6031.60 <a href="/wiki/complaining" title="complaining">complaining</a> = 6030.81 <a href="/wiki/temperate" title="temperate">temperate</a> = 6030.81 <a href="/wiki/chat" title="chat">chat</a> = 6030.02 <a href="/wiki/gambling" title="gambling">gambling</a> = 6030.02 <a href="/wiki/maps" title="maps">maps</a> = 6028.44 <a href="/wiki/amber" title="amber">amber</a> = 6025.28 <a href="/wiki/trot" title="trot">trot</a> = 6025.28 <a href="/wiki/howl" title="howl">howl</a> = 6021.32 <a href="/wiki/shipping" title="shipping">shipping</a> = 6021.32 <a href="/wiki/ton" title="ton">ton</a> = 6021.32 <a href="/wiki/magazines" title="magazines">magazines</a> = 6020.53 <a href="/wiki/bricks" title="bricks">bricks</a> = 6017.36 <a href="/wiki/submarine" title="submarine">submarine</a> = 6016.57 <a href="/wiki/roberts" title="roberts">roberts</a> = 6015.78 <a href="/w/index.php?title=cumberland&amp;action=edit&amp;redlink=1" class="new" title="cumberland (page does not exist)">cumberland</a> = 6012.62 <a href="/w/index.php?title=cecil&amp;action=edit&amp;redlink=1" class="new" title="cecil (page does not exist)">cecil</a> = 6007.87 <a href="/wiki/semblance" title="semblance">semblance</a> = 6007.08 <a href="/w/index.php?title=palestine&amp;action=edit&amp;redlink=1" class="new" title="palestine (page does not exist)">palestine</a> = 6006.29 <a href="/wiki/perpendicular" title="perpendicular">perpendicular</a> = 6005.50 <a href="/wiki/regardless" title="regardless">regardless</a> = 6005.50 <a href="/wiki/fervent" title="fervent">fervent</a> = 6004.71 <a href="/wiki/sane" title="sane">sane</a> = 6004.71 <a href="/wiki/wreath" title="wreath">wreath</a> = 6003.92 <a href="/wiki/animation" title="animation">animation</a> = 6001.54 <a href="/wiki/earthquake" title="earthquake">earthquake</a> = 5999.96 <a href="/wiki/sloping" title="sloping">sloping</a> = 5998.38 <a href="/wiki/smoothly" title="smoothly">smoothly</a> = 5998.38 <a href="/wiki/tension" title="tension">tension</a> = 5998.38 <a href="/wiki/intrigues" title="intrigues">intrigues</a> = 5996.00 <a href="/wiki/fearfully" title="fearfully">fearfully</a> = 5995.21 <a href="/w/index.php?title=macaulay&amp;action=edit&amp;redlink=1" class="new" title="macaulay (page does not exist)">macaulay</a> = 5994.42 <a href="/wiki/laboratory" title="laboratory">laboratory</a> = 5992.05 <a href="/wiki/cork" title="cork">cork</a> = 5991.26 <a href="/wiki/comments" title="comments">comments</a> = 5986.51 <a href="/wiki/whale" title="whale">whale</a> = 5986.51 <a href="/wiki/wedded" title="wedded">wedded</a> = 5985.72 <a href="/wiki/whiteness" title="whiteness">whiteness</a> = 5984.93 <a href="/wiki/convicted" title="convicted">convicted</a> = 5984.14 <a href="/wiki/deception" title="deception">deception</a> = 5982.55 <a href="/wiki/paved" title="paved">paved</a> = 5982.55 <a href="/wiki/scruple" title="scruple">scruple</a> = 5982.55 <a href="/wiki/paintings" title="paintings">paintings</a> = 5981.76 <a href="/wiki/therewith" title="therewith">therewith</a> = 5981.76 <a href="/wiki/religions" title="religions">religions</a> = 5980.97 <a href="/wiki/governing" title="governing">governing</a> = 5978.60 <a href="/wiki/colleagues" title="colleagues">colleagues</a> = 5977.81 <a href="/wiki/shrinking" title="shrinking">shrinking</a> = 5977.02 <a href="/wiki/tickets" title="tickets">tickets</a> = 5975.43 <a href="/wiki/prophetic" title="prophetic">prophetic</a> = 5974.64 <a href="/wiki/undergo" title="undergo">undergo</a> = 5974.64 <a href="/wiki/hare" title="hare">hare</a> = 5973.06 <a href="/wiki/haze" title="haze">haze</a> = 5972.27 <a href="/wiki/poisonous" title="poisonous">poisonous</a> = 5971.48 <a href="/wiki/omit" title="omit">omit</a> = 5969.90 <a href="/wiki/beware" title="beware">beware</a> = 5969.11 <a href="/wiki/sagacity" title="sagacity">sagacity</a> = 5965.94 <a href="/wiki/concession" title="concession">concession</a> = 5965.15 <a href="/wiki/worker" title="worker">worker</a> = 5965.15 <a href="/wiki/ted" title="ted">ted</a> = 5962.78 <a href="/wiki/incline" title="incline">incline</a> = 5961.99 <a href="/wiki/caste" title="caste">caste</a> = 5960.40 <a href="/wiki/leapt" title="leapt">leapt</a> = 5960.40 <a href="/wiki/dissatisfied" title="dissatisfied">dissatisfied</a> = 5955.66 <a href="/wiki/hardest" title="hardest">hardest</a> = 5954.07 <a href="/wiki/self-control" title="self-control">self-control</a> = 5954.07 <a href="/wiki/toilet" title="toilet">toilet</a> = 5953.28 <a href="/wiki/buddha" title="buddha">buddha</a> = 5951.70 <a href="/wiki/offense" title="offense">offense</a> = 5951.70 <a href="/wiki/woodland" title="woodland">woodland</a> = 5951.70 <a href="/wiki/gentry" title="gentry">gentry</a> = 5950.91 <a href="/wiki/starvation" title="starvation">starvation</a> = 5947.74 <a href="/wiki/grudge" title="grudge">grudge</a> = 5946.95 <a href="/wiki/penance" title="penance">penance</a> = 5946.16 <a href="/wiki/tips" title="tips">tips</a> = 5946.16 <a href="/wiki/rooted" title="rooted">rooted</a> = 5944.58 <a href="/wiki/outburst" title="outburst">outburst</a> = 5943.00</p>
412
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=94" title="Edit section: 8301 - 8400">edit</a>]</span> <span class="mw-headline" id="8301_-_8400">8301 - 8400</span></h5>
413
+ <p><a href="/wiki/fortitude" title="fortitude">fortitude</a> = 5939.83 <a href="/wiki/turk" title="turk">turk</a> = 5939.04 <a href="/wiki/devour" title="devour">devour</a> = 5937.46 <a href="/wiki/malignant" title="malignant">malignant</a> = 5935.88 <a href="/wiki/accorded" title="accorded">accorded</a> = 5932.71 <a href="/wiki/brandon" title="brandon">brandon</a> = 5931.92 <a href="/wiki/anticipate" title="anticipate">anticipate</a> = 5931.13 <a href="/wiki/speechless" title="speechless">speechless</a> = 5931.13 <a href="/wiki/inquisition" title="inquisition">inquisition</a> = 5929.55 <a href="/wiki/eccentric" title="eccentric">eccentric</a> = 5927.97 <a href="/wiki/anecdote" title="anecdote">anecdote</a> = 5927.18 <a href="/wiki/annals" title="annals">annals</a> = 5927.18 <a href="/wiki/scrutiny" title="scrutiny">scrutiny</a> = 5924.01 <a href="/w/index.php?title=burroughs&amp;action=edit&amp;redlink=1" class="new" title="burroughs (page does not exist)">burroughs</a> = 5920.85 <a href="/wiki/rhythm" title="rhythm">rhythm</a> = 5918.47 <a href="/wiki/discord" title="discord">discord</a> = 5917.68 <a href="/w/index.php?title=marius&amp;action=edit&amp;redlink=1" class="new" title="marius (page does not exist)">marius</a> = 5912.93 <a href="/wiki/diversion" title="diversion">diversion</a> = 5908.98 <a href="/w/index.php?title=archie&amp;action=edit&amp;redlink=1" class="new" title="archie (page does not exist)">archie</a> = 5905.02 <a href="/wiki/rat" title="rat">rat</a> = 5905.02 <a href="/wiki/knit" title="knit">knit</a> = 5902.65 <a href="/wiki/correspond" title="correspond">correspond</a> = 5901.07 <a href="/wiki/detain" title="detain">detain</a> = 5901.07 <a href="/wiki/dis" title="dis">dis</a> = 5901.07 <a href="/wiki/esp" title="esp">esp</a> = 5901.07 <a href="/wiki/interpret" title="interpret">interpret</a> = 5900.28 <a href="/wiki/vehement" title="vehement">vehement</a> = 5898.69 <a href="/wiki/soda" title="soda">soda</a> = 5897.90 <a href="/wiki/naughty" title="naughty">naughty</a> = 5894.74 <a href="/wiki/salon" title="salon">salon</a> = 5893.16 <a href="/wiki/operate" title="operate">operate</a> = 5890.78 <a href="/wiki/idly" title="idly">idly</a> = 5889.99 <a href="/wiki/imperious" title="imperious">imperious</a> = 5889.20 <a href="/wiki/peru" title="peru">peru</a> = 5889.20 <a href="/wiki/candid" title="candid">candid</a> = 5888.41 <a href="/wiki/whig" title="whig">whig</a> = 5888.41 <a href="/wiki/blooming" title="blooming">blooming</a> = 5886.83 <a href="/wiki/wharf" title="wharf">wharf</a> = 5886.04 <a href="/wiki/disgraceful" title="disgraceful">disgraceful</a> = 5883.66 <a href="/wiki/stunned" title="stunned">stunned</a> = 5883.66 <a href="/wiki/redemption" title="redemption">redemption</a> = 5881.29 <a href="/wiki/drain" title="drain">drain</a> = 5878.12 <a href="/wiki/wage" title="wage">wage</a> = 5878.12 <a href="/wiki/cooper" title="cooper">cooper</a> = 5874.96 <a href="/wiki/embassy" title="embassy">embassy</a> = 5874.96 <a href="/wiki/unfinished" title="unfinished">unfinished</a> = 5874.17 <a href="/wiki/nasty" title="nasty">nasty</a> = 5872.59 <a href="/wiki/impetuous" title="impetuous">impetuous</a> = 5871.00 <a href="/wiki/cemetery" title="cemetery">cemetery</a> = 5868.63 <a href="/wiki/oblivion" title="oblivion">oblivion</a> = 5868.63 <a href="/wiki/prohibited" title="prohibited">prohibited</a> = 5867.05 <a href="/wiki/breeches" title="breeches">breeches</a> = 5866.26 <a href="/wiki/abound" title="abound">abound</a> = 5864.68 <a href="/w/index.php?title=christine&amp;action=edit&amp;redlink=1" class="new" title="christine (page does not exist)">christine</a> = 5860.72 <a href="/wiki/frivolous" title="frivolous">frivolous</a> = 5855.97 <a href="/w/index.php?title=hugo&amp;action=edit&amp;redlink=1" class="new" title="hugo (page does not exist)">hugo</a> = 5855.18 <a href="/wiki/essays" title="essays">essays</a> = 5854.39 <a href="/wiki/plaster" title="plaster">plaster</a> = 5852.81 <a href="/wiki/tap" title="tap">tap</a> = 5850.44 <a href="/wiki/chairman" title="chairman">chairman</a> = 5848.06 <a href="/wiki/dismiss" title="dismiss">dismiss</a> = 5848.06 <a href="/w/index.php?title=katherine&amp;action=edit&amp;redlink=1" class="new" title="katherine (page does not exist)">katherine</a> = 5848.06 <a href="/wiki/provoke" title="provoke">provoke</a> = 5848.06 <a href="/wiki/reside" title="reside">reside</a> = 5844.11 <a href="/wiki/deficient" title="deficient">deficient</a> = 5842.52 <a href="/wiki/decoration" title="decoration">decoration</a> = 5840.94 <a href="/wiki/heroism" title="heroism">heroism</a> = 5840.15 <a href="/wiki/toe" title="toe">toe</a> = 5840.15 <a href="/wiki/wade" title="wade">wade</a> = 5839.36 <a href="/wiki/apparel" title="apparel">apparel</a> = 5836.19 <a href="/wiki/hazel" title="hazel">hazel</a> = 5836.19 <a href="/wiki/inability" title="inability">inability</a> = 5836.19 <a href="/wiki/farthest" title="farthest">farthest</a> = 5833.82 <a href="/wiki/invent" title="invent">invent</a> = 5831.45 <a href="/wiki/knave" title="knave">knave</a> = 5831.45 <a href="/wiki/twain" title="twain">twain</a> = 5829.07 <a href="/wiki/carelessness" title="carelessness">carelessness</a> = 5826.70 <a href="/wiki/affectation" title="affectation">affectation</a> = 5822.75 <a href="/wiki/connections" title="connections">connections</a> = 5821.16 <a href="/wiki/climax" title="climax">climax</a> = 5820.37 <a href="/wiki/avowed" title="avowed">avowed</a> = 5816.42 <a href="/wiki/industries" title="industries">industries</a> = 5816.42 <a href="/wiki/brood" title="brood">brood</a> = 5813.25 <a href="/wiki/tempting" title="tempting">tempting</a> = 5812.46 <a href="/wiki/define" title="define">define</a> = 5804.55 <a href="/w/index.php?title=antwerp&amp;action=edit&amp;redlink=1" class="new" title="antwerp (page does not exist)">antwerp</a> = 5803.76 <a href="/wiki/forefathers" title="forefathers">forefathers</a> = 5803.76 <a href="/wiki/stretches" title="stretches">stretches</a> = 5802.18 <a href="/wiki/gratifying" title="gratifying">gratifying</a> = 5801.38 <a href="/wiki/plight" title="plight">plight</a> = 5800.59 <a href="/wiki/restricted" title="restricted">restricted</a> = 5800.59 <a href="/wiki/cupboard" title="cupboard">cupboard</a> = 5799.01 <a href="/wiki/ludicrous" title="ludicrous">ludicrous</a> = 5798.22 <a href="/wiki/alms" title="alms">alms</a> = 5797.43 <a href="/wiki/colossal" title="colossal">colossal</a> = 5795.06 <a href="/wiki/stupidity" title="stupidity">stupidity</a> = 5791.10 <a href="/wiki/monotony" title="monotony">monotony</a> = 5790.31 <a href="/wiki/stimulus" title="stimulus">stimulus</a> = 5790.31 <a href="/wiki/vigilance" title="vigilance">vigilance</a> = 5788.73 <a href="/wiki/digest" title="digest">digest</a> = 5784.77</p>
414
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=95" title="Edit section: 8401 - 8500">edit</a>]</span> <span class="mw-headline" id="8401_-_8500">8401 - 8500</span></h5>
415
+ <p><a href="/wiki/vale" title="vale">vale</a> = 5784.77 <a href="/wiki/overcoat" title="overcoat">overcoat</a> = 5783.19 <a href="/wiki/colorado" title="colorado">colorado</a> = 5782.40 <a href="/wiki/wink" title="wink">wink</a> = 5780.82 <a href="/wiki/nous" title="nous">nous</a> = 5775.28 <a href="/wiki/rack" title="rack">rack</a> = 5775.28 <a href="/wiki/incomprehensible" title="incomprehensible">incomprehensible</a> = 5773.70 <a href="/wiki/antagonist" title="antagonist">antagonist</a> = 5772.90 <a href="/wiki/methinks" title="methinks">methinks</a> = 5767.37 <a href="/wiki/barley" title="barley">barley</a> = 5764.20 <a href="/wiki/plateau" title="plateau">plateau</a> = 5758.66 <a href="/wiki/superintendent" title="superintendent">superintendent</a> = 5754.71 <a href="/wiki/indescribable" title="indescribable">indescribable</a> = 5744.42 <a href="/wiki/expanded" title="expanded">expanded</a> = 5743.63 <a href="/wiki/presentation" title="presentation">presentation</a> = 5742.84 <a href="/wiki/archbishop" title="archbishop">archbishop</a> = 5742.05 <a href="/wiki/devise" title="devise">devise</a> = 5740.47 <a href="/wiki/rubber" title="rubber">rubber</a> = 5738.89 <a href="/wiki/adieu" title="adieu">adieu</a> = 5738.09 <a href="/wiki/exclude" title="exclude">exclude</a> = 5737.30 <a href="/wiki/carts" title="carts">carts</a> = 5736.51 <a href="/wiki/lone" title="lone">lone</a> = 5734.93 <a href="/wiki/whisky" title="whisky">whisky</a> = 5734.14 <a href="/wiki/abuses" title="abuses">abuses</a> = 5732.56 <a href="/wiki/inflict" title="inflict">inflict</a> = 5730.97 <a href="/wiki/nightfall" title="nightfall">nightfall</a> = 5730.97 <a href="/wiki/counts" title="counts">counts</a> = 5730.18 <a href="/wiki/chocolate" title="chocolate">chocolate</a> = 5728.60 <a href="/wiki/privileged" title="privileged">privileged</a> = 5728.60 <a href="/wiki/hermit" title="hermit">hermit</a> = 5727.81 <a href="/wiki/exultation" title="exultation">exultation</a> = 5727.02 <a href="/wiki/overtook" title="overtook">overtook</a> = 5727.02 <a href="/wiki/coincidence" title="coincidence">coincidence</a> = 5726.23 <a href="/wiki/scratch" title="scratch">scratch</a> = 5726.23 <a href="/wiki/screw" title="screw">screw</a> = 5723.85 <a href="/wiki/caravan" title="caravan">caravan</a> = 5723.06 <a href="/wiki/divert" title="divert">divert</a> = 5719.90 <a href="/w/index.php?title=eliza&amp;action=edit&amp;redlink=1" class="new" title="eliza (page does not exist)">eliza</a> = 5719.90 <a href="/wiki/comparing" title="comparing">comparing</a> = 5717.52 <a href="/wiki/hood" title="hood">hood</a> = 5716.73 <a href="/wiki/explore" title="explore">explore</a> = 5715.15 <a href="/wiki/glove" title="glove">glove</a> = 5715.15 <a href="/wiki/chaste" title="chaste">chaste</a> = 5713.57 <a href="/wiki/whirl" title="whirl">whirl</a> = 5713.57 <a href="/wiki/adventurous" title="adventurous">adventurous</a> = 5707.24 <a href="/wiki/skipper" title="skipper">skipper</a> = 5703.28 <a href="/wiki/tiresome" title="tiresome">tiresome</a> = 5702.49 <a href="/wiki/implements" title="implements">implements</a> = 5701.70 <a href="/wiki/recompense" title="recompense">recompense</a> = 5701.70 <a href="/wiki/plank" title="plank">plank</a> = 5700.91 <a href="/wiki/insure" title="insure">insure</a> = 5696.96 <a href="/wiki/laboured" title="laboured">laboured</a> = 5696.16 <a href="/wiki/exaggeration" title="exaggeration">exaggeration</a> = 5691.42 <a href="/wiki/mi" title="mi">mi</a> = 5689.83 <a href="/wiki/shepherds" title="shepherds">shepherds</a> = 5689.04 <a href="/wiki/lilies" title="lilies">lilies</a> = 5688.25 <a href="/wiki/ballad" title="ballad">ballad</a> = 5685.88 <a href="/wiki/befall" title="befall">befall</a> = 5683.51 <a href="/wiki/cylinder" title="cylinder">cylinder</a> = 5682.71 <a href="/wiki/teddy" title="teddy">teddy</a> = 5676.39 <a href="/wiki/summary" title="summary">summary</a> = 5671.64 <a href="/wiki/daresay" title="daresay">daresay</a> = 5669.27 <a href="/wiki/photographs" title="photographs">photographs</a> = 5669.27 <a href="/wiki/colleges" title="colleges">colleges</a> = 5664.52 <a href="/wiki/dissolution" title="dissolution">dissolution</a> = 5664.52 <a href="/w/index.php?title=geneva&amp;action=edit&amp;redlink=1" class="new" title="geneva (page does not exist)">geneva</a> = 5662.94 <a href="/wiki/marches" title="marches">marches</a> = 5662.15 <a href="/wiki/instituted" title="instituted">instituted</a> = 5655.02 <a href="/wiki/seals" title="seals">seals</a> = 5655.02 <a href="/wiki/vehemence" title="vehemence">vehemence</a> = 5654.23 <a href="/wiki/chaplain" title="chaplain">chaplain</a> = 5653.44 <a href="/wiki/knots" title="knots">knots</a> = 5653.44 <a href="/wiki/wail" title="wail">wail</a> = 5650.28 <a href="/wiki/kneel" title="kneel">kneel</a> = 5647.11 <a href="/wiki/unlikely" title="unlikely">unlikely</a> = 5644.74 <a href="/wiki/deceit" title="deceit">deceit</a> = 5643.95 <a href="/wiki/challenged" title="challenged">challenged</a> = 5640.78 <a href="/wiki/geography" title="geography">geography</a> = 5639.20 <a href="/wiki/herald" title="herald">herald</a> = 5637.62 <a href="/wiki/lowly" title="lowly">lowly</a> = 5636.83 <a href="/wiki/peep" title="peep">peep</a> = 5636.83 <a href="/wiki/swarm" title="swarm">swarm</a> = 5636.04 <a href="/w/index.php?title=clarke&amp;action=edit&amp;redlink=1" class="new" title="clarke (page does not exist)">clarke</a> = 5633.66 <a href="/wiki/joyfully" title="joyfully">joyfully</a> = 5633.66 <a href="/wiki/engraved" title="engraved">engraved</a> = 5632.08 <a href="/wiki/ll" title="ll">ll</a> = 5632.08 <a href="/wiki/bowels" title="bowels">bowels</a> = 5631.29 <a href="/wiki/purposely" title="purposely">purposely</a> = 5629.71 <a href="/wiki/blindness" title="blindness">blindness</a> = 5628.92 <a href="/wiki/systematic" title="systematic">systematic</a> = 5626.54 <a href="/wiki/virtually" title="virtually">virtually</a> = 5624.96 <a href="/wiki/conformity" title="conformity">conformity</a> = 5621.80 <a href="/wiki/remedies" title="remedies">remedies</a> = 5617.84 <a href="/wiki/maxim" title="maxim">maxim</a> = 5617.05 <a href="/wiki/indexes" title="indexes">indexes</a> = 5613.89 <a href="/wiki/marshall" title="marshall">marshall</a> = 5613.89 <a href="/wiki/baking" title="baking">baking</a> = 5613.09 <a href="/wiki/invincible" title="invincible">invincible</a> = 5612.30 <a href="/wiki/impertinent" title="impertinent">impertinent</a> = 5611.51 <a href="/wiki/bust" title="bust">bust</a> = 5609.93</p>
416
+ <p><br /></p>
417
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=96" title="Edit section: 8501 - 8600">edit</a>]</span> <span class="mw-headline" id="8501_-_8600">8501 - 8600</span></h5>
418
+ <p><a href="/wiki/visage" title="visage">visage</a> = 5609.93 <a href="/wiki/intuition" title="intuition">intuition</a> = 5609.14 <a href="/wiki/mingle" title="mingle">mingle</a> = 5609.14 <a href="/wiki/bathing" title="bathing">bathing</a> = 5607.56 <a href="/wiki/arched" title="arched">arched</a> = 5606.77 <a href="/wiki/investment" title="investment">investment</a> = 5605.97 <a href="/wiki/tabernacle" title="tabernacle">tabernacle</a> = 5604.39 <a href="/wiki/86" title="86">86</a> = 5601.23 <a href="/wiki/client" title="client">client</a> = 5601.23 <a href="/wiki/ghostly" title="ghostly">ghostly</a> = 5601.23 <a href="/wiki/furs" title="furs">furs</a> = 5600.44 <a href="/wiki/catalogue" title="catalogue">catalogue</a> = 5598.85 <a href="/wiki/dock" title="dock">dock</a> = 5598.06 <a href="/wiki/tenor" title="tenor">tenor</a> = 5598.06 <a href="/wiki/arouse" title="arouse">arouse</a> = 5597.27 <a href="/wiki/verbal" title="verbal">verbal</a> = 5592.53 <a href="/wiki/excessively" title="excessively">excessively</a> = 5590.94 <a href="/wiki/brazil" title="brazil">brazil</a> = 5588.57 <a href="/wiki/strenuous" title="strenuous">strenuous</a> = 5587.78 <a href="/w/index.php?title=irishman&amp;action=edit&amp;redlink=1" class="new" title="irishman (page does not exist)">irishman</a> = 5585.41 <a href="/wiki/recess" title="recess">recess</a> = 5582.24 <a href="/wiki/unclean" title="unclean">unclean</a> = 5581.45 <a href="/wiki/psalms" title="psalms">psalms</a> = 5580.66 <a href="/wiki/analogy" title="analogy">analogy</a> = 5579.08 <a href="/wiki/chemistry" title="chemistry">chemistry</a> = 5579.08 <a href="/wiki/peninsula" title="peninsula">peninsula</a> = 5579.08 <a href="/wiki/infer" title="infer">infer</a> = 5578.28 <a href="/wiki/maritime" title="maritime">maritime</a> = 5577.49 <a href="/wiki/secular" title="secular">secular</a> = 5576.70 <a href="/wiki/hawk" title="hawk">hawk</a> = 5574.33 <a href="/wiki/rein" title="rein">rein</a> = 5573.54 <a href="/wiki/averted" title="averted">averted</a> = 5572.75 <a href="/wiki/bake" title="bake">bake</a> = 5572.75 <a href="/w/index.php?title=constantine&amp;action=edit&amp;redlink=1" class="new" title="constantine (page does not exist)">constantine</a> = 5571.96 <a href="/wiki/oracle" title="oracle">oracle</a> = 5571.96 <a href="/wiki/alley" title="alley">alley</a> = 5568.00 <a href="/wiki/softness" title="softness">softness</a> = 5568.00 <a href="/wiki/pierce" title="pierce">pierce</a> = 5565.63 <a href="/wiki/spinning" title="spinning">spinning</a> = 5564.84 <a href="/wiki/snatch" title="snatch">snatch</a> = 5563.25 <a href="/wiki/manufactured" title="manufactured">manufactured</a> = 5561.67 <a href="/wiki/launch" title="launch">launch</a> = 5560.88 <a href="/wiki/psychology" title="psychology">psychology</a> = 5560.88 <a href="/wiki/worms" title="worms">worms</a> = 5560.88 <a href="/wiki/regulate" title="regulate">regulate</a> = 5560.09 <a href="/wiki/farming" title="farming">farming</a> = 5557.72 <a href="/wiki/fasten" title="fasten">fasten</a> = 5556.92 <a href="/wiki/actress" title="actress">actress</a> = 5553.76 <a href="/wiki/etiquette" title="etiquette">etiquette</a> = 5551.39 <a href="/wiki/theater" title="theater">theater</a> = 5551.39 <a href="/wiki/thanksgiving" title="thanksgiving">thanksgiving</a> = 5550.60 <a href="/wiki/valor" title="valor">valor</a> = 5549.01 <a href="/wiki/untouched" title="untouched">untouched</a> = 5548.22 <a href="/wiki/tactics" title="tactics">tactics</a> = 5547.43 <a href="/wiki/drug" title="drug">drug</a> = 5546.64 <a href="/wiki/adverse" title="adverse">adverse</a> = 5545.06 <a href="/wiki/gaunt" title="gaunt">gaunt</a> = 5544.27 <a href="/wiki/conducting" title="conducting">conducting</a> = 5542.68 <a href="/wiki/veritable" title="veritable">veritable</a> = 5541.10 <a href="/wiki/overtaken" title="overtaken">overtaken</a> = 5539.52 <a href="/wiki/distorted" title="distorted">distorted</a> = 5538.73 <a href="/wiki/rosa" title="rosa">rosa</a> = 5538.73 <a href="/wiki/nina" title="nina">nina</a> = 5537.94 <a href="/wiki/quart" title="quart">quart</a> = 5537.94 <a href="/wiki/caprice" title="caprice">caprice</a> = 5536.35 <a href="/wiki/candy" title="candy">candy</a> = 5531.61 <a href="/wiki/obliging" title="obliging">obliging</a> = 5525.28 <a href="/wiki/planets" title="planets">planets</a> = 5525.28 <a href="/wiki/soothed" title="soothed">soothed</a> = 5524.49 <a href="/wiki/sic" title="sic">sic</a> = 5523.70 <a href="/wiki/opium" title="opium">opium</a> = 5520.53 <a href="/wiki/pavilion" title="pavilion">pavilion</a> = 5520.53 <a href="/wiki/strait" title="strait">strait</a> = 5518.16 <a href="/wiki/sanguine" title="sanguine">sanguine</a> = 5516.58 <a href="/wiki/cords" title="cords">cords</a> = 5512.62 <a href="/wiki/odour" title="odour">odour</a> = 5512.62 <a href="/wiki/trout" title="trout">trout</a> = 5510.25 <a href="/wiki/paste" title="paste">paste</a> = 5509.46 <a href="/wiki/regularity" title="regularity">regularity</a> = 5504.71 <a href="/wiki/metallic" title="metallic">metallic</a> = 5497.59 <a href="/wiki/scrap" title="scrap">scrap</a> = 5496.80 <a href="/wiki/convict" title="convict">convict</a> = 5495.22 <a href="/wiki/instructive" title="instructive">instructive</a> = 5494.42 <a href="/wiki/investigate" title="investigate">investigate</a> = 5492.05 <a href="/w/index.php?title=celtic&amp;action=edit&amp;redlink=1" class="new" title="celtic (page does not exist)">celtic</a> = 5490.47 <a href="/wiki/package" title="package">package</a> = 5488.10 <a href="/wiki/pirate" title="pirate">pirate</a> = 5486.51 <a href="/wiki/fiend" title="fiend">fiend</a> = 5484.93 <a href="/wiki/moan" title="moan">moan</a> = 5484.93 <a href="/wiki/revealing" title="revealing">revealing</a> = 5484.93 <a href="/wiki/trades" title="trades">trades</a> = 5483.35 <a href="/wiki/rounds" title="rounds">rounds</a> = 5481.77 <a href="/wiki/accomplishments" title="accomplishments">accomplishments</a> = 5479.39 <a href="/wiki/crawl" title="crawl">crawl</a> = 5477.81 <a href="/wiki/aft" title="aft">aft</a> = 5476.23 <a href="/wiki/prevalent" title="prevalent">prevalent</a> = 5473.86 <a href="/wiki/role" title="role">role</a> = 5473.86 <a href="/wiki/dose" title="dose">dose</a> = 5471.48 <a href="/w/index.php?title=evans&amp;action=edit&amp;redlink=1" class="new" title="evans (page does not exist)">evans</a> = 5471.48 <a href="/wiki/hypocrisy" title="hypocrisy">hypocrisy</a> = 5470.69</p>
419
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=97" title="Edit section: 8601 - 8700">edit</a>]</span> <span class="mw-headline" id="8601_-_8700">8601 - 8700</span></h5>
420
+ <p><a href="/wiki/l" title="l">l</a> = 5469.90 <a href="/wiki/salmon" title="salmon">salmon</a> = 5468.32 <a href="/wiki/snap" title="snap">snap</a> = 5468.32 <a href="/wiki/alma" title="alma">alma</a> = 5465.94 <a href="/wiki/magical" title="magical">magical</a> = 5464.36 <a href="/wiki/tire" title="tire">tire</a> = 5463.57 <a href="/wiki/hetty" title="hetty">hetty</a> = 5462.78 <a href="/wiki/impenetrable" title="impenetrable">impenetrable</a> = 5462.78 <a href="/wiki/geese" title="geese">geese</a> = 5461.99 <a href="/wiki/madly" title="madly">madly</a> = 5460.41 <a href="/wiki/manifold" title="manifold">manifold</a> = 5460.41 <a href="/wiki/noticeable" title="noticeable">noticeable</a> = 5460.41 <a href="/wiki/pudding" title="pudding">pudding</a> = 5460.41 <a href="/wiki/volcanic" title="volcanic">volcanic</a> = 5459.61 <a href="/wiki/locke" title="locke">locke</a> = 5458.82 <a href="/wiki/magnetic" title="magnetic">magnetic</a> = 5458.82 <a href="/wiki/deals" title="deals">deals</a> = 5458.03 <a href="/wiki/core" title="core">core</a> = 5456.45 <a href="/wiki/decency" title="decency">decency</a> = 5455.66 <a href="/wiki/observance" title="observance">observance</a> = 5455.66 <a href="/wiki/durst" title="durst">durst</a> = 5448.54 <a href="/wiki/scratched" title="scratched">scratched</a> = 5448.54 <a href="/wiki/predecessor" title="predecessor">predecessor</a> = 5446.96 <a href="/wiki/diplomacy" title="diplomacy">diplomacy</a> = 5446.17 <a href="/wiki/wert" title="wert">wert</a> = 5446.17 <a href="/wiki/impartial" title="impartial">impartial</a> = 5444.58 <a href="/wiki/disinterested" title="disinterested">disinterested</a> = 5440.63 <a href="/wiki/wig" title="wig">wig</a> = 5440.63 <a href="/wiki/pump" title="pump">pump</a> = 5439.05 <a href="/w/index.php?title=swedish&amp;action=edit&amp;redlink=1" class="new" title="swedish (page does not exist)">swedish</a> = 5437.46 <a href="/w/index.php?title=norfolk&amp;action=edit&amp;redlink=1" class="new" title="norfolk (page does not exist)">norfolk</a> = 5436.67 <a href="/wiki/reigns" title="reigns">reigns</a> = 5433.51 <a href="/wiki/similarly" title="similarly">similarly</a> = 5432.72 <a href="/wiki/reap" title="reap">reap</a> = 5431.13 <a href="/wiki/dam" title="dam">dam</a> = 5430.34 <a href="/wiki/facilities" title="facilities">facilities</a> = 5430.34 <a href="/wiki/slippery" title="slippery">slippery</a> = 5430.34 <a href="/wiki/transformation" title="transformation">transformation</a> = 5427.97 <a href="/wiki/oxygen" title="oxygen">oxygen</a> = 5427.18 <a href="/wiki/suburbs" title="suburbs">suburbs</a> = 5427.18 <a href="/wiki/dares" title="dares">dares</a> = 5426.39 <a href="/wiki/ornamental" title="ornamental">ornamental</a> = 5425.60 <a href="/wiki/pondered" title="pondered">pondered</a> = 5424.80 <a href="/wiki/fringe" title="fringe">fringe</a> = 5423.22 <a href="/wiki/raiment" title="raiment">raiment</a> = 5421.64 <a href="/w/index.php?title=henrietta&amp;action=edit&amp;redlink=1" class="new" title="henrietta (page does not exist)">henrietta</a> = 5420.85 <a href="/wiki/wellington" title="wellington">wellington</a> = 5420.85 <a href="/wiki/foreman" title="foreman">foreman</a> = 5419.27 <a href="/wiki/feat" title="feat">feat</a> = 5418.48 <a href="/wiki/thirteenth" title="thirteenth">thirteenth</a> = 5418.48 <a href="/wiki/sultan" title="sultan">sultan</a> = 5416.89 <a href="/wiki/certificate" title="certificate">certificate</a> = 5416.10 <a href="/wiki/rue" title="rue">rue</a> = 5415.31 <a href="/wiki/heresy" title="heresy">heresy</a> = 5413.73 <a href="/wiki/arabia" title="arabia">arabia</a> = 5410.56 <a href="/wiki/medal" title="medal">medal</a> = 5409.77 <a href="/wiki/location" title="location">location</a> = 5405.03 <a href="/wiki/ether" title="ether">ether</a> = 5404.24 <a href="/wiki/ruby" title="ruby">ruby</a> = 5401.86 <a href="/wiki/heading" title="heading">heading</a> = 5396.32 <a href="/wiki/subdue" title="subdue">subdue</a> = 5394.74 <a href="/wiki/adorn" title="adorn">adorn</a> = 5391.58 <a href="/wiki/ancestor" title="ancestor">ancestor</a> = 5391.58 <a href="/wiki/warmer" title="warmer">warmer</a> = 5391.58 <a href="/wiki/cluster" title="cluster">cluster</a> = 5389.99 <a href="/wiki/quotation" title="quotation">quotation</a> = 5389.99 <a href="/wiki/fullest" title="fullest">fullest</a> = 5389.20 <a href="/wiki/exposition" title="exposition">exposition</a> = 5388.41 <a href="/wiki/custody" title="custody">custody</a> = 5386.04 <a href="/wiki/thermometer" title="thermometer">thermometer</a> = 5386.04 <a href="/wiki/plausible" title="plausible">plausible</a> = 5383.67 <a href="/wiki/toss" title="toss">toss</a> = 5381.29 <a href="/wiki/desperation" title="desperation">desperation</a> = 5378.92 <a href="/wiki/rhetoric" title="rhetoric">rhetoric</a> = 5378.92 <a href="/wiki/scornful" title="scornful">scornful</a> = 5378.13 <a href="/wiki/bailey" title="bailey">bailey</a> = 5376.55 <a href="/wiki/rung" title="rung">rung</a> = 5376.55 <a href="/wiki/civility" title="civility">civility</a> = 5375.75 <a href="/wiki/dingy" title="dingy">dingy</a> = 5375.75 <a href="/wiki/scaffold" title="scaffold">scaffold</a> = 5374.96 <a href="/wiki/concentration" title="concentration">concentration</a> = 5374.17 <a href="/wiki/avarice" title="avarice">avarice</a> = 5373.38 <a href="/wiki/scrape" title="scrape">scrape</a> = 5373.38 <a href="/wiki/pools" title="pools">pools</a> = 5371.80 <a href="/wiki/oar" title="oar">oar</a> = 5370.22 <a href="/wiki/flutter" title="flutter">flutter</a> = 5369.43 <a href="/wiki/martyr" title="martyr">martyr</a> = 5369.43 <a href="/wiki/handy" title="handy">handy</a> = 5368.63 <a href="/w/index.php?title=montague&amp;action=edit&amp;redlink=1" class="new" title="montague (page does not exist)">montague</a> = 5368.63 <a href="/wiki/bait" title="bait">bait</a> = 5367.84 <a href="/wiki/login" title="login">login</a> = 5367.84 <a href="/wiki/commotion" title="commotion">commotion</a> = 5367.05 <a href="/wiki/congenial" title="congenial">congenial</a> = 5367.05 <a href="/wiki/drawers" title="drawers">drawers</a> = 5365.47 <a href="/wiki/telescope" title="telescope">telescope</a> = 5365.47 <a href="/wiki/deposits" title="deposits">deposits</a> = 5363.10 <a href="/w/index.php?title=edwards&amp;action=edit&amp;redlink=1" class="new" title="edwards (page does not exist)">edwards</a> = 5361.51 <a href="/wiki/craving" title="craving">craving</a> = 5360.72 <a href="/wiki/bureau" title="bureau">bureau</a> = 5359.14 <a href="/wiki/oscar" title="oscar" class="mw-redirect">oscar</a> = 5358.35</p>
421
+ <p><br /></p>
422
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=98" title="Edit section: 8701 - 8800">edit</a>]</span> <span class="mw-headline" id="8701_-_8800">8701 - 8800</span></h5>
423
+ <p><a href="/wiki/speculative" title="speculative">speculative</a> = 5358.35 <a href="/wiki/huddled" title="huddled">huddled</a> = 5356.77 <a href="/wiki/diverse" title="diverse">diverse</a> = 5355.18 <a href="/wiki/slice" title="slice">slice</a> = 5354.39 <a href="/wiki/renaissance" title="renaissance">renaissance</a> = 5352.81 <a href="/wiki/angelo" title="angelo">angelo</a> = 5348.86 <a href="/wiki/meg" title="meg">meg</a> = 5347.27 <a href="/wiki/murderous" title="murderous">murderous</a> = 5347.27 <a href="/wiki/serenity" title="serenity">serenity</a> = 5347.27 <a href="/wiki/perspiration" title="perspiration">perspiration</a> = 5346.48 <a href="/w/index.php?title=coventry&amp;action=edit&amp;redlink=1" class="new" title="coventry (page does not exist)">coventry</a> = 5344.90 <a href="/wiki/impudent" title="impudent">impudent</a> = 5344.11 <a href="/wiki/ardor" title="ardor">ardor</a> = 5343.32 <a href="/wiki/necklace" title="necklace">necklace</a> = 5342.53 <a href="/wiki/alight" title="alight">alight</a> = 5341.74 <a href="/wiki/stimulated" title="stimulated">stimulated</a> = 5339.36 <a href="/w/index.php?title=clifford&amp;action=edit&amp;redlink=1" class="new" title="clifford (page does not exist)">clifford</a> = 5337.78 <a href="/wiki/steadfast" title="steadfast">steadfast</a> = 5333.82 <a href="/wiki/genoa" title="genoa">genoa</a> = 5332.24 <a href="/wiki/anglo-saxon" title="anglo-saxon">anglo-saxon</a> = 5330.66 <a href="/wiki/courier" title="courier">courier</a> = 5328.29 <a href="/wiki/inflamed" title="inflamed">inflamed</a> = 5328.29 <a href="/wiki/xi" title="xi">xi</a> = 5328.29 <a href="/wiki/drill" title="drill">drill</a> = 5325.91 <a href="/wiki/spelling" title="spelling">spelling</a> = 5323.54 <a href="/wiki/respond" title="respond">respond</a> = 5322.75 <a href="/wiki/seriousness" title="seriousness">seriousness</a> = 5321.17 <a href="/wiki/fourteenth" title="fourteenth">fourteenth</a> = 5319.58 <a href="/wiki/womb" title="womb">womb</a> = 5319.58 <a href="/wiki/literal" title="literal">literal</a> = 5317.21 <a href="/wiki/singers" title="singers">singers</a> = 5317.21 <a href="/wiki/usefulness" title="usefulness">usefulness</a> = 5315.63 <a href="/wiki/cloudy" title="cloudy">cloudy</a> = 5314.84 <a href="/wiki/mortality" title="mortality">mortality</a> = 5314.84 <a href="/wiki/profusion" title="profusion">profusion</a> = 5314.84 <a href="/wiki/fleeting" title="fleeting">fleeting</a> = 5314.05 <a href="/wiki/twentieth" title="twentieth">twentieth</a> = 5314.05 <a href="/wiki/maturity" title="maturity">maturity</a> = 5313.25 <a href="/wiki/surf" title="surf">surf</a> = 5310.88 <a href="/wiki/weed" title="weed">weed</a> = 5307.72 <a href="/wiki/phases" title="phases">phases</a> = 5306.13 <a href="/wiki/overcame" title="overcame">overcame</a> = 5304.55 <a href="/wiki/womanhood" title="womanhood">womanhood</a> = 5304.55 <a href="/wiki/envious" title="envious">envious</a> = 5302.97 <a href="/wiki/tapped" title="tapped">tapped</a> = 5302.18 <a href="/wiki/latent" title="latent">latent</a> = 5300.60 <a href="/wiki/whiskey" title="whiskey">whiskey</a> = 5298.22 <a href="/wiki/relatively" title="relatively">relatively</a> = 5292.69 <a href="/wiki/forbidding" title="forbidding">forbidding</a> = 5290.31 <a href="/w/index.php?title=cleopatra&amp;action=edit&amp;redlink=1" class="new" title="cleopatra (page does not exist)">cleopatra</a> = 5288.73 <a href="/wiki/willow" title="willow">willow</a> = 5288.73 <a href="/wiki/mathematical" title="mathematical">mathematical</a> = 5286.36 <a href="/wiki/sojourn" title="sojourn">sojourn</a> = 5283.19 <a href="/wiki/booty" title="booty">booty</a> = 5282.40 <a href="/wiki/camel" title="camel">camel</a> = 5280.03 <a href="/wiki/implore" title="implore">implore</a> = 5280.03 <a href="/wiki/amateur" title="amateur">amateur</a> = 5279.24 <a href="/wiki/morally" title="morally">morally</a> = 5276.07 <a href="/wiki/qualifications" title="qualifications">qualifications</a> = 5273.70 <a href="/wiki/gasp" title="gasp">gasp</a> = 5271.32 <a href="/wiki/101" title="101">101</a> = 5270.53 <a href="/wiki/gliding" title="gliding">gliding</a> = 5268.95 <a href="/wiki/tested" title="tested">tested</a> = 5263.41 <a href="/wiki/racing" title="racing">racing</a> = 5261.83 <a href="/wiki/brightest" title="brightest">brightest</a> = 5261.04 <a href="/wiki/joel" title="joel">joel</a> = 5260.25 <a href="/wiki/extremes" title="extremes">extremes</a> = 5257.88 <a href="/w/index.php?title=damascus&amp;action=edit&amp;redlink=1" class="new" title="damascus (page does not exist)">damascus</a> = 5257.08 <a href="/wiki/labored" title="labored">labored</a> = 5256.29 <a href="/w/index.php?title=peggy&amp;action=edit&amp;redlink=1" class="new" title="peggy (page does not exist)">peggy</a> = 5255.50 <a href="/wiki/exit" title="exit">exit</a> = 5252.34 <a href="/wiki/originality" title="originality">originality</a> = 5251.55 <a href="/wiki/humming" title="humming">humming</a> = 5248.38 <a href="/wiki/isolation" title="isolation">isolation</a> = 5247.59 <a href="/wiki/sometime" title="sometime">sometime</a> = 5246.80 <a href="/wiki/glee" title="glee">glee</a> = 5246.01 <a href="/wiki/adult" title="adult">adult</a> = 5245.22 <a href="/wiki/solace" title="solace">solace</a> = 5244.43 <a href="/wiki/biography" title="biography">biography</a> = 5242.84 <a href="/wiki/ff." title="ff.">ff.</a> = 5241.26 <a href="/wiki/hardship" title="hardship">hardship</a> = 5241.26 <a href="/wiki/lied" title="lied">lied</a> = 5241.26 <a href="/wiki/donkey" title="donkey">donkey</a> = 5239.68 <a href="/wiki/trader" title="trader">trader</a> = 5238.89 <a href="/wiki/rumour" title="rumour">rumour</a> = 5234.93 <a href="/wiki/amply" title="amply">amply</a> = 5231.77 <a href="/wiki/confide" title="confide">confide</a> = 5231.77 <a href="/wiki/favors" title="favors">favors</a> = 5231.77 <a href="/wiki/perspective" title="perspective">perspective</a> = 5227.81 <a href="/w/index.php?title=belgian&amp;action=edit&amp;redlink=1" class="new" title="belgian (page does not exist)">belgian</a> = 5226.23 <a href="/wiki/withstand" title="withstand">withstand</a> = 5225.44 <a href="/wiki/robust" title="robust">robust</a> = 5224.65 <a href="/wiki/pro" title="pro">pro</a> = 5223.07 <a href="/wiki/val" title="val">val</a> = 5222.27 <a href="/wiki/eats" title="eats">eats</a> = 5221.48 <a href="/wiki/snare" title="snare">snare</a> = 5220.69 <a href="/wiki/monthly" title="monthly">monthly</a> = 5219.90 <a href="/wiki/wines" title="wines">wines</a> = 5215.95 <a href="/wiki/ignore" title="ignore">ignore</a> = 5215.15 <a href="/wiki/envoy" title="envoy">envoy</a> = 5214.36</p>
424
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=99" title="Edit section: 8801 - 8900">edit</a>]</span> <span class="mw-headline" id="8801_-_8900">8801 - 8900</span></h5>
425
+ <p><a href="/wiki/flown" title="flown">flown</a> = 5214.36 <a href="/wiki/reverie" title="reverie">reverie</a> = 5213.57 <a href="/w/index.php?title=jehovah&amp;action=edit&amp;redlink=1" class="new" title="jehovah (page does not exist)">jehovah</a> = 5207.24 <a href="/wiki/contrive" title="contrive">contrive</a> = 5206.45 <a href="/wiki/chatter" title="chatter">chatter</a> = 5205.66 <a href="/wiki/judas" title="judas">judas</a> = 5205.66 <a href="/wiki/nourishment" title="nourishment">nourishment</a> = 5204.87 <a href="/wiki/reforms" title="reforms">reforms</a> = 5203.29 <a href="/wiki/clatter" title="clatter">clatter</a> = 5201.70 <a href="/w/index.php?title=adrian&amp;action=edit&amp;redlink=1" class="new" title="adrian (page does not exist)">adrian</a> = 5198.54 <a href="/wiki/allude" title="allude">allude</a> = 5197.75 <a href="/wiki/corrupted" title="corrupted">corrupted</a> = 5197.75 <a href="/wiki/thorn" title="thorn">thorn</a> = 5196.17 <a href="/wiki/junior" title="junior">junior</a> = 5193.79 <a href="/wiki/tony" title="tony">tony</a> = 5187.46 <a href="/w/index.php?title=calcutta&amp;action=edit&amp;redlink=1" class="new" title="calcutta (page does not exist)">calcutta</a> = 5185.88 <a href="/wiki/re" title="re">re</a> = 5185.88 <a href="/wiki/holt" title="holt">holt</a> = 5185.09 <a href="/wiki/psychological" title="psychological">psychological</a> = 5182.72 <a href="/wiki/constancy" title="constancy">constancy</a> = 5181.14 <a href="/wiki/misunderstood" title="misunderstood">misunderstood</a> = 5180.34 <a href="/wiki/signals" title="signals">signals</a> = 5177.97 <a href="/wiki/drying" title="drying">drying</a> = 5175.60 <a href="/wiki/harshly" title="harshly">harshly</a> = 5174.81 <a href="/wiki/distressing" title="distressing">distressing</a> = 5170.85 <a href="/wiki/novelist" title="novelist">novelist</a> = 5170.85 <a href="/w/index.php?title=cyril&amp;action=edit&amp;redlink=1" class="new" title="cyril (page does not exist)">cyril</a> = 5169.27 <a href="/wiki/editors" title="editors">editors</a> = 5168.48 <a href="/wiki/intricate" title="intricate">intricate</a> = 5167.69 <a href="/wiki/limestone" title="limestone">limestone</a> = 5166.10 <a href="/wiki/forty-five" title="forty-five">forty-five</a> = 5165.31 <a href="/wiki/collision" title="collision">collision</a> = 5164.52 <a href="/wiki/pebbles" title="pebbles">pebbles</a> = 5163.73 <a href="/wiki/willie" title="willie">willie</a> = 5163.73 <a href="/wiki/knitting" title="knitting">knitting</a> = 5162.94 <a href="/wiki/ordeal" title="ordeal">ordeal</a> = 5160.57 <a href="/wiki/foresee" title="foresee">foresee</a> = 5158.98 <a href="/wiki/peas" title="peas">peas</a> = 5157.40 <a href="/wiki/repast" title="repast">repast</a> = 5156.61 <a href="/wiki/supplying" title="supplying">supplying</a> = 5152.65 <a href="/wiki/clan" title="clan">clan</a> = 5151.86 <a href="/wiki/abject" title="abject">abject</a> = 5150.28 <a href="/wiki/dart" title="dart">dart</a> = 5149.49 <a href="/wiki/berth" title="berth">berth</a> = 5148.70 <a href="/wiki/bridal" title="bridal">bridal</a> = 5148.70 <a href="/wiki/indirect" title="indirect">indirect</a> = 5148.70 <a href="/wiki/unnoticed" title="unnoticed">unnoticed</a> = 5148.70 <a href="/wiki/tint" title="tint">tint</a> = 5147.91 <a href="/wiki/insults" title="insults">insults</a> = 5145.53 <a href="/wiki/precedent" title="precedent">precedent</a> = 5143.95 <a href="/wiki/twisting" title="twisting">twisting</a> = 5142.37 <a href="/wiki/bully" title="bully">bully</a> = 5139.21 <a href="/wiki/vacation" title="vacation">vacation</a> = 5138.41 <a href="/wiki/%27ll" title="'ll">'ll</a> = 5133.67 <a href="/wiki/canon" title="canon">canon</a> = 5132.88 <a href="/wiki/aisle" title="aisle">aisle</a> = 5131.29 <a href="/wiki/click" title="click">click</a> = 5131.29 <a href="/wiki/inspiring" title="inspiring">inspiring</a> = 5131.29 <a href="/wiki/oval" title="oval">oval</a> = 5130.50 <a href="/wiki/impracticable" title="impracticable">impracticable</a> = 5128.92 <a href="/wiki/delirium" title="delirium">delirium</a> = 5127.34 <a href="/wiki/cedar" title="cedar">cedar</a> = 5126.55 <a href="/wiki/contradict" title="contradict">contradict</a> = 5125.76 <a href="/wiki/ingratitude" title="ingratitude">ingratitude</a> = 5125.76 <a href="/wiki/soften" title="soften">soften</a> = 5125.76 <a href="/wiki/bewilderment" title="bewilderment">bewilderment</a> = 5124.96 <a href="/wiki/servitude" title="servitude">servitude</a> = 5123.38 <a href="/wiki/comely" title="comely">comely</a> = 5122.59 <a href="/wiki/stump" title="stump">stump</a> = 5121.80 <a href="/wiki/redeem" title="redeem">redeem</a> = 5121.01 <a href="/wiki/spun" title="spun">spun</a> = 5118.64 <a href="/wiki/elastic" title="elastic">elastic</a> = 5117.84 <a href="/wiki/poultry" title="poultry">poultry</a> = 5115.47 <a href="/wiki/horseman" title="horseman">horseman</a> = 5114.68 <a href="/wiki/dictionary" title="dictionary">dictionary</a> = 5112.31 <a href="/wiki/prettiest" title="prettiest">prettiest</a> = 5112.31 <a href="/wiki/adoration" title="adoration">adoration</a> = 5109.93 <a href="/w/index.php?title=icel.&amp;action=edit&amp;redlink=1" class="new" title="icel. (page does not exist)">icel.</a> = 5109.14 <a href="/wiki/wager" title="wager">wager</a> = 5109.14 <a href="/wiki/involving" title="involving">involving</a> = 5107.56 <a href="/wiki/pathway" title="pathway">pathway</a> = 5104.40 <a href="/w/index.php?title=essex&amp;action=edit&amp;redlink=1" class="new" title="essex (page does not exist)">essex</a> = 5102.81 <a href="/wiki/wistful" title="wistful">wistful</a> = 5102.81 <a href="/wiki/advent" title="advent">advent</a> = 5102.02 <a href="/wiki/gear" title="gear">gear</a> = 5102.02 <a href="/wiki/celebration" title="celebration">celebration</a> = 5100.44 <a href="/wiki/conceivable" title="conceivable">conceivable</a> = 5100.44 <a href="/wiki/drowning" title="drowning">drowning</a> = 5100.44 <a href="/wiki/faintest" title="faintest">faintest</a> = 5097.28 <a href="/wiki/acquiring" title="acquiring">acquiring</a> = 5094.90 <a href="/wiki/befell" title="befell">befell</a> = 5092.53 <a href="/wiki/good-looking" title="good-looking">good-looking</a> = 5092.53 <a href="/wiki/wares" title="wares">wares</a> = 5092.53 <a href="/wiki/rendezvous" title="rendezvous">rendezvous</a> = 5091.74 <a href="/wiki/snug" title="snug">snug</a> = 5091.74 <a href="/wiki/watery" title="watery">watery</a> = 5091.74 <a href="/wiki/accompaniment" title="accompaniment">accompaniment</a> = 5090.95 <a href="/wiki/chaps" title="chaps">chaps</a> = 5090.95 <a href="/wiki/crawling" title="crawling">crawling</a> = 5088.57 <a href="/wiki/lumber" title="lumber">lumber</a> = 5087.78</p>
426
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=100" title="Edit section: 8901 - 9000">edit</a>]</span> <span class="mw-headline" id="8901_-_9000">8901 - 9000</span></h5>
427
+ <p><a href="/wiki/publishing" title="publishing">publishing</a> = 5087.78 <a href="/wiki/customer" title="customer">customer</a> = 5086.99 <a href="/wiki/mediaeval" title="mediaeval">mediaeval</a> = 5084.62 <a href="/wiki/prints" title="prints">prints</a> = 5079.87 <a href="/wiki/lavish" title="lavish">lavish</a> = 5078.29 <a href="/wiki/md" title="md" class="mw-redirect">md</a> = 5074.33 <a href="/wiki/genesis" title="genesis">genesis</a> = 5069.59 <a href="/wiki/rug" title="rug">rug</a> = 5068.79 <a href="/wiki/analogous" title="analogous">analogous</a> = 5066.42 <a href="/wiki/eleventh" title="eleventh">eleventh</a> = 5066.42 <a href="/w/index.php?title=noah&amp;action=edit&amp;redlink=1" class="new" title="noah (page does not exist)">noah</a> = 5066.42 <a href="/wiki/galley" title="galley">galley</a> = 5062.47 <a href="/wiki/partition" title="partition">partition</a> = 5062.47 <a href="/wiki/blunder" title="blunder">blunder</a> = 5061.67 <a href="/w/index.php?title=glasgow&amp;action=edit&amp;redlink=1" class="new" title="glasgow (page does not exist)">glasgow</a> = 5061.67 <a href="/wiki/fanciful" title="fanciful">fanciful</a> = 5060.09 <a href="/wiki/ham" title="ham">ham</a> = 5057.72 <a href="/wiki/rainbow" title="rainbow">rainbow</a> = 5056.14 <a href="/wiki/sentinel" title="sentinel">sentinel</a> = 5055.34 <a href="/wiki/hereby" title="hereby">hereby</a> = 5053.76 <a href="/wiki/outlook" title="outlook">outlook</a> = 5053.76 <a href="/wiki/smitten" title="smitten">smitten</a> = 5051.39 <a href="/wiki/unmarried" title="unmarried">unmarried</a> = 5050.60 <a href="/wiki/mice" title="mice">mice</a> = 5049.81 <a href="/wiki/installed" title="installed">installed</a> = 5049.02 <a href="/wiki/vivacity" title="vivacity">vivacity</a> = 5049.02 <a href="/wiki/marking" title="marking">marking</a> = 5048.22 <a href="/wiki/aesthetic" title="aesthetic">aesthetic</a> = 5045.85 <a href="/wiki/consume" title="consume">consume</a> = 5045.85 <a href="/wiki/resent" title="resent">resent</a> = 5044.27 <a href="/wiki/pose" title="pose">pose</a> = 5041.90 <a href="/wiki/contentment" title="contentment">contentment</a> = 5040.31 <a href="/wiki/sterling" title="sterling">sterling</a> = 5039.52 <a href="/wiki/veneration" title="veneration">veneration</a> = 5038.73 <a href="/wiki/p.m." title="p.m.">p.m.</a> = 5037.15 <a href="/wiki/barking" title="barking">barking</a> = 5034.78 <a href="/wiki/bower" title="bower">bower</a> = 5034.78 <a href="/wiki/organism" title="organism">organism</a> = 5034.78 <a href="/wiki/unintelligible" title="unintelligible">unintelligible</a> = 5032.40 <a href="/wiki/emphatic" title="emphatic">emphatic</a> = 5031.61 <a href="/wiki/occurring" title="occurring">occurring</a> = 5030.03 <a href="/wiki/factors" title="factors">factors</a> = 5029.24 <a href="/wiki/guise" title="guise">guise</a> = 5027.66 <a href="/wiki/editorial" title="editorial">editorial</a> = 5026.07 <a href="/wiki/impudence" title="impudence">impudence</a> = 5025.28 <a href="/wiki/midday" title="midday">midday</a> = 5022.91 <a href="/wiki/corporal" title="corporal">corporal</a> = 5022.12 <a href="/wiki/sg" title="sg">sg</a> = 5022.12 <a href="/wiki/aright" title="aright">aright</a> = 5018.95 <a href="/wiki/nigger" title="nigger">nigger</a> = 5015.79 <a href="/wiki/lily" title="lily">lily</a> = 5012.62 <a href="/wiki/noun" title="noun">noun</a> = 5007.09 <a href="/wiki/scout" title="scout">scout</a> = 5007.09 <a href="/wiki/spit" title="spit">spit</a> = 5007.09 <a href="/wiki/cursing" title="cursing">cursing</a> = 5006.29 <a href="/w/index.php?title=friedrich&amp;action=edit&amp;redlink=1" class="new" title="friedrich (page does not exist)">friedrich</a> = 5005.50 <a href="/wiki/manifestly" title="manifestly">manifestly</a> = 5004.71 <a href="/wiki/marco" title="marco">marco</a> = 5004.71 <a href="/wiki/battalion" title="battalion">battalion</a> = 5000.76 <a href="/wiki/heritage" title="heritage">heritage</a> = 5000.76 <a href="/wiki/brotherhood" title="brotherhood">brotherhood</a> = 4999.17 <a href="/wiki/nun" title="nun">nun</a> = 4999.17 <a href="/wiki/wad" title="wad">wad</a> = 4997.59 <a href="/wiki/folding" title="folding">folding</a> = 4995.22 <a href="/wiki/discerned" title="discerned">discerned</a> = 4994.43 <a href="/wiki/powerfully" title="powerfully">powerfully</a> = 4994.43 <a href="/w/index.php?title=mitchell&amp;action=edit&amp;redlink=1" class="new" title="mitchell (page does not exist)">mitchell</a> = 4990.47 <a href="/wiki/helpful" title="helpful">helpful</a> = 4989.68 <a href="/wiki/persist" title="persist">persist</a> = 4989.68 <a href="/w/index.php?title=ellis&amp;action=edit&amp;redlink=1" class="new" title="ellis (page does not exist)">ellis</a> = 4985.73 <a href="/wiki/frigate" title="frigate">frigate</a> = 4984.93 <a href="/wiki/spotted" title="spotted">spotted</a> = 4984.93 <a href="/wiki/atoms" title="atoms">atoms</a> = 4983.35 <a href="/wiki/curves" title="curves">curves</a> = 4983.35 <a href="/wiki/outlet" title="outlet">outlet</a> = 4981.77 <a href="/wiki/erroneous" title="erroneous">erroneous</a> = 4979.40 <a href="/wiki/violated" title="violated">violated</a> = 4979.40 <a href="/wiki/withheld" title="withheld">withheld</a> = 4978.60 <a href="/wiki/fairies" title="fairies">fairies</a> = 4975.44 <a href="/wiki/inherit" title="inherit">inherit</a> = 4975.44 <a href="/wiki/sledge" title="sledge">sledge</a> = 4975.44 <a href="/wiki/taller" title="taller">taller</a> = 4973.07 <a href="/wiki/supervision" title="supervision">supervision</a> = 4972.28 <a href="/wiki/butt" title="butt">butt</a> = 4971.48 <a href="/wiki/handsomely" title="handsomely">handsomely</a> = 4971.48 <a href="/wiki/tank" title="tank">tank</a> = 4965.16 <a href="/wiki/velocity" title="velocity">velocity</a> = 4965.16 <a href="/wiki/arctic" title="arctic">arctic</a> = 4963.57 <a href="/wiki/colleague" title="colleague">colleague</a> = 4963.57 <a href="/wiki/pins" title="pins">pins</a> = 4962.78 <a href="/wiki/butcher" title="butcher">butcher</a> = 4961.99 <a href="/wiki/drowsy" title="drowsy">drowsy</a> = 4961.99 <a href="/wiki/butterfly" title="butterfly">butterfly</a> = 4960.41 <a href="/wiki/chart" title="chart">chart</a> = 4957.24 <a href="/wiki/twin" title="twin">twin</a> = 4957.24 <a href="/wiki/sunken" title="sunken">sunken</a> = 4954.08 <a href="/wiki/exasperated" title="exasperated">exasperated</a> = 4950.12 <a href="/wiki/narrowly" title="narrowly">narrowly</a> = 4950.12 <a href="/wiki/collins" title="collins">collins</a> = 4948.54 <a href="/wiki/insulting" title="insulting">insulting</a> = 4946.96</p>
428
+ <h4><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=101" title="Edit section: 9001 - 10000">edit</a>]</span> <span class="mw-headline" id="9001_-_10000">9001 - 10000</span></h4>
429
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=102" title="Edit section: 9001 - 9100">edit</a>]</span> <span class="mw-headline" id="9001_-_9100">9001 - 9100</span></h5>
430
+ <p><a href="/wiki/deficiency" title="deficiency">deficiency</a> = 4945.38 <a href="/wiki/operating" title="operating">operating</a> = 4943.79 <a href="/wiki/overthrown" title="overthrown">overthrown</a> = 4942.21 <a href="/wiki/gallows" title="gallows">gallows</a> = 4941.42 <a href="/wiki/diligent" title="diligent">diligent</a> = 4940.63 <a href="/wiki/hindu" title="hindu">hindu</a> = 4940.63 <a href="/wiki/blunt" title="blunt">blunt</a> = 4939.84 <a href="/wiki/omen" title="omen">omen</a> = 4939.05 <a href="/wiki/bleak" title="bleak">bleak</a> = 4938.26 <a href="/wiki/vehemently" title="vehemently">vehemently</a> = 4938.26 <a href="/wiki/wretchedness" title="wretchedness">wretchedness</a> = 4935.88 <a href="/wiki/e%27er" title="e'er">e'er</a> = 4935.09 <a href="/wiki/ensure" title="ensure">ensure</a> = 4931.93 <a href="/wiki/denotes" title="denotes">denotes</a> = 4931.14 <a href="/wiki/sentenced" title="sentenced">sentenced</a> = 4927.97 <a href="/wiki/unfair" title="unfair">unfair</a> = 4927.18 <a href="/wiki/encampment" title="encampment">encampment</a> = 4923.23 <a href="/wiki/possessor" title="possessor">possessor</a> = 4923.23 <a href="/wiki/absorbing" title="absorbing">absorbing</a> = 4921.64 <a href="/wiki/descendant" title="descendant">descendant</a> = 4920.85 <a href="/wiki/sub" title="sub">sub</a> = 4918.48 <a href="/wiki/drugs" title="drugs">drugs</a> = 4917.69 <a href="/wiki/engineers" title="engineers">engineers</a> = 4917.69 <a href="/wiki/independently" title="independently">independently</a> = 4915.31 <a href="/wiki/bucket" title="bucket">bucket</a> = 4914.52 <a href="/wiki/clerical" title="clerical">clerical</a> = 4914.52 <a href="/wiki/ache" title="ache">ache</a> = 4911.36 <a href="/wiki/glitter" title="glitter">glitter</a> = 4911.36 <a href="/wiki/ordinance" title="ordinance">ordinance</a> = 4906.61 <a href="/wiki/bamboo" title="bamboo">bamboo</a> = 4905.82 <a href="/w/index.php?title=amsterdam&amp;action=edit&amp;redlink=1" class="new" title="amsterdam (page does not exist)">amsterdam</a> = 4905.03 <a href="/wiki/vocation" title="vocation">vocation</a> = 4899.49 <a href="/wiki/admirer" title="admirer">admirer</a> = 4898.70 <a href="/wiki/limp" title="limp">limp</a> = 4897.91 <a href="/wiki/pallid" title="pallid">pallid</a> = 4897.91 <a href="/wiki/mildly" title="mildly">mildly</a> = 4893.16 <a href="/wiki/organisation" title="organisation">organisation</a> = 4891.58 <a href="/wiki/timothy" title="timothy">timothy</a> = 4891.58 <a href="/wiki/dealer" title="dealer">dealer</a> = 4890.79 <a href="/w/index.php?title=yorkshire&amp;action=edit&amp;redlink=1" class="new" title="yorkshire (page does not exist)">yorkshire</a> = 4890.79 <a href="/wiki/auspicious" title="auspicious">auspicious</a> = 4886.83 <a href="/wiki/deuce" title="deuce">deuce</a> = 4882.88 <a href="/wiki/emblem" title="emblem">emblem</a> = 4882.88 <a href="/w/index.php?title=gibson&amp;action=edit&amp;redlink=1" class="new" title="gibson (page does not exist)">gibson</a> = 4882.88 <a href="/wiki/primarily" title="primarily">primarily</a> = 4882.88 <a href="/wiki/reducing" title="reducing">reducing</a> = 4881.30 <a href="/wiki/ritual" title="ritual">ritual</a> = 4877.34 <a href="/wiki/decorations" title="decorations">decorations</a> = 4876.55 <a href="/wiki/thigh" title="thigh">thigh</a> = 4875.76 <a href="/wiki/groaning" title="groaning">groaning</a> = 4874.18 <a href="/wiki/scant" title="scant">scant</a> = 4871.80 <a href="/wiki/fiscal" title="fiscal">fiscal</a> = 4871.01 <a href="/wiki/mien" title="mien">mien</a> = 4871.01 <a href="/wiki/charging" title="charging">charging</a> = 4867.85 <a href="/wiki/cor" title="cor">cor</a> = 4867.85 <a href="/wiki/railing" title="railing">railing</a> = 4867.85 <a href="/wiki/peers" title="peers">peers</a> = 4866.26 <a href="/wiki/inferred" title="inferred">inferred</a> = 4865.47 <a href="/wiki/sanctity" title="sanctity">sanctity</a> = 4865.47 <a href="/wiki/accumulation" title="accumulation">accumulation</a> = 4863.89 <a href="/wiki/cynical" title="cynical">cynical</a> = 4861.52 <a href="/wiki/inspector" title="inspector">inspector</a> = 4861.52 <a href="/wiki/wardrobe" title="wardrobe">wardrobe</a> = 4859.14 <a href="/w/index.php?title=jesuit&amp;action=edit&amp;redlink=1" class="new" title="jesuit (page does not exist)">jesuit</a> = 4854.40 <a href="/wiki/texture" title="texture">texture</a> = 4853.61 <a href="/wiki/adjustment" title="adjustment">adjustment</a> = 4852.02 <a href="/wiki/epistle" title="epistle">epistle</a> = 4851.23 <a href="/wiki/adventurer" title="adventurer">adventurer</a> = 4850.44 <a href="/wiki/priesthood" title="priesthood">priesthood</a> = 4850.44 <a href="/wiki/seaman" title="seaman">seaman</a> = 4849.65 <a href="/wiki/turbulent" title="turbulent">turbulent</a> = 4849.65 <a href="/wiki/chant" title="chant">chant</a> = 4844.90 <a href="/wiki/marsh" title="marsh">marsh</a> = 4844.90 <a href="/wiki/palmer" title="palmer">palmer</a> = 4844.90 <a href="/wiki/unaware" title="unaware">unaware</a> = 4844.11 <a href="/wiki/vase" title="vase">vase</a> = 4843.32 <a href="/wiki/ty" title="ty">ty</a> = 4839.37 <a href="/wiki/initial" title="initial">initial</a> = 4837.78 <a href="/wiki/baths" title="baths">baths</a> = 4836.20 <a href="/wiki/weighty" title="weighty">weighty</a> = 4836.20 <a href="/wiki/minimum" title="minimum">minimum</a> = 4835.41 <a href="/wiki/correction" title="correction">correction</a> = 4829.87 <a href="/wiki/morsel" title="morsel">morsel</a> = 4829.08 <a href="/wiki/overlook" title="overlook">overlook</a> = 4828.29 <a href="/wiki/meagre" title="meagre">meagre</a> = 4827.50 <a href="/wiki/unanimous" title="unanimous">unanimous</a> = 4826.71 <a href="/wiki/magician" title="magician">magician</a> = 4824.33 <a href="/wiki/mystical" title="mystical">mystical</a> = 4824.33 <a href="/wiki/twenty-three" title="twenty-three">twenty-three</a> = 4823.54 <a href="/wiki/inhabit" title="inhabit">inhabit</a> = 4822.75 <a href="/wiki/shaggy" title="shaggy">shaggy</a> = 4822.75 <a href="/wiki/unaccountable" title="unaccountable">unaccountable</a> = 4822.75 <a href="/wiki/nightmare" title="nightmare">nightmare</a> = 4818.80 <a href="/wiki/carbon" title="carbon">carbon</a> = 4818.00 <a href="/wiki/coil" title="coil">coil</a> = 4818.00 <a href="/wiki/lawless" title="lawless">lawless</a> = 4818.00 <a href="/wiki/stairway" title="stairway">stairway</a> = 4818.00 <a href="/wiki/willingness" title="willingness">willingness</a> = 4818.00 <a href="/wiki/sarcasm" title="sarcasm">sarcasm</a> = 4815.63 <a href="/wiki/crisp" title="crisp">crisp</a> = 4810.88</p>
431
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=103" title="Edit section: 9101 - 9200">edit</a>]</span> <span class="mw-headline" id="9101_-_9200">9101 - 9200</span></h5>
432
+ <p><a href="/wiki/jerk" title="jerk">jerk</a> = 4810.09 <a href="/wiki/tout" title="tout">tout</a> = 4808.51 <a href="/wiki/vocabulary" title="vocabulary">vocabulary</a> = 4808.51 <a href="/wiki/stroll" title="stroll">stroll</a> = 4806.14 <a href="/wiki/poorly" title="poorly">poorly</a> = 4805.35 <a href="/wiki/composing" title="composing">composing</a> = 4804.56 <a href="/wiki/parliamentary" title="parliamentary">parliamentary</a> = 4804.56 <a href="/wiki/controlling" title="controlling">controlling</a> = 4803.76 <a href="/wiki/fitness" title="fitness">fitness</a> = 4803.76 <a href="/wiki/thoughtless" title="thoughtless">thoughtless</a> = 4802.97 <a href="/w/index.php?title=soames&amp;action=edit&amp;redlink=1" class="new" title="soames (page does not exist)">soames</a> = 4802.18 <a href="/wiki/temperance" title="temperance">temperance</a> = 4802.18 <a href="/wiki/illumination" title="illumination">illumination</a> = 4801.39 <a href="/wiki/translations" title="translations">translations</a> = 4800.60 <a href="/wiki/martyrdom" title="martyrdom">martyrdom</a> = 4799.02 <a href="/wiki/mellow" title="mellow">mellow</a> = 4798.23 <a href="/wiki/nationality" title="nationality">nationality</a> = 4795.06 <a href="/wiki/jam" title="jam">jam</a> = 4794.27 <a href="/wiki/austere" title="austere">austere</a> = 4792.69 <a href="/wiki/shoots" title="shoots">shoots</a> = 4791.11 <a href="/wiki/casually" title="casually">casually</a> = 4789.52 <a href="/wiki/pensive" title="pensive">pensive</a> = 4788.73 <a href="/wiki/flavour" title="flavour">flavour</a> = 4787.15 <a href="/wiki/nets" title="nets">nets</a> = 4786.36 <a href="/wiki/dice" title="dice">dice</a> = 4784.78 <a href="/wiki/satisfactorily" title="satisfactorily">satisfactorily</a> = 4783.99 <a href="/wiki/shrunk" title="shrunk">shrunk</a> = 4783.19 <a href="/wiki/administer" title="administer">administer</a> = 4781.61 <a href="/wiki/ante" title="ante">ante</a> = 4781.61 <a href="/wiki/swine" title="swine">swine</a> = 4781.61 <a href="/wiki/baptist" title="baptist">baptist</a> = 4780.03 <a href="/wiki/listener" title="listener">listener</a> = 4778.45 <a href="/wiki/unimportant" title="unimportant">unimportant</a> = 4778.45 <a href="/wiki/genera" title="genera">genera</a> = 4776.87 <a href="/wiki/contrivance" title="contrivance">contrivance</a> = 4776.07 <a href="/wiki/deplorable" title="deplorable">deplorable</a> = 4776.07 <a href="/wiki/museum" title="museum">museum</a> = 4776.07 <a href="/wiki/benefactor" title="benefactor">benefactor</a> = 4773.70 <a href="/wiki/tints" title="tints">tints</a> = 4772.12 <a href="/wiki/alphabet" title="alphabet">alphabet</a> = 4770.54 <a href="/wiki/rout" title="rout">rout</a> = 4768.16 <a href="/wiki/scatter" title="scatter">scatter</a> = 4767.37 <a href="/wiki/boer" title="boer">boer</a> = 4766.58 <a href="/wiki/ftp" title="ftp" class="mw-redirect">ftp</a> = 4766.58 <a href="/w/index.php?title=steve&amp;action=edit&amp;redlink=1" class="new" title="steve (page does not exist)">steve</a> = 4766.58 <a href="/wiki/extant" title="extant">extant</a> = 4765.79 <a href="/wiki/bohemia" title="bohemia">bohemia</a> = 4765.00 <a href="/wiki/misunderstanding" title="misunderstanding">misunderstanding</a> = 4765.00 <a href="/wiki/universities" title="universities">universities</a> = 4765.00 <a href="/wiki/dexterity" title="dexterity">dexterity</a> = 4762.63 <a href="/wiki/rag" title="rag">rag</a> = 4759.46 <a href="/wiki/inseparable" title="inseparable">inseparable</a> = 4758.67 <a href="/wiki/punch" title="punch">punch</a> = 4757.09 <a href="/wiki/brazen" title="brazen">brazen</a> = 4756.30 <a href="/wiki/economical" title="economical">economical</a> = 4756.30 <a href="/wiki/pernicious" title="pernicious">pernicious</a> = 4756.30 <a href="/wiki/craig" title="craig">craig</a> = 4755.50 <a href="/wiki/mythology" title="mythology">mythology</a> = 4755.50 <a href="/wiki/drained" title="drained">drained</a> = 4754.71 <a href="/wiki/bolted" title="bolted">bolted</a> = 4753.92 <a href="/wiki/abel" title="abel">abel</a> = 4753.13 <a href="/wiki/stride" title="stride">stride</a> = 4751.55 <a href="/wiki/circumference" title="circumference">circumference</a> = 4749.18 <a href="/wiki/meddle" title="meddle">meddle</a> = 4749.18 <a href="/wiki/axis" title="axis">axis</a> = 4747.59 <a href="/wiki/gum" title="gum">gum</a> = 4746.80 <a href="/wiki/las" title="las">las</a> = 4746.01 <a href="/wiki/kinder" title="kinder">kinder</a> = 4744.43 <a href="/wiki/closes" title="closes">closes</a> = 4742.06 <a href="/wiki/ferocity" title="ferocity">ferocity</a> = 4742.06 <a href="/wiki/giddy" title="giddy">giddy</a> = 4740.47 <a href="/wiki/secluded" title="secluded">secluded</a> = 4740.47 <a href="/wiki/resisting" title="resisting">resisting</a> = 4737.31 <a href="/wiki/satisfying" title="satisfying">satisfying</a> = 4735.73 <a href="/wiki/reliable" title="reliable">reliable</a> = 4734.94 <a href="/wiki/disgusting" title="disgusting">disgusting</a> = 4733.35 <a href="/wiki/thirty-six" title="thirty-six">thirty-six</a> = 4733.35 <a href="/wiki/ethical" title="ethical">ethical</a> = 4730.98 <a href="/w/index.php?title=raleigh&amp;action=edit&amp;redlink=1" class="new" title="raleigh (page does not exist)">raleigh</a> = 4729.40 <a href="/wiki/crouching" title="crouching">crouching</a> = 4728.61 <a href="/wiki/lash" title="lash">lash</a> = 4728.61 <a href="/wiki/recital" title="recital">recital</a> = 4727.02 <a href="/wiki/buddhist" title="buddhist">buddhist</a> = 4726.23 <a href="/wiki/collapse" title="collapse">collapse</a> = 4723.86 <a href="/wiki/unsatisfactory" title="unsatisfactory">unsatisfactory</a> = 4721.49 <a href="/wiki/lore" title="lore">lore</a> = 4718.32 <a href="/wiki/varies" title="varies">varies</a> = 4718.32 <a href="/wiki/mainland" title="mainland">mainland</a> = 4715.95 <a href="/wiki/scot" title="scot">scot</a> = 4715.95 <a href="/wiki/repute" title="repute">repute</a> = 4715.16 <a href="/wiki/cushion" title="cushion">cushion</a> = 4714.37 <a href="/wiki/confound" title="confound">confound</a> = 4712.78 <a href="/wiki/scrub" title="scrub">scrub</a> = 4712.78 <a href="/wiki/myth" title="myth">myth</a> = 4710.41 <a href="/wiki/flights" title="flights">flights</a> = 4709.62 <a href="/wiki/oats" title="oats">oats</a> = 4708.04 <a href="/wiki/layers" title="layers">layers</a> = 4707.25 <a href="/wiki/ownership" title="ownership">ownership</a> = 4707.25 <a href="/wiki/cape" title="cape">cape</a> = 4706.45 <a href="/wiki/glimmer" title="glimmer">glimmer</a> = 4704.87</p>
433
+ <p><br /></p>
434
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=104" title="Edit section: 9201 - 9300">edit</a>]</span> <span class="mw-headline" id="9201_-_9300">9201 - 9300</span></h5>
435
+ <p><a href="/wiki/scare" title="scare">scare</a> = 4704.87 <a href="/wiki/waked" title="waked">waked</a> = 4704.87 <a href="/w/index.php?title=bengal&amp;action=edit&amp;redlink=1" class="new" title="bengal (page does not exist)">bengal</a> = 4703.29 <a href="/wiki/scrupulous" title="scrupulous">scrupulous</a> = 4703.29 <a href="/wiki/equals" title="equals">equals</a> = 4700.92 <a href="/wiki/redress" title="redress">redress</a> = 4700.13 <a href="/wiki/brake" title="brake">brake</a> = 4698.54 <a href="/wiki/nut" title="nut">nut</a> = 4698.54 <a href="/wiki/stability" title="stability">stability</a> = 4698.54 <a href="/wiki/crafty" title="crafty">crafty</a> = 4697.75 <a href="/wiki/kirk" title="kirk">kirk</a> = 4697.75 <a href="/wiki/bough" title="bough">bough</a> = 4696.17 <a href="/wiki/momentous" title="momentous">momentous</a> = 4696.17 <a href="/wiki/albeit" title="albeit">albeit</a> = 4695.38 <a href="/wiki/enlarge" title="enlarge">enlarge</a> = 4694.59 <a href="/wiki/hardness" title="hardness">hardness</a> = 4694.59 <a href="/wiki/civilised" title="civilised">civilised</a> = 4693.80 <a href="/wiki/dotted" title="dotted">dotted</a> = 4692.21 <a href="/wiki/defiant" title="defiant">defiant</a> = 4691.42 <a href="/wiki/timidity" title="timidity">timidity</a> = 4691.42 <a href="/wiki/solar" title="solar">solar</a> = 4687.47 <a href="/wiki/heartless" title="heartless">heartless</a> = 4683.51 <a href="/w/index.php?title=thomson&amp;action=edit&amp;redlink=1" class="new" title="thomson (page does not exist)">thomson</a> = 4681.93 <a href="/wiki/mat" title="mat">mat</a> = 4681.14 <a href="/wiki/shun" title="shun">shun</a> = 4681.14 <a href="/wiki/raid" title="raid">raid</a> = 4679.56 <a href="/wiki/disclose" title="disclose">disclose</a> = 4678.76 <a href="/wiki/suppression" title="suppression">suppression</a> = 4674.02 <a href="/wiki/puff" title="puff">puff</a> = 4673.23 <a href="/wiki/juncture" title="juncture">juncture</a> = 4670.85 <a href="/wiki/beak" title="beak">beak</a> = 4670.06 <a href="/wiki/unjustly" title="unjustly">unjustly</a> = 4668.48 <a href="/wiki/foresaw" title="foresaw">foresaw</a> = 4664.52 <a href="/wiki/rot" title="rot">rot</a> = 4662.15 <a href="/wiki/aggressive" title="aggressive">aggressive</a> = 4661.36 <a href="/wiki/predicted" title="predicted">predicted</a> = 4661.36 <a href="/wiki/quaker" title="quaker">quaker</a> = 4661.36 <a href="/wiki/grate" title="grate">grate</a> = 4659.78 <a href="/wiki/lease" title="lease">lease</a> = 4657.40 <a href="/wiki/ponderous" title="ponderous">ponderous</a> = 4656.61 <a href="/wiki/maketh" title="maketh">maketh</a> = 4655.82 <a href="/wiki/repaid" title="repaid">repaid</a> = 4655.82 <a href="/wiki/charcoal" title="charcoal">charcoal</a> = 4652.66 <a href="/wiki/chilly" title="chilly">chilly</a> = 4652.66 <a href="/wiki/arrogance" title="arrogance">arrogance</a> = 4651.87 <a href="/wiki/friction" title="friction">friction</a> = 4651.87 <a href="/wiki/participation" title="participation">participation</a> = 4651.87 <a href="/wiki/pier" title="pier">pier</a> = 4649.49 <a href="/wiki/stale" title="stale">stale</a> = 4648.70 <a href="/wiki/intoxicated" title="intoxicated">intoxicated</a> = 4644.75 <a href="/wiki/commissioned" title="commissioned">commissioned</a> = 4643.16 <a href="/wiki/ratio" title="ratio">ratio</a> = 4643.16 <a href="/wiki/121" title="121">121</a> = 4640.79 <a href="/wiki/comb" title="comb">comb</a> = 4640.00 <a href="/wiki/masterpiece" title="masterpiece">masterpiece</a> = 4640.00 <a href="/wiki/wholesale" title="wholesale">wholesale</a> = 4640.00 <a href="/wiki/embraces" title="embraces">embraces</a> = 4639.21 <a href="/wiki/trodden" title="trodden">trodden</a> = 4639.21 <a href="/w/index.php?title=ephraim&amp;action=edit&amp;redlink=1" class="new" title="ephraim (page does not exist)">ephraim</a> = 4638.42 <a href="/wiki/shaw" title="shaw">shaw</a> = 4634.46 <a href="/wiki/translate" title="translate">translate</a> = 4631.30 <a href="/wiki/mortar" title="mortar">mortar</a> = 4630.51 <a href="/wiki/recreation" title="recreation">recreation</a> = 4629.71 <a href="/wiki/rite" title="rite">rite</a> = 4628.13 <a href="/wiki/truthful" title="truthful">truthful</a> = 4628.13 <a href="/wiki/cavalier" title="cavalier">cavalier</a> = 4627.34 <a href="/wiki/caress" title="caress">caress</a> = 4626.55 <a href="/wiki/si" title="si">si</a> = 4624.97 <a href="/wiki/curling" title="curling">curling</a> = 4624.18 <a href="/wiki/rivalry" title="rivalry">rivalry</a> = 4623.39 <a href="/wiki/whim" title="whim">whim</a> = 4623.39 <a href="/wiki/abreast" title="abreast">abreast</a> = 4621.01 <a href="/w/index.php?title=thebes&amp;action=edit&amp;redlink=1" class="new" title="thebes (page does not exist)">thebes</a> = 4620.22 <a href="/w/index.php?title=faust&amp;action=edit&amp;redlink=1" class="new" title="faust (page does not exist)">faust</a> = 4619.43 <a href="/wiki/peg" title="peg">peg</a> = 4619.43 <a href="/w/index.php?title=wilhelm&amp;action=edit&amp;redlink=1" class="new" title="wilhelm (page does not exist)">wilhelm</a> = 4619.43 <a href="/wiki/pestilence" title="pestilence">pestilence</a> = 4618.64 <a href="/wiki/ceremonial" title="ceremonial">ceremonial</a> = 4617.85 <a href="/wiki/receiver" title="receiver">receiver</a> = 4617.06 <a href="/wiki/sample" title="sample">sample</a> = 4617.06 <a href="/wiki/distinctive" title="distinctive">distinctive</a> = 4615.47 <a href="/wiki/consummate" title="consummate">consummate</a> = 4614.68 <a href="/wiki/matron" title="matron">matron</a> = 4610.73 <a href="/wiki/claiming" title="claiming">claiming</a> = 4609.94 <a href="/wiki/plural" title="plural">plural</a> = 4608.35 <a href="/wiki/initiative" title="initiative">initiative</a> = 4607.56 <a href="/wiki/inexhaustible" title="inexhaustible">inexhaustible</a> = 4606.77 <a href="/wiki/a.m." title="a.m.">a.m.</a> = 4605.98 <a href="/wiki/spider" title="spider">spider</a> = 4603.61 <a href="/wiki/reed" title="reed">reed</a> = 4602.82 <a href="/wiki/streak" title="streak">streak</a> = 4602.82 <a href="/wiki/blocked" title="blocked">blocked</a> = 4601.23 <a href="/w/index.php?title=titus&amp;action=edit&amp;redlink=1" class="new" title="titus (page does not exist)">titus</a> = 4601.23 <a href="/wiki/smashed" title="smashed">smashed</a> = 4598.07 <a href="/wiki/populous" title="populous">populous</a> = 4597.28 <a href="/wiki/baronet" title="baronet">baronet</a> = 4596.49 <a href="/wiki/commodore" title="commodore">commodore</a> = 4596.49 <a href="/wiki/jelly" title="jelly">jelly</a> = 4596.49 <a href="/wiki/advocates" title="advocates">advocates</a> = 4594.11 <a href="/w/index.php?title=dinah&amp;action=edit&amp;redlink=1" class="new" title="dinah (page does not exist)">dinah</a> = 4592.53</p>
436
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=105" title="Edit section: 9301 - 9400">edit</a>]</span> <span class="mw-headline" id="9301_-_9400">9301 - 9400</span></h5>
437
+ <p><a href="/wiki/salutation" title="salutation">salutation</a> = 4589.37 <a href="/wiki/mutiny" title="mutiny">mutiny</a> = 4586.99 <a href="/wiki/chronicles" title="chronicles">chronicles</a> = 4586.20 <a href="/wiki/comforting" title="comforting">comforting</a> = 4585.41 <a href="/wiki/serviceable" title="serviceable">serviceable</a> = 4584.62 <a href="/wiki/parchment" title="parchment">parchment</a> = 4583.04 <a href="/wiki/playful" title="playful">playful</a> = 4583.04 <a href="/wiki/potato" title="potato">potato</a> = 4583.04 <a href="/wiki/transient" title="transient">transient</a> = 4579.87 <a href="/wiki/administrative" title="administrative">administrative</a> = 4579.08 <a href="/wiki/anarchy" title="anarchy">anarchy</a> = 4579.08 <a href="/wiki/barber" title="barber">barber</a> = 4579.08 <a href="/wiki/revision" title="revision">revision</a> = 4579.08 <a href="/wiki/operated" title="operated">operated</a> = 4578.29 <a href="/wiki/farce" title="farce">farce</a> = 4577.50 <a href="/wiki/germ" title="germ">germ</a> = 4576.71 <a href="/wiki/profile" title="profile">profile</a> = 4576.71 <a href="/wiki/provides" title="provides">provides</a> = 4576.71 <a href="/wiki/noting" title="noting">noting</a> = 4575.13 <a href="/wiki/disordered" title="disordered">disordered</a> = 4573.54 <a href="/wiki/menacing" title="menacing">menacing</a> = 4573.54 <a href="/wiki/heightened" title="heightened">heightened</a> = 4571.17 <a href="/wiki/finance" title="finance">finance</a> = 4570.38 <a href="/wiki/averse" title="averse">averse</a> = 4569.59 <a href="/wiki/azure" title="azure">azure</a> = 4568.80 <a href="/wiki/bathe" title="bathe">bathe</a> = 4568.80 <a href="/wiki/campaigns" title="campaigns">campaigns</a> = 4564.84 <a href="/wiki/lessen" title="lessen">lessen</a> = 4562.47 <a href="/wiki/slate" title="slate">slate</a> = 4562.47 <a href="/wiki/acquaint" title="acquaint">acquaint</a> = 4561.68 <a href="/wiki/gin" title="gin">gin</a> = 4559.30 <a href="/wiki/humiliating" title="humiliating">humiliating</a> = 4559.30 <a href="/wiki/cleft" title="cleft">cleft</a> = 4556.93 <a href="/wiki/conveyance" title="conveyance">conveyance</a> = 4556.93 <a href="/wiki/chivalrous" title="chivalrous">chivalrous</a> = 4554.56 <a href="/wiki/capricious" title="capricious">capricious</a> = 4553.77 <a href="/wiki/tribune" title="tribune">tribune</a> = 4553.77 <a href="/wiki/pilgrim" title="pilgrim">pilgrim</a> = 4552.97 <a href="/wiki/entreaty" title="entreaty">entreaty</a> = 4551.39 <a href="/wiki/womanly" title="womanly">womanly</a> = 4550.60 <a href="/wiki/paltry" title="paltry">paltry</a> = 4549.81 <a href="/wiki/sporting" title="sporting">sporting</a> = 4549.81 <a href="/wiki/maker" title="maker">maker</a> = 4549.02 <a href="/wiki/digestion" title="digestion">digestion</a> = 4545.85 <a href="/wiki/bart" title="bart">bart</a> = 4544.27 <a href="/wiki/infamy" title="infamy">infamy</a> = 4541.90 <a href="/wiki/lambs" title="lambs">lambs</a> = 4541.90 <a href="/wiki/gaping" title="gaping">gaping</a> = 4540.32 <a href="/wiki/periodical" title="periodical">periodical</a> = 4540.32 <a href="/wiki/standpoint" title="standpoint">standpoint</a> = 4540.32 <a href="/wiki/amorous" title="amorous">amorous</a> = 4539.53 <a href="/wiki/tub" title="tub">tub</a> = 4539.53 <a href="/wiki/luxuriant" title="luxuriant">luxuriant</a> = 4538.73 <a href="/wiki/basic" title="basic">basic</a> = 4536.36 <a href="/wiki/mutually" title="mutually">mutually</a> = 4535.57 <a href="/w/index.php?title=chris&amp;action=edit&amp;redlink=1" class="new" title="chris (page does not exist)">chris</a> = 4533.99 <a href="/wiki/greed" title="greed">greed</a> = 4532.40 <a href="/wiki/premature" title="premature">premature</a> = 4532.40 <a href="/wiki/extinction" title="extinction">extinction</a> = 4531.61 <a href="/wiki/boiler" title="boiler">boiler</a> = 4530.03 <a href="/wiki/intimation" title="intimation">intimation</a> = 4529.24 <a href="/wiki/scandalous" title="scandalous">scandalous</a> = 4527.66 <a href="/wiki/separating" title="separating">separating</a> = 4526.87 <a href="/wiki/oratory" title="oratory">oratory</a> = 4525.28 <a href="/wiki/banish" title="banish">banish</a> = 4524.49 <a href="/wiki/electrical" title="electrical">electrical</a> = 4524.49 <a href="/wiki/herb" title="herb">herb</a> = 4523.70 <a href="/wiki/multiply" title="multiply">multiply</a> = 4523.70 <a href="/wiki/prosper" title="prosper">prosper</a> = 4522.91 <a href="/wiki/friar" title="friar">friar</a> = 4522.12 <a href="/wiki/nightly" title="nightly">nightly</a> = 4520.54 <a href="/wiki/ole" title="ole">ole</a> = 4519.75 <a href="/wiki/monkeys" title="monkeys">monkeys</a> = 4518.16 <a href="/wiki/interminable" title="interminable">interminable</a> = 4516.58 <a href="/wiki/enjoys" title="enjoys">enjoys</a> = 4515.79 <a href="/wiki/similarity" title="similarity">similarity</a> = 4515.00 <a href="/wiki/riddle" title="riddle">riddle</a> = 4514.21 <a href="/wiki/cleaning" title="cleaning">cleaning</a> = 4512.63 <a href="/wiki/subscription" title="subscription">subscription</a> = 4511.84 <a href="/wiki/copious" title="copious">copious</a> = 4510.25 <a href="/wiki/exclaim" title="exclaim">exclaim</a> = 4509.46 <a href="/wiki/forged" title="forged">forged</a> = 4509.46 <a href="/wiki/voting" title="voting">voting</a> = 4509.46 <a href="/wiki/scourge" title="scourge">scourge</a> = 4508.67 <a href="/wiki/darkly" title="darkly">darkly</a> = 4507.09 <a href="/wiki/privacy" title="privacy">privacy</a> = 4506.30 <a href="/wiki/arena" title="arena">arena</a> = 4503.92 <a href="/wiki/bearded" title="bearded">bearded</a> = 4502.34 <a href="/wiki/vera" title="vera">vera</a> = 4499.97 <a href="/wiki/alacrity" title="alacrity">alacrity</a> = 4494.43 <a href="/wiki/sensual" title="sensual">sensual</a> = 4493.64 <a href="/wiki/spin" title="spin">spin</a> = 4493.64 <a href="/wiki/neutrality" title="neutrality">neutrality</a> = 4492.85 <a href="/wiki/flannel" title="flannel">flannel</a> = 4492.06 <a href="/wiki/fasting" title="fasting">fasting</a> = 4491.27 <a href="/wiki/trailer" title="trailer">trailer</a> = 4491.27 <a href="/wiki/avert" title="avert">avert</a> = 4489.68 <a href="/wiki/trustworthy" title="trustworthy">trustworthy</a> = 4489.68 <a href="/wiki/jamaica" title="jamaica">jamaica</a> = 4488.10 <a href="/wiki/unchanged" title="unchanged">unchanged</a> = 4485.73</p>
438
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=106" title="Edit section: 9401 - 9500">edit</a>]</span> <span class="mw-headline" id="9401_-_9500">9401 - 9500</span></h5>
439
+ <p><a href="/wiki/traveler" title="traveler">traveler</a> = 4484.15 <a href="/wiki/unfamiliar" title="unfamiliar">unfamiliar</a> = 4483.35 <a href="/wiki/puffed" title="puffed">puffed</a> = 4482.56 <a href="/wiki/mirrors" title="mirrors">mirrors</a> = 4480.98 <a href="/wiki/phoebe" title="phoebe">phoebe</a> = 4480.19 <a href="/wiki/father-in-law" title="father-in-law">father-in-law</a> = 4478.61 <a href="/wiki/conform" title="conform">conform</a> = 4477.03 <a href="/wiki/particle" title="particle">particle</a> = 4476.23 <a href="/wiki/railways" title="railways">railways</a> = 4476.23 <a href="/wiki/stupendous" title="stupendous">stupendous</a> = 4476.23 <a href="/wiki/paddle" title="paddle">paddle</a> = 4474.65 <a href="/wiki/innate" title="innate">innate</a> = 4473.86 <a href="/wiki/reformation" title="reformation">reformation</a> = 4473.07 <a href="/wiki/volley" title="volley">volley</a> = 4471.49 <a href="/wiki/statistics" title="statistics">statistics</a> = 4470.70 <a href="/wiki/agrees" title="agrees">agrees</a> = 4469.11 <a href="/wiki/simpler" title="simpler">simpler</a> = 4469.11 <a href="/wiki/padre" title="padre">padre</a> = 4468.32 <a href="/wiki/congratulations" title="congratulations">congratulations</a> = 4467.53 <a href="/wiki/lids" title="lids">lids</a> = 4466.74 <a href="/wiki/muse" title="muse">muse</a> = 4466.74 <a href="/wiki/inhabitant" title="inhabitant">inhabitant</a> = 4465.95 <a href="/w/index.php?title=ishmael&amp;action=edit&amp;redlink=1" class="new" title="ishmael (page does not exist)">ishmael</a> = 4465.16 <a href="/wiki/rustle" title="rustle">rustle</a> = 4465.16 <a href="/wiki/clump" title="clump">clump</a> = 4464.37 <a href="/wiki/calendar" title="calendar">calendar</a> = 4463.58 <a href="/wiki/flute" title="flute">flute</a> = 4463.58 <a href="/wiki/inaccessible" title="inaccessible">inaccessible</a> = 4461.99 <a href="/wiki/yore" title="yore">yore</a> = 4461.20 <a href="/wiki/jay" title="jay">jay</a> = 4459.62 <a href="/wiki/repulsive" title="repulsive">repulsive</a> = 4459.62 <a href="/wiki/fray" title="fray">fray</a> = 4458.04 <a href="/wiki/po" title="po">po</a> = 4456.46 <a href="/wiki/nomination" title="nomination">nomination</a> = 4454.08 <a href="/wiki/conclusive" title="conclusive">conclusive</a> = 4453.29 <a href="/wiki/peaceable" title="peaceable">peaceable</a> = 4453.29 <a href="/wiki/beth" title="beth">beth</a> = 4452.50 <a href="/wiki/inconceivable" title="inconceivable">inconceivable</a> = 4452.50 <a href="/wiki/e%27en" title="e'en">e'en</a> = 4450.92 <a href="/wiki/emerald" title="emerald">emerald</a> = 4450.13 <a href="/wiki/lava" title="lava">lava</a> = 4450.13 <a href="/wiki/trillion" title="trillion">trillion</a> = 4448.54 <a href="/wiki/uppermost" title="uppermost">uppermost</a> = 4448.54 <a href="/wiki/arduous" title="arduous">arduous</a> = 4447.75 <a href="/wiki/lyric" title="lyric">lyric</a> = 4446.96 <a href="/wiki/downright" title="downright">downright</a> = 4446.17 <a href="/wiki/reproduction" title="reproduction">reproduction</a> = 4444.59 <a href="/wiki/foresight" title="foresight">foresight</a> = 4443.01 <a href="/wiki/consistency" title="consistency">consistency</a> = 4442.22 <a href="/wiki/ape" title="ape">ape</a> = 4441.42 <a href="/wiki/senators" title="senators">senators</a> = 4439.05 <a href="/wiki/pallor" title="pallor">pallor</a> = 4437.47 <a href="/wiki/span" title="span">span</a> = 4436.68 <a href="/wiki/salad" title="salad">salad</a> = 4431.93 <a href="/wiki/snuff" title="snuff">snuff</a> = 4431.93 <a href="/wiki/drooped" title="drooped">drooped</a> = 4431.14 <a href="/wiki/greetings" title="greetings">greetings</a> = 4431.14 <a href="/wiki/chestnut" title="chestnut">chestnut</a> = 4427.98 <a href="/wiki/inquisitive" title="inquisitive">inquisitive</a> = 4427.98 <a href="/wiki/vicar" title="vicar">vicar</a> = 4427.98 <a href="/wiki/noel" title="noel">noel</a> = 4426.39 <a href="/wiki/attic" title="attic">attic</a> = 4425.60 <a href="/wiki/savings" title="savings">savings</a> = 4425.60 <a href="/wiki/affirmative" title="affirmative">affirmative</a> = 4424.02 <a href="/wiki/ills" title="ills">ills</a> = 4422.44 <a href="/wiki/applications" title="applications">applications</a> = 4421.65 <a href="/wiki/t" title="t">t</a> = 4421.65 <a href="/wiki/dye" title="dye">dye</a> = 4420.06 <a href="/w/index.php?title=gloucester&amp;action=edit&amp;redlink=1" class="new" title="gloucester (page does not exist)">gloucester</a> = 4420.06 <a href="/wiki/nominal" title="nominal">nominal</a> = 4417.69 <a href="/wiki/demonstrate" title="demonstrate">demonstrate</a> = 4414.53 <a href="/wiki/dispense" title="dispense">dispense</a> = 4414.53 <a href="/wiki/dissatisfaction" title="dissatisfaction">dissatisfaction</a> = 4414.53 <a href="/wiki/merciless" title="merciless">merciless</a> = 4414.53 <a href="/wiki/trusty" title="trusty">trusty</a> = 4414.53 <a href="/wiki/coloring" title="coloring">coloring</a> = 4412.15 <a href="/wiki/perusal" title="perusal">perusal</a> = 4412.15 <a href="/wiki/plaintive" title="plaintive">plaintive</a> = 4412.15 <a href="/wiki/discarded" title="discarded">discarded</a> = 4410.57 <a href="/wiki/precarious" title="precarious">precarious</a> = 4408.20 <a href="/wiki/infection" title="infection">infection</a> = 4406.61 <a href="/wiki/ruinous" title="ruinous">ruinous</a> = 4405.03 <a href="/wiki/bolts" title="bolts">bolts</a> = 4404.24 <a href="/wiki/arithmetic" title="arithmetic">arithmetic</a> = 4402.66 <a href="/wiki/considerate" title="considerate">considerate</a> = 4402.66 <a href="/wiki/lark" title="lark">lark</a> = 4401.87 <a href="/wiki/ethics" title="ethics">ethics</a> = 4401.08 <a href="/wiki/conventions" title="conventions">conventions</a> = 4400.29 <a href="/wiki/stumbling" title="stumbling">stumbling</a> = 4400.29 <a href="/wiki/pitcher" title="pitcher">pitcher</a> = 4399.49 <a href="/wiki/slips" title="slips">slips</a> = 4399.49 <a href="/wiki/seine" title="seine">seine</a> = 4398.70 <a href="/wiki/officially" title="officially">officially</a> = 4396.33 <a href="/w/index.php?title=danube&amp;action=edit&amp;redlink=1" class="new" title="danube (page does not exist)">danube</a> = 4395.54 <a href="/wiki/annoy" title="annoy">annoy</a> = 4393.96 <a href="/wiki/glide" title="glide">glide</a> = 4392.37 <a href="/wiki/impunity" title="impunity">impunity</a> = 4390.79 <a href="/wiki/amends" title="amends">amends</a> = 4390.00 <a href="/wiki/sol" title="sol">sol</a> = 4389.21 <a href="/wiki/conveying" title="conveying">conveying</a> = 4386.05</p>
440
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=107" title="Edit section: 9501 - 9600">edit</a>]</span> <span class="mw-headline" id="9501_-_9600">9501 - 9600</span></h5>
441
+ <p><a href="/wiki/abandonment" title="abandonment">abandonment</a> = 4385.25 <a href="/wiki/mane" title="mane">mane</a> = 4384.46 <a href="/wiki/tinge" title="tinge">tinge</a> = 4384.46 <a href="/wiki/brim" title="brim">brim</a> = 4382.09 <a href="/wiki/forenoon" title="forenoon">forenoon</a> = 4380.51 <a href="/wiki/seventy-five" title="seventy-five">seventy-five</a> = 4380.51 <a href="/wiki/sparkle" title="sparkle">sparkle</a> = 4380.51 <a href="/wiki/syllables" title="syllables">syllables</a> = 4380.51 <a href="/wiki/shrug" title="shrug">shrug</a> = 4377.34 <a href="/wiki/enchantment" title="enchantment">enchantment</a> = 4375.76 <a href="/w/index.php?title=franz&amp;action=edit&amp;redlink=1" class="new" title="franz (page does not exist)">franz</a> = 4375.76 <a href="/wiki/trait" title="trait">trait</a> = 4375.76 <a href="/wiki/bribe" title="bribe">bribe</a> = 4374.97 <a href="/wiki/composer" title="composer">composer</a> = 4373.39 <a href="/wiki/preparatory" title="preparatory">preparatory</a> = 4373.39 <a href="/wiki/audacious" title="audacious">audacious</a> = 4372.60 <a href="/wiki/outskirts" title="outskirts">outskirts</a> = 4372.60 <a href="/wiki/soiled" title="soiled">soiled</a> = 4372.60 <a href="/wiki/fiddle" title="fiddle">fiddle</a> = 4371.01 <a href="/wiki/football" title="football">football</a> = 4370.22 <a href="/w/index.php?title=isaiah&amp;action=edit&amp;redlink=1" class="new" title="isaiah (page does not exist)">isaiah</a> = 4370.22 <a href="/wiki/partnership" title="partnership">partnership</a> = 4370.22 <a href="/wiki/continuation" title="continuation">continuation</a> = 4368.64 <a href="/wiki/pioneer" title="pioneer">pioneer</a> = 4368.64 <a href="/wiki/vest" title="vest">vest</a> = 4367.85 <a href="/wiki/bass" title="bass">bass</a> = 4367.06 <a href="/wiki/derby" title="derby">derby</a> = 4367.06 <a href="/wiki/quarry" title="quarry">quarry</a> = 4367.06 <a href="/wiki/rigging" title="rigging">rigging</a> = 4367.06 <a href="/wiki/dizzy" title="dizzy">dizzy</a> = 4366.27 <a href="/wiki/abnormal" title="abnormal">abnormal</a> = 4365.48 <a href="/wiki/omission" title="omission">omission</a> = 4364.68 <a href="/wiki/idolatry" title="idolatry">idolatry</a> = 4363.89 <a href="/wiki/sequence" title="sequence">sequence</a> = 4363.89 <a href="/wiki/squeeze" title="squeeze">squeeze</a> = 4362.31 <a href="/wiki/cabbage" title="cabbage">cabbage</a> = 4360.73 <a href="/wiki/canopy" title="canopy">canopy</a> = 4360.73 <a href="/wiki/athletic" title="athletic">athletic</a> = 4359.94 <a href="/w/index.php?title=shirley&amp;action=edit&amp;redlink=1" class="new" title="shirley (page does not exist)">shirley</a> = 4359.94 <a href="/wiki/drunkenness" title="drunkenness">drunkenness</a> = 4359.15 <a href="/wiki/intrusion" title="intrusion">intrusion</a> = 4358.36 <a href="/wiki/%27cause" title="'cause">'cause</a> = 4355.98 <a href="/wiki/assign" title="assign">assign</a> = 4355.19 <a href="/wiki/tackle" title="tackle">tackle</a> = 4354.40 <a href="/wiki/dreamt" title="dreamt">dreamt</a> = 4353.61 <a href="/wiki/sceptre" title="sceptre">sceptre</a> = 4352.82 <a href="/wiki/exacting" title="exacting">exacting</a> = 4352.03 <a href="/wiki/parched" title="parched">parched</a> = 4349.65 <a href="/wiki/eddy" title="eddy">eddy</a> = 4347.28 <a href="/wiki/percentage" title="percentage">percentage</a> = 4346.49 <a href="/wiki/twinkle" title="twinkle">twinkle</a> = 4342.53 <a href="/wiki/curb" title="curb">curb</a> = 4340.95 <a href="/wiki/sandstone" title="sandstone">sandstone</a> = 4340.16 <a href="/wiki/invaluable" title="invaluable">invaluable</a> = 4337.79 <a href="/wiki/fathom" title="fathom">fathom</a> = 4336.20 <a href="/wiki/preferable" title="preferable">preferable</a> = 4336.20 <a href="/w/index.php?title=adelaide&amp;action=edit&amp;redlink=1" class="new" title="adelaide (page does not exist)">adelaide</a> = 4334.62 <a href="/wiki/advertising" title="advertising">advertising</a> = 4332.25 <a href="/wiki/scraps" title="scraps">scraps</a> = 4330.67 <a href="/wiki/lever" title="lever">lever</a> = 4329.08 <a href="/wiki/muster" title="muster">muster</a> = 4328.29 <a href="/wiki/cavity" title="cavity">cavity</a> = 4324.34 <a href="/wiki/barbarian" title="barbarian">barbarian</a> = 4322.75 <a href="/wiki/sleepless" title="sleepless">sleepless</a> = 4322.75 <a href="/wiki/fried" title="fried">fried</a> = 4320.38 <a href="/wiki/abstraction" title="abstraction">abstraction</a> = 4319.59 <a href="/wiki/forefinger" title="forefinger">forefinger</a> = 4319.59 <a href="/wiki/spade" title="spade">spade</a> = 4319.59 <a href="/wiki/erection" title="erection">erection</a> = 4318.80 <a href="/wiki/scorned" title="scorned">scorned</a> = 4318.80 <a href="/wiki/pail" title="pail">pail</a> = 4317.22 <a href="/wiki/withdrawal" title="withdrawal">withdrawal</a> = 4317.22 <a href="/wiki/senator" title="senator">senator</a> = 4315.63 <a href="/wiki/mortgage" title="mortgage">mortgage</a> = 4314.84 <a href="/wiki/ancestral" title="ancestral">ancestral</a> = 4311.68 <a href="/wiki/succour" title="succour">succour</a> = 4310.89 <a href="/wiki/ma" title="ma">ma</a> = 4309.31 <a href="/wiki/forbearance" title="forbearance">forbearance</a> = 4308.51 <a href="/wiki/repress" title="repress">repress</a> = 4308.51 <a href="/wiki/spouse" title="spouse">spouse</a> = 4305.35 <a href="/wiki/valid" title="valid">valid</a> = 4304.56 <a href="/wiki/witchcraft" title="witchcraft">witchcraft</a> = 4303.77 <a href="/wiki/workmanship" title="workmanship">workmanship</a> = 4302.98 <a href="/wiki/legacy" title="legacy">legacy</a> = 4300.60 <a href="/wiki/proximity" title="proximity">proximity</a> = 4300.60 <a href="/w/index.php?title=bombay&amp;action=edit&amp;redlink=1" class="new" title="bombay (page does not exist)">bombay</a> = 4299.81 <a href="/wiki/paula" title="paula">paula</a> = 4299.81 <a href="/wiki/incorporated" title="incorporated">incorporated</a> = 4298.23 <a href="/wiki/muzzle" title="muzzle">muzzle</a> = 4297.44 <a href="/w/index.php?title=reuben&amp;action=edit&amp;redlink=1" class="new" title="reuben (page does not exist)">reuben</a> = 4296.65 <a href="/wiki/clusters" title="clusters">clusters</a> = 4293.48 <a href="/wiki/valve" title="valve">valve</a> = 4291.11 <a href="/wiki/compelling" title="compelling">compelling</a> = 4290.32 <a href="/wiki/dissipated" title="dissipated">dissipated</a> = 4289.53 <a href="/wiki/flickering" title="flickering">flickering</a> = 4287.15 <a href="/wiki/guinea" title="guinea">guinea</a> = 4286.36 <a href="/wiki/sup" title="sup">sup</a> = 4286.36 <a href="/wiki/tarry" title="tarry">tarry</a> = 4286.36 <a href="/wiki/derision" title="derision">derision</a> = 4285.57 <a href="/wiki/vehicles" title="vehicles">vehicles</a> = 4283.20</p>
442
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=108" title="Edit section: 9601 - 9700">edit</a>]</span> <span class="mw-headline" id="9601_-_9700">9601 - 9700</span></h5>
443
+ <p><a href="/wiki/accommodate" title="accommodate">accommodate</a> = 4282.41 <a href="/wiki/glossy" title="glossy">glossy</a> = 4282.41 <a href="/wiki/iris" title="iris">iris</a> = 4278.45 <a href="/wiki/relic" title="relic">relic</a> = 4277.66 <a href="/wiki/ant" title="ant">ant</a> = 4276.08 <a href="/wiki/heath" title="heath">heath</a> = 4269.75 <a href="/wiki/bug" title="bug">bug</a> = 4266.58 <a href="/wiki/vocal" title="vocal">vocal</a> = 4265.00 <a href="/wiki/downfall" title="downfall">downfall</a> = 4262.63 <a href="/wiki/construct" title="construct">construct</a> = 4261.05 <a href="/wiki/undue" title="undue">undue</a> = 4261.05 <a href="/wiki/vapor" title="vapor">vapor</a> = 4261.05 <a href="/wiki/bat" title="bat">bat</a> = 4259.46 <a href="/wiki/whimsical" title="whimsical">whimsical</a> = 4259.46 <a href="/wiki/contradictory" title="contradictory">contradictory</a> = 4255.51 <a href="/wiki/unlocked" title="unlocked">unlocked</a> = 4255.51 <a href="/wiki/foretold" title="foretold">foretold</a> = 4250.76 <a href="/wiki/automatic" title="automatic">automatic</a> = 4249.97 <a href="/wiki/explicit" title="explicit">explicit</a> = 4249.18 <a href="/wiki/indolent" title="indolent">indolent</a> = 4248.39 <a href="/wiki/mates" title="mates">mates</a> = 4247.60 <a href="/wiki/artful" title="artful">artful</a> = 4243.64 <a href="/wiki/downcast" title="downcast">downcast</a> = 4242.85 <a href="/wiki/well-being" title="well-being">well-being</a> = 4241.27 <a href="/w/index.php?title=winston&amp;action=edit&amp;redlink=1" class="new" title="winston (page does not exist)">winston</a> = 4241.27 <a href="/wiki/ordinances" title="ordinances">ordinances</a> = 4240.48 <a href="/w/index.php?title=catharine&amp;action=edit&amp;redlink=1" class="new" title="catharine (page does not exist)">catharine</a> = 4239.69 <a href="/wiki/effectively" title="effectively">effectively</a> = 4239.69 <a href="/wiki/missions" title="missions">missions</a> = 4239.69 <a href="/wiki/stalk" title="stalk">stalk</a> = 4239.69 <a href="/wiki/indistinct" title="indistinct">indistinct</a> = 4238.89 <a href="/wiki/pregnant" title="pregnant">pregnant</a> = 4236.52 <a href="/wiki/reddish" title="reddish">reddish</a> = 4236.52 <a href="/wiki/coveted" title="coveted">coveted</a> = 4235.73 <a href="/wiki/fret" title="fret">fret</a> = 4234.94 <a href="/wiki/peeping" title="peeping">peeping</a> = 4234.15 <a href="/wiki/buck" title="buck">buck</a> = 4233.36 <a href="/wiki/sumptuous" title="sumptuous">sumptuous</a> = 4232.56 <a href="/wiki/indefinitely" title="indefinitely">indefinitely</a> = 4231.77 <a href="/wiki/reliance" title="reliance">reliance</a> = 4230.98 <a href="/wiki/panama" title="panama">panama</a> = 4230.19 <a href="/wiki/cocked" title="cocked">cocked</a> = 4229.40 <a href="/wiki/dad" title="dad">dad</a> = 4226.24 <a href="/wiki/everyday" title="everyday">everyday</a> = 4224.65 <a href="/wiki/intoxication" title="intoxication">intoxication</a> = 4221.49 <a href="/wiki/aghast" title="aghast">aghast</a> = 4219.12 <a href="/wiki/subterranean" title="subterranean">subterranean</a> = 4218.32 <a href="/wiki/turmoil" title="turmoil">turmoil</a> = 4218.32 <a href="/wiki/forfeit" title="forfeit">forfeit</a> = 4215.16 <a href="/wiki/chasm" title="chasm">chasm</a> = 4214.37 <a href="/wiki/inspect" title="inspect">inspect</a> = 4212.79 <a href="/wiki/perverse" title="perverse">perverse</a> = 4212.79 <a href="/wiki/precipitate" title="precipitate">precipitate</a> = 4212.79 <a href="/wiki/dover" title="dover">dover</a> = 4212.00 <a href="/wiki/ambush" title="ambush">ambush</a> = 4210.41 <a href="/wiki/evermore" title="evermore">evermore</a> = 4210.41 <a href="/w/index.php?title=mass.&amp;action=edit&amp;redlink=1" class="new" title="mass. (page does not exist)">mass.</a> = 4210.41 <a href="/wiki/blot" title="blot">blot</a> = 4209.62 <a href="/wiki/nook" title="nook">nook</a> = 4209.62 <a href="/wiki/verdure" title="verdure">verdure</a> = 4209.62 <a href="/wiki/parapet" title="parapet">parapet</a> = 4208.83 <a href="/wiki/jake" title="jake">jake</a> = 4208.04 <a href="/wiki/cessation" title="cessation">cessation</a> = 4207.25 <a href="/wiki/ankle" title="ankle">ankle</a> = 4206.46 <a href="/wiki/classification" title="classification">classification</a> = 4206.46 <a href="/wiki/fervently" title="fervently">fervently</a> = 4206.46 <a href="/wiki/oddly" title="oddly">oddly</a> = 4205.67 <a href="/wiki/haul" title="haul">haul</a> = 4204.08 <a href="/w/index.php?title=saxony&amp;action=edit&amp;redlink=1" class="new" title="saxony (page does not exist)">saxony</a> = 4203.29 <a href="/wiki/embarrassing" title="embarrassing">embarrassing</a> = 4202.50 <a href="/wiki/hairy" title="hairy">hairy</a> = 4200.92 <a href="/wiki/northwest" title="northwest">northwest</a> = 4200.92 <a href="/wiki/disabled" title="disabled">disabled</a> = 4199.34 <a href="/wiki/laurel" title="laurel">laurel</a> = 4199.34 <a href="/w/index.php?title=preston&amp;action=edit&amp;redlink=1" class="new" title="preston (page does not exist)">preston</a> = 4198.55 <a href="/wiki/arrogant" title="arrogant">arrogant</a> = 4196.96 <a href="/wiki/hurts" title="hurts">hurts</a> = 4196.96 <a href="/wiki/demonstrations" title="demonstrations">demonstrations</a> = 4195.38 <a href="/wiki/splash" title="splash">splash</a> = 4195.38 <a href="/wiki/curl" title="curl">curl</a> = 4194.59 <a href="/wiki/livelihood" title="livelihood">livelihood</a> = 4193.80 <a href="/wiki/wary" title="wary">wary</a> = 4193.80 <a href="/wiki/scattering" title="scattering">scattering</a> = 4193.01 <a href="/wiki/brace" title="brace">brace</a> = 4192.22 <a href="/wiki/converts" title="converts">converts</a> = 4190.63 <a href="/wiki/detestable" title="detestable">detestable</a> = 4190.63 <a href="/w/index.php?title=143&amp;action=edit&amp;redlink=1" class="new" title="143 (page does not exist)">143</a> = 4189.05 <a href="/wiki/abandoning" title="abandoning">abandoning</a> = 4189.05 <a href="/wiki/somerset" title="somerset">somerset</a> = 4189.05 <a href="/wiki/weakly" title="weakly">weakly</a> = 4189.05 <a href="/wiki/clothe" title="clothe">clothe</a> = 4188.26 <a href="/wiki/gem" title="gem">gem</a> = 4187.47 <a href="/wiki/tremor" title="tremor">tremor</a> = 4185.89 <a href="/wiki/surveying" title="surveying">surveying</a> = 4184.31 <a href="/wiki/variable" title="variable">variable</a> = 4183.51 <a href="/wiki/anniversary" title="anniversary">anniversary</a> = 4175.60 <a href="/wiki/thirty-two" title="thirty-two">thirty-two</a> = 4174.81 <a href="/wiki/wrap" title="wrap">wrap</a> = 4174.02 <a href="/wiki/curly" title="curly">curly</a> = 4171.65 <a href="/wiki/diversity" title="diversity">diversity</a> = 4170.86</p>
444
+ <p><br /></p>
445
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=109" title="Edit section: 9701 - 9800">edit</a>]</span> <span class="mw-headline" id="9701_-_9800">9701 - 9800</span></h5>
446
+ <p><a href="/wiki/prestige" title="prestige">prestige</a> = 4170.86 <a href="/wiki/desertion" title="desertion">desertion</a> = 4170.07 <a href="/wiki/freezing" title="freezing">freezing</a> = 4170.07 <a href="/wiki/heedless" title="heedless">heedless</a> = 4170.07 <a href="/wiki/sentry" title="sentry">sentry</a> = 4170.07 <a href="/wiki/believer" title="believer">believer</a> = 4169.27 <a href="/wiki/ram" title="ram">ram</a> = 4169.27 <a href="/wiki/rowing" title="rowing">rowing</a> = 4169.27 <a href="/wiki/negligence" title="negligence">negligence</a> = 4168.48 <a href="/wiki/self-" title="self-">self-</a> = 4168.48 <a href="/wiki/sulphur" title="sulphur">sulphur</a> = 4167.69 <a href="/wiki/discrimination" title="discrimination">discrimination</a> = 4166.90 <a href="/wiki/cooling" title="cooling">cooling</a> = 4162.95 <a href="/wiki/millionaire" title="millionaire">millionaire</a> = 4162.95 <a href="/wiki/flowering" title="flowering">flowering</a> = 4161.36 <a href="/wiki/meridian" title="meridian">meridian</a> = 4161.36 <a href="/wiki/wins" title="wins">wins</a> = 4161.36 <a href="/wiki/awed" title="awed">awed</a> = 4159.78 <a href="/wiki/beastly" title="beastly">beastly</a> = 4159.78 <a href="/wiki/nuisance" title="nuisance">nuisance</a> = 4158.99 <a href="/wiki/abstain" title="abstain">abstain</a> = 4158.20 <a href="/wiki/continental" title="continental">continental</a> = 4158.20 <a href="/wiki/stanza" title="stanza">stanza</a> = 4157.41 <a href="/wiki/target" title="target">target</a> = 4156.62 <a href="/wiki/unwonted" title="unwonted">unwonted</a> = 4156.62 <a href="/wiki/whit" title="whit">whit</a> = 4155.82 <a href="/w/index.php?title=jason&amp;action=edit&amp;redlink=1" class="new" title="jason (page does not exist)">jason</a> = 4153.45 <a href="/wiki/stall" title="stall">stall</a> = 4152.66 <a href="/wiki/sham" title="sham">sham</a> = 4151.87 <a href="/wiki/dictate" title="dictate">dictate</a> = 4151.08 <a href="/wiki/empress" title="empress">empress</a> = 4151.08 <a href="/wiki/gout" title="gout">gout</a> = 4151.08 <a href="/wiki/jobs" title="jobs">jobs</a> = 4151.08 <a href="/wiki/manure" title="manure">manure</a> = 4151.08 <a href="/wiki/nigel" title="nigel" class="mw-redirect">nigel</a> = 4151.08 <a href="/wiki/sidewalk" title="sidewalk">sidewalk</a> = 4150.29 <a href="/wiki/sate" title="sate">sate</a> = 4148.70 <a href="/wiki/grievance" title="grievance">grievance</a> = 4147.91 <a href="/wiki/axes" title="axes">axes</a> = 4147.12 <a href="/wiki/bony" title="bony">bony</a> = 4146.33 <a href="/wiki/invest" title="invest">invest</a> = 4146.33 <a href="/w/index.php?title=birmingham&amp;action=edit&amp;redlink=1" class="new" title="birmingham (page does not exist)">birmingham</a> = 4143.96 <a href="/wiki/ebb" title="ebb">ebb</a> = 4143.96 <a href="/wiki/rabble" title="rabble">rabble</a> = 4140.79 <a href="/wiki/restlessness" title="restlessness">restlessness</a> = 4140.00 <a href="/wiki/cruise" title="cruise">cruise</a> = 4137.63 <a href="/wiki/rally" title="rally">rally</a> = 4136.84 <a href="/wiki/rumor" title="rumor">rumor</a> = 4135.26 <a href="/wiki/hysterical" title="hysterical">hysterical</a> = 4132.88 <a href="/wiki/girlish" title="girlish">girlish</a> = 4130.51 <a href="/wiki/actively" title="actively">actively</a> = 4129.72 <a href="/wiki/shortest" title="shortest">shortest</a> = 4129.72 <a href="/w/index.php?title=marseilles&amp;action=edit&amp;redlink=1" class="new" title="marseilles (page does not exist)">marseilles</a> = 4128.93 <a href="/wiki/cheque" title="cheque">cheque</a> = 4128.14 <a href="/wiki/disregarded" title="disregarded">disregarded</a> = 4127.34 <a href="/wiki/retort" title="retort">retort</a> = 4127.34 <a href="/wiki/rocking" title="rocking">rocking</a> = 4127.34 <a href="/wiki/emerge" title="emerge">emerge</a> = 4125.76 <a href="/wiki/perch" title="perch">perch</a> = 4124.18 <a href="/wiki/flask" title="flask">flask</a> = 4123.39 <a href="/wiki/ka" title="ka">ka</a> = 4123.39 <a href="/wiki/countryman" title="countryman">countryman</a> = 4121.81 <a href="/wiki/lonesome" title="lonesome">lonesome</a> = 4121.81 <a href="/wiki/manned" title="manned">manned</a> = 4121.01 <a href="/wiki/unarmed" title="unarmed">unarmed</a> = 4121.01 <a href="/wiki/wast" title="wast">wast</a> = 4121.01 <a href="/wiki/frog" title="frog">frog</a> = 4119.43 <a href="/wiki/twenty-eight" title="twenty-eight">twenty-eight</a> = 4119.43 <a href="/wiki/unscrupulous" title="unscrupulous">unscrupulous</a> = 4119.43 <a href="/wiki/yarn" title="yarn">yarn</a> = 4119.43 <a href="/wiki/victuals" title="victuals">victuals</a> = 4118.64 <a href="/wiki/outrageous" title="outrageous">outrageous</a> = 4117.85 <a href="/wiki/appropriation" title="appropriation">appropriation</a> = 4114.69 <a href="/wiki/foolishness" title="foolishness">foolishness</a> = 4114.69 <a href="/wiki/quickness" title="quickness">quickness</a> = 4114.69 <a href="/wiki/adversity" title="adversity">adversity</a> = 4113.89 <a href="/wiki/parma" title="parma">parma</a> = 4112.31 <a href="/wiki/diseased" title="diseased">diseased</a> = 4111.52 <a href="/w/index.php?title=iliad&amp;action=edit&amp;redlink=1" class="new" title="iliad (page does not exist)">iliad</a> = 4109.94 <a href="/wiki/salutary" title="salutary">salutary</a> = 4109.94 <a href="/wiki/smelt" title="smelt">smelt</a> = 4108.36 <a href="/wiki/territorial" title="territorial">territorial</a> = 4108.36 <a href="/wiki/hurricane" title="hurricane">hurricane</a> = 4107.57 <a href="/wiki/irons" title="irons">irons</a> = 4106.77 <a href="/wiki/canyon" title="canyon">canyon</a> = 4105.98 <a href="/w/index.php?title=jeremiah&amp;action=edit&amp;redlink=1" class="new" title="jeremiah (page does not exist)">jeremiah</a> = 4105.98 <a href="/w/index.php?title=brooklyn&amp;action=edit&amp;redlink=1" class="new" title="brooklyn (page does not exist)">brooklyn</a> = 4105.19 <a href="/wiki/indulging" title="indulging">indulging</a> = 4105.19 <a href="/wiki/vapour" title="vapour">vapour</a> = 4104.40 <a href="/wiki/disobedience" title="disobedience">disobedience</a> = 4103.61 <a href="/wiki/atrocious" title="atrocious">atrocious</a> = 4102.82 <a href="/wiki/leaps" title="leaps">leaps</a> = 4102.03 <a href="/wiki/tapestry" title="tapestry">tapestry</a> = 4099.65 <a href="/wiki/provocation" title="provocation">provocation</a> = 4098.86 <a href="/wiki/twenty-six" title="twenty-six">twenty-six</a> = 4098.86 <a href="/wiki/impotent" title="impotent">impotent</a> = 4098.07 <a href="/wiki/smite" title="smite">smite</a> = 4093.33 <a href="/wiki/acquitted" title="acquitted">acquitted</a> = 4090.95 <a href="/wiki/os" title="os">os</a> = 4090.16 <a href="/wiki/tumultuous" title="tumultuous">tumultuous</a> = 4090.16</p>
447
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=110" title="Edit section: 9801 - 9900">edit</a>]</span> <span class="mw-headline" id="9801_-_9900">9801 - 9900</span></h5>
448
+ <p><a href="/wiki/barge" title="barge">barge</a> = 4089.37 <a href="/wiki/palpable" title="palpable">palpable</a> = 4087.79 <a href="/wiki/apprentice" title="apprentice">apprentice</a> = 4087.00 <a href="/wiki/lances" title="lances">lances</a> = 4086.21 <a href="/wiki/compartment" title="compartment">compartment</a> = 4085.41 <a href="/wiki/godly" title="godly">godly</a> = 4085.41 <a href="/wiki/sarcastic" title="sarcastic">sarcastic</a> = 4085.41 <a href="/wiki/therefrom" title="therefrom">therefrom</a> = 4085.41 <a href="/wiki/specifically" title="specifically">specifically</a> = 4084.62 <a href="/wiki/uniformity" title="uniformity">uniformity</a> = 4083.83 <a href="/wiki/emerging" title="emerging">emerging</a> = 4083.04 <a href="/wiki/atonement" title="atonement">atonement</a> = 4082.25 <a href="/wiki/whereabouts" title="whereabouts">whereabouts</a> = 4082.25 <a href="/w/index.php?title=davy&amp;action=edit&amp;redlink=1" class="new" title="davy (page does not exist)">davy</a> = 4081.46 <a href="/wiki/framework" title="framework">framework</a> = 4081.46 <a href="/wiki/sponge" title="sponge">sponge</a> = 4081.46 <a href="/wiki/mountainous" title="mountainous">mountainous</a> = 4080.67 <a href="/wiki/annoying" title="annoying">annoying</a> = 4079.08 <a href="/wiki/cot" title="cot">cot</a> = 4079.08 <a href="/wiki/squirrel" title="squirrel">squirrel</a> = 4079.08 <a href="/wiki/wand" title="wand">wand</a> = 4076.71 <a href="/wiki/grind" title="grind">grind</a> = 4075.92 <a href="/wiki/bang" title="bang">bang</a> = 4075.13 <a href="/wiki/unreal" title="unreal">unreal</a> = 4075.13 <a href="/wiki/blacksmith" title="blacksmith">blacksmith</a> = 4074.34 <a href="/wiki/injunction" title="injunction">injunction</a> = 4072.76 <a href="/wiki/scarcity" title="scarcity">scarcity</a> = 4071.96 <a href="/wiki/withhold" title="withhold">withhold</a> = 4071.96 <a href="/wiki/outright" title="outright">outright</a> = 4070.38 <a href="/w/index.php?title=bavaria&amp;action=edit&amp;redlink=1" class="new" title="bavaria (page does not exist)">bavaria</a> = 4069.59 <a href="/wiki/cement" title="cement">cement</a> = 4068.80 <a href="/wiki/growl" title="growl">growl</a> = 4067.22 <a href="/wiki/aggregate" title="aggregate">aggregate</a> = 4066.43 <a href="/wiki/fraction" title="fraction">fraction</a> = 4066.43 <a href="/wiki/exaltation" title="exaltation">exaltation</a> = 4064.05 <a href="/wiki/inexorable" title="inexorable">inexorable</a> = 4063.26 <a href="/wiki/jug" title="jug">jug</a> = 4063.26 <a href="/wiki/purer" title="purer">purer</a> = 4063.26 <a href="/wiki/sap" title="sap">sap</a> = 4063.26 <a href="/wiki/illegal" title="illegal">illegal</a> = 4062.47 <a href="/wiki/sister-in-law" title="sister-in-law">sister-in-law</a> = 4061.68 <a href="/wiki/presses" title="presses">presses</a> = 4060.89 <a href="/wiki/stealthily" title="stealthily">stealthily</a> = 4060.89 <a href="/wiki/dissolve" title="dissolve">dissolve</a> = 4060.10 <a href="/wiki/volcano" title="volcano">volcano</a> = 4059.31 <a href="/w/index.php?title=hungarian&amp;action=edit&amp;redlink=1" class="new" title="hungarian (page does not exist)">hungarian</a> = 4057.72 <a href="/wiki/equilibrium" title="equilibrium">equilibrium</a> = 4056.93 <a href="/wiki/obstinately" title="obstinately">obstinately</a> = 4056.14 <a href="/wiki/sullenly" title="sullenly">sullenly</a> = 4056.14 <a href="/wiki/assassination" title="assassination">assassination</a> = 4055.35 <a href="/wiki/commissions" title="commissions">commissions</a> = 4054.56 <a href="/wiki/respectability" title="respectability">respectability</a> = 4052.98 <a href="/wiki/bases" title="bases">bases</a> = 4051.40 <a href="/wiki/maxwell" title="maxwell">maxwell</a> = 4050.60 <a href="/wiki/resounded" title="resounded">resounded</a> = 4050.60 <a href="/wiki/closest" title="closest">closest</a> = 4049.81 <a href="/wiki/embroidery" title="embroidery">embroidery</a> = 4049.02 <a href="/wiki/gunpowder" title="gunpowder">gunpowder</a> = 4049.02 <a href="/wiki/reproof" title="reproof">reproof</a> = 4049.02 <a href="/w/index.php?title=yale&amp;action=edit&amp;redlink=1" class="new" title="yale (page does not exist)">yale</a> = 4045.07 <a href="/wiki/combining" title="combining">combining</a> = 4043.48 <a href="/wiki/weaving" title="weaving">weaving</a> = 4041.90 <a href="/wiki/earnings" title="earnings">earnings</a> = 4041.11 <a href="/w/index.php?title=hamburg&amp;action=edit&amp;redlink=1" class="new" title="hamburg (page does not exist)">hamburg</a> = 4039.53 <a href="/wiki/indoors" title="indoors">indoors</a> = 4039.53 <a href="/wiki/manufacturers" title="manufacturers">manufacturers</a> = 4039.53 <a href="/wiki/pitiless" title="pitiless">pitiless</a> = 4039.53 <a href="/wiki/scarf" title="scarf">scarf</a> = 4039.53 <a href="/wiki/picnic" title="picnic">picnic</a> = 4037.95 <a href="/wiki/misled" title="misled">misled</a> = 4035.57 <a href="/wiki/pompous" title="pompous">pompous</a> = 4035.57 <a href="/wiki/brian" title="brian">brian</a> = 4034.78 <a href="/wiki/respite" title="respite">respite</a> = 4033.99 <a href="/wiki/exploit" title="exploit">exploit</a> = 4033.20 <a href="/wiki/tracing" title="tracing">tracing</a> = 4033.20 <a href="/wiki/geological" title="geological">geological</a> = 4031.62 <a href="/wiki/passport" title="passport">passport</a> = 4031.62 <a href="/wiki/confines" title="confines">confines</a> = 4030.83 <a href="/wiki/dishonour" title="dishonour">dishonour</a> = 4029.24 <a href="/wiki/executioner" title="executioner">executioner</a> = 4029.24 <a href="/wiki/township" title="township">township</a> = 4029.24 <a href="/wiki/vacancy" title="vacancy">vacancy</a> = 4029.24 <a href="/wiki/acquiescence" title="acquiescence">acquiescence</a> = 4026.87 <a href="/w/index.php?title=cornwall&amp;action=edit&amp;redlink=1" class="new" title="cornwall (page does not exist)">cornwall</a> = 4026.87 <a href="/wiki/crumbling" title="crumbling">crumbling</a> = 4026.08 <a href="/wiki/three-quarters" title="three-quarters">three-quarters</a> = 4025.29 <a href="/wiki/exploration" title="exploration">exploration</a> = 4022.91 <a href="/wiki/needy" title="needy">needy</a> = 4021.33 <a href="/wiki/stationary" title="stationary">stationary</a> = 4021.33 <a href="/wiki/disconcerted" title="disconcerted">disconcerted</a> = 4020.54 <a href="/wiki/wanderer" title="wanderer">wanderer</a> = 4019.75 <a href="/wiki/beaver" title="beaver">beaver</a> = 4018.17 <a href="/wiki/lookout" title="lookout">lookout</a> = 4015.79 <a href="/wiki/onion" title="onion">onion</a> = 4015.79 <a href="/wiki/depicted" title="depicted">depicted</a> = 4015.00 <a href="/wiki/boisterous" title="boisterous">boisterous</a> = 4014.21 <a href="/wiki/couples" title="couples">couples</a> = 4013.42 <a href="/wiki/speakers" title="speakers">speakers</a> = 4013.42 <a href="/wiki/woollen" title="woollen">woollen</a> = 4012.63 <a href="/wiki/lightness" title="lightness">lightness</a> = 4011.05</p>
449
+ <h5><span class="editsection">[<a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit&amp;section=111" title="Edit section: 9901 - 10000">edit</a>]</span> <span class="mw-headline" id="9901_-_10000">9901 - 10000</span></h5>
450
+ <p><a href="/wiki/bitten" title="bitten">bitten</a> = 4007.88 <a href="/wiki/aux" title="aux">aux</a> = 4007.09 <a href="/wiki/toleration" title="toleration">toleration</a> = 4005.51 <a href="/wiki/lucia" title="lucia">lucia</a> = 4004.72 <a href="/wiki/scar" title="scar">scar</a> = 4004.72 <a href="/wiki/bohemian" title="bohemian">bohemian</a> = 4002.34 <a href="/wiki/vested" title="vested">vested</a> = 4002.34 <a href="/wiki/affinity" title="affinity">affinity</a> = 4001.55 <a href="/w/index.php?title=carlo&amp;action=edit&amp;redlink=1" class="new" title="carlo (page does not exist)">carlo</a> = 4001.55 <a href="/wiki/sous" title="sous">sous</a> = 4001.55 <a href="/wiki/penitent" title="penitent">penitent</a> = 4000.76 <a href="/w/index.php?title=simpson&amp;action=edit&amp;redlink=1" class="new" title="simpson (page does not exist)">simpson</a> = 4000.76 <a href="/wiki/abiding" title="abiding">abiding</a> = 3997.60 <a href="/wiki/ca" title="ca">ca</a> = 3996.02 <a href="/wiki/immoral" title="immoral">immoral</a> = 3996.02 <a href="/wiki/dishonest" title="dishonest">dishonest</a> = 3995.22 <a href="/wiki/yawning" title="yawning">yawning</a> = 3994.43 <a href="/wiki/mustache" title="mustache">mustache</a> = 3992.85 <a href="/wiki/supplement" title="supplement">supplement</a> = 3992.85 <a href="/wiki/whirlwind" title="whirlwind">whirlwind</a> = 3992.85 <a href="/wiki/clash" title="clash">clash</a> = 3991.27 <a href="/w/index.php?title=terence&amp;action=edit&amp;redlink=1" class="new" title="terence (page does not exist)">terence</a> = 3990.48 <a href="/wiki/lamentable" title="lamentable">lamentable</a> = 3989.69 <a href="/w/index.php?title=bennett&amp;action=edit&amp;redlink=1" class="new" title="bennett (page does not exist)">bennett</a> = 3988.90 <a href="/wiki/farthing" title="farthing">farthing</a> = 3987.31 <a href="/wiki/speck" title="speck">speck</a> = 3987.31 <a href="/wiki/biscuit" title="biscuit">biscuit</a> = 3986.52 <a href="/wiki/appellation" title="appellation">appellation</a> = 3985.73 <a href="/w/index.php?title=gdp&amp;action=edit&amp;redlink=1" class="new" title="gdp (page does not exist)">gdp</a> = 3984.94 <a href="/wiki/reserves" title="reserves">reserves</a> = 3983.36 <a href="/wiki/uncouth" title="uncouth">uncouth</a> = 3982.57 <a href="/wiki/birch" title="birch">birch</a> = 3980.98 <a href="/wiki/armchair" title="armchair">armchair</a> = 3980.19 <a href="/w/index.php?title=judy&amp;action=edit&amp;redlink=1" class="new" title="judy (page does not exist)">judy</a> = 3980.19 <a href="/wiki/greasy" title="greasy">greasy</a> = 3978.61 <a href="/wiki/leaden" title="leaden">leaden</a> = 3978.61 <a href="/wiki/dough" title="dough">dough</a> = 3977.03 <a href="/wiki/lining" title="lining">lining</a> = 3976.24 <a href="/wiki/cleverness" title="cleverness">cleverness</a> = 3971.49 <a href="/wiki/ascetic" title="ascetic">ascetic</a> = 3969.91 <a href="/wiki/clutch" title="clutch">clutch</a> = 3969.12 <a href="/w/index.php?title=krishna&amp;action=edit&amp;redlink=1" class="new" title="krishna (page does not exist)">krishna</a> = 3969.12 <a href="/wiki/embark" title="embark">embark</a> = 3968.33 <a href="/wiki/quotations" title="quotations">quotations</a> = 3968.33 <a href="/wiki/friendliness" title="friendliness">friendliness</a> = 3967.53 <a href="/wiki/liberally" title="liberally">liberally</a> = 3967.53 <a href="/wiki/trance" title="trance">trance</a> = 3965.16 <a href="/wiki/untrue" title="untrue">untrue</a> = 3965.16 <a href="/wiki/rejection" title="rejection">rejection</a> = 3964.37 <a href="/wiki/grating" title="grating">grating</a> = 3962.79 <a href="/w/index.php?title=hanover&amp;action=edit&amp;redlink=1" class="new" title="hanover (page does not exist)">hanover</a> = 3961.21 <a href="/wiki/inexperienced" title="inexperienced">inexperienced</a> = 3961.21 <a href="/wiki/mon" title="mon">mon</a> = 3960.41 <a href="/wiki/wintry" title="wintry">wintry</a> = 3960.41 <a href="/wiki/stalwart" title="stalwart">stalwart</a> = 3958.83 <a href="/wiki/meats" title="meats">meats</a> = 3958.04 <a href="/wiki/stamping" title="stamping">stamping</a> = 3956.46 <a href="/wiki/variance" title="variance">variance</a> = 3956.46 <a href="/wiki/apiece" title="apiece">apiece</a> = 3954.88 <a href="/wiki/firmament" title="firmament">firmament</a> = 3954.88 <a href="/wiki/absorption" title="absorption">absorption</a> = 3953.29 <a href="/wiki/apprehensive" title="apprehensive">apprehensive</a> = 3953.29 <a href="/wiki/terminate" title="terminate">terminate</a> = 3953.29 <a href="/wiki/wilful" title="wilful">wilful</a> = 3952.50 <a href="/wiki/conveniently" title="conveniently">conveniently</a> = 3951.71 <a href="/wiki/%27n%27" title="'n'">'n'</a> = 3950.92 <a href="/wiki/cleanliness" title="cleanliness">cleanliness</a> = 3950.92 <a href="/wiki/collective" title="collective">collective</a> = 3950.92 <a href="/w/index.php?title=angela&amp;action=edit&amp;redlink=1" class="new" title="angela (page does not exist)">angela</a> = 3950.13 <a href="/wiki/filth" title="filth">filth</a> = 3950.13 <a href="/wiki/philippines" title="philippines">philippines</a> = 3950.13 <a href="/wiki/timely" title="timely">timely</a> = 3950.13 <a href="/wiki/herein" title="herein">herein</a> = 3948.55 <a href="/wiki/ignoble" title="ignoble">ignoble</a> = 3948.55 <a href="/wiki/canton" title="canton">canton</a> = 3946.17 <a href="/wiki/lamentations" title="lamentations">lamentations</a> = 3944.59 <a href="/wiki/moslem" title="moslem">moslem</a> = 3944.59 <a href="/wiki/ware" title="ware">ware</a> = 3943.80 <a href="/wiki/adjective" title="adjective">adjective</a> = 3943.01 <a href="/wiki/glen" title="glen">glen</a> = 3943.01 <a href="/wiki/invade" title="invade">invade</a> = 3943.01 <a href="/wiki/livid" title="livid">livid</a> = 3943.01 <a href="/wiki/buggy" title="buggy">buggy</a> = 3941.43 <a href="/wiki/prolong" title="prolong">prolong</a> = 3940.64 <a href="/wiki/weaken" title="weaken">weaken</a> = 3937.47 <a href="/wiki/folio" title="folio">folio</a> = 3935.10 <a href="/wiki/dismissal" title="dismissal">dismissal</a> = 3934.31 <a href="/wiki/quay" title="quay">quay</a> = 3934.31 <a href="/wiki/enchanting" title="enchanting">enchanting</a> = 3933.52 <a href="/wiki/heave" title="heave">heave</a> = 3931.93 <a href="/wiki/purified" title="purified">purified</a> = 3931.14 <a href="/w/index.php?title=syrian&amp;action=edit&amp;redlink=1" class="new" title="syrian (page does not exist)">syrian</a> = 3931.14 <a href="/wiki/significantly" title="significantly">significantly</a> = 3929.56 <a href="/wiki/experimental" title="experimental">experimental</a> = 3927.98 <a href="/wiki/film" title="film">film</a> = 3926.40 <a href="/wiki/repressed" title="repressed">repressed</a> = 3926.40 <a href="/wiki/cooperation" title="cooperation">cooperation</a> = 3924.81 <a href="/wiki/sequel" title="sequel">sequel</a> = 3924.02 <a href="/wiki/wench" title="wench">wench</a> = 3924.02 <a href="/wiki/calves" title="calves">calves</a> = 3923.23</p>
451
+
452
+
453
+ <!--
454
+ NewPP limit report
455
+ Preprocessor node count: 447/1000000
456
+ Post-expand include size: 70/2048000 bytes
457
+ Template argument size: 0/2048000 bytes
458
+ Expensive parser function count: 0/500
459
+ -->
460
+
461
+ <!-- Saved in parser cache with key enwiktionary:pcache:idhash:267872-0!*!0!default!!en!*!* and timestamp 20111219082617 generated by mw15 -->
462
+ </div> <!-- /bodycontent -->
463
+ <!-- printfooter -->
464
+ <div class="printfooter">
465
+ Retrieved from "<a href="http://en.wiktionary.org/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;oldid=15254843">http://en.wiktionary.org/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;oldid=15254843</a>" </div>
466
+ <!-- /printfooter -->
467
+ <!-- catlinks -->
468
+ <div id='catlinks' class='catlinks catlinks-allhidden'></div> <!-- /catlinks -->
469
+ <div class="visualClear"></div>
470
+ <!-- debughtml -->
471
+ <!-- /debughtml -->
472
+ </div>
473
+ <!-- /bodyContent -->
474
+ </div>
475
+ <!-- /content -->
476
+ <!-- header -->
477
+ <div id="mw-head" class="noprint">
478
+
479
+ <!-- 0 -->
480
+ <div id="p-personal" class="">
481
+ <h5>Personal tools</h5>
482
+ <ul>
483
+ <li id="pt-login"><a href="/w/index.php?title=Special:UserLogin&amp;returnto=Wiktionary%3AFrequency+lists%2FPG%2F2006%2F04%2F1-10000" title="You are encouraged to log in; however, it is not mandatory [o]" accesskey="o">Log in / create account</a></li>
484
+ </ul>
485
+ </div>
486
+
487
+ <!-- /0 -->
488
+ <div id="left-navigation">
489
+
490
+ <!-- 0 -->
491
+ <div id="p-namespaces" class="vectorTabs">
492
+ <h5>Namespaces</h5>
493
+ <ul>
494
+ <li id="ca-nstab-project" class="selected"><span><a href="/wiki/Wiktionary:Frequency_lists/PG/2006/04/1-10000" title="View the project page [c]" accesskey="c">Project page</a></span></li>
495
+ <li id="ca-talk"><span><a href="/wiki/Wiktionary_talk:Frequency_lists/PG/2006/04/1-10000" title="Discussion about the content page [t]" accesskey="t">Discussion</a></span></li>
496
+ </ul>
497
+ </div>
498
+
499
+ <!-- /0 -->
500
+
501
+ <!-- 1 -->
502
+ <div id="p-variants" class="vectorMenu emptyPortlet">
503
+ <h5><span>Variants</span><a href="#"></a></h5>
504
+ <div class="menu">
505
+ <ul>
506
+ </ul>
507
+ </div>
508
+ </div>
509
+
510
+ <!-- /1 -->
511
+ </div>
512
+ <div id="right-navigation">
513
+
514
+ <!-- 0 -->
515
+ <div id="p-views" class="vectorTabs">
516
+ <h5>Views</h5>
517
+ <ul>
518
+ <li id="ca-view" class="selected"><span><a href="/wiki/Wiktionary:Frequency_lists/PG/2006/04/1-10000" >Read</a></span></li>
519
+ <li id="ca-edit"><span><a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=edit" title="You can edit this page. Please use the preview button before saving [e]" accesskey="e">Edit</a></span></li>
520
+ <li id="ca-history" class="collapsible"><span><a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;action=history" title="Past revisions of this page [h]" accesskey="h">History</a></span></li>
521
+ </ul>
522
+ </div>
523
+
524
+ <!-- /0 -->
525
+
526
+ <!-- 1 -->
527
+ <div id="p-cactions" class="vectorMenu emptyPortlet">
528
+ <h5><span>Actions</span><a href="#"></a></h5>
529
+ <div class="menu">
530
+ <ul>
531
+ </ul>
532
+ </div>
533
+ </div>
534
+
535
+ <!-- /1 -->
536
+
537
+ <!-- 2 -->
538
+ <div id="p-search">
539
+ <h5><label for="searchInput">Search</label></h5>
540
+ <form action="/w/index.php" id="searchform">
541
+ <input type='hidden' name="title" value="Special:Search"/>
542
+ <div id="simpleSearch">
543
+ <input type="text" name="search" value="" title="Search Wiktionary [f]" accesskey="f" id="searchInput" /> <button type="submit" name="button" title="Search the pages for this text" id="searchButton"><img src="//bits.wikimedia.org/skins-1.18/vector/images/search-ltr.png?303-4" alt="Search" /></button> </div>
544
+ </form>
545
+ </div>
546
+
547
+ <!-- /2 -->
548
+ </div>
549
+ </div>
550
+ <!-- /header -->
551
+ <!-- panel -->
552
+ <div id="mw-panel" class="noprint">
553
+ <!-- logo -->
554
+ <div id="p-logo"><a style="background-image: url(//upload.wikimedia.org/wiktionary/en/b/bc/Wiki.png);" href="/wiki/Wiktionary:Main_Page" title="Visit the main page"></a></div>
555
+ <!-- /logo -->
556
+
557
+ <!-- SEARCH -->
558
+
559
+ <!-- /SEARCH -->
560
+
561
+ <!-- navigation -->
562
+ <div class="portal" id='p-navigation'>
563
+ <h5>Navigation</h5>
564
+ <div class="body">
565
+ <ul>
566
+ <li id="n-mainpage-text"><a href="/wiki/Wiktionary:Main_Page">Main Page</a></li>
567
+ <li id="n-portal"><a href="/wiki/Wiktionary:Community_portal" title="About the project, what you can do, where to find things">Community portal</a></li>
568
+ <li id="n-wiktprefs"><a href="/wiki/Wiktionary:Per-browser_preferences">Preferences</a></li>
569
+ <li id="n-requestedarticles"><a href="/wiki/Wiktionary:Requested_entries">Requested entries</a></li>
570
+ <li id="n-recentchanges"><a href="/wiki/Special:RecentChanges" title="A list of recent changes in the wiki [r]" accesskey="r">Recent changes</a></li>
571
+ <li id="n-randompage"><a href="/wiki/Special:Random" title="Load a random page [x]" accesskey="x">Random entry</a></li>
572
+ <li id="n-randompagebylanguage"><a href="/wiki/Wiktionary:Random_page">(by language)</a></li>
573
+ <li id="n-help"><a href="/wiki/Help:Contents" title="The place to find out">Help</a></li>
574
+ <li id="n-sitesupport"><a href="//wikimediafoundation.org/wiki/Special:Landingcheck?landing_page=WMFJA085&amp;language=en&amp;utm_source=donate&amp;utm_medium=sidebar&amp;utm_campaign=20101204SB002" title="Support us">Donations</a></li>
575
+ <li id="n-contact"><a href="/wiki/Wiktionary:Contact_us">Contact us</a></li>
576
+ </ul>
577
+ </div>
578
+ </div>
579
+
580
+ <!-- /navigation -->
581
+
582
+ <!-- TOOLBOX -->
583
+ <div class="portal" id='p-tb'>
584
+ <h5>Toolbox</h5>
585
+ <div class="body">
586
+ <ul>
587
+ <li id="t-whatlinkshere"><a href="/wiki/Special:WhatLinksHere/Wiktionary:Frequency_lists/PG/2006/04/1-10000" title="A list of all wiki pages that link here [j]" accesskey="j">What links here</a></li>
588
+ <li id="t-recentchangeslinked"><a href="/wiki/Special:RecentChangesLinked/Wiktionary:Frequency_lists/PG/2006/04/1-10000" title="Recent changes in pages linked from this page [k]" accesskey="k">Related changes</a></li>
589
+ <li id="t-upload"><a href="//commons.wikimedia.org/wiki/Special:Upload" title="Upload files [u]" accesskey="u">Upload file</a></li>
590
+ <li id="t-specialpages"><a href="/wiki/Special:SpecialPages" title="A list of all special pages [q]" accesskey="q">Special pages</a></li>
591
+ <li><a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;printable=yes" rel="alternate">Printable version</a></li>
592
+ <li id="t-permalink"><a href="/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;oldid=15254843" title="Permanent link to this revision of the page">Permanent link</a></li>
593
+ </ul>
594
+ </div>
595
+ </div>
596
+
597
+ <!-- /TOOLBOX -->
598
+
599
+ <!-- LANGUAGES -->
600
+
601
+ <!-- /LANGUAGES -->
602
+ </div>
603
+ <!-- /panel -->
604
+ <!-- footer -->
605
+ <div id="footer">
606
+ <ul id="footer-info">
607
+ <li id="footer-info-lastmod"> This page was last modified on 1 December 2011, at 23:41.</li>
608
+ <li id="footer-info-copyright">Text is available under the <a href="//creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution/Share-Alike License</a>;
609
+ additional terms may apply.
610
+ See <a href="//wikimediafoundation.org/wiki/Terms_of_use">Terms of use</a> for details.</li>
611
+ </ul>
612
+ <ul id="footer-places">
613
+ <li id="footer-places-privacy"><a href="//wikimediafoundation.org/wiki/Privacy_policy" title="wikimedia:Privacy policy">Privacy policy</a></li>
614
+ <li id="footer-places-about"><a href="/wiki/Wiktionary:About" title="Wiktionary:About">About Wiktionary</a></li>
615
+ <li id="footer-places-disclaimer"><a href="/wiki/Wiktionary:General_disclaimer" title="Wiktionary:General disclaimer">Disclaimers</a></li>
616
+ <li id="footer-places-mobileview"><a href='/w/index.php?title=Wiktionary:Frequency_lists/PG/2006/04/1-10000&amp;useformat=mobile' class='noprint'>Mobile view</a></li>
617
+ </ul>
618
+ <ul id="footer-icons" class="noprint">
619
+ <li id="footer-copyrightico">
620
+ <a href="//wikimediafoundation.org/"><img src="//bits.wikimedia.org/images/wikimedia-button.png" width="88" height="31" alt="Wikimedia Foundation"/></a>
621
+ </li>
622
+ <li id="footer-poweredbyico">
623
+ <a href="//www.mediawiki.org/"><img src="//bits.wikimedia.org/skins-1.18/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" width="88" height="31" /></a>
624
+ </li>
625
+ </ul>
626
+ <div style="clear:both"></div>
627
+ </div>
628
+ <!-- /footer -->
629
+ <!-- fixalpha -->
630
+ <script type="text/javascript"> if ( window.isMSIE55 ) fixalpha(); </script>
631
+ <!-- /fixalpha -->
632
+ <script src="//bits.wikimedia.org/en.wiktionary.org/load.php?debug=false&amp;lang=en&amp;modules=skins.vector&amp;only=scripts&amp;skin=vector&amp;*" type="text/javascript"></script>
633
+ <script type="text/javascript">if ( window.mediaWiki ) {
634
+ mw.loader.load(["mediawiki.user", "mediawiki.util", "mediawiki.page.ready", "mediawiki.legacy.wikibits", "mediawiki.legacy.ajax", "mediawiki.legacy.mwsuggest", "ext.vector.collapsibleNav", "ext.vector.collapsibleTabs", "ext.vector.editWarning", "ext.vector.simpleSearch"]);
635
+ }
636
+ </script>
637
+ <script src="/w/index.php?title=Special:BannerController&amp;cache=/cn.js&amp;303-4" type="text/javascript"></script>
638
+ <script src="//bits.wikimedia.org/en.wiktionary.org/load.php?debug=false&amp;lang=en&amp;modules=site&amp;only=scripts&amp;skin=vector&amp;*" type="text/javascript"></script>
639
+ <script type="text/javascript">if ( window.mediaWiki ) {
640
+ mw.user.options.set({"ccmeonemails":0,"cols":80,"date":"default","diffonly":0,"disablemail":0,"disablesuggest":0,"editfont":"default","editondblclick":0,"editsection":1,"editsectiononrightclick":0,"enotifminoredits":0,"enotifrevealaddr":0,"enotifusertalkpages":1,"enotifwatchlistpages":0,"extendwatchlist":0,"externaldiff":0,"externaleditor":0,"fancysig":0,"forceeditsummary":0,"gender":"unknown","hideminor":0,"hidepatrolled":0,"highlightbroken":1,"imagesize":2,"justify":0,"math":1,"minordefault":0,"newpageshidepatrolled":0,"nocache":0,"noconvertlink":0,"norollbackdiff":0,"numberheadings":0,"previewonfirst":0,"previewontop":1,"quickbar":5,"rcdays":7,"rclimit":50,"rememberpassword":0,"rows":25,"searchlimit":20,"showhiddencats":false,"showjumplinks":1,"shownumberswatching":1,"showtoc":1,"showtoolbar":1,"skin":"vector","stubthreshold":0,"thumbsize":4,"underline":2,"uselivepreview":0,"usenewrc":0,"watchcreations":1,"watchdefault":0,"watchdeletion":0,"watchlistdays":3,"watchlisthideanons":0,
641
+ "watchlisthidebots":0,"watchlisthideliu":0,"watchlisthideminor":0,"watchlisthideown":0,"watchlisthidepatrolled":0,"watchmoves":0,"wllimit":250,"vector-simplesearch":1,"useeditwarning":1,"vector-collapsiblenav":1,"usebetatoolbar":1,"usebetatoolbar-cgd":1,"lqtnotifytalk":false,"lqtdisplaydepth":5,"lqtdisplaycount":25,"lqtcustomsignatures":true,"lqt-watch-threads":true,"variant":"en","language":"en","searchNs0":true,"searchNs1":false,"searchNs2":false,"searchNs3":false,"searchNs4":false,"searchNs5":false,"searchNs6":false,"searchNs7":false,"searchNs8":false,"searchNs9":false,"searchNs10":false,"searchNs11":false,"searchNs12":false,"searchNs13":false,"searchNs14":false,"searchNs15":false,"searchNs90":false,"searchNs91":false,"searchNs92":false,"searchNs93":false,"searchNs100":false,"searchNs101":false,"searchNs102":false,"searchNs103":false,"searchNs104":false,"searchNs105":false,"searchNs106":false,"searchNs107":false,"searchNs108":false,"searchNs109":false,"searchNs110":false,
642
+ "searchNs111":false,"searchNs114":false,"searchNs115":false,"searchNs116":false,"searchNs117":false,"gadget-TabbedLanguagesForAdmins":1,"gadget-PatrollingEnhancements":1});;mw.user.tokens.set({"editToken":"+\\","watchToken":false});;mw.loader.state({"user.options":"ready","user.tokens":"ready"});
643
+
644
+ /* cache key: enwiktionary:resourceloader:filter:minify-js:4:8f5db5f5e38418c3bb6cffd6e714c8a8 */
645
+ }
646
+ </script><script src="//geoiplookup.wikimedia.org/" type="text/javascript"></script><!-- Served by srv198 in 0.180 secs. -->
647
+ </body>
648
+ </html>