├── README.md ├── glove_dist.py ├── result ├── 0.txt ├── 1.txt ├── 10.txt ├── 11.txt ├── 12.txt ├── 13.txt ├── 14.txt ├── 15.txt ├── 16.txt ├── 17.txt ├── 18.txt ├── 19.txt ├── 2.txt ├── 20.txt ├── 21.txt ├── 22.txt ├── 23.txt ├── 24.txt ├── 25.txt ├── 26.txt ├── 27.txt ├── 28.txt ├── 29.txt ├── 3.txt ├── 30.txt ├── 31.txt ├── 32.txt ├── 33.txt ├── 34.txt ├── 35.txt ├── 36.txt ├── 37.txt ├── 38.txt ├── 39.txt ├── 4.txt ├── 40.txt ├── 41.txt ├── 42.txt ├── 43.txt ├── 44.txt ├── 45.txt ├── 46.txt ├── 47.txt ├── 48.txt ├── 49.txt ├── 5.txt ├── 50.txt ├── 51.txt ├── 52.txt ├── 53.txt ├── 54.txt ├── 55.txt ├── 56.txt ├── 57.txt ├── 58.txt ├── 59.txt ├── 6.txt ├── 60.txt ├── 61.txt ├── 62.txt ├── 63.txt ├── 64.txt ├── 65.txt ├── 66.txt ├── 67.txt ├── 68.txt ├── 69.txt ├── 7.txt ├── 70.txt ├── 71.txt ├── 72.txt ├── 73.txt ├── 74.txt ├── 75.txt ├── 76.txt ├── 77.txt ├── 78.txt ├── 79.txt ├── 8.txt ├── 80.txt ├── 81.txt ├── 82.txt ├── 83.txt ├── 84.txt ├── 85.txt ├── 86.txt ├── 87.txt ├── 88.txt ├── 89.txt ├── 9.txt ├── 90.txt ├── 91.txt ├── 92.txt ├── 93.txt ├── 94.txt ├── 95.txt ├── 96.txt ├── 97.txt ├── 98.txt └── 99.txt └── vectors.txt /README.md: -------------------------------------------------------------------------------- 1 | glove_py_model_load 2 | =================== 3 | 4 | Loading the model from glove and computer word similarity and word clustering. 5 | Using packages: 6 | 1.python2.7 7 | 2.numpy 8 | 3.sklearn 9 | 10 | Homepage: 11 | http://blog.csdn.net/adooadoo 12 | 13 | 14 | -------------------------------------------------------------------------------- /glove_dist.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | 4 | # author : eclipse 5 | # email : adooadoo@163.com 6 | import numpy as np 7 | from sklearn.cluster import k_means 8 | import datetime 9 | import os 10 | 11 | class Glove(): 12 | """ 13 | Class for training, using and evaluating glove described in https://code.google.com/p/word2vec/ 14 | 15 | The model has three methods: 16 | 1.consine_distance: Calculating the two different word vectors' consine distance 17 | 2.MostSimilarWord: Finding the topN closest words of the given word 18 | 3.clustering: Using sklearn's kmeans to clustering 19 | 20 | """ 21 | def __init__(self, fUrl): 22 | """ 23 | load model(no-binary model) 24 | """ 25 | with open(fUrl) as f: 26 | self.word_dic = {line.split()[0]:np.asarray(line.split()[1:], dtype='float') for line in f} 27 | 28 | def consine_distance(self, word1, word2): 29 | return np.dot(self.word_dic[word1],self.word_dic[word2]) \ 30 | /(np.linalg.norm(self.word_dic[word1])* np.linalg.norm(self.word_dic[word2])) 31 | 32 | def MostSimilarWord(self, word,TopN = 30): 33 | #print self.word_dic['china'] 34 | return sorted({word2:self.consine_distance(word, word2) for word2 in self.word_dic.keys()}.items(), \ 35 | lambda x, y: cmp(x[1], y[1]), reverse= True) [1:TopN+1] 36 | 37 | def clustering(self, cluster_size): 38 | X = np.array(list(self.word_dic.itervalues())) 39 | return k_means(X, n_clusters= cluster_size, init= "k-means++") 40 | 41 | if __name__ == "__main__": 42 | starttime = datetime.datetime.now() 43 | model = Glove("vectors.txt") #load model 44 | print model.MostSimilarWord('china') 45 | 46 | cluster_size = 100 #set the cluster's size 47 | cluster_center, result, inertia = model.clustering(cluster_size) 48 | keys = model.word_dic.keys() # get all the words 49 | 50 | #write the result into a folder 51 | resultUrl = 'result' 52 | os.mkdir(resultUrl) 53 | f_list = [open(resultUrl+'/'+str(i)+'.txt','w') for i in xrange(cluster_size)] 54 | [f_list[result_num].write(keys[i]+'\n') for (i, result_num) in enumerate(result)] 55 | [f_list[i].close() for i in xrange(cluster_size)]#close all the file 56 | 57 | r = dict(zip(keys, result)) 58 | print r['china'] 59 | print r['father'] 60 | endtime = datetime.datetime.now() 61 | print 'Time:', (endtime - starttime).seconds,'s' 62 | -------------------------------------------------------------------------------- /result/0.txt: -------------------------------------------------------------------------------- 1 | sixteen 2 | estimate 3 | megabytes 4 | dozen 5 | minute 6 | quarter 7 | kilometer 8 | kilogram 9 | barrel 10 | bytes 11 | averaging 12 | span 13 | fewer 14 | fifteen 15 | manpower 16 | gallons 17 | length 18 | worth 19 | approximately 20 | tons 21 | rainfall 22 | euros 23 | annually 24 | hundred 25 | caliber 26 | ranked 27 | averaged 28 | averages 29 | kilometres 30 | mortality 31 | cent 32 | density 33 | reaching 34 | highest 35 | beats 36 | miles 37 | hour 38 | minimum 39 | doubled 40 | equal 41 | weighed 42 | numbering 43 | female 44 | ppm 45 | ppp 46 | annum 47 | weighs 48 | long 49 | parity 50 | tonnes 51 | household 52 | expectancy 53 | gauge 54 | dollars 55 | width 56 | khz 57 | million 58 | runways 59 | thousand 60 | hours 61 | almost 62 | gallon 63 | inclination 64 | fertility 65 | cm 66 | octaves 67 | diameter 68 | forty 69 | accounted 70 | half 71 | households 72 | ratio 73 | pounds 74 | duration 75 | mph 76 | centimeters 77 | ft 78 | knots 79 | carat 80 | exceeding 81 | inch 82 | kilometre 83 | pixel 84 | thirds 85 | inhabitants 86 | watts 87 | margin 88 | litres 89 | gross 90 | seconds 91 | acre 92 | males 93 | twenty 94 | kg 95 | weigh 96 | cents 97 | precipitation 98 | per 99 | meter 100 | lb 101 | acres 102 | cubic 103 | minutes 104 | estimates 105 | estimated 106 | mg 107 | mm 108 | twice 109 | meters 110 | census 111 | nm 112 | na 113 | thirty 114 | lifes 115 | ten 116 | grt 117 | income 118 | residing 119 | females 120 | passengers 121 | sq 122 | square 123 | bits 124 | average 125 | expenditures 126 | millimeters 127 | inches 128 | nautical 129 | poverty 130 | sixty 131 | degrees 132 | total 133 | hispanic 134 | fifty 135 | pixels 136 | barrels 137 | negligible 138 | metres 139 | literacy 140 | paved 141 | ninety 142 | height 143 | milligrams 144 | mi 145 | kilometers 146 | tall 147 | nearly 148 | roughly 149 | dollar 150 | least 151 | lbf 152 | ounce 153 | numbered 154 | about 155 | ton 156 | divisible 157 | weighing 158 | celsius 159 | calories 160 | population 161 | kbit 162 | feet 163 | kilograms 164 | below 165 | pound 166 | slightly 167 | totalling 168 | seventy 169 | prevalence 170 | gdp 171 | male 172 | ago 173 | totaling 174 | rates 175 | injuring 176 | lowest 177 | migrant 178 | grams 179 | purchasing 180 | murders 181 | mile 182 | francs 183 | median 184 | micrometres 185 | infant 186 | aged 187 | usd 188 | capita 189 | injures 190 | digits 191 | over 192 | percentage 193 | rounds 194 | electrified 195 | trillion 196 | unpaved 197 | metre 198 | percent 199 | -------------------------------------------------------------------------------- /result/1.txt: -------------------------------------------------------------------------------- 1 | playhouse 2 | duckworth 3 | sugarcane 4 | tallest 5 | gollancz 6 | oldham 7 | alban 8 | omnibus 9 | baton 10 | testaments 11 | palisades 12 | areola 13 | upstate 14 | netherland 15 | posse 16 | tattoo 17 | dumbarton 18 | pitcairn 19 | kassel 20 | plattsburgh 21 | wiesenthal 22 | tauris 23 | sleepy 24 | rune 25 | westport 26 | conn 27 | whirl 28 | abrams 29 | soc 30 | philharmonic 31 | prometheus 32 | greenwood 33 | premieres 34 | mits 35 | schuster 36 | hammadi 37 | verso 38 | pooh 39 | giuliani 40 | tfl 41 | ravine 42 | seton 43 | alamos 44 | intervarsity 45 | celesta 46 | chrysler 47 | jps 48 | atheneum 49 | ktav 50 | hoboken 51 | olympiad 52 | afghani 53 | stwertka 54 | riddle 55 | meteorite 56 | praeger 57 | herald 58 | steinsaltz 59 | paterson 60 | flushing 61 | kunst 62 | kwanza 63 | westchester 64 | subways 65 | touchstone 66 | pergamon 67 | farrar 68 | trenton 69 | lancet 70 | elwood 71 | reissue 72 | blackwell 73 | ballantine 74 | ennis 75 | dodge 76 | knicks 77 | refinery 78 | becker 79 | suv 80 | routledge 81 | reprint 82 | pleasantville 83 | bradbury 84 | harcourt 85 | seaver 86 | crc 87 | guildhall 88 | musicology 89 | schocken 90 | dell 91 | greenery 92 | famer 93 | milligan 94 | hays 95 | paddington 96 | umi 97 | vanguard 98 | viaduct 99 | cass 100 | wiley 101 | jirga 102 | hornets 103 | inductees 104 | putnam 105 | mcgraw 106 | ajanta 107 | leu 108 | beginner 109 | norton 110 | clarkson 111 | stoughton 112 | clarendon 113 | endocrinology 114 | epp 115 | evanston 116 | capo 117 | redskins 118 | homegrown 119 | ballpark 120 | diffie 121 | guilford 122 | salem 123 | blackout 124 | mayflower 125 | mercer 126 | chung 127 | dunedin 128 | folio 129 | gaslight 130 | irrigated 131 | dover 132 | visitor 133 | giroux 134 | pathfinder 135 | plenum 136 | dutton 137 | syndicate 138 | foreword 139 | langdon 140 | beacon 141 | dem 142 | ceres 143 | dolls 144 | kl 145 | etna 146 | gris 147 | vols 148 | martinez 149 | binghamton 150 | aft 151 | annexes 152 | rey 153 | pinker 154 | yorkers 155 | novum 156 | ltd 157 | drachma 158 | edmonds 159 | expo 160 | msrp 161 | harper 162 | millsaps 163 | kwh 164 | bishvat 165 | nj 166 | nk 167 | ny 168 | courthouse 169 | ang 170 | mateo 171 | publishers 172 | prentice 173 | faber 174 | spitzer 175 | bfi 176 | fontana 177 | berkley 178 | pg 179 | weidenfeld 180 | paragon 181 | mckenna 182 | phages 183 | albion 184 | conurbation 185 | martins 186 | tabloid 187 | minster 188 | hardcover 189 | nightingale 190 | namur 191 | trout 192 | hawthorn 193 | sienkiewicz 194 | titans 195 | yardbirds 196 | sedans 197 | entrants 198 | novi 199 | boca 200 | sw 201 | kaufmann 202 | chichester 203 | td 204 | salamander 205 | palgrave 206 | elsevier 207 | schaff 208 | ams 209 | trouser 210 | parkway 211 | mets 212 | cassell 213 | vl 214 | vt 215 | grafton 216 | inc 217 | niue 218 | hardback 219 | roxy 220 | methuen 221 | ebook 222 | tomorrowland 223 | brac 224 | viking 225 | wan 226 | unwin 227 | chinatown 228 | ericsson 229 | cisco 230 | weill 231 | kluwer 232 | hayward 233 | fayetteville 234 | usgs 235 | bantam 236 | alcor 237 | cooperstown 238 | kaohsiung 239 | straus 240 | uni 241 | arrivals 242 | garland 243 | schenectady 244 | baen 245 | scribner 246 | roswell 247 | hartford 248 | wolcott 249 | heavies 250 | vanuatu 251 | sloan 252 | silo 253 | tompkins 254 | surging 255 | heinemann 256 | landless 257 | unearthed 258 | rcc 259 | sage 260 | oswego 261 | ditto 262 | chalmers 263 | verlag 264 | soho 265 | yonkers 266 | doubleday 267 | yorker 268 | penguin 269 | eda 270 | copernicus 271 | gmbh 272 | harrington 273 | silmarillion 274 | isbn 275 | duane 276 | avon 277 | paulist 278 | univ 279 | ibanez 280 | ucl 281 | bloomsbury 282 | hua 283 | cuny 284 | linkin 285 | woodstock 286 | drummond 287 | laguardia 288 | zealanders 289 | mifflin 290 | deseret 291 | cullen 292 | taos 293 | auditorium 294 | abingdon 295 | fantagraphics 296 | brace 297 | daw 298 | belmont 299 | tacoma 300 | kalevala 301 | mooney 302 | newline 303 | monterey 304 | jamestown 305 | tempe 306 | masamune 307 | haven 308 | dinar 309 | decca 310 | sunderland 311 | chipset 312 | paperback 313 | brill 314 | springer 315 | ivor 316 | comrie 317 | scarecrow 318 | hodder 319 | nevi 320 | orchid 321 | caledonian 322 | fairfield 323 | marino 324 | skyscraper 325 | eads 326 | paladin 327 | earle 328 | bridgeport 329 | linden 330 | rudy 331 | sourcebook 332 | lira 333 | norwich 334 | alamogordo 335 | houghton 336 | mckay 337 | hbk 338 | nag 339 | pimlico 340 | bacardi 341 | wharf 342 | knopf 343 | longman 344 | quill 345 | guggenheim 346 | bloomberg 347 | westview 348 | vista 349 | appleton 350 | belknap 351 | dir 352 | acapulco 353 | nyu 354 | americana 355 | jfk 356 | pam 357 | nowak 358 | orchard 359 | lucian 360 | macmillan 361 | horizons 362 | saab 363 | handbook 364 | gallup 365 | gainesville 366 | quarterly 367 | harpercollins 368 | nahum 369 | paperbacks 370 | caledonia 371 | zealander 372 | geisel 373 | placid 374 | suny 375 | neue 376 | tampa 377 | globular 378 | epa 379 | milford 380 | hutchinson 381 | rethinking 382 | nauru 383 | homebrew 384 | elgin 385 | royals 386 | ferris 387 | nicolson 388 | ticker 389 | sturluson 390 | zadok 391 | fernandez 392 | harmondsworth 393 | aotearoa 394 | newington 395 | abrahams 396 | homeri 397 | slovenes 398 | vintage 399 | premiers 400 | -------------------------------------------------------------------------------- /result/10.txt: -------------------------------------------------------------------------------- 1 | internet 2 | technology 3 | methods 4 | provide 5 | techniques 6 | systems 7 | basic 8 | programs 9 | access 10 | platform 11 | users 12 | machine 13 | applications 14 | data 15 | code 16 | user 17 | digital 18 | designed 19 | standard 20 | operating 21 | program 22 | design 23 | support 24 | microsoft 25 | available 26 | using 27 | system 28 | software 29 | management 30 | programming 31 | file 32 | computers 33 | purpose 34 | network 35 | computer 36 | bit 37 | text 38 | versions 39 | memory 40 | multiple 41 | done 42 | windows 43 | apple 44 | -------------------------------------------------------------------------------- /result/12.txt: -------------------------------------------------------------------------------- 1 | hanging 2 | climbed 3 | locked 4 | arrow 5 | mouth 6 | spin 7 | split 8 | crowd 9 | bottom 10 | shoots 11 | roll 12 | pulled 13 | entering 14 | turned 15 | opposite 16 | sealed 17 | pull 18 | pass 19 | door 20 | knocked 21 | singled 22 | pressed 23 | climb 24 | balls 25 | bounce 26 | into 27 | riding 28 | off 29 | placed 30 | runs 31 | away 32 | drawn 33 | hand 34 | cooled 35 | turns 36 | sending 37 | drop 38 | caught 39 | burst 40 | foot 41 | swim 42 | trapped 43 | close 44 | abruptly 45 | placing 46 | watered 47 | jump 48 | camera 49 | pulling 50 | shoulders 51 | stay 52 | room 53 | roof 54 | before 55 | down 56 | filled 57 | bow 58 | making 59 | waist 60 | jumping 61 | wake 62 | vertically 63 | again 64 | sitting 65 | washing 66 | stir 67 | coming 68 | through 69 | backed 70 | cut 71 | knock 72 | stripped 73 | backwards 74 | attempting 75 | rushed 76 | stirred 77 | leaves 78 | upside 79 | laid 80 | bail 81 | breaks 82 | burnt 83 | stuck 84 | setting 85 | goes 86 | catching 87 | turn 88 | cast 89 | apartment 90 | hunted 91 | sweep 92 | kick 93 | rows 94 | backs 95 | settling 96 | leaving 97 | out 98 | opening 99 | straight 100 | wash 101 | legs 102 | cards 103 | dealer 104 | tear 105 | spot 106 | arriving 107 | runners 108 | rounding 109 | walking 110 | up 111 | sprung 112 | gone 113 | turning 114 | pick 115 | travelling 116 | cover 117 | hitting 118 | sight 119 | line 120 | walked 121 | leg 122 | standing 123 | rode 124 | wearing 125 | bent 126 | blows 127 | steep 128 | figured 129 | somewhere 130 | then 131 | forth 132 | sliding 133 | together 134 | permanently 135 | bankrupt 136 | receiving 137 | quark 138 | striking 139 | packed 140 | attached 141 | touch 142 | struck 143 | rear 144 | trying 145 | moves 146 | pointing 147 | splitting 148 | ahead 149 | broke 150 | pushed 151 | travels 152 | towards 153 | rolls 154 | drops 155 | releasing 156 | heading 157 | drew 158 | loud 159 | folded 160 | stop 161 | picking 162 | scrimmage 163 | tracked 164 | burn 165 | pointed 166 | cuts 167 | touching 168 | teamed 169 | behind 170 | cancel 171 | nose 172 | broken 173 | starting 174 | fall 175 | stood 176 | walls 177 | batter 178 | back 179 | forward 180 | putting 181 | giving 182 | wakes 183 | passing 184 | path 185 | shoot 186 | end 187 | fade 188 | filling 189 | got 190 | shots 191 | swept 192 | wound 193 | apart 194 | dropped 195 | receivers 196 | paying 197 | sticking 198 | breaking 199 | throws 200 | blank 201 | stones 202 | flies 203 | dug 204 | arrives 205 | jumps 206 | drinking 207 | pushing 208 | fed 209 | carried 210 | looks 211 | looked 212 | spun 213 | cries 214 | fired 215 | column 216 | blown 217 | sailed 218 | strike 219 | orally 220 | runner 221 | doors 222 | rotated 223 | defensive 224 | inside 225 | torn 226 | shouted 227 | inserted 228 | drive 229 | screen 230 | rest 231 | tight 232 | maggie 233 | pulls 234 | beavis 235 | enemy 236 | move 237 | blew 238 | gently 239 | face 240 | smash 241 | ends 242 | drawing 243 | blowing 244 | sped 245 | lifted 246 | hooked 247 | farther 248 | bound 249 | capped 250 | taken 251 | looking 252 | directly 253 | drove 254 | trick 255 | throw 256 | loose 257 | takes 258 | knocking 259 | look 260 | rope 261 | step 262 | picked 263 | started 264 | crossed 265 | hands 266 | slowly 267 | immediately 268 | warm 269 | loaded 270 | melted 271 | shoulder 272 | bounds 273 | teeth 274 | neck 275 | shake 276 | arrows 277 | advance 278 | shot 279 | facing 280 | either 281 | strikes 282 | fill 283 | washed 284 | returning 285 | wiped 286 | hard 287 | ruin 288 | burned 289 | dropping 290 | opponent 291 | taking 292 | carved 293 | manually 294 | onto 295 | wrapped 296 | quickly 297 | hung 298 | cool 299 | dried 300 | trip 301 | kills 302 | stand 303 | missed 304 | paired 305 | goal 306 | feed 307 | traveling 308 | possession 309 | anywhere 310 | sit 311 | instead 312 | stamped 313 | flew 314 | walk 315 | gets 316 | fingers 317 | drying 318 | borne 319 | spinning 320 | rolled 321 | right 322 | floor 323 | push 324 | falling 325 | thumb 326 | routed 327 | aside 328 | handing 329 | knee 330 | going 331 | jumped 332 | summed 333 | side 334 | burning 335 | sides 336 | walks 337 | laying 338 | barely 339 | picks 340 | retreated 341 | thin 342 | tied 343 | shut 344 | poured 345 | digging 346 | upon 347 | hiding 348 | slowing 349 | wore 350 | worn 351 | lay 352 | break 353 | fitted 354 | receiver 355 | tough 356 | holding 357 | switched 358 | authorised 359 | thrown 360 | stayed 361 | clean 362 | throwing 363 | draw 364 | popped 365 | ride 366 | front 367 | pumped 368 | lights 369 | starts 370 | chest 371 | sail 372 | threw 373 | left 374 | handed 375 | fly 376 | staying 377 | track 378 | finishing 379 | stepped 380 | running 381 | dial 382 | rounded 383 | lines 384 | lined 385 | cutting 386 | chased 387 | beat 388 | clearing 389 | phased 390 | pin 391 | shooting 392 | feeding 393 | kicked 394 | driving 395 | injected 396 | ran 397 | faces 398 | catch 399 | casting 400 | branched 401 | driven 402 | blow 403 | lining 404 | stick 405 | speeding 406 | passes 407 | cleaned 408 | arm 409 | moving 410 | scaled 411 | trap 412 | closer 413 | closed 414 | safely 415 | getting 416 | -------------------------------------------------------------------------------- /result/14.txt: -------------------------------------------------------------------------------- 1 | bringing 2 | controversy 3 | survival 4 | eventual 5 | role 6 | boost 7 | influx 8 | undergone 9 | troubles 10 | instability 11 | sponsor 12 | modest 13 | sponsorship 14 | exploration 15 | situation 16 | superiority 17 | past 18 | prior 19 | huge 20 | emergence 21 | contributor 22 | considerably 23 | considerable 24 | diverse 25 | suppression 26 | confidence 27 | insight 28 | stalled 29 | shortage 30 | worldwide 31 | excitement 32 | compared 33 | exposure 34 | neighbours 35 | fluctuated 36 | devastation 37 | recovery 38 | disputes 39 | superpowers 40 | thanks 41 | diplomacy 42 | purge 43 | conquests 44 | prompted 45 | steady 46 | renewed 47 | poor 48 | losses 49 | toward 50 | competing 51 | stagnation 52 | pace 53 | success 54 | fears 55 | historically 56 | visibility 57 | rivalry 58 | recession 59 | astonishing 60 | immense 61 | ufos 62 | increasingly 63 | loss 64 | additionally 65 | niche 66 | mobility 67 | stalemate 68 | immensely 69 | competitors 70 | deregulation 71 | uncertainty 72 | investments 73 | deal 74 | intermarriage 75 | profits 76 | burgeoning 77 | setbacks 78 | enthusiasm 79 | awareness 80 | dramatic 81 | sudden 82 | comedic 83 | extraordinary 84 | merger 85 | reputation 86 | intensified 87 | varied 88 | despite 89 | incentive 90 | liberalization 91 | difficulties 92 | productivity 93 | demographic 94 | elapsed 95 | periods 96 | vastly 97 | diminished 98 | keen 99 | consolidate 100 | revisions 101 | spite 102 | expense 103 | suspicions 104 | impressive 105 | trend 106 | crisis 107 | figure 108 | mismanagement 109 | vital 110 | tensions 111 | drastically 112 | rumours 113 | acquiring 114 | competition 115 | inroads 116 | clashes 117 | gains 118 | demand 119 | obstacle 120 | turbulence 121 | lifespan 122 | concessions 123 | struggles 124 | struggled 125 | tenure 126 | crowds 127 | collaboration 128 | feat 129 | redesign 130 | incredible 131 | increasing 132 | engagement 133 | collapse 134 | acclaim 135 | causing 136 | drought 137 | attrition 138 | leading 139 | forefront 140 | introducing 141 | decades 142 | breakthrough 143 | future 144 | combined 145 | influence 146 | formative 147 | buying 148 | politically 149 | backlash 150 | pitching 151 | keeping 152 | evolved 153 | impacts 154 | earnings 155 | urbanization 156 | sparked 157 | immediate 158 | impact 159 | failed 160 | migration 161 | acceptance 162 | recent 163 | relevance 164 | occurred 165 | sharply 166 | spill 167 | catastrophic 168 | gained 169 | dwindled 170 | pursuit 171 | balance 172 | inception 173 | experimentation 174 | disagreements 175 | protracted 176 | resemblance 177 | spread 178 | disadvantage 179 | phenomenal 180 | lineup 181 | global 182 | supporting 183 | precursor 184 | fortunes 185 | significantly 186 | concern 187 | developing 188 | deficit 189 | greatly 190 | immemorial 191 | sales 192 | credibility 193 | gaining 194 | strong 195 | sweeping 196 | substantial 197 | partly 198 | strife 199 | trends 200 | achievements 201 | overwhelming 202 | declined 203 | demise 204 | usefulness 205 | attention 206 | expansion 207 | reforms 208 | surfaced 209 | aborted 210 | discontent 211 | debts 212 | sprawl 213 | congestion 214 | exploitation 215 | effort 216 | growing 217 | stability 218 | venture 219 | disappointment 220 | booming 221 | industrialization 222 | economically 223 | cultivation 224 | achieving 225 | controlling 226 | struggling 227 | initiatives 228 | wages 229 | significant 230 | injuries 231 | integration 232 | severely 233 | leisure 234 | provoked 235 | supporter 236 | earning 237 | arisen 238 | slight 239 | billions 240 | expectations 241 | lasting 242 | effectiveness 243 | lesser 244 | advantage 245 | gaps 246 | millions 247 | emphasis 248 | favor 249 | successes 250 | resentment 251 | shifts 252 | arose 253 | garner 254 | alarm 255 | infighting 256 | worst 257 | killings 258 | experimenting 259 | heavily 260 | activity 261 | gradually 262 | profound 263 | rapid 264 | persisted 265 | outcry 266 | substantially 267 | enormous 268 | disparity 269 | contributing 270 | resulted 271 | contacts 272 | midst 273 | speculation 274 | improving 275 | thereby 276 | owing 277 | outrage 278 | aroused 279 | policies 280 | endured 281 | risen 282 | reliance 283 | slump 284 | stock 285 | accuracy 286 | decade 287 | triumph 288 | farming 289 | diversified 290 | fuelled 291 | spurred 292 | enjoyed 293 | progressed 294 | becoming 295 | dominance 296 | accelerated 297 | waned 298 | comeback 299 | markedly 300 | notoriety 301 | severe 302 | reliability 303 | stylistic 304 | accumulated 305 | dominating 306 | experienced 307 | popularity 308 | dominant 309 | grew 310 | collapsed 311 | honors 312 | pivotal 313 | fierce 314 | enormously 315 | competitor 316 | rise 317 | persist 318 | crucial 319 | preparation 320 | tripled 321 | illiteracy 322 | changed 323 | flourished 324 | failure 325 | suffered 326 | attracting 327 | wealth 328 | spanning 329 | militarily 330 | emerged 331 | bloodshed 332 | ongoing 333 | mixed 334 | deteriorated 335 | extremely 336 | ensured 337 | predecessors 338 | flourishing 339 | biggest 340 | crises 341 | decreasing 342 | devastating 343 | delays 344 | hostility 345 | savings 346 | focus 347 | commodity 348 | unfortunately 349 | subsequent 350 | discrepancy 351 | inflation 352 | reduced 353 | prestige 354 | publicity 355 | achieved 356 | declines 357 | downturn 358 | decline 359 | disappointing 360 | alliances 361 | innovation 362 | raising 363 | undertones 364 | dramatically 365 | reflecting 366 | isolation 367 | unprecedented 368 | contributed 369 | bitter 370 | ranging 371 | result 372 | disagreement 373 | decreased 374 | massive 375 | saw 376 | jobs 377 | prominence 378 | scandals 379 | wartime 380 | plans 381 | rapidly 382 | armaments 383 | prospects 384 | improved 385 | arrests 386 | spending 387 | occasional 388 | great 389 | ties 390 | undertaking 391 | traces 392 | elite 393 | diversification 394 | interest 395 | pursuing 396 | wider 397 | restructuring 398 | emotional 399 | heyday 400 | regained 401 | marked 402 | aiding 403 | rebuilding 404 | initial 405 | improvement 406 | privatization 407 | strained 408 | involvement 409 | turmoil 410 | exceptionally 411 | unexpected 412 | financing 413 | dissatisfaction 414 | emerging 415 | overall 416 | importance 417 | burden 418 | landscape 419 | frequent 420 | weakness 421 | attempts 422 | contribution 423 | targeting 424 | comparatively 425 | resurgence 426 | flexibility 427 | gradual 428 | developments 429 | hardships 430 | harsh 431 | extensive 432 | moderate 433 | spreading 434 | doctrinal 435 | further 436 | share 437 | difficulty 438 | impetus 439 | strongest 440 | continuing 441 | hopes 442 | lent 443 | failures 444 | intensive 445 | depression 446 | improvements 447 | progress 448 | tremendous 449 | helped 450 | domestic 451 | plague 452 | risk 453 | modernization 454 | accusations 455 | widespread 456 | revival 457 | wildly 458 | availability 459 | faced 460 | advances 461 | steadily 462 | efforts 463 | presence 464 | accomplishments 465 | sustained 466 | upheaval 467 | serious 468 | remarkable 469 | remarkably 470 | culminating 471 | slowed 472 | downfall 473 | advent 474 | prosperity 475 | peaceful 476 | violent 477 | lack 478 | catastrophe 479 | opportunities 480 | prolonged 481 | departure 482 | exploded 483 | albeit 484 | achievement 485 | coincided 486 | intense 487 | expanding 488 | upheavals 489 | conflicts 490 | turbulent 491 | spoil 492 | declining 493 | boom 494 | -------------------------------------------------------------------------------- /result/17.txt: -------------------------------------------------------------------------------- 1 | morally 2 | universally 3 | feeling 4 | discipline 5 | nature 6 | extent 7 | objective 8 | beings 9 | choice 10 | rationality 11 | exact 12 | conscious 13 | seriously 14 | complicated 15 | emotion 16 | inconsistent 17 | vision 18 | divine 19 | formulation 20 | experience 21 | provable 22 | existential 23 | self 24 | connection 25 | empirical 26 | process 27 | intelligent 28 | perfect 29 | false 30 | identity 31 | nonetheless 32 | stressed 33 | reasonably 34 | reasonable 35 | another 36 | guilt 37 | convenient 38 | confusing 39 | concept 40 | shared 41 | regardless 42 | factual 43 | nor 44 | furthermore 45 | relevant 46 | versa 47 | fully 48 | intent 49 | phenomenon 50 | obviously 51 | consistency 52 | certainty 53 | temporal 54 | determining 55 | intrinsic 56 | halting 57 | scarcely 58 | universal 59 | fitting 60 | observation 61 | implying 62 | happening 63 | premises 64 | dealing 65 | merely 66 | interesting 67 | description 68 | ultimate 69 | arguing 70 | considering 71 | capable 72 | identifying 73 | needs 74 | premise 75 | task 76 | absolutely 77 | satisfactory 78 | cure 79 | implies 80 | implied 81 | falsifiable 82 | explanation 83 | knowledge 84 | nevertheless 85 | whatsoever 86 | traditionally 87 | kami 88 | variously 89 | believing 90 | ironic 91 | taste 92 | treating 93 | occasionally 94 | kind 95 | motivation 96 | skill 97 | alien 98 | suggests 99 | interpreted 100 | superior 101 | chaos 102 | hence 103 | unknown 104 | identification 105 | unclear 106 | thus 107 | perhaps 108 | rare 109 | lawful 110 | conclusion 111 | substance 112 | explained 113 | effective 114 | postulate 115 | morality 116 | trusted 117 | possibly 118 | unique 119 | proven 120 | extraterrestrial 121 | apparent 122 | suggesting 123 | expression 124 | flawed 125 | technically 126 | reasoning 127 | condition 128 | contrast 129 | coercion 130 | indicating 131 | sense 132 | relationship 133 | analogy 134 | obscure 135 | whole 136 | seems 137 | results 138 | doubt 139 | negation 140 | sufficiently 141 | ethical 142 | clearly 143 | mechanism 144 | surprisingly 145 | naturally 146 | fundamentally 147 | exception 148 | ordinary 149 | potentially 150 | solely 151 | manner 152 | paradigm 153 | notion 154 | subtle 155 | passive 156 | evidence 157 | rarely 158 | misconception 159 | means 160 | criterion 161 | explicit 162 | rather 163 | indeed 164 | entirely 165 | shown 166 | inevitable 167 | impossible 168 | breed 169 | essence 170 | seldom 171 | justified 172 | characterization 173 | moreover 174 | describe 175 | trace 176 | answers 177 | spontaneous 178 | deciding 179 | described 180 | acceptable 181 | experiment 182 | anyway 183 | evident 184 | correctly 185 | neither 186 | context 187 | accurate 188 | alternatively 189 | mechanics 190 | correct 191 | isn 192 | matter 193 | distinction 194 | genuinely 195 | entity 196 | sooner 197 | accurately 198 | insofar 199 | totally 200 | verifiable 201 | pleasure 202 | existence 203 | idea 204 | carefully 205 | moment 206 | indication 207 | consequently 208 | explaining 209 | overly 210 | effectively 211 | addiction 212 | wholly 213 | absurd 214 | ambiguity 215 | timing 216 | freely 217 | essentially 218 | underlying 219 | partially 220 | contact 221 | confusion 222 | humanity 223 | misleading 224 | primitive 225 | substitute 226 | afterlife 227 | adequately 228 | ultimately 229 | explicitly 230 | hardly 231 | changing 232 | mutually 233 | strictly 234 | strict 235 | applying 236 | oneself 237 | specifying 238 | inherent 239 | empirically 240 | consciously 241 | temperament 242 | exclusively 243 | understood 244 | desired 245 | sort 246 | defining 247 | contention 248 | brain 249 | arguably 250 | hypothesis 251 | literal 252 | inherently 253 | intentionally 254 | itself 255 | hypothetical 256 | argue 257 | occurrence 258 | understanding 259 | logically 260 | theoretical 261 | virtue 262 | tendency 263 | argument 264 | fundamental 265 | accepting 266 | systematic 267 | uncertain 268 | reliable 269 | error 270 | necessity 271 | formal 272 | paradox 273 | incomplete 274 | expressed 275 | consistently 276 | extreme 277 | causal 278 | truth 279 | fact 280 | meant 281 | controversial 282 | aware 283 | pejorative 284 | certainly 285 | predicate 286 | perceived 287 | topic 288 | truly 289 | physically 290 | usual 291 | assertion 292 | unconscious 293 | lacking 294 | describing 295 | propositional 296 | independently 297 | completely 298 | perfectly 299 | humans 300 | supernatural 301 | mistaken 302 | motive 303 | inaccurate 304 | equally 305 | neutral 306 | possibility 307 | suitable 308 | mind 309 | principle 310 | subject 311 | consciousness 312 | human 313 | feelings 314 | unnecessary 315 | taboo 316 | properly 317 | conclusive 318 | applicable 319 | perception 320 | readily 321 | eye 322 | definite 323 | harm 324 | assumption 325 | fashion 326 | deliberately 327 | implicit 328 | trait 329 | obvious 330 | ambiguous 331 | unlikely 332 | normally 333 | mathematically 334 | proper 335 | assuming 336 | actual 337 | conjecture 338 | consistent 339 | noting 340 | powerful 341 | ritual 342 | approach 343 | weak 344 | questionable 345 | whereas 346 | necessarily 347 | outcome 348 | ideal 349 | careful 350 | theoretically 351 | regard 352 | behaviour 353 | basically 354 | consequence 355 | creating 356 | essential 357 | intentional 358 | present 359 | unlike 360 | experimentally 361 | distinguishing 362 | similarly 363 | absence 364 | smell 365 | immune 366 | specifically 367 | realization 368 | proving 369 | scientifically 370 | vague 371 | normative 372 | attitude 373 | loosely 374 | coincidence 375 | virtually 376 | consensus 377 | appropriate 378 | likewise 379 | concerned 380 | consideration 381 | opinion 382 | strongly 383 | homosexual 384 | insufficient 385 | mere 386 | rigorous 387 | incompatible 388 | simultaneously 389 | meaningful 390 | genuine 391 | preferred 392 | erroneous 393 | somehow 394 | reality 395 | seemingly 396 | irreducible 397 | whenever 398 | semantics 399 | namely 400 | thinking 401 | valid 402 | emotions 403 | analogous 404 | beyond 405 | sentences 406 | clear 407 | probable 408 | whatever 409 | manifest 410 | objection 411 | practically 412 | proposition 413 | danger 414 | metaphor 415 | immoral 416 | legitimate 417 | minds 418 | subjective 419 | secondly 420 | similarity 421 | misunderstanding 422 | moral 423 | differently 424 | somewhat 425 | peculiar 426 | definitely 427 | ignorance 428 | thoughts 429 | sentence 430 | technique 431 | unpleasant 432 | useful 433 | avoiding 434 | critics 435 | argues 436 | ours 437 | surprising 438 | precise 439 | distinctly 440 | unusual 441 | everyday 442 | aspect 443 | expressing 444 | practical 445 | deterministic 446 | easily 447 | mental 448 | acting 449 | statement 450 | contrary 451 | organism 452 | justification 453 | contradiction 454 | implication 455 | selection 456 | otherwise 457 | thought 458 | turing 459 | interpretation 460 | symbolic 461 | socially 462 | respect 463 | incorrect 464 | sufficient 465 | functioning 466 | observing 467 | simplicity 468 | imperfect 469 | behavior 470 | credible 471 | karma 472 | proof 473 | purely 474 | debate 475 | meaningless 476 | identical 477 | consuming 478 | contradictory 479 | broadly 480 | -------------------------------------------------------------------------------- /result/2.txt: -------------------------------------------------------------------------------- 1 | secede 2 | diminishing 3 | qualifications 4 | oversight 5 | abortion 6 | preference 7 | monopoly 8 | abuses 9 | toleration 10 | sedition 11 | full 12 | respective 13 | recognizing 14 | remedy 15 | emergency 16 | reciprocity 17 | reconstruction 18 | ratification 19 | interests 20 | enforcement 21 | prohibition 22 | taxes 23 | denial 24 | recognition 25 | validity 26 | repeal 27 | integrity 28 | abolishing 29 | protection 30 | customs 31 | dumping 32 | refugee 33 | wastes 34 | cooperation 35 | liberties 36 | participation 37 | profession 38 | wrongdoing 39 | tribunals 40 | ratified 41 | challenges 42 | reform 43 | unanimous 44 | inquiry 45 | intervention 46 | fraud 47 | conviction 48 | compulsory 49 | sodomy 50 | safety 51 | procedural 52 | communal 53 | interventions 54 | patents 55 | enforced 56 | payments 57 | parole 58 | sway 59 | intrigue 60 | autonomy 61 | guaranteed 62 | failing 63 | copyrights 64 | involuntary 65 | codified 66 | sovereignty 67 | proposals 68 | membership 69 | nationality 70 | declaration 71 | decentralization 72 | assets 73 | uniformity 74 | governance 75 | enforcing 76 | habeas 77 | decision 78 | ceasefire 79 | defendant 80 | gfdl 81 | quo 82 | payment 83 | imposition 84 | trips 85 | recourse 86 | guidelines 87 | direct 88 | liberty 89 | ceremony 90 | imf 91 | banning 92 | confirming 93 | corpus 94 | kashrut 95 | proposed 96 | vaccination 97 | payable 98 | injunction 99 | importation 100 | voluntary 101 | allegations 102 | contract 103 | relief 104 | immunity 105 | treason 106 | decisions 107 | infringement 108 | ordinance 109 | supervision 110 | threats 111 | sole 112 | warrant 113 | restraint 114 | advocate 115 | redress 116 | breach 117 | confirmation 118 | examination 119 | constitutionally 120 | sanctioned 121 | priority 122 | grounds 123 | trademark 124 | scrutiny 125 | ensuring 126 | slave 127 | provisions 128 | employment 129 | protesting 130 | whaling 131 | binding 132 | restriction 133 | antitrust 134 | mandatory 135 | fair 136 | trustee 137 | accounting 138 | behalf 139 | petition 140 | surplus 141 | liable 142 | act 143 | mandated 144 | penalties 145 | compliance 146 | action 147 | misuse 148 | status 149 | statutory 150 | plan 151 | firm 152 | regulating 153 | demands 154 | prosecuted 155 | preventing 156 | citing 157 | firms 158 | coinage 159 | asylum 160 | requirement 161 | restrictions 162 | drug 163 | commitment 164 | tariff 165 | consent 166 | crimes 167 | accord 168 | patent 169 | indictment 170 | coulomb 171 | protective 172 | liability 173 | trial 174 | subsidies 175 | purity 176 | offence 177 | promotion 178 | pretext 179 | execution 180 | obedience 181 | copyright 182 | clerical 183 | temporary 184 | guarantees 185 | accountability 186 | consultation 187 | ceremonies 188 | statutes 189 | offences 190 | exclusion 191 | precaution 192 | providing 193 | proceedings 194 | approval 195 | discrimination 196 | expenditure 197 | rights 198 | assent 199 | interruption 200 | hygiene 201 | declaring 202 | unrestricted 203 | insider 204 | asserting 205 | corporations 206 | holders 207 | custody 208 | prosecutors 209 | sanction 210 | seeking 211 | funding 212 | humanitarian 213 | freedoms 214 | permission 215 | transitional 216 | tender 217 | secret 218 | secrecy 219 | matters 220 | neutrality 221 | suzerainty 222 | prohibiting 223 | contempt 224 | criminal 225 | mandate 226 | protecting 227 | embargo 228 | conduct 229 | abolition 230 | censorship 231 | participating 232 | icj 233 | icc 234 | espionage 235 | limitation 236 | genocide 237 | litigation 238 | morals 239 | equality 240 | profit 241 | convention 242 | holder 243 | prostitution 244 | crime 245 | regarding 246 | violated 247 | provided 248 | legal 249 | bilateral 250 | removal 251 | abandonment 252 | divorce 253 | penalty 254 | abiding 255 | corruption 256 | exemption 257 | precedence 258 | condemnation 259 | separation 260 | spying 261 | nostalgia 262 | illicit 263 | mutual 264 | interrogation 265 | desertification 266 | naming 267 | aggression 268 | rulings 269 | caution 270 | authorizing 271 | privilege 272 | worker 273 | damages 274 | harassment 275 | authorized 276 | psychotropic 277 | jury 278 | scope 279 | suspicion 280 | establishing 281 | amnesty 282 | investigation 283 | laws 284 | merit 285 | citizenship 286 | detention 287 | corollary 288 | relinquished 289 | freight 290 | reporters 291 | allegiance 292 | euro 293 | admission 294 | transactions 295 | suit 296 | prosecution 297 | directive 298 | licence 299 | challenge 300 | writ 301 | regulatory 302 | impeachment 303 | exempt 304 | amendment 305 | blasphemy 306 | deliberate 307 | transparency 308 | bans 309 | voting 310 | adequate 311 | aid 312 | property 313 | dhimmis 314 | requiring 315 | precedent 316 | appeal 317 | restitution 318 | enacted 319 | obligation 320 | taxation 321 | implementing 322 | enabling 323 | permissible 324 | collective 325 | reorganization 326 | ecclesiastical 327 | firmly 328 | issue 329 | arbitration 330 | stamp 331 | segregation 332 | constitutions 333 | regulations 334 | unlawful 335 | violation 336 | partners 337 | sabotage 338 | budgetary 339 | credit 340 | adopting 341 | plea 342 | jurisdiction 343 | initiative 344 | efficacy 345 | opportunity 346 | fsf 347 | customary 348 | lobbying 349 | attorneys 350 | endangered 351 | insanity 352 | accession 353 | deportation 354 | legitimacy 355 | accusation 356 | speech 357 | substantive 358 | narcotics 359 | responsibility 360 | regulation 361 | decrees 362 | consular 363 | wage 364 | immigration 365 | exercise 366 | legality 367 | extradition 368 | proposal 369 | ozone 370 | punishment 371 | assessment 372 | correctness 373 | appeals 374 | negotiating 375 | report 376 | procedure 377 | expenses 378 | proceeding 379 | obtaining 380 | superposition 381 | revenue 382 | legally 383 | oath 384 | duty 385 | magical 386 | tariffs 387 | inquiries 388 | prescription 389 | firearms 390 | governmental 391 | complaint 392 | pleas 393 | abuse 394 | limiting 395 | statute 396 | plaintiff 397 | narcotic 398 | granting 399 | cancellation 400 | ownership 401 | consulting 402 | incorporation 403 | prosecutions 404 | offense 405 | maintaining 406 | protections 407 | clause 408 | draft 409 | sale 410 | dispute 411 | mounting 412 | elimination 413 | enactment 414 | labeling 415 | equity 416 | biodiversity 417 | imposed 418 | certificate 419 | royalties 420 | torture 421 | illegal 422 | permanent 423 | decorations 424 | partnership 425 | terrorism 426 | schedule 427 | wetlands 428 | voter 429 | law 430 | misconduct 431 | suffrage 432 | concerning 433 | legislation 434 | assistance 435 | provision 436 | accordance 437 | filing 438 | proclamation 439 | charges 440 | deadline 441 | authorization 442 | boycott 443 | liaison 444 | approved 445 | determination 446 | judgments 447 | disclosure 448 | fda 449 | verdict 450 | inspection 451 | sanctions 452 | umbrella 453 | privacy 454 | monetary 455 | prohibited 456 | offenses 457 | prisons 458 | statehood 459 | treaties 460 | ban 461 | restricting 462 | claims 463 | lien 464 | licensing 465 | shipowner 466 | contracts 467 | grants 468 | imprisonment 469 | violence 470 | resolution 471 | compromise 472 | appellate 473 | obligations 474 | dietary 475 | bid 476 | seabed 477 | bankruptcy 478 | reconciliation 479 | responsibilities 480 | compensation 481 | exceptional 482 | amendments 483 | blessings 484 | guarantee 485 | prohibit 486 | penal 487 | permitting 488 | expressly 489 | tribunal 490 | renovation 491 | exclusive 492 | organisation 493 | unconstitutional 494 | correcting 495 | circumstance 496 | conspiring 497 | framework 498 | vindication 499 | unions 500 | adoption 501 | violations 502 | unlimited 503 | adjustment 504 | tax 505 | pending 506 | violating 507 | agency 508 | agreements 509 | privileges 510 | dependency 511 | registration 512 | funds 513 | -------------------------------------------------------------------------------- /result/21.txt: -------------------------------------------------------------------------------- 1 | sprague 2 | pinto 3 | fin 4 | beltway 5 | plata 6 | natura 7 | wct 8 | howell 9 | moderne 10 | minas 11 | palme 12 | edouard 13 | tamara 14 | guzm 15 | saintes 16 | yucatan 17 | monde 18 | extremadura 19 | francois 20 | witt 21 | sant 22 | sans 23 | mort 24 | albeniz 25 | vitry 26 | noma 27 | chapelle 28 | moyne 29 | collor 30 | lettre 31 | richelieu 32 | henley 33 | almeida 34 | technologie 35 | ministerio 36 | bartolom 37 | bianca 38 | rivi 39 | mendoza 40 | maisonneuve 41 | rodr 42 | cath 43 | maja 44 | paulo 45 | sulaiman 46 | tica 47 | cruz 48 | zquez 49 | seraphim 50 | brugge 51 | alonso 52 | aung 53 | dupont 54 | kolmogorov 55 | procopius 56 | gnp 57 | sousa 58 | cond 59 | laval 60 | tess 61 | cosa 62 | gaston 63 | vall 64 | nom 65 | romanis 66 | monsieur 67 | mouton 68 | gaspar 69 | repubblica 70 | quijote 71 | montr 72 | augustin 73 | sucre 74 | universidad 75 | manseriche 76 | jolla 77 | lis 78 | institut 79 | luisa 80 | indy 81 | uri 82 | golfo 83 | duchesse 84 | tora 85 | universitat 86 | simone 87 | parte 88 | estado 89 | femme 90 | dido 91 | norte 92 | starbuck 93 | germaine 94 | tico 95 | aux 96 | histoire 97 | mes 98 | famille 99 | hernando 100 | langue 101 | vittorio 102 | fonseca 103 | qaida 104 | motte 105 | petit 106 | conde 107 | bergerac 108 | lica 109 | majlis 110 | vite 111 | gascogne 112 | rapids 113 | compostela 114 | androids 115 | universit 116 | perro 117 | lisboa 118 | cul 119 | beauharnais 120 | zhu 121 | divina 122 | beauchamp 123 | rabi 124 | que 125 | hen 126 | oliveira 127 | tabari 128 | grosso 129 | mundo 130 | praia 131 | whisper 132 | nazionale 133 | kun 134 | fuerza 135 | quesada 136 | fontaine 137 | montagne 138 | brisson 139 | fundamento 140 | quincey 141 | pittori 142 | physique 143 | catarina 144 | mora 145 | perez 146 | roi 147 | libro 148 | vitae 149 | commentarii 150 | fern 151 | commedia 152 | palma 153 | sura 154 | casa 155 | nchez 156 | boyne 157 | pontificia 158 | sul 159 | suu 160 | cahiers 161 | fer 162 | mandeville 163 | defensa 164 | imp 165 | cinco 166 | pizan 167 | machaut 168 | artes 169 | peach 170 | nica 171 | marquise 172 | jing 173 | kaua 174 | ishaq 175 | pluperfect 176 | cristo 177 | sieur 178 | cantar 179 | valois 180 | guerra 181 | guerre 182 | herrera 183 | crespigny 184 | oaxaca 185 | soto 186 | foy 187 | teau 188 | gruyter 189 | vega 190 | bellas 191 | teilhard 192 | soci 193 | cyrano 194 | laguna 195 | espa 196 | lagrange 197 | por 198 | souvenirs 199 | ration 200 | mmol 201 | gonz 202 | pico 203 | lecoq 204 | loup 205 | rodrigues 206 | caudillo 207 | tra 208 | trobe 209 | jouvenel 210 | superiores 211 | seu 212 | ses 213 | nederlandse 214 | recherche 215 | motu 216 | philosophiae 217 | heures 218 | santo 219 | linguistique 220 | essai 221 | freeh 222 | milano 223 | lez 224 | portage 225 | puerta 226 | huguenot 227 | bleu 228 | latina 229 | plantes 230 | bourbon 231 | argel 232 | cegep 233 | montfort 234 | rochelle 235 | felice 236 | albret 237 | bruxelles 238 | galatea 239 | stanislaw 240 | ther 241 | lvaro 242 | forte 243 | aire 244 | icaza 245 | de 246 | campo 247 | basset 248 | aran 249 | mille 250 | anima 251 | balzac 252 | jong 253 | italiana 254 | ej 255 | dictionnaire 256 | voivodship 257 | valera 258 | vasco 259 | copacabana 260 | khoi 261 | armas 262 | vere 263 | vy 264 | voor 265 | villiers 266 | kilimanjaro 267 | monterrey 268 | rue 269 | montaigne 270 | barrios 271 | alvarado 272 | vieira 273 | luz 274 | iverson 275 | molinari 276 | sisyphe 277 | vicomte 278 | pacheco 279 | balboa 280 | noronha 281 | nee 282 | nez 283 | luca 284 | villepin 285 | rothschild 286 | noailles 287 | llobregat 288 | estadual 289 | savoie 290 | saussure 291 | chanson 292 | rosario 293 | theorie 294 | lausanne 295 | barra 296 | arte 297 | sayers 298 | generalitat 299 | peugeot 300 | beaumarchais 301 | gaulle 302 | cornelis 303 | dei 304 | petite 305 | haine 306 | founds 307 | pez 308 | ndez 309 | nder 310 | symphonie 311 | la 312 | camillo 313 | res 314 | rep 315 | rea 316 | catalina 317 | cachet 318 | brasilia 319 | chambre 320 | bayou 321 | corporis 322 | abb 323 | amon 324 | lago 325 | andrade 326 | albuquerque 327 | ani 328 | palmas 329 | juris 330 | porto 331 | jud 332 | grupo 333 | soles 334 | madeleine 335 | champlain 336 | buenos 337 | islas 338 | villanueva 339 | salazar 340 | maison 341 | duc 342 | nuevo 343 | nueva 344 | sagrada 345 | isma 346 | iturbide 347 | revolutionibus 348 | escuela 349 | lope 350 | castillo 351 | castilla 352 | auger 353 | tres 354 | broglie 355 | shangri 356 | boisbaudran 357 | polytechnique 358 | novo 359 | icing 360 | jure 361 | cimeti 362 | delacroix 363 | toro 364 | archimandrite 365 | bernardino 366 | rshavn 367 | esprit 368 | chronica 369 | origine 370 | biblioth 371 | het 372 | terre 373 | adad 374 | espace 375 | corte 376 | sitter 377 | burgh 378 | litt 379 | jen 380 | forza 381 | ami 382 | um 383 | alcal 384 | qasim 385 | inteligencia 386 | velde 387 | szl 388 | inductance 389 | vr 390 | serra 391 | beauvoir 392 | lune 393 | sayyid 394 | hora 395 | hors 396 | palau 397 | jehan 398 | etudes 399 | wo 400 | bras 401 | ais 402 | yoreh 403 | ola 404 | umm 405 | pictorial 406 | conquistador 407 | arkham 408 | keefe 409 | groot 410 | mello 411 | deux 412 | santiago 413 | sainte 414 | mirabeau 415 | diogenes 416 | loi 417 | miguel 418 | rameau 419 | lobos 420 | estudios 421 | droit 422 | kan 423 | henares 424 | ateneo 425 | hasan 426 | madre 427 | nationale 428 | mothe 429 | passy 430 | haute 431 | gran 432 | vida 433 | eau 434 | avellaneda 435 | hilaire 436 | troyes 437 | bona 438 | blica 439 | julien 440 | una 441 | schulz 442 | bello 443 | nnrot 444 | kia 445 | musique 446 | oeuvres 447 | musa 448 | russa 449 | leche 450 | eamon 451 | vous 452 | mah 453 | guevara 454 | oro 455 | ora 456 | centrale 457 | plume 458 | partido 459 | cabo 460 | fils 461 | goi 462 | vila 463 | gos 464 | rafe 465 | splash 466 | donn 467 | parc 468 | cosimo 469 | degli 470 | gerais 471 | neburg 472 | lettres 473 | thrill 474 | bueno 475 | fresno 476 | roche 477 | britanniae 478 | mie 479 | salle 480 | gestis 481 | mathematik 482 | burgos 483 | imprimerie 484 | azhar 485 | casas 486 | dauphin 487 | cle 488 | rojas 489 | screwtape 490 | masjid 491 | xico 492 | assembl 493 | becquerel 494 | tocqueville 495 | kyi 496 | champs 497 | hoya 498 | ncia 499 | hist 500 | mallorca 501 | internationale 502 | libert 503 | reina 504 | pont 505 | cours 506 | conakry 507 | canaria 508 | investigaciones 509 | alphonse 510 | leucine 511 | pongo 512 | enrique 513 | sia 514 | sie 515 | ponce 516 | bois 517 | miko 518 | mauss 519 | socialista 520 | sident 521 | goya 522 | alfons 523 | mnism 524 | imperatoribus 525 | valdivia 526 | falla 527 | rerum 528 | warr 529 | beaumont 530 | santander 531 | diputados 532 | sao 533 | sac 534 | primo 535 | tenerife 536 | amore 537 | vivre 538 | montesquieu 539 | hidalgo 540 | mythe 541 | aide 542 | acosta 543 | influenza 544 | catolica 545 | vie 546 | carvalho 547 | croix 548 | indias 549 | ritz 550 | molina 551 | caldera 552 | virginis 553 | arslan 554 | fayette 555 | universitaire 556 | cartier 557 | tien 558 | laurentiis 559 | jaynes 560 | gonzalo 561 | temps 562 | cke 563 | guez 564 | paseo 565 | methionine 566 | raison 567 | sadi 568 | nacional 569 | haut 570 | alcatraz 571 | unamuno 572 | thorndike 573 | lac 574 | dunstan 575 | sive 576 | moivre 577 | rivest 578 | cartagena 579 | ile 580 | nih 581 | nio 582 | nie 583 | dulce 584 | malley 585 | datura 586 | stijl 587 | connell 588 | hawai 589 | salinas 590 | campos 591 | havilland 592 | balaguer 593 | ciudad 594 | lys 595 | chalker 596 | sade 597 | sta 598 | jour 599 | lia 600 | renaud 601 | arjuna 602 | bolivar 603 | cour 604 | soares 605 | fuca 606 | publique 607 | freycinet 608 | roque 609 | piter 610 | dominique 611 | sensei 612 | fonds 613 | guzman 614 | shem 615 | madame 616 | ecclesiae 617 | guerrero 618 | marcos 619 | popolo 620 | valdes 621 | abol 622 | cheng 623 | cali 624 | principe 625 | ria 626 | cadillac 627 | grady 628 | vitoria 629 | bas 630 | bal 631 | amour 632 | lozada 633 | mancha 634 | palacio 635 | catalunya 636 | chevalier 637 | ville 638 | instituto 639 | flu 640 | sous 641 | janeiro 642 | homme 643 | colette 644 | hilda 645 | mara 646 | pas 647 | paz 648 | klerk 649 | universidade 650 | subdivision 651 | dieu 652 | torre 653 | guadalajara 654 | tudes 655 | garis 656 | maupassant 657 | scala 658 | mungo 659 | sancti 660 | albornoz 661 | sint 662 | ecole 663 | almagro 664 | beau 665 | vre 666 | vend 667 | niro 668 | wraith 669 | hanlon 670 | oise 671 | goncourt 672 | triomphe 673 | philosophie 674 | kleine 675 | aise 676 | iles 677 | bahia 678 | valle 679 | morte 680 | revue 681 | imperio 682 | sst 683 | summa 684 | geste 685 | isla 686 | pereira 687 | alain 688 | gallico 689 | avec 690 | lumbar 691 | manoel 692 | libertad 693 | zona 694 | tottenham 695 | tertius 696 | grands 697 | grande 698 | rieure 699 | dans 700 | nemours 701 | rin 702 | ignacio 703 | vries 704 | pron 705 | vella 706 | champ 707 | nuit 708 | tique 709 | condamine 710 | centro 711 | lacaille 712 | republica 713 | sica 714 | -------------------------------------------------------------------------------- /result/26.txt: -------------------------------------------------------------------------------- 1 | video 2 | books 3 | star 4 | magazine 5 | batman 6 | fiction 7 | version 8 | short 9 | story 10 | wrote 11 | best 12 | science 13 | edition 14 | appeared 15 | written 16 | novel 17 | works 18 | feature 19 | series 20 | tv 21 | award 22 | television 23 | stories 24 | character 25 | show 26 | film 27 | original 28 | universe 29 | films 30 | title 31 | animated 32 | published 33 | writing 34 | characters 35 | movie 36 | book 37 | -------------------------------------------------------------------------------- /result/28.txt: -------------------------------------------------------------------------------- 1 | errors 2 | circumstances 3 | gameplay 4 | fabric 5 | locations 6 | tricks 7 | causes 8 | substances 9 | civilizations 10 | symptoms 11 | courses 12 | reactions 13 | calculations 14 | individuals 15 | controversies 16 | entities 17 | genetic 18 | patterns 19 | details 20 | subjects 21 | discussions 22 | similarities 23 | domains 24 | advantages 25 | brains 26 | therapies 27 | organs 28 | combinations 29 | propositions 30 | viewpoints 31 | positions 32 | transformations 33 | including 34 | special 35 | limitations 36 | additional 37 | ingredients 38 | exceptions 39 | biochemical 40 | disorders 41 | conventions 42 | complaints 43 | sites 44 | threads 45 | specialized 46 | approaches 47 | concerns 48 | arrangements 49 | comparisons 50 | nicknames 51 | identities 52 | disciplines 53 | diseases 54 | situations 55 | cases 56 | jokes 57 | researchers 58 | cultures 59 | genetically 60 | questions 61 | separately 62 | include 63 | melodies 64 | assumptions 65 | monuments 66 | environments 67 | kinds 68 | vary 69 | structural 70 | opinions 71 | steps 72 | predictions 73 | definitions 74 | marriages 75 | truths 76 | bodies 77 | actions 78 | closely 79 | agents 80 | criticisms 81 | categories 82 | designs 83 | interactions 84 | figures 85 | variety 86 | notions 87 | practices 88 | physical 89 | incidents 90 | breeds 91 | birds 92 | dangers 93 | bugs 94 | consequences 95 | prayers 96 | interpretations 97 | addition 98 | contexts 99 | spells 100 | sizes 101 | pathways 102 | harmonics 103 | conjectures 104 | finitely 105 | fields 106 | sorts 107 | facts 108 | investigations 109 | scenarios 110 | mechanisms 111 | histories 112 | strategies 113 | habits 114 | paths 115 | individual 116 | proportions 117 | indicators 118 | tests 119 | brands 120 | variations 121 | localities 122 | viruses 123 | several 124 | specific 125 | criteria 126 | requirements 127 | possibilities 128 | directions 129 | deities 130 | options 131 | measures 132 | reasons 133 | abilities 134 | groupings 135 | associated 136 | issues 137 | patients 138 | rituals 139 | analyses 140 | opponents 141 | types 142 | approximations 143 | societies 144 | abstractions 145 | implications 146 | models 147 | treatises 148 | tasks 149 | experiments 150 | aspects 151 | punishments 152 | suggestions 153 | treatments 154 | conclusions 155 | facets 156 | outcomes 157 | discoveries 158 | rooms 159 | trials 160 | items 161 | theories 162 | schemes 163 | observations 164 | involving 165 | entries 166 | inventions 167 | attributes 168 | inclusion 169 | beliefs 170 | illnesses 171 | occasions 172 | storylines 173 | ecosystems 174 | universes 175 | within 176 | procedures 177 | processes 178 | phenomena 179 | goals 180 | differing 181 | materials 182 | meanings 183 | similar 184 | arguments 185 | important 186 | worms 187 | speculations 188 | arrangement 189 | interaction 190 | cycles 191 | accidents 192 | organisms 193 | drugs 194 | experts 195 | bacteria 196 | passages 197 | connections 198 | accounts 199 | activities 200 | influences 201 | weaknesses 202 | numerous 203 | shapes 204 | sections 205 | strands 206 | problems 207 | overlap 208 | worlds 209 | related 210 | behaviours 211 | artifacts 212 | reports 213 | classification 214 | concepts 215 | significance 216 | parallels 217 | statements 218 | findings 219 | structures 220 | genera 221 | settings 222 | certain 223 | perspectives 224 | objectives 225 | objections 226 | differ 227 | projects 228 | involved 229 | purposes 230 | pieces 231 | jurisdictions 232 | etc 233 | relationships 234 | explanations 235 | centres 236 | considerations 237 | debates 238 | genes 239 | consumers 240 | flaws 241 | enzymes 242 | aims 243 | gender 244 | configurations 245 | behaviors 246 | manifestations 247 | senses 248 | obstacles 249 | proofs 250 | additions 251 | skills 252 | principles 253 | professions 254 | usages 255 | qualities 256 | stages 257 | themes 258 | proteins 259 | especially 260 | trades 261 | innovations 262 | characteristics 263 | notable 264 | biological 265 | benefits 266 | instances 267 | responses 268 | classifications 269 | constraints 270 | barriers 271 | respects 272 | hypotheses 273 | classes 274 | labels 275 | differences 276 | radically 277 | alternatives 278 | insights 279 | inheritance 280 | branches 281 | factors 282 | ways 283 | assertions 284 | microscopic 285 | disadvantages 286 | components 287 | distinctions 288 | contributors 289 | joints 290 | various 291 | enhancements 292 | lengths 293 | modifications 294 | traits 295 | contributions 296 | ones 297 | generations 298 | choices 299 | nationalities 300 | medications 301 | -------------------------------------------------------------------------------- /result/33.txt: -------------------------------------------------------------------------------- 1 | therefore 2 | want 3 | wrong 4 | didn 5 | could 6 | put 7 | necessary 8 | likely 9 | yet 10 | get 11 | enough 12 | would 13 | sure 14 | without 15 | why 16 | difficult 17 | call 18 | exist 19 | take 20 | always 21 | makes 22 | anything 23 | let 24 | them 25 | do 26 | remember 27 | read 28 | feel 29 | ask 30 | my 31 | doesn 32 | go 33 | never 34 | tell 35 | give 36 | if 37 | question 38 | understand 39 | wish 40 | our 41 | no 42 | good 43 | might 44 | something 45 | whether 46 | so 47 | person 48 | should 49 | ve 50 | we 51 | possible 52 | way 53 | true 54 | appear 55 | happen 56 | cannot 57 | reason 58 | eat 59 | don 60 | make 61 | me 62 | thing 63 | think 64 | little 65 | simply 66 | too 67 | what 68 | wouldn 69 | nothing 70 | here 71 | hold 72 | how 73 | things 74 | say 75 | knew 76 | mean 77 | consider 78 | really 79 | doing 80 | does 81 | write 82 | couldn 83 | your 84 | aren 85 | you 86 | actually 87 | exactly 88 | need 89 | able 90 | ever 91 | answer 92 | better 93 | said 94 | just 95 | did 96 | someone 97 | find 98 | others 99 | must 100 | longer 101 | come 102 | will 103 | believe 104 | know 105 | -------------------------------------------------------------------------------- /result/36.txt: -------------------------------------------------------------------------------- 1 | music 2 | billboard 3 | quartet 4 | awards 5 | harpsichord 6 | zappa 7 | comedy 8 | scene 9 | abba 10 | cinematography 11 | rhythmic 12 | sabbath 13 | innovative 14 | musical 15 | songs 16 | vocals 17 | elvis 18 | bass 19 | popular 20 | tunes 21 | hits 22 | movies 23 | comedies 24 | clapton 25 | ensembles 26 | box 27 | performance 28 | label 29 | hardcore 30 | chart 31 | composing 32 | talent 33 | musicals 34 | picture 35 | jazz 36 | guitar 37 | featuring 38 | cash 39 | fender 40 | instruments 41 | solo 42 | operas 43 | folk 44 | psychedelic 45 | successful 46 | metallica 47 | theme 48 | score 49 | records 50 | funk 51 | bj 52 | percussion 53 | stage 54 | dj 55 | productions 56 | live 57 | concerts 58 | shows 59 | concert 60 | theater 61 | recorded 62 | fm 63 | performers 64 | famous 65 | genre 66 | acoustic 67 | bowie 68 | audience 69 | drums 70 | videos 71 | lp 72 | studio 73 | fanzines 74 | encore 75 | greatest 76 | bands 77 | opera 78 | producers 79 | included 80 | melody 81 | melodic 82 | megadeth 83 | symphony 84 | violin 85 | memorable 86 | reggae 87 | djs 88 | recordings 89 | guest 90 | accompaniment 91 | mozart 92 | band 93 | scenes 94 | tracks 95 | brothers 96 | rhythm 97 | directing 98 | album 99 | listening 100 | instrumental 101 | selling 102 | appearances 103 | synthesizer 104 | orchestra 105 | featured 106 | hollywood 107 | disco 108 | kid 109 | performing 110 | theatrical 111 | rock 112 | romantic 113 | genres 114 | ensemble 115 | playing 116 | recording 117 | fans 118 | repertoire 119 | grammy 120 | boys 121 | freestyle 122 | mix 123 | roles 124 | radio 125 | symphonic 126 | dylan 127 | appearing 128 | acclaimed 129 | releases 130 | released 131 | pop 132 | style 133 | critically 134 | orchestral 135 | seller 136 | performer 137 | performed 138 | improvised 139 | piano 140 | charts 141 | toured 142 | hop 143 | debut 144 | musicians 145 | release 146 | tune 147 | talents 148 | punk 149 | beatles 150 | fame 151 | instrument 152 | soundtrack 153 | broadway 154 | blues 155 | zeppelin 156 | vocal 157 | influential 158 | backing 159 | produced 160 | tempo 161 | nominations 162 | itunes 163 | indie 164 | techno 165 | received 166 | dance 167 | guitars 168 | garde 169 | dancers 170 | albums 171 | performances 172 | plays 173 | singing 174 | career 175 | artists 176 | cello 177 | piece 178 | signature 179 | lyrics 180 | avant 181 | theatre 182 | singers 183 | venues 184 | tribute 185 | dancing 186 | drama 187 | compositions 188 | screenplay 189 | rap 190 | trio 191 | artwork 192 | sessions 193 | styles 194 | song 195 | double 196 | hip 197 | baroque 198 | art 199 | distinctive 200 | spears 201 | incidental 202 | presley 203 | -------------------------------------------------------------------------------- /result/37.txt: -------------------------------------------------------------------------------- 1 | wednesday 2 | burial 3 | olds 4 | increment 5 | rediscovery 6 | eighteen 7 | adventist 8 | followed 9 | inquirer 10 | sunny 11 | sojourn 12 | last 13 | waning 14 | eleven 15 | festival 16 | fawkes 17 | thanksgiving 18 | punic 19 | carboniferous 20 | wet 21 | copulation 22 | fragmentation 23 | collide 24 | sodom 25 | codon 26 | night 27 | twelve 28 | sixth 29 | qualifying 30 | start 31 | fools 32 | month 33 | quartets 34 | evening 35 | footnote 36 | heaviest 37 | intercalary 38 | lapse 39 | thunderstorm 40 | julian 41 | nightmare 42 | tuesday 43 | tabernacle 44 | tertiary 45 | begins 46 | permian 47 | afternoon 48 | marking 49 | weekend 50 | carnival 51 | waited 52 | mesolithic 53 | stormy 54 | morning 55 | spans 56 | incubation 57 | valentine 58 | easter 59 | salad 60 | cretaceous 61 | closing 62 | fourteen 63 | hashanah 64 | onward 65 | gmt 66 | hurricane 67 | domini 68 | commemorating 69 | consulship 70 | saturday 71 | wedding 72 | standings 73 | fourth 74 | eighty 75 | eighth 76 | tumultuous 77 | sometime 78 | week 79 | ninth 80 | towel 81 | sun 82 | mayoral 83 | thirtieth 84 | friday 85 | patterned 86 | violins 87 | holiday 88 | eleventh 89 | occured 90 | puberty 91 | perpetual 92 | eighties 93 | commemorate 94 | deadliest 95 | iteration 96 | adventists 97 | bonfire 98 | winter 99 | ceawlin 100 | raged 101 | teens 102 | reigns 103 | nisan 104 | moon 105 | autumn 106 | eva 107 | erupted 108 | commemorated 109 | peacetime 110 | interregnum 111 | summit 112 | triassic 113 | installment 114 | thirteen 115 | hottest 116 | expiration 117 | moments 118 | celebration 119 | vernal 120 | mole 121 | ordovician 122 | sunset 123 | epoch 124 | hiatus 125 | seminole 126 | completion 127 | seventeen 128 | praying 129 | exilic 130 | lunisolar 131 | daylight 132 | halloween 133 | newsweek 134 | millennia 135 | ushered 136 | celebrations 137 | posting 138 | sixties 139 | interlude 140 | wwi 141 | daytime 142 | marks 143 | gestation 144 | till 145 | sunday 146 | hanukkah 147 | jail 148 | dates 149 | rains 150 | lunar 151 | retiring 152 | extinction 153 | monsoon 154 | onset 155 | itch 156 | dalai 157 | harvest 158 | glorious 159 | incarnations 160 | millennium 161 | waltz 162 | christmas 163 | preceding 164 | takeoff 165 | freshman 166 | undefeated 167 | picnic 168 | events 169 | medi 170 | gry 171 | ramadan 172 | hostage 173 | overtime 174 | rd 175 | solstice 176 | previous 177 | breadth 178 | reckoning 179 | twilight 180 | squared 181 | yearly 182 | fateful 183 | adar 184 | cambrian 185 | rain 186 | resting 187 | spring 188 | seventies 189 | shipwreck 190 | meiosis 191 | mahabharata 192 | tenth 193 | evacuation 194 | shortest 195 | staggered 196 | fourteenth 197 | hajj 198 | snowfall 199 | commemoration 200 | midsummer 201 | retrieved 202 | festive 203 | zeroes 204 | mourning 205 | thirties 206 | filming 207 | beating 208 | fermat 209 | months 210 | successive 211 | fifth 212 | calendars 213 | fiscal 214 | equinoxes 215 | sundays 216 | olden 217 | remaining 218 | lasts 219 | watergate 220 | annunciation 221 | expires 222 | endless 223 | gras 224 | commencement 225 | commencing 226 | weeks 227 | tentacle 228 | ovation 229 | meal 230 | ditch 231 | listing 232 | bastille 233 | mehrgarh 234 | workday 235 | iconoclastic 236 | interglacial 237 | lease 238 | standoff 239 | judgement 240 | remembrance 241 | weekday 242 | lama 243 | boxing 244 | kindergarten 245 | replacements 246 | wannsee 247 | place 248 | groundhog 249 | nd 250 | rosh 251 | thursday 252 | semester 253 | regnal 254 | stampede 255 | nights 256 | dilation 257 | fastest 258 | equinox 259 | dormant 260 | rainy 261 | edo 262 | polling 263 | demolition 264 | plebiscite 265 | feast 266 | midnight 267 | tango 268 | installments 269 | succeeding 270 | interwar 271 | truce 272 | course 273 | seventh 274 | twenties 275 | putney 276 | summer 277 | tsunami 278 | noon 279 | perilous 280 | europa 281 | scheduled 282 | centennial 283 | coldest 284 | intervening 285 | jurassic 286 | garage 287 | cannae 288 | monday 289 | tishri 290 | blooming 291 | lag 292 | metonic 293 | warmest 294 | stint 295 | inauguration 296 | courtship 297 | hijra 298 | yom 299 | commences 300 | event 301 | sts 302 | tractate 303 | parade 304 | holocene 305 | utc 306 | congresses 307 | synodic 308 | sophomore 309 | disappearing 310 | ending 311 | pleistocene 312 | mediaeval 313 | glaciation 314 | nativity 315 | lap 316 | gregorian 317 | pad 318 | nineteen 319 | peaked 320 | annual 321 | miocene 322 | yesterday 323 | sidereal 324 | kippur 325 | graduation 326 | breakup 327 | revisited 328 | twelfth 329 | expire 330 | celebrating 331 | fret 332 | columbian 333 | temptation 334 | betting 335 | penultimate 336 | birthday 337 | duplex 338 | sunrise 339 | devonian 340 | anniversary 341 | longest 342 | anno 343 | completing 344 | mardi 345 | kaddish 346 | procession 347 | pentecost 348 | inaugural 349 | probation 350 | homers 351 | fortieth 352 | leap 353 | glacial 354 | epiphany 355 | -------------------------------------------------------------------------------- /result/38.txt: -------------------------------------------------------------------------------- 1 | affairs 2 | municipal 3 | attorney 4 | crown 5 | chair 6 | borough 7 | epistles 8 | former 9 | nominally 10 | knesset 11 | resignation 12 | mps 13 | reserve 14 | secretary 15 | sovereign 16 | fbi 17 | serving 18 | invitation 19 | ceo 20 | justice 21 | formally 22 | delegates 23 | officials 24 | speaker 25 | indirectly 26 | subordinate 27 | guests 28 | hawke 29 | ambassador 30 | motto 31 | parish 32 | statewide 33 | squad 34 | treasure 35 | treasury 36 | seat 37 | synagogue 38 | convened 39 | defence 40 | rank 41 | commissions 42 | rivals 43 | honorary 44 | rump 45 | interim 46 | discretion 47 | lieutenant 48 | advisor 49 | estate 50 | newly 51 | associate 52 | censors 53 | unicameral 54 | dinner 55 | congregation 56 | posts 57 | priesthood 58 | councillors 59 | incumbent 60 | gang 61 | republican 62 | local 63 | charter 64 | nominated 65 | estates 66 | presidency 67 | politburo 68 | current 69 | whitlam 70 | cabell 71 | governing 72 | barrister 73 | vote 74 | rival 75 | clan 76 | ministerial 77 | heads 78 | consuls 79 | session 80 | judicial 81 | archbishop 82 | ministers 83 | populace 84 | legislative 85 | secretaries 86 | committees 87 | chancellor 88 | pension 89 | consolidated 90 | employees 91 | mayor 92 | councils 93 | appointments 94 | deputies 95 | nomination 96 | voters 97 | gm 98 | auspices 99 | founding 100 | chiefs 101 | resident 102 | appoint 103 | decree 104 | judges 105 | entangled 106 | facto 107 | justices 108 | appoints 109 | sworn 110 | constituencies 111 | chamber 112 | prefect 113 | resolutions 114 | admiralty 115 | seats 116 | citizen 117 | judiciary 118 | serve 119 | peers 120 | electorate 121 | head 122 | counsel 123 | trustees 124 | roosevelt 125 | districts 126 | meridian 127 | senator 128 | vassal 129 | chairman 130 | hearings 131 | democrats 132 | unanimously 133 | harkonnen 134 | abbot 135 | meetings 136 | resigned 137 | bnp 138 | papal 139 | prosecutor 140 | assistant 141 | representatives 142 | appointment 143 | parliaments 144 | assemblies 145 | anthem 146 | banner 147 | legislature 148 | representative 149 | senate 150 | scandal 151 | clinton 152 | un 153 | presidential 154 | synod 155 | officially 156 | veto 157 | exercised 158 | duties 159 | board 160 | consul 161 | commissioner 162 | commander 163 | constitutional 164 | suites 165 | thatcher 166 | banks 167 | retirement 168 | nationals 169 | councillor 170 | dominion 171 | imperial 172 | courts 173 | dissolution 174 | whose 175 | referendum 176 | magistrates 177 | manager 178 | democrat 179 | elect 180 | lords 181 | regency 182 | served 183 | provisional 184 | advice 185 | electoral 186 | administrative 187 | klan 188 | request 189 | staff 190 | authority 191 | solicitor 192 | judge 193 | offices 194 | officer 195 | parliamentary 196 | alp 197 | court 198 | inaugurated 199 | militia 200 | democratically 201 | vice 202 | bills 203 | coaches 204 | ruling 205 | provincial 206 | presiding 207 | senators 208 | prison 209 | funeral 210 | privy 211 | congressional 212 | constituency 213 | currently 214 | majesty 215 | hereditary 216 | arrest 217 | commission 218 | votes 219 | voted 220 | delegate 221 | office 222 | ticket 223 | powers 224 | independent 225 | stake 226 | mayors 227 | premier 228 | ceremonial 229 | headed 230 | dominions 231 | princely 232 | resign 233 | adopted 234 | employee 235 | magistrate 236 | nominal 237 | commons 238 | governors 239 | candidate 240 | governments 241 | clerk 242 | ministry 243 | ranking 244 | house 245 | meeting 246 | deputy 247 | presidents 248 | chief 249 | puppet 250 | general 251 | administration 252 | position 253 | executive 254 | supreme 255 | monarch 256 | commissioners 257 | senior 258 | vested 259 | cabinet 260 | passed 261 | finances 262 | treasurer 263 | became 264 | administrator 265 | candidates 266 | divinely 267 | -------------------------------------------------------------------------------- /result/39.txt: -------------------------------------------------------------------------------- 1 | thrace 2 | populations 3 | assimilated 4 | dinosaurs 5 | guitarists 6 | ministries 7 | racers 8 | anabaptists 9 | gypsies 10 | elders 11 | mosques 12 | captive 13 | transgender 14 | riders 15 | inhabiting 16 | indigenous 17 | specialists 18 | warriors 19 | europeans 20 | jewry 21 | linguists 22 | colonists 23 | anthropologists 24 | sunni 25 | activists 26 | collectively 27 | tribes 28 | terrorists 29 | berbers 30 | amish 31 | barristers 32 | bilingual 33 | hijackers 34 | physicians 35 | archbishops 36 | villagers 37 | biologists 38 | forcibly 39 | handful 40 | travellers 41 | psychologists 42 | counterparts 43 | emigrants 44 | wealthy 45 | filipinos 46 | philosophers 47 | remnants 48 | founders 49 | locals 50 | minorities 51 | settlements 52 | zionists 53 | ancestors 54 | radicals 55 | israelis 56 | nomadic 57 | immigrant 58 | reinforcements 59 | tens 60 | diplomats 61 | liberals 62 | malays 63 | conscripts 64 | tourists 65 | landlords 66 | baptists 67 | spaniards 68 | schoolchildren 69 | athletes 70 | merchants 71 | colonies 72 | ethiopians 73 | theorists 74 | elderly 75 | barbarians 76 | murderers 77 | pashtun 78 | afghans 79 | goddesses 80 | tatars 81 | nuns 82 | viewers 83 | trolls 84 | businesses 85 | restaurants 86 | deacons 87 | kurds 88 | currencies 89 | collectors 90 | cater 91 | beasts 92 | haitians 93 | highlanders 94 | swedes 95 | fascists 96 | monarchs 97 | statues 98 | delegations 99 | excluding 100 | planners 101 | bowlers 102 | commentators 103 | convicts 104 | amerindian 105 | hasidic 106 | hasidim 107 | immigrated 108 | immigrants 109 | rodents 110 | geographers 111 | clowns 112 | captives 113 | natives 114 | dissenters 115 | skeptics 116 | finns 117 | bats 118 | australians 119 | parliamentarians 120 | donations 121 | mercenaries 122 | tribe 123 | artisans 124 | assassins 125 | directors 126 | oppressed 127 | architects 128 | dealers 129 | presbyterians 130 | franchises 131 | fleets 132 | burials 133 | independents 134 | breasts 135 | lithuanians 136 | fortresses 137 | adventurers 138 | ambassadors 139 | traditionalists 140 | tracts 141 | teenagers 142 | slavs 143 | captains 144 | methodists 145 | gentiles 146 | expatriates 147 | whigs 148 | babies 149 | pioneers 150 | masons 151 | citizens 152 | physicists 153 | illegally 154 | frogs 155 | atheists 156 | psychiatrists 157 | bantu 158 | countryside 159 | victims 160 | residents 161 | mariners 162 | choctaws 163 | intellectuals 164 | historians 165 | invertebrates 166 | specimens 167 | indians 168 | backgrounds 169 | dozens 170 | families 171 | italians 172 | bombings 173 | embassies 174 | seekers 175 | episcopalians 176 | observers 177 | builders 178 | hobbyists 179 | recruits 180 | screenwriters 181 | scouts 182 | pows 183 | amerindians 184 | basques 185 | geologists 186 | rulers 187 | quarters 188 | abroad 189 | adults 190 | armenians 191 | politicians 192 | spectators 193 | demonstrators 194 | enslaved 195 | frigates 196 | koreans 197 | ancestry 198 | conservatives 199 | alchemists 200 | pharisees 201 | capitalists 202 | pilgrims 203 | prominent 204 | loyalists 205 | unemployed 206 | academics 207 | enthusiasts 208 | egyptians 209 | economists 210 | executions 211 | rappers 212 | horsemen 213 | roma 214 | authorities 215 | peasant 216 | massacres 217 | dwellers 218 | gangs 219 | mothers 220 | dignitaries 221 | participants 222 | monarchies 223 | chanting 224 | athenians 225 | minors 226 | khazars 227 | educators 228 | traders 229 | labourers 230 | bisexual 231 | censuses 232 | cantons 233 | princes 234 | relics 235 | hundreds 236 | astronomers 237 | reformers 238 | peasants 239 | inventors 240 | levites 241 | actresses 242 | landowners 243 | laborers 244 | groups 245 | amazons 246 | apes 247 | explorers 248 | invasions 249 | visitors 250 | filmmakers 251 | noblemen 252 | lovers 253 | migrated 254 | evangelicals 255 | agnostics 256 | caucasian 257 | chechens 258 | warnings 259 | eurosceptics 260 | dissidents 261 | migrants 262 | jesuits 263 | journalists 264 | astrologers 265 | mathematicians 266 | navies 267 | undergraduates 268 | hunters 269 | routinely 270 | israelites 271 | essenes 272 | sympathizers 273 | mennonites 274 | comedians 275 | survivors 276 | foremost 277 | hadith 278 | hungarians 279 | druids 280 | internationally 281 | frisians 282 | clans 283 | aryans 284 | tribal 285 | polls 286 | sikhs 287 | starving 288 | composers 289 | homeless 290 | scientists 291 | blacks 292 | fishermen 293 | elsewhere 294 | practicing 295 | britons 296 | hindus 297 | listeners 298 | bulgarians 299 | invaders 300 | defenders 301 | incorrectly 302 | investors 303 | anglicans 304 | romanians 305 | arabs 306 | saxons 307 | factories 308 | hackers 309 | danes 310 | militants 311 | miners 312 | practitioners 313 | unionists 314 | outsiders 315 | canadians 316 | jains 317 | refugees 318 | londoners 319 | serfs 320 | peacekeepers 321 | minority 322 | guilds 323 | tiles 324 | buyers 325 | calvinists 326 | humanists 327 | claimants 328 | plantations 329 | archaeologists 330 | mongols 331 | gamers 332 | employers 333 | dictators 334 | iranians 335 | conspirators 336 | doctors 337 | revolts 338 | boers 339 | dances 340 | gay 341 | foreigners 342 | privately 343 | festivals 344 | descendants 345 | ethnically 346 | transsexual 347 | ashkenazi 348 | overwhelmingly 349 | superheroes 350 | dictatorships 351 | berliners 352 | legislators 353 | cathars 354 | islanders 355 | predominantly 356 | addicts 357 | unarmed 358 | farmers 359 | leftists 360 | couples 361 | persons 362 | royalists 363 | amongst 364 | identifiable 365 | communities 366 | aristocracy 367 | austrians 368 | orchestras 369 | peoples 370 | workers 371 | sages 372 | purists 373 | settlers 374 | freemasons 375 | kazakhs 376 | russians 377 | audiences 378 | socialists 379 | travelers 380 | ranks 381 | southerners 382 | youths 383 | quakers 384 | nobles 385 | latvians 386 | greens 387 | crusaders 388 | palestinians 389 | tuareg 390 | marxists 391 | alcoholics 392 | separatists 393 | syrians 394 | inuit 395 | congregations 396 | extinct 397 | actors 398 | sephardic 399 | converts 400 | diaspora 401 | knights 402 | haredi 403 | sizeable 404 | smiths 405 | albanians 406 | volunteers 407 | surgeons 408 | elites 409 | songwriters 410 | monasteries 411 | pets 412 | goths 413 | loans 414 | mammoths 415 | executives 416 | owners 417 | servicemen 418 | emigrated 419 | fellowship 420 | anarchists 421 | newcomers 422 | dioceses 423 | descent 424 | sailors 425 | gatherers 426 | entertainers 427 | uprisings 428 | missionaries 429 | pogroms 430 | kingdoms 431 | inmates 432 | slaves 433 | celts 434 | chefs 435 | cats 436 | icons 437 | biographers 438 | neanderthals 439 | businessmen 440 | adherents 441 | alongside 442 | archers 443 | celebrities 444 | alike 445 | lawyers 446 | poles 447 | africans 448 | elephants 449 | puritans 450 | gladiators 451 | donors 452 | nightclubs 453 | mandates 454 | druze 455 | militias 456 | living 457 | spies 458 | remittances 459 | americans 460 | personalities 461 | patrons 462 | steppes 463 | careers 464 | retailers 465 | notably 466 | lutherans 467 | whites 468 | craftsmen 469 | aristocrats 470 | possessions 471 | exiles 472 | youth 473 | engagements 474 | nobility 475 | environmentalists 476 | holocaust 477 | hostages 478 | famines 479 | migrating 480 | originals 481 | sharks 482 | emigration 483 | native 484 | empires 485 | sexes 486 | mafia 487 | homes 488 | royalty 489 | analysts 490 | asians 491 | nobleman 492 | pagans 493 | buddhists 494 | mainly 495 | westerners 496 | cubans 497 | shops 498 | pastors 499 | revolutionaries 500 | expatriate 501 | swords 502 | detainees 503 | lesbians 504 | ballads 505 | feminists 506 | entrepreneurs 507 | rabbis 508 | women 509 | ethnic 510 | thousands 511 | homosexuals 512 | conversions 513 | serbs 514 | poets 515 | macedonians 516 | -------------------------------------------------------------------------------- /result/40.txt: -------------------------------------------------------------------------------- 1 | wang 2 | festus 3 | menachem 4 | ldp 5 | adnan 6 | hamas 7 | voroshilov 8 | jumblatt 9 | unmik 10 | atat 11 | overlord 12 | eliezer 13 | bartolommeo 14 | annexing 15 | collided 16 | javier 17 | weierstrass 18 | horch 19 | natalia 20 | bismarck 21 | cheney 22 | healey 23 | gandy 24 | obiang 25 | mohandas 26 | silva 27 | jiang 28 | xiaoping 29 | imre 30 | nikolay 31 | evi 32 | sadat 33 | cronenberg 34 | ahern 35 | erica 36 | flashback 37 | worldcom 38 | cannibals 39 | ould 40 | nazarbayev 41 | iain 42 | choi 43 | aleksandr 44 | commandant 45 | alessandri 46 | marty 47 | qadhafi 48 | jehoiakim 49 | wen 50 | wes 51 | sextus 52 | greaves 53 | sukarno 54 | ers 55 | perihelion 56 | azeglio 57 | maduro 58 | danforth 59 | massoud 60 | botham 61 | muhammed 62 | tong 63 | cont 64 | siegfried 65 | omri 66 | kenyatta 67 | nguyen 68 | fargo 69 | bevin 70 | amr 71 | envoys 72 | garret 73 | batista 74 | blanco 75 | lazio 76 | zedong 77 | nehru 78 | cointelpro 79 | blossom 80 | spartans 81 | humbert 82 | newsted 83 | bloomfield 84 | aristide 85 | giacometti 86 | blair 87 | machado 88 | slobodan 89 | hirschfeld 90 | uribe 91 | fernando 92 | reza 93 | valerian 94 | bevan 95 | akayev 96 | spokesman 97 | dostum 98 | zedekiah 99 | walid 100 | attlee 101 | yen 102 | yew 103 | wahhab 104 | amanullah 105 | ariel 106 | lahoud 107 | crossfire 108 | schwarzenegger 109 | kmt 110 | rebadged 111 | mulroney 112 | mikhail 113 | yasser 114 | hafez 115 | mitterrand 116 | ebert 117 | szil 118 | salam 119 | unofficially 120 | rosso 121 | verhofstadt 122 | gamal 123 | habib 124 | undisputed 125 | kuo 126 | governorship 127 | qarase 128 | amin 129 | amir 130 | milgram 131 | peake 132 | koizumi 133 | avatar 134 | abdel 135 | lukashenko 136 | taraki 137 | fairchild 138 | roc 139 | domestically 140 | ashdown 141 | dispatches 142 | harlan 143 | derleth 144 | gustavo 145 | spacey 146 | peres 147 | justus 148 | negotiator 149 | banzer 150 | shoghi 151 | abdicate 152 | blaise 153 | federer 154 | coordinator 155 | robespierre 156 | captaincy 157 | arafat 158 | heydrich 159 | generalship 160 | karzai 161 | shivaji 162 | gneisenau 163 | mcclellan 164 | sabah 165 | ripper 166 | chavez 167 | aegis 168 | organizer 169 | wink 170 | truman 171 | malagasy 172 | noriega 173 | vargas 174 | zimbabwean 175 | looming 176 | peltier 177 | lemay 178 | khaled 179 | collectivization 180 | bryson 181 | prologue 182 | peso 183 | vez 184 | vel 185 | yitzhak 186 | palatinate 187 | taki 188 | buren 189 | broz 190 | putin 191 | aneurin 192 | vacant 193 | unsuccessfully 194 | bundy 195 | rossellini 196 | cpc 197 | jawaharlal 198 | allende 199 | horthy 200 | hipper 201 | condon 202 | atchison 203 | sed 204 | zoff 205 | patrice 206 | bu 207 | jahangir 208 | linn 209 | ferenc 210 | trudeau 211 | lev 212 | operative 213 | reformist 214 | sharon 215 | harnack 216 | amtrak 217 | reinhardt 218 | bolivian 219 | kofi 220 | rioting 221 | sheedy 222 | alejandro 223 | woodruff 224 | grover 225 | nigerian 226 | chirac 227 | cerberus 228 | healy 229 | mohamed 230 | resigns 231 | spd 232 | abdallah 233 | morales 234 | landslide 235 | kournikova 236 | bian 237 | tunku 238 | mengele 239 | greenspan 240 | kamenev 241 | molotov 242 | sheikh 243 | wojciech 244 | luciano 245 | shan 246 | capitulation 247 | dollfuss 248 | caretaker 249 | tito 250 | oliva 251 | haman 252 | arif 253 | gemayel 254 | dpp 255 | mohammed 256 | maskhadov 257 | netanyahu 258 | tombalbaye 259 | gestapo 260 | sonic 261 | sexton 262 | omar 263 | kgb 264 | kesey 265 | wiesel 266 | qaddafi 267 | ncipe 268 | rayleigh 269 | venter 270 | ventura 271 | mci 272 | mcp 273 | burmese 274 | bowell 275 | verona 276 | mubarak 277 | belgrano 278 | klaus 279 | kamal 280 | dole 281 | liam 282 | cornelia 283 | outgoing 284 | pdpa 285 | bizkit 286 | rabbani 287 | goldwater 288 | fayed 289 | laxness 290 | assad 291 | lorentz 292 | likud 293 | mothman 294 | hohner 295 | colombian 296 | huang 297 | madero 298 | adenauer 299 | boomer 300 | rhee 301 | frelimo 302 | yusuf 303 | shamir 304 | phocas 305 | bakr 306 | anwar 307 | duvalier 308 | modernisation 309 | pri 310 | taya 311 | abdul 312 | abdur 313 | leonid 314 | hazmi 315 | shearer 316 | kach 317 | vicente 318 | czechoslovak 319 | guelleh 320 | superamerica 321 | kuwaiti 322 | humboldt 323 | corporal 324 | quorum 325 | memorandum 326 | maaouya 327 | nasser 328 | figueres 329 | koontz 330 | kosi 331 | trofeo 332 | rasmussen 333 | nol 334 | suharto 335 | indira 336 | mobutu 337 | andropov 338 | ratsiraka 339 | rg 340 | fujimori 341 | pnp 342 | golovachev 343 | subsidy 344 | pontiac 345 | mckellen 346 | soe 347 | zapata 348 | mahdi 349 | bender 350 | tory 351 | irina 352 | kuan 353 | chernenko 354 | counselor 355 | chiang 356 | ahmad 357 | soloist 358 | bhutto 359 | millard 360 | taoiseach 361 | ivo 362 | daimlerchrysler 363 | robins 364 | hel 365 | elena 366 | fatah 367 | brig 368 | hewitt 369 | jacinto 370 | lewinsky 371 | lucio 372 | isaias 373 | nominates 374 | afi 375 | porfirio 376 | fidel 377 | tojo 378 | kampuchea 379 | schleicher 380 | eduardo 381 | patass 382 | mathers 383 | luna 384 | triumphant 385 | counterattack 386 | ing 387 | batasuna 388 | hagelin 389 | chen 390 | scheer 391 | baggage 392 | venizelos 393 | uthman 394 | saddam 395 | jekyll 396 | azali 397 | deflation 398 | emir 399 | rwandan 400 | issa 401 | hamza 402 | ayatollah 403 | hearn 404 | sysf 405 | ciampi 406 | barak 407 | jardine 408 | callisto 409 | habr 410 | lon 411 | napster 412 | rugova 413 | greenpeace 414 | wolverine 415 | aziz 416 | kai 417 | kal 418 | kat 419 | makarios 420 | ferrigno 421 | contras 422 | yeltsin 423 | najibullah 424 | tsarist 425 | megawati 426 | kaunda 427 | gundobad 428 | affleck 429 | algardi 430 | pavel 431 | viktor 432 | yat 433 | overthrowing 434 | hernandez 435 | multiculturalism 436 | babur 437 | minh 438 | konstantin 439 | stilicho 440 | eastwood 441 | yankovic 442 | russo 443 | gael 444 | rabin 445 | hbc 446 | quaestor 447 | gonzo 448 | yassin 449 | tempore 450 | woodrow 451 | rashid 452 | rutskoy 453 | mandela 454 | macias 455 | snegur 456 | compaor 457 | carnage 458 | ehud 459 | libi 460 | syn 461 | brent 462 | boyz 463 | assassinate 464 | reissued 465 | hariri 466 | interceptions 467 | benghazi 468 | stoiber 469 | jabbar 470 | colbert 471 | biruni 472 | nightmares 473 | wahid 474 | augusto 475 | pizarro 476 | enron 477 | amati 478 | marcion 479 | hakim 480 | bsa 481 | pasha 482 | kinnock 483 | ely 484 | ibrahim 485 | valentin 486 | voronin 487 | rafael 488 | benito 489 | serb 490 | rene 491 | reno 492 | hillel 493 | pol 494 | caprino 495 | denard 496 | chaplain 497 | eden 498 | mullis 499 | pastrana 500 | zachary 501 | cdu 502 | nkrumah 503 | santos 504 | khwarizmi 505 | bartlett 506 | raider 507 | glamour 508 | mihdhar 509 | pres 510 | gubernatorial 511 | delano 512 | lech 513 | privatisation 514 | zaire 515 | avengers 516 | tariq 517 | precession 518 | belisarius 519 | chairmanship 520 | mahuad 521 | mordecai 522 | alias 523 | georgy 524 | grievous 525 | hui 526 | qaeda 527 | heaviside 528 | eoin 529 | castro 530 | tung 531 | mircea 532 | korzybski 533 | annan 534 | marbury 535 | auchinleck 536 | pavlov 537 | nascar 538 | meighen 539 | alvaro 540 | rumsfeld 541 | bauer 542 | alfredo 543 | bernardo 544 | curator 545 | josip 546 | nikita 547 | kla 548 | chifley 549 | chandra 550 | kolingba 551 | henson 552 | mprp 553 | pds 554 | mlp 555 | sputnik 556 | osama 557 | bixby 558 | shui 559 | overthrew 560 | silvio 561 | meier 562 | khalid 563 | heraclitus 564 | omari 565 | serrano 566 | sher 567 | xanadu 568 | tsang 569 | capone 570 | selig 571 | nasir 572 | gandhi 573 | salim 574 | bahr 575 | pla 576 | kenyan 577 | donner 578 | rouge 579 | diva 580 | beazley 581 | shimon 582 | kano 583 | barca 584 | deke 585 | philistines 586 | gayoom 587 | zemin 588 | zanzibar 589 | mordechai 590 | liu 591 | imam 592 | yuan 593 | overthrows 594 | ranjit 595 | stonewall 596 | idf 597 | fdi 598 | fdp 599 | malik 600 | reelected 601 | cartel 602 | brundtland 603 | bormann 604 | berlusconi 605 | boris 606 | felipe 607 | shaikh 608 | himmler 609 | shek 610 | mansur 611 | medgar 612 | saladin 613 | ortega 614 | moshe 615 | blitzkrieg 616 | pardons 617 | karamanlis 618 | generalissimo 619 | karmal 620 | yahya 621 | baz 622 | mohammad 623 | manchu 624 | devaluation 625 | milo 626 | rickey 627 | neurath 628 | yuri 629 | merkel 630 | lumumba 631 | oilers 632 | moi 633 | downer 634 | gore 635 | abi 636 | diaz 637 | csu 638 | bacall 639 | shevardnadze 640 | pepe 641 | reinhard 642 | directorate 643 | kabila 644 | godard 645 | murdoc 646 | bin 647 | arminius 648 | daoud 649 | keating 650 | wordperfect 651 | limp 652 | orestes 653 | lapd 654 | nagy 655 | beria 656 | watkins 657 | rodrigo 658 | inspector 659 | mahathir 660 | paulus 661 | frei 662 | rau 663 | commanding 664 | mahmoud 665 | konoe 666 | pallas 667 | cnt 668 | seaborg 669 | krush 670 | ssr 671 | gallienus 672 | brezhnev 673 | zinoviev 674 | booker 675 | sheehan 676 | pesce 677 | pinochet 678 | ltte 679 | lola 680 | unopposed 681 | perot 682 | noodle 683 | mccarthyism 684 | vyacheslav 685 | tam 686 | meir 687 | proclus 688 | deng 689 | escobar 690 | brigadier 691 | bongo 692 | mustaine 693 | -------------------------------------------------------------------------------- /result/41.txt: -------------------------------------------------------------------------------- 1 | alphabetic 2 | golden 3 | sermons 4 | apocrypha 5 | strips 6 | genesis 7 | anniversaries 8 | fanzine 9 | copyrighted 10 | mythos 11 | manga 12 | printed 13 | deuteronomy 14 | readings 15 | photos 16 | cantatas 17 | extant 18 | newspaper 19 | wired 20 | pulp 21 | encyclop 22 | memoirs 23 | essays 24 | columns 25 | atlantis 26 | revision 27 | quixote 28 | bigfoot 29 | stuff 30 | deuterocanonical 31 | documentary 32 | archaeological 33 | historical 34 | portraits 35 | scripts 36 | edited 37 | wikisource 38 | discussion 39 | tablets 40 | dyson 41 | correspondence 42 | hymns 43 | reprints 44 | verse 45 | diaries 46 | horror 47 | dissertation 48 | dune 49 | pictures 50 | experimental 51 | guide 52 | reviewed 53 | showing 54 | sketch 55 | anecdotes 56 | vampire 57 | encyclopedia 58 | chaucer 59 | biographical 60 | unfinished 61 | homeric 62 | amazing 63 | monumental 64 | encyclopaedia 65 | editor 66 | polemical 67 | commentaries 68 | annals 69 | quoting 70 | manifesto 71 | novella 72 | imagination 73 | preserved 74 | mentions 75 | biography 76 | maps 77 | mystery 78 | reflections 79 | pamphlet 80 | epic 81 | scarlet 82 | literary 83 | recipes 84 | treatise 85 | seminal 86 | discovery 87 | excerpt 88 | papers 89 | posthumous 90 | paper 91 | gutenberg 92 | websites 93 | translating 94 | invention 95 | jeremiah 96 | tragedy 97 | interviews 98 | authored 99 | autobiography 100 | footnotes 101 | chapters 102 | cyberpunk 103 | symphonies 104 | writings 105 | readers 106 | adventures 107 | retelling 108 | collections 109 | creations 110 | revised 111 | contained 112 | merlin 113 | weekly 114 | detailed 115 | lute 116 | citations 117 | codex 118 | essay 119 | depiction 120 | documents 121 | megatokyo 122 | fragmentary 123 | fragment 124 | encyclopedias 125 | discourses 126 | comments 127 | anonymous 128 | dedicated 129 | epistle 130 | concertos 131 | editorial 132 | comics 133 | timeline 134 | edda 135 | unpublished 136 | descriptions 137 | chronicles 138 | poetry 139 | photograph 140 | villains 141 | legacy 142 | obituary 143 | dickens 144 | definitive 145 | historia 146 | notices 147 | prophetic 148 | concise 149 | sonatas 150 | dawn 151 | posthumously 152 | reference 153 | apocryphal 154 | anchor 155 | plot 156 | classic 157 | fashioned 158 | editors 159 | outline 160 | screenplays 161 | summary 162 | reading 163 | dated 164 | odyssey 165 | titled 166 | titles 167 | galleries 168 | commentary 169 | alternate 170 | bach 171 | pen 172 | britannica 173 | optics 174 | biographies 175 | reconstructed 176 | memoir 177 | legends 178 | mishnah 179 | thesis 180 | revelations 181 | combining 182 | handwritten 183 | extracts 184 | amos 185 | asimov 186 | opus 187 | weird 188 | conversations 189 | recipe 190 | guides 191 | prolific 192 | oz 193 | includes 194 | presentation 195 | esther 196 | fugue 197 | texts 198 | gothic 199 | autobiographical 200 | exodus 201 | translators 202 | newsletter 203 | fragments 204 | iliad 205 | anonymously 206 | ezekiel 207 | myth 208 | preface 209 | fictional 210 | dracula 211 | entry 212 | lessons 213 | headline 214 | exposition 215 | magazines 216 | genealogy 217 | textbook 218 | sf 219 | principia 220 | poems 221 | novellas 222 | documentaries 223 | diary 224 | legend 225 | atlas 226 | foundations 227 | introduction 228 | contra 229 | satirical 230 | dating 231 | isaiah 232 | publications 233 | mysteries 234 | outlines 235 | manuscript 236 | collecting 237 | liner 238 | painting 239 | bibliography 240 | proverbs 241 | scholarly 242 | ghost 243 | salon 244 | highlights 245 | photo 246 | illustration 247 | illustrations 248 | graphic 249 | selections 250 | tragic 251 | manuscripts 252 | overview 253 | groundwork 254 | contains 255 | prose 256 | sketches 257 | authors 258 | collected 259 | classics 260 | nonsense 261 | sonnets 262 | anthology 263 | paintings 264 | bhagavad 265 | quotations 266 | portrait 267 | lectures 268 | astronomy 269 | malachi 270 | astounding 271 | tales 272 | reader 273 | annotated 274 | photographic 275 | chronological 276 | verses 277 | midrash 278 | reviews 279 | journals 280 | tale 281 | introductions 282 | lyric 283 | tacitus 284 | org 285 | apocalyptic 286 | strip 287 | liber 288 | paragraph 289 | lovecraft 290 | pratchett 291 | humorous 292 | lesson 293 | domesday 294 | depicting 295 | account 296 | masterpieces 297 | math 298 | unreleased 299 | talmud 300 | searchable 301 | jungle 302 | vita 303 | masterpiece 304 | tor 305 | section 306 | catalogue 307 | authorship 308 | beowulf 309 | chapter 310 | brief 311 | discussing 312 | poe 313 | confessions 314 | eaters 315 | recounted 316 | lamentations 317 | catalog 318 | spurious 319 | romances 320 | literature 321 | narrative 322 | publication 323 | meditations 324 | volumes 325 | echoes 326 | fantastic 327 | dialogues 328 | detective 329 | remarks 330 | pages 331 | scholarship 332 | geological 333 | myths 334 | complete 335 | introductory 336 | announcement 337 | pdf 338 | dianetics 339 | publishing 340 | monthly 341 | beginnings 342 | illustrated 343 | doubtful 344 | detailing 345 | inscriptions 346 | fugues 347 | inspiration 348 | entitled 349 | comic 350 | quotes 351 | humor 352 | newspapers 353 | editions 354 | archive 355 | imitation 356 | excerpts 357 | chronology 358 | earliest 359 | chronicle 360 | dialogue 361 | hebrews 362 | pamphlets 363 | micah 364 | announcing 365 | notebooks 366 | masters 367 | poem 368 | compendium 369 | sources 370 | allegory 371 | updated 372 | discography 373 | reprinted 374 | mythological 375 | background 376 | apology 377 | daily 378 | dia 379 | drawings 380 | guardian 381 | voices 382 | critical 383 | translations 384 | speeches 385 | psalms 386 | botany 387 | anthologies 388 | trilogy 389 | septuagint 390 | collection 391 | lecture 392 | nonfiction 393 | preliminary 394 | allegorical 395 | photographs 396 | copies 397 | novels 398 | cookbook 399 | venus 400 | enoch 401 | inscription 402 | archaeology 403 | guinness 404 | hymn 405 | surviving 406 | exploring 407 | review 408 | blog 409 | fables 410 | fundamentals 411 | cinema 412 | faq 413 | print 414 | cartoons 415 | arc 416 | masoretic 417 | lengthy 418 | notes 419 | sculptures 420 | dictionary 421 | sculpture 422 | grail 423 | -------------------------------------------------------------------------------- /result/42.txt: -------------------------------------------------------------------------------- 1 | circuitry 2 | designing 3 | numeral 4 | dns 5 | fractal 6 | patch 7 | irc 8 | fortran 9 | address 10 | byte 11 | printer 12 | buffer 13 | cobol 14 | tracking 15 | interrupt 16 | generator 17 | jargon 18 | displays 19 | numeric 20 | virus 21 | cassette 22 | analog 23 | bios 24 | downloadable 25 | multimedia 26 | clients 27 | cipher 28 | terminal 29 | tape 30 | audio 31 | searches 32 | machines 33 | bundled 34 | erp 35 | scripting 36 | electronic 37 | html 38 | contents 39 | microcode 40 | gnu 41 | wheel 42 | client 43 | designers 44 | peer 45 | rendering 46 | update 47 | gui 48 | macintosh 49 | ibm 50 | chip 51 | monitors 52 | morpheme 53 | dynamically 54 | equipment 55 | embedded 56 | default 57 | semantic 58 | advertising 59 | communicating 60 | stored 61 | application 62 | boards 63 | introduced 64 | lists 65 | controller 66 | corporation 67 | display 68 | metadata 69 | implementations 70 | utilities 71 | monitor 72 | beta 73 | info 74 | gel 75 | tuning 76 | primitives 77 | extended 78 | identifiers 79 | images 80 | cryptographic 81 | freenet 82 | mozilla 83 | constructs 84 | ascii 85 | pcs 86 | pci 87 | evaluation 88 | debugging 89 | programmers 90 | volatile 91 | source 92 | microprocessor 93 | programmable 94 | typed 95 | monorail 96 | excellent 97 | parallel 98 | motherboard 99 | accessories 100 | grammars 101 | instrumentation 102 | connected 103 | plug 104 | gif 105 | animation 106 | latex 107 | designations 108 | protocols 109 | binaries 110 | piracy 111 | rom 112 | lisp 113 | mirc 114 | instructions 115 | mainframes 116 | installing 117 | gpl 118 | store 119 | gps 120 | iec 121 | controllers 122 | allowing 123 | api 124 | apl 125 | freebsd 126 | interpreter 127 | linked 128 | administrators 129 | lightweight 130 | tcp 131 | automated 132 | synthesizers 133 | relay 134 | ups 135 | copy 136 | menu 137 | copyleft 138 | tutorials 139 | sorting 140 | manufacturers 141 | gemini 142 | developers 143 | fees 144 | ipv 145 | visual 146 | floppy 147 | xml 148 | chat 149 | allocation 150 | accessing 151 | adobe 152 | spatial 153 | cpu 154 | content 155 | facsimile 156 | executable 157 | mapping 158 | imagery 159 | gnutella 160 | formats 161 | link 162 | customers 163 | codes 164 | coded 165 | mailing 166 | customer 167 | index 168 | blocks 169 | bassoon 170 | email 171 | drum 172 | cd 173 | mhz 174 | replacement 175 | disc 176 | guidance 177 | packages 178 | requests 179 | adding 180 | encoded 181 | modules 182 | flash 183 | microprocessors 184 | relational 185 | apache 186 | compatibility 187 | window 188 | correction 189 | mainframe 190 | document 191 | desktop 192 | storage 193 | hypercard 194 | documentation 195 | scsi 196 | capability 197 | bash 198 | encoding 199 | filesystem 200 | maintenance 201 | prolog 202 | optic 203 | cgi 204 | processing 205 | circuits 206 | download 207 | click 208 | providers 209 | tile 210 | mode 211 | mail 212 | transaction 213 | hp 214 | hd 215 | dynamic 216 | net 217 | keyboard 218 | harmonica 219 | collector 220 | messages 221 | iso 222 | ip 223 | euthanasia 224 | ie 225 | id 226 | roms 227 | bandwidth 228 | transfers 229 | template 230 | pointer 231 | wiki 232 | kernel 233 | authentication 234 | hybrid 235 | remote 236 | search 237 | hypertext 238 | elevator 239 | interactive 240 | kb 241 | interfaces 242 | copying 243 | functionality 244 | specifications 245 | programmer 246 | retail 247 | organ 248 | optional 249 | instant 250 | bus 251 | bug 252 | virtual 253 | specification 254 | compilers 255 | mp 256 | ms 257 | mnemonic 258 | algorithms 259 | coding 260 | tool 261 | oriented 262 | random 263 | core 264 | nt 265 | raster 266 | postscript 267 | modes 268 | modem 269 | provider 270 | os 271 | communication 272 | amigaos 273 | tex 274 | screens 275 | circuit 276 | linking 277 | instruction 278 | license 279 | slots 280 | pc 281 | cartridge 282 | loading 283 | folders 284 | fast 285 | vendors 286 | fee 287 | usb 288 | proprietary 289 | integrated 290 | lossless 291 | commands 292 | amiga 293 | capabilities 294 | extension 295 | specially 296 | standardized 297 | itanium 298 | message 299 | channels 300 | layout 301 | peripheral 302 | delphi 303 | graphical 304 | toolkit 305 | telegraph 306 | devices 307 | leet 308 | monitoring 309 | emulation 310 | open 311 | addressing 312 | import 313 | intel 314 | package 315 | emacs 316 | beginners 317 | cable 318 | emulator 319 | scan 320 | register 321 | javascript 322 | format 323 | storing 324 | scratch 325 | subscription 326 | licensed 327 | licenses 328 | morse 329 | counter 330 | segment 331 | packet 332 | configuration 333 | hardware 334 | architectures 335 | checking 336 | tops 337 | dbms 338 | implementation 339 | aim 340 | boxes 341 | computing 342 | concurrent 343 | sequential 344 | cad 345 | cpus 346 | xp 347 | browser 348 | upgrade 349 | routing 350 | installation 351 | peripherals 352 | transmitting 353 | removing 354 | cookies 355 | handwriting 356 | labs 357 | scheme 358 | registers 359 | loop 360 | messaging 361 | genome 362 | suite 363 | cellular 364 | recommendations 365 | manipulation 366 | databases 367 | encrypted 368 | based 369 | dictionaries 370 | compatible 371 | preferences 372 | setup 373 | replacing 374 | risc 375 | ethernet 376 | features 377 | regular 378 | dos 379 | discs 380 | architecture 381 | mouse 382 | kit 383 | protocol 384 | grading 385 | warehouse 386 | mac 387 | switching 388 | dice 389 | pressing 390 | macro 391 | server 392 | drivers 393 | browsers 394 | portable 395 | amplifiers 396 | networks 397 | distributed 398 | complement 399 | folding 400 | gag 401 | firmware 402 | microcomputers 403 | disks 404 | constraint 405 | extensions 406 | beos 407 | avionics 408 | gateway 409 | constructing 410 | enhanced 411 | multi 412 | reporting 413 | motorola 414 | accessible 415 | mbit 416 | capitalization 417 | bsd 418 | automatic 419 | tutorial 420 | plus 421 | gis 422 | wireless 423 | sql 424 | iodine 425 | downloads 426 | disk 427 | developed 428 | cds 429 | compiled 430 | compiler 431 | java 432 | tables 433 | tablet 434 | files 435 | echo 436 | shell 437 | chips 438 | microcomputer 439 | interrupts 440 | kde 441 | platforms 442 | debian 443 | internally 444 | unix 445 | acquisition 446 | signatures 447 | wikipedia 448 | ease 449 | easy 450 | broadband 451 | printing 452 | servers 453 | structured 454 | slot 455 | technologies 456 | multics 457 | via 458 | ftp 459 | unicode 460 | interface 461 | handling 462 | optimization 463 | calculator 464 | viewing 465 | stack 466 | input 467 | garbage 468 | custom 469 | oracle 470 | existing 471 | apparatus 472 | firefox 473 | tools 474 | zip 475 | duplicate 476 | mumps 477 | compatibles 478 | static 479 | viewer 480 | device 481 | printers 482 | configured 483 | wire 484 | graphics 485 | desk 486 | phones 487 | worm 488 | freeware 489 | cameras 490 | hacking 491 | optimized 492 | repository 493 | marketing 494 | compression 495 | distributions 496 | aol 497 | typical 498 | managers 499 | ieee 500 | emulators 501 | bitmap 502 | comparison 503 | processor 504 | multitasking 505 | signalling 506 | processors 507 | linux 508 | simultaneous 509 | database 510 | added 511 | gnome 512 | simulation 513 | block 514 | newer 515 | button 516 | addresses 517 | cartridges 518 | encodings 519 | stereo 520 | strategy 521 | utility 522 | networking 523 | xerox 524 | segments 525 | updates 526 | tips 527 | mips 528 | modems 529 | manual 530 | parsing 531 | excel 532 | perl 533 | sharing 534 | agent 535 | switch 536 | keyboards 537 | encryption 538 | cluster 539 | apis 540 | buses 541 | retrieval 542 | terminals 543 | flute 544 | upgrades 545 | keys 546 | google 547 | gcc 548 | midi 549 | connectors 550 | unauthorized 551 | brand 552 | editing 553 | assembler 554 | forums 555 | phone 556 | fonts 557 | free 558 | ram 559 | freeway 560 | laptop 561 | quick 562 | outputs 563 | modified 564 | telephone 565 | telephony 566 | drives 567 | executing 568 | fax 569 | operators 570 | option 571 | font 572 | formatted 573 | libraries 574 | minix 575 | inference 576 | malicious 577 | tao 578 | powerpc 579 | cache 580 | bbs 581 | searching 582 | boot 583 | -------------------------------------------------------------------------------- /result/44.txt: -------------------------------------------------------------------------------- 1 | f 2 | l 3 | e 4 | u 5 | n 6 | g 7 | w 8 | p 9 | i 10 | y 11 | frac 12 | r 13 | k 14 | t 15 | m 16 | v 17 | o 18 | h 19 | x 20 | c 21 | j 22 | z 23 | -------------------------------------------------------------------------------- /result/47.txt: -------------------------------------------------------------------------------- 1 | von 2 | john 3 | michael 4 | duke 5 | saint 6 | david 7 | dr 8 | ed 9 | robert 10 | ben 11 | thomas 12 | charles 13 | st 14 | louis 15 | alexander 16 | peter 17 | pope 18 | sir 19 | smith 20 | lord 21 | joseph 22 | richard 23 | paul 24 | james 25 | william 26 | martin 27 | mark 28 | henry 29 | george 30 | -------------------------------------------------------------------------------- /result/50.txt: -------------------------------------------------------------------------------- 1 | competes 2 | stays 3 | enjoys 4 | concentrates 5 | engages 6 | assigns 7 | retains 8 | prevailed 9 | portrays 10 | understands 11 | deserves 12 | directs 13 | repeats 14 | pronoun 15 | underwent 16 | compares 17 | separates 18 | indicates 19 | reaches 20 | feeds 21 | culminated 22 | draws 23 | shares 24 | teaches 25 | symbolizes 26 | affirms 27 | resides 28 | conducts 29 | activates 30 | persists 31 | differed 32 | earns 33 | celebrates 34 | showcased 35 | opposes 36 | assists 37 | notwithstanding 38 | examines 39 | steals 40 | conforms 41 | absorbs 42 | traverses 43 | puts 44 | intends 45 | boasted 46 | prevents 47 | consisted 48 | preserves 49 | specializes 50 | embraces 51 | borrows 52 | holds 53 | mimics 54 | resolves 55 | happens 56 | introduces 57 | conveys 58 | discovers 59 | possesses 60 | proposes 61 | functioned 62 | emphasizes 63 | informs 64 | relies 65 | lets 66 | discusses 67 | regulates 68 | postulates 69 | exerts 70 | responds 71 | conceives 72 | carries 73 | differentiates 74 | organizes 75 | connects 76 | attracts 77 | keeps 78 | represents 79 | transcends 80 | solves 81 | combines 82 | destroys 83 | recommends 84 | evolves 85 | determines 86 | commemorates 87 | corresponds 88 | owed 89 | owes 90 | defines 91 | insists 92 | favours 93 | adopts 94 | prohibits 95 | recognises 96 | delivers 97 | establishes 98 | chooses 99 | permits 100 | incorporates 101 | glorified 102 | binds 103 | yielded 104 | depends 105 | sends 106 | pays 107 | gathers 108 | comprises 109 | prefers 110 | justifies 111 | attaches 112 | pushes 113 | lacks 114 | condemns 115 | undergoes 116 | describes 117 | underlies 118 | requires 119 | focuses 120 | reflects 121 | reacts 122 | distinguishes 123 | slows 124 | owns 125 | lends 126 | recognizes 127 | designates 128 | summarizes 129 | cools 130 | depicts 131 | contrasts 132 | differs 133 | encompasses 134 | encompassed 135 | fills 136 | communicates 137 | specifies 138 | translates 139 | utilizes 140 | concludes 141 | confirms 142 | discards 143 | dissolves 144 | arises 145 | supports 146 | exhibits 147 | overcame 148 | treats 149 | interprets 150 | surround 151 | agrees 152 | lowers 153 | speaks 154 | approximates 155 | reveals 156 | violates 157 | buys 158 | recalls 159 | provides 160 | obtains 161 | develops 162 | suffers 163 | overlaps 164 | boasts 165 | integrates 166 | performs 167 | regards 168 | alters 169 | loses 170 | simulates 171 | rotates 172 | raises 173 | undertook 174 | constitutes 175 | ascribes 176 | considers 177 | survives 178 | precedes 179 | exposes 180 | presides 181 | melts 182 | expresses 183 | fits 184 | asserts 185 | sits 186 | restricts 187 | announces 188 | encompassing 189 | creates 190 | corresponded 191 | exceeds 192 | applies 193 | belongs 194 | denies 195 | accepts 196 | perceives 197 | selects 198 | renders 199 | hears 200 | accelerates 201 | proves 202 | overlooks 203 | entails 204 | dominates 205 | reads 206 | excludes 207 | attains 208 | rests 209 | dwelt 210 | enables 211 | sees 212 | consumes 213 | manages 214 | adds 215 | emerges 216 | participates 217 | serves 218 | resembled 219 | resembles 220 | contradicts 221 | inhibits 222 | distributes 223 | ensures 224 | replaces 225 | wherein 226 | oversees 227 | helps 228 | embarked 229 | completes 230 | posits 231 | controls 232 | enhances 233 | elects 234 | recounts 235 | stipulated 236 | criticizes 237 | proclaims 238 | predates 239 | interacts 240 | spanned 241 | shines 242 | leads 243 | handles 244 | offers 245 | oversaw 246 | gives 247 | operates 248 | sells 249 | imposing 250 | collects 251 | forbade 252 | explains 253 | characterizes 254 | induces 255 | hangs 256 | achieves 257 | evaluates 258 | stimulates 259 | generates 260 | detects 261 | demonstrates 262 | relates 263 | maintains 264 | acquires 265 | contributes 266 | brings 267 | touches 268 | triggers 269 | enters 270 | poses 271 | emits 272 | lacked 273 | divides 274 | explores 275 | fails 276 | threatens 277 | accumulates 278 | defends 279 | improves 280 | involves 281 | imposes 282 | dictates 283 | illustrates 284 | continues 285 | produces 286 | accompanies 287 | behaves 288 | predicts 289 | saves 290 | consisting 291 | cites 292 | transforming 293 | meets 294 | admits 295 | rejects 296 | contrasted 297 | observes 298 | receives 299 | avoids 300 | eliminates 301 | cares 302 | investigates 303 | assumes 304 | tries 305 | governs 306 | transmits 307 | facilitates 308 | surrounds 309 | sings 310 | joins 311 | obeys 312 | manifests 313 | intersects 314 | presents 315 | grows 316 | builds 317 | proclaiming 318 | requesting 319 | forbids 320 | signifies 321 | occupies 322 | publishes 323 | eats 324 | commits 325 | depended 326 | affects 327 | employs 328 | identifies 329 | promotes 330 | reminds 331 | seeks 332 | acknowledges 333 | expects 334 | executes 335 | removes 336 | stands 337 | modifies 338 | encodes 339 | encourages 340 | ignores 341 | originates 342 | captures 343 | garnered 344 | spends 345 | calls 346 | allows 347 | protects 348 | coincides 349 | learns 350 | finds 351 | deals 352 | closes 353 | expands 354 | -------------------------------------------------------------------------------- /result/51.txt: -------------------------------------------------------------------------------- 1 | singer 2 | born 3 | american 4 | composer 5 | author 6 | director 7 | polish 8 | prize 9 | actor 10 | french 11 | russian 12 | b 13 | writers 14 | writer 15 | d 16 | irish 17 | british 18 | german 19 | italian 20 | actress 21 | spanish 22 | births 23 | dutch 24 | japanese 25 | canadian 26 | nobel 27 | deaths 28 | scientist 29 | english 30 | -------------------------------------------------------------------------------- /result/54.txt: -------------------------------------------------------------------------------- 1 | abbreviations 2 | spoken 3 | semitic 4 | variant 5 | scots 6 | roots 7 | cuisine 8 | hawaiian 9 | dishes 10 | letters 11 | adjectives 12 | saxon 13 | derived 14 | phrase 15 | clarinet 16 | consonant 17 | translation 18 | pronouncing 19 | terminology 20 | transliterated 21 | indo 22 | unrelated 23 | root 24 | feminine 25 | noun 26 | speaking 27 | synonym 28 | tenses 29 | pronounce 30 | ugric 31 | expressions 32 | compound 33 | attested 34 | masculine 35 | symbols 36 | phonetic 37 | suffix 38 | tense 39 | like 40 | dialect 41 | borrowed 42 | bangla 43 | mood 44 | deviation 45 | adjective 46 | phonology 47 | loanwords 48 | traditional 49 | capitalized 50 | tamazight 51 | meaning 52 | usage 53 | sanskrit 54 | acronym 55 | prefix 56 | yiddish 57 | nouns 58 | letter 59 | commonly 60 | ipa 61 | infinitive 62 | slang 63 | neuter 64 | pronunciations 65 | archaic 66 | etymology 67 | phonetically 68 | spelled 69 | derogatory 70 | romance 71 | denote 72 | kanji 73 | gaelic 74 | cognates 75 | germanic 76 | dialects 77 | hebrew 78 | latinized 79 | surname 80 | comes 81 | stems 82 | referring 83 | verb 84 | divisor 85 | referred 86 | alphabets 87 | uses 88 | afro 89 | spelling 90 | equivalents 91 | cognate 92 | spellings 93 | slavic 94 | form 95 | morphology 96 | phonemes 97 | colloquial 98 | fluent 99 | imperative 100 | language 101 | katakana 102 | nomenclature 103 | declension 104 | refers 105 | languages 106 | names 107 | informally 108 | vulgar 109 | arabic 110 | ancestor 111 | slavonic 112 | genders 113 | etruscan 114 | origin 115 | fricative 116 | simplified 117 | alphabet 118 | except 119 | aramaic 120 | phrases 121 | derivatives 122 | cornish 123 | sign 124 | suffixes 125 | syllable 126 | refer 127 | conjugation 128 | abbreviation 129 | urdu 130 | disambiguation 131 | vowels 132 | terms 133 | morphemes 134 | forms 135 | mandarin 136 | armenian 137 | numerals 138 | older 139 | phoenician 140 | parlance 141 | mythology 142 | generic 143 | tongue 144 | ojibwe 145 | sounding 146 | syntax 147 | derivation 148 | sounds 149 | speakers 150 | syriac 151 | prefixes 152 | common 153 | prepositions 154 | lingua 155 | spelt 156 | pattern 157 | vocabulary 158 | creole 159 | phoneme 160 | obsolete 161 | term 162 | name 163 | vowel 164 | chinese 165 | vulgate 166 | inflection 167 | latin 168 | orthography 169 | turkic 170 | plural 171 | vernacular 172 | hindi 173 | celtic 174 | norse 175 | cyrillic 176 | genus 177 | grammatical 178 | varieties 179 | derive 180 | transcribed 181 | italic 182 | accents 183 | syllables 184 | nasal 185 | verbs 186 | loan 187 | copula 188 | singular 189 | transliteration 190 | literally 191 | separate 192 | endings 193 | word 194 | cantonese 195 | surnames 196 | interchangeably 197 | proto 198 | poetic 199 | nowadays 200 | derives 201 | translated 202 | pronouns 203 | grammar 204 | genitive 205 | voiced 206 | lexicon 207 | markup 208 | distinct 209 | consonants 210 | icelandic 211 | pronounced 212 | pronunciation 213 | descriptive 214 | esperanto 215 | welsh 216 | persian 217 | rhymes 218 | brythonic 219 | anglicized 220 | script 221 | variants 222 | initials 223 | voiceless 224 | accent 225 | words 226 | -------------------------------------------------------------------------------- /result/55.txt: -------------------------------------------------------------------------------- 1 | allah 2 | master 3 | idle 4 | scream 5 | saying 6 | doubts 7 | supper 8 | beloved 9 | shadow 10 | syphilis 11 | whoever 12 | minnie 13 | honour 14 | saving 15 | wandering 16 | illness 17 | wants 18 | zion 19 | dirty 20 | sang 21 | replied 22 | signs 23 | colleague 24 | insane 25 | vow 26 | nickname 27 | parents 28 | couple 29 | wives 30 | chorus 31 | baby 32 | snake 33 | witness 34 | tonight 35 | destiny 36 | ransom 37 | immortal 38 | passion 39 | saviour 40 | safe 41 | dogs 42 | pilgrimage 43 | conscience 44 | encounters 45 | apparently 46 | shout 47 | righteous 48 | bore 49 | asking 50 | isis 51 | prayed 52 | teacher 53 | sake 54 | blind 55 | tomorrow 56 | loki 57 | suspects 58 | madness 59 | fortune 60 | innocence 61 | aphrodite 62 | heroic 63 | visions 64 | horse 65 | heavens 66 | feels 67 | tolls 68 | missing 69 | lives 70 | silence 71 | ignorant 72 | telling 73 | farm 74 | bitch 75 | horrors 76 | relatives 77 | vengeance 78 | widow 79 | men 80 | goodbye 81 | forgot 82 | tells 83 | cousin 84 | yahweh 85 | damned 86 | presumably 87 | lovely 88 | realizing 89 | yes 90 | save 91 | nude 92 | dear 93 | journey 94 | talked 95 | suspect 96 | teenage 97 | visit 98 | wonder 99 | sleeping 100 | passionate 101 | sacred 102 | baal 103 | witches 104 | marrying 105 | immortality 106 | utterly 107 | honor 108 | mortal 109 | habit 110 | nobody 111 | ishmael 112 | occasion 113 | regularly 114 | perfection 115 | joke 116 | partner 117 | sisters 118 | enki 119 | tomb 120 | dressed 121 | dagny 122 | continually 123 | grandmother 124 | bet 125 | remarked 126 | companions 127 | witch 128 | athena 129 | joker 130 | replies 131 | spirit 132 | leto 133 | buddha 134 | theseus 135 | resurrection 136 | whence 137 | sue 138 | presumed 139 | somebody 140 | adulthood 141 | sweet 142 | instructor 143 | demon 144 | daughters 145 | refuses 146 | nice 147 | chose 148 | duck 149 | fear 150 | pleased 151 | joy 152 | job 153 | disciple 154 | smart 155 | wonders 156 | promise 157 | remnant 158 | hidden 159 | wasn 160 | returns 161 | wisdom 162 | zechariah 163 | vain 164 | disguise 165 | despair 166 | happy 167 | love 168 | believes 169 | solitary 170 | earnhardt 171 | prospect 172 | breath 173 | thinks 174 | am 175 | contemporaries 176 | nurse 177 | beautiful 178 | creature 179 | deeds 180 | odin 181 | likeness 182 | nest 183 | grace 184 | fights 185 | sinner 186 | drunk 187 | funny 188 | hobbes 189 | jokingly 190 | horned 191 | bene 192 | kiss 193 | bad 194 | surely 195 | owner 196 | colleagues 197 | hope 198 | famously 199 | thief 200 | sister 201 | bearing 202 | smoke 203 | greed 204 | thee 205 | strangers 206 | gentleman 207 | cow 208 | voice 209 | theirs 210 | accordingly 211 | supposedly 212 | glad 213 | appears 214 | servant 215 | silent 216 | friend 217 | angel 218 | anger 219 | husband 220 | unmarried 221 | wounds 222 | mentally 223 | lady 224 | souls 225 | witnesses 226 | fool 227 | die 228 | quote 229 | pretty 230 | sacrifices 231 | liked 232 | likes 233 | else 234 | anymore 235 | submission 236 | seeing 237 | anointed 238 | sword 239 | secretly 240 | childless 241 | herself 242 | bed 243 | affair 244 | ascended 245 | shy 246 | shi 247 | fate 248 | prophecies 249 | clothes 250 | luck 251 | revenge 252 | girls 253 | niece 254 | divinity 255 | shame 256 | jealous 257 | shit 258 | dies 259 | answered 260 | accidentally 261 | deceased 262 | crazy 263 | maybe 264 | preaching 265 | lifetime 266 | liar 267 | captivity 268 | jonah 269 | milky 270 | everyone 271 | hermes 272 | fun 273 | messengers 274 | grave 275 | denying 276 | remark 277 | praise 278 | ll 279 | comment 280 | laugh 281 | girlfriend 282 | shelter 283 | worthy 284 | wise 285 | hath 286 | pride 287 | heracles 288 | resurrected 289 | talking 290 | boss 291 | gift 292 | escape 293 | proud 294 | savior 295 | morrison 296 | spouse 297 | odds 298 | grandfather 299 | commandments 300 | offspring 301 | letting 302 | paradise 303 | ahab 304 | anybody 305 | desires 306 | villain 307 | promptly 308 | beast 309 | cried 310 | own 311 | earthly 312 | nirvana 313 | tree 314 | saul 315 | humankind 316 | desire 317 | enemies 318 | angry 319 | wicked 320 | everywhere 321 | stole 322 | aliens 323 | wrath 324 | begotten 325 | folly 326 | priest 327 | elijah 328 | memories 329 | hey 330 | sin 331 | noble 332 | guess 333 | writes 334 | cry 335 | spirits 336 | demons 337 | thou 338 | sing 339 | suffering 340 | mighty 341 | eve 342 | legendary 343 | yhwh 344 | muhammad 345 | listened 346 | drink 347 | flesh 348 | jacob 349 | preached 350 | happily 351 | seated 352 | realm 353 | personality 354 | promises 355 | welcome 356 | curse 357 | cat 358 | heart 359 | care 360 | forever 361 | asleep 362 | closest 363 | lot 364 | mysterious 365 | excuse 366 | dream 367 | hell 368 | ye 369 | judgment 370 | wonderful 371 | experiences 372 | duncan 373 | protector 374 | ready 375 | shine 376 | miracles 377 | psyche 378 | virtuous 379 | wit 380 | mythical 381 | confess 382 | intentions 383 | invisible 384 | quit 385 | strange 386 | mistakes 387 | gods 388 | friends 389 | pardon 390 | encounter 391 | dog 392 | decides 393 | warrior 394 | personally 395 | dreams 396 | protagonist 397 | suggestion 398 | mad 399 | man 400 | anyone 401 | eyes 402 | shop 403 | blessed 404 | deed 405 | supposed 406 | baldrick 407 | laughed 408 | brethren 409 | socrates 410 | rhyme 411 | hints 412 | alia 413 | ascension 414 | lamb 415 | messenger 416 | satan 417 | proceeds 418 | grief 419 | gesserit 420 | ghosts 421 | heavenly 422 | eternal 423 | hearing 424 | murder 425 | watch 426 | incarnation 427 | goddess 428 | teenager 429 | everything 430 | faithful 431 | discovering 432 | guilty 433 | prophecy 434 | childhood 435 | pleaded 436 | shiva 437 | afterwards 438 | satisfaction 439 | blessing 440 | myself 441 | reward 442 | ladies 443 | knows 444 | friendship 445 | moses 446 | stating 447 | rightful 448 | chances 449 | watching 450 | enlil 451 | tired 452 | hero 453 | hera 454 | beauty 455 | snakes 456 | ate 457 | shall 458 | pity 459 | asked 460 | knowing 461 | alone 462 | loving 463 | deity 464 | instantly 465 | remainder 466 | sad 467 | sat 468 | tears 469 | spare 470 | almighty 471 | hades 472 | stranger 473 | favorite 474 | neighbor 475 | elisha 476 | gifts 477 | concluding 478 | zeus 479 | creator 480 | devil 481 | unto 482 | crying 483 | temple 484 | marry 485 | charity 486 | lucky 487 | covenant 488 | lest 489 | asks 490 | nobita 491 | chance 492 | saved 493 | told 494 | mercy 495 | yours 496 | crucifixion 497 | ill 498 | peacefully 499 | spear 500 | dionysus 501 | mistake 502 | victim 503 | dead 504 | dying 505 | trouble 506 | brave 507 | sighted 508 | angels 509 | slogan 510 | sacrifice 511 | heroes 512 | honest 513 | yourself 514 | notice 515 | cared 516 | testimony 517 | ares 518 | heaven 519 | darkness 520 | ego 521 | eros 522 | terrible 523 | miss 524 | bride 525 | lit 526 | flees 527 | eating 528 | jehu 529 | mankind 530 | bare 531 | achilles 532 | impression 533 | righteousness 534 | cruel 535 | illegitimate 536 | vanity 537 | notorious 538 | suicide 539 | fearing 540 | everybody 541 | soul 542 | thank 543 | girl 544 | slept 545 | undoubtedly 546 | parent 547 | mare 548 | underworld 549 | warning 550 | heirs 551 | laughing 552 | pregnant 553 | prophet 554 | gotten 555 | scrooge 556 | favourite 557 | sins 558 | vicious 559 | bones 560 | dad 561 | mention 562 | loved 563 | loves 564 | lover 565 | sayings 566 | bear 567 | appearance 568 | alive 569 | corpse 570 | glory 571 | pig 572 | sleep 573 | omnipotent 574 | infancy 575 | evil 576 | wanted 577 | thy 578 | commandment 579 | paternal 580 | mentioning 581 | eternity 582 | younger 583 | says 584 | reply 585 | odysseus 586 | confessed 587 | naked 588 | kill 589 | shrine 590 | siblings 591 | sons 592 | suddenly 593 | return 594 | fancy 595 | regret 596 | artemis 597 | dumb 598 | ark 599 | rid 600 | hatred 601 | wishes 602 | waiting 603 | confession 604 | rape 605 | conversation 606 | intention 607 | afraid 608 | genius 609 | happiness 610 | galactus 611 | goodness 612 | sick 613 | -------------------------------------------------------------------------------- /result/58.txt: -------------------------------------------------------------------------------- 1 | assembly 2 | appointed 3 | party 4 | elections 5 | communist 6 | election 7 | liberal 8 | parties 9 | congress 10 | labour 11 | governor 12 | national 13 | constitution 14 | politics 15 | parliament 16 | member 17 | government 18 | elected 19 | held 20 | president 21 | council 22 | members 23 | majority 24 | federal 25 | minister 26 | political 27 | democratic 28 | prime 29 | committee 30 | leader 31 | state 32 | branch 33 | -------------------------------------------------------------------------------- /result/6.txt: -------------------------------------------------------------------------------- 1 | fit 2 | fix 3 | encourage 4 | adapt 5 | needed 6 | simplify 7 | extend 8 | employ 9 | administer 10 | intend 11 | initiate 12 | neglect 13 | learn 14 | intended 15 | resemble 16 | sell 17 | seize 18 | thrive 19 | infect 20 | benefit 21 | behave 22 | realize 23 | conclude 24 | willing 25 | practise 26 | choosing 27 | repeat 28 | compete 29 | ascribe 30 | appreciate 31 | renew 32 | render 33 | illustrate 34 | acquire 35 | supplement 36 | occur 37 | introduce 38 | suffice 39 | recruit 40 | exploit 41 | develop 42 | alleviate 43 | assemble 44 | forcing 45 | sustain 46 | decide 47 | utilize 48 | reject 49 | criticize 50 | bless 51 | testify 52 | threaten 53 | ought 54 | enforce 55 | convert 56 | manage 57 | meet 58 | constitute 59 | tend 60 | interfere 61 | lose 62 | retrieve 63 | gain 64 | collaborate 65 | enhance 66 | operate 67 | resume 68 | earn 69 | imitate 70 | dismiss 71 | affirm 72 | disappear 73 | evolve 74 | inherit 75 | automatically 76 | relieve 77 | concentrate 78 | assist 79 | examine 80 | specialize 81 | recall 82 | evade 83 | needing 84 | differentiate 85 | refute 86 | express 87 | manipulate 88 | translate 89 | compose 90 | implement 91 | preclude 92 | clarify 93 | inflict 94 | conceive 95 | hide 96 | attract 97 | incur 98 | hopefully 99 | depart 100 | contradict 101 | ensure 102 | entertain 103 | inform 104 | stabilize 105 | posit 106 | cheat 107 | insist 108 | cease 109 | grasp 110 | deserve 111 | exert 112 | liberate 113 | invoke 114 | oversee 115 | reside 116 | confront 117 | collect 118 | uphold 119 | explore 120 | dissolve 121 | edit 122 | disclose 123 | diminish 124 | inhabit 125 | ascertain 126 | ability 127 | disagree 128 | execute 129 | exceed 130 | relax 131 | listen 132 | endure 133 | entail 134 | respond 135 | fail 136 | preserve 137 | prevent 138 | relating 139 | afford 140 | degrade 141 | involve 142 | indicate 143 | undermine 144 | confuse 145 | agree 146 | mimic 147 | accept 148 | propose 149 | imagine 150 | consult 151 | vanish 152 | comprise 153 | occupy 154 | send 155 | engage 156 | reproduce 157 | allow 158 | stimulate 159 | encompass 160 | avoid 161 | recognize 162 | secure 163 | greet 164 | flock 165 | organize 166 | depict 167 | proceed 168 | satisfy 169 | detonate 170 | acknowledge 171 | halt 172 | inevitably 173 | rebuild 174 | embrace 175 | prepare 176 | hire 177 | exclude 178 | belong 179 | evaluate 180 | resorted 181 | required 182 | hesitate 183 | keep 184 | attach 185 | exhibit 186 | preach 187 | absorb 188 | affect 189 | interpret 190 | baptize 191 | recommend 192 | expose 193 | indulge 194 | impede 195 | synthesize 196 | integrate 197 | comply 198 | identify 199 | designate 200 | delete 201 | assume 202 | invent 203 | encode 204 | grow 205 | relinquish 206 | carry 207 | compile 208 | represent 209 | establish 210 | compare 211 | omit 212 | construct 213 | create 214 | tolerate 215 | emphasize 216 | spend 217 | prevail 218 | themselves 219 | strive 220 | attend 221 | retain 222 | conform 223 | assure 224 | portray 225 | surpass 226 | insert 227 | buy 228 | hate 229 | enjoy 230 | persuade 231 | breathe 232 | enter 233 | comprehend 234 | regulate 235 | justify 236 | inspire 237 | resist 238 | improve 239 | protect 240 | accommodate 241 | rely 242 | heal 243 | hear 244 | realise 245 | impose 246 | require 247 | amend 248 | communicate 249 | invest 250 | follow 251 | induce 252 | arise 253 | cultivate 254 | emulate 255 | alter 256 | formulate 257 | strengthen 258 | signify 259 | succeed 260 | conceivably 261 | swear 262 | discourage 263 | subscribe 264 | enact 265 | presume 266 | obey 267 | raise 268 | owe 269 | demonstrate 270 | unify 271 | disturb 272 | criticise 273 | replace 274 | pursue 275 | profess 276 | incorporate 277 | participate 278 | leave 279 | settle 280 | allowed 281 | abide 282 | cite 283 | coincide 284 | enable 285 | calculate 286 | migrate 287 | prompt 288 | refuse 289 | speculate 290 | reduce 291 | qualify 292 | continue 293 | try 294 | pledge 295 | imply 296 | dispose 297 | bother 298 | bring 299 | handle 300 | assess 301 | activate 302 | convince 303 | contribute 304 | defend 305 | characterize 306 | verify 307 | transmit 308 | perform 309 | pose 310 | confer 311 | compensate 312 | prove 313 | celebrate 314 | blame 315 | assert 316 | modify 317 | help 318 | intervene 319 | publish 320 | assign 321 | distinguish 322 | wherever 323 | reappear 324 | refrain 325 | deploy 326 | admit 327 | capture 328 | hinder 329 | govern 330 | warn 331 | attempt 332 | dwell 333 | enabled 334 | seem 335 | explain 336 | replicate 337 | suppress 338 | wanting 339 | conceal 340 | amounted 341 | agreeing 342 | depend 343 | join 344 | wishing 345 | isolate 346 | solve 347 | erase 348 | confirm 349 | repent 350 | recite 351 | suffer 352 | complain 353 | revive 354 | declare 355 | accuse 356 | bind 357 | propagate 358 | coexist 359 | deliver 360 | infer 361 | ratify 362 | abolish 363 | add 364 | violate 365 | endorse 366 | install 367 | aspire 368 | restrict 369 | announce 370 | wear 371 | trust 372 | suggest 373 | discern 374 | emerge 375 | achieve 376 | provoke 377 | conquer 378 | cope 379 | specify 380 | adopt 381 | partake 382 | reveal 383 | willingly 384 | disrupt 385 | promote 386 | recognise 387 | homage 388 | crush 389 | pray 390 | expect 391 | adhere 392 | investigate 393 | advise 394 | awaken 395 | analyze 396 | consist 397 | highlight 398 | helping 399 | plead 400 | choose 401 | unite 402 | obtain 403 | classify 404 | distribute 405 | remind 406 | offer 407 | survive 408 | prefer 409 | destroy 410 | detect 411 | reconcile 412 | observe 413 | adjust 414 | select 415 | condemn 416 | proclaim 417 | approve 418 | hoping 419 | seek 420 | submit 421 | mitigate 422 | receive 423 | fulfill 424 | preferring 425 | perish 426 | accompany 427 | enlist 428 | terminate 429 | withstand 430 | combine 431 | order 432 | oppose 433 | vibrate 434 | rewrite 435 | speak 436 | descend 437 | shrink 438 | discover 439 | discuss 440 | accomplish 441 | recover 442 | begin 443 | worry 444 | teach 445 | generate 446 | undergo 447 | expand 448 | deter 449 | reach 450 | prescribe 451 | betray 452 | punish 453 | contain 454 | reinforce 455 | maximize 456 | treat 457 | restore 458 | permit 459 | purchase 460 | maintain 461 | overcome 462 | contend 463 | retire 464 | perceive 465 | originate 466 | commit 467 | wait 468 | arrive 469 | predict 470 | possess 471 | dominate 472 | devote 473 | dedicate 474 | pay 475 | fulfil 476 | forget 477 | connect 478 | build 479 | resolve 480 | please 481 | donate 482 | consume 483 | accelerate 484 | ourselves 485 | eliminate 486 | lend 487 | arrange 488 | sink 489 | correspond 490 | steal 491 | facilitate 492 | dictate 493 | unless 494 | gather 495 | convey 496 | regain 497 | digest 498 | reconstruct 499 | weren 500 | precede 501 | advertise 502 | check 503 | abandon 504 | attain 505 | minimize 506 | deduce 507 | renounce 508 | determine 509 | shouldn 510 | wield 511 | reflect 512 | accumulate 513 | undertake 514 | relate 515 | interact 516 | react 517 | negotiate 518 | ignore 519 | forbid 520 | apply 521 | cooperate 522 | remove 523 | simulate 524 | divert 525 | deny 526 | penetrate 527 | locate 528 | -------------------------------------------------------------------------------- /result/60.txt: -------------------------------------------------------------------------------- 1 | purges 2 | ira 3 | marched 4 | following 5 | civilian 6 | soviets 7 | formed 8 | overthrow 9 | leadership 10 | ensuing 11 | riots 12 | civilians 13 | versailles 14 | conscription 15 | occupation 16 | agitation 17 | lawsuit 18 | rebelled 19 | allies 20 | marches 21 | germans 22 | separatist 23 | battle 24 | defeats 25 | armies 26 | ended 27 | taliban 28 | unrest 29 | retaliation 30 | pact 31 | servants 32 | battles 33 | ottoman 34 | guerrillas 35 | destruction 36 | refuge 37 | confederate 38 | hezbollah 39 | waging 40 | nationalists 41 | confrontation 42 | communists 43 | factions 44 | faction 45 | iraqi 46 | indochina 47 | fleeing 48 | austro 49 | nazi 50 | postwar 51 | reparations 52 | gorbachev 53 | rebels 54 | jacobite 55 | delegation 56 | restoration 57 | allied 58 | pakistani 59 | prisoner 60 | monarchy 61 | napoleonic 62 | shortly 63 | attacks 64 | regime 65 | vietnam 66 | ussr 67 | extermination 68 | barons 69 | algerian 70 | fought 71 | nato 72 | rally 73 | campaigned 74 | sentiment 75 | ensued 76 | massacre 77 | takeover 78 | correspondent 79 | succession 80 | military 81 | wing 82 | supporters 83 | persecution 84 | veterans 85 | bloody 86 | persians 87 | anti 88 | crimean 89 | confederates 90 | mexican 91 | attacking 92 | withdraw 93 | boer 94 | lenin 95 | nationalist 96 | led 97 | alliance 98 | camps 99 | fight 100 | revolution 101 | supremacy 102 | cold 103 | rebel 104 | veteran 105 | famine 106 | protests 107 | meanwhile 108 | frankish 109 | yugoslavia 110 | armistice 111 | protest 112 | expeditions 113 | rebellions 114 | fell 115 | troops 116 | killing 117 | yugoslav 118 | talks 119 | resistance 120 | uprising 121 | annexation 122 | demonstrations 123 | leaders 124 | generals 125 | raids 126 | stronghold 127 | victory 128 | signing 129 | armed 130 | junta 131 | riot 132 | crusades 133 | crusader 134 | settlement 135 | persecutions 136 | nazis 137 | unsuccessful 138 | schism 139 | lawsuits 140 | camp 141 | negotiations 142 | invade 143 | ss 144 | crushing 145 | siege 146 | liberation 147 | fighting 148 | blockade 149 | joined 150 | imminent 151 | incident 152 | defending 153 | outbreak 154 | lasted 155 | slavery 156 | campaigns 157 | stalingrad 158 | retreat 159 | war 160 | moors 161 | loyal 162 | repression 163 | supported 164 | flank 165 | israeli 166 | trotsky 167 | iraq 168 | invasion 169 | aurangzeb 170 | officers 171 | withdrawal 172 | garrison 173 | socialist 174 | conflict 175 | secession 176 | guerrilla 177 | revolted 178 | legions 179 | reunification 180 | insurgency 181 | desperate 182 | criminals 183 | wars 184 | advancing 185 | struggle 186 | against 187 | defeated 188 | assassination 189 | victorious 190 | surrender 191 | propaganda 192 | casualties 193 | expulsion 194 | mao 195 | moscow 196 | colonial 197 | syrian 198 | dictatorship 199 | waals 200 | orders 201 | trojan 202 | rommel 203 | royalist 204 | autocratic 205 | stationed 206 | stalin 207 | soviet 208 | withdrew 209 | under 210 | aftermath 211 | hitler 212 | civil 213 | invaded 214 | fascist 215 | decisively 216 | briefly 217 | intervened 218 | commanders 219 | outpost 220 | ottomans 221 | carthage 222 | flee 223 | fled 224 | anglo 225 | khrushchev 226 | tactics 227 | brought 228 | occupying 229 | revolt 230 | pro 231 | campaigning 232 | rebellion 233 | insurrection 234 | defeating 235 | regimes 236 | ally 237 | opposing 238 | reich 239 | defeat 240 | establishment 241 | eta 242 | terrorist 243 | afghan 244 | chechen 245 | forced 246 | forces 247 | exile 248 | hostilities 249 | prisoners 250 | accords 251 | patriotic 252 | remained 253 | coalition 254 | prussian 255 | revolutionary 256 | coup 257 | soldiers 258 | mongol 259 | bolsheviks 260 | vichy 261 | cavalry 262 | offensive 263 | campaign 264 | army 265 | victories 266 | atrocities 267 | apartheid 268 | franco 269 | falklands 270 | bolshevik 271 | declares 272 | occupied 273 | decisive 274 | disastrous 275 | joining 276 | surrendered 277 | invading 278 | expedition 279 | kuomintang 280 | sino 281 | palestine 282 | turks 283 | guard 284 | crusade 285 | republicans 286 | ethiopian 287 | retreating 288 | peloponnesian 289 | arrival 290 | continuation 291 | captured 292 | bloc 293 | terror 294 | domination 295 | threat 296 | kosovo 297 | opposition 298 | confederacy 299 | conquest 300 | wwii 301 | viet 302 | protesters 303 | -------------------------------------------------------------------------------- /result/61.txt: -------------------------------------------------------------------------------- 1 | welcomed 2 | disturbed 3 | eliminated 4 | altogether 5 | portrayed 6 | raped 7 | transported 8 | overturned 9 | celebrated 10 | drafted 11 | accomplished 12 | perished 13 | opposed 14 | originally 15 | admired 16 | troubled 17 | apprenticed 18 | imagined 19 | practised 20 | engaged 21 | theorized 22 | prepared 23 | abused 24 | watched 25 | initiated 26 | corrected 27 | tested 28 | dismissed 29 | installed 30 | interviewed 31 | rumored 32 | acted 33 | expanded 34 | composed 35 | rejoined 36 | realized 37 | meantime 38 | strengthened 39 | administered 40 | contested 41 | remarried 42 | obtained 43 | postponed 44 | separated 45 | divorced 46 | indicated 47 | disputed 48 | implicated 49 | attacked 50 | ceded 51 | dissatisfied 52 | challenged 53 | appreciated 54 | actively 55 | resided 56 | suspected 57 | pledged 58 | learned 59 | inspired 60 | surpassed 61 | housed 62 | favored 63 | assaulted 64 | hired 65 | forgotten 66 | questioned 67 | envisioned 68 | ordered 69 | kidnapped 70 | sought 71 | resumed 72 | submitted 73 | inherited 74 | controlled 75 | examined 76 | advertised 77 | objected 78 | demonstrated 79 | previously 80 | aided 81 | met 82 | arrested 83 | supplied 84 | jailed 85 | deaf 86 | hijacked 87 | advised 88 | allegedly 89 | shocked 90 | hailed 91 | declared 92 | indicted 93 | annulled 94 | reportedly 95 | arranged 96 | landed 97 | impeached 98 | embraced 99 | merged 100 | asserted 101 | resisted 102 | consulted 103 | assisted 104 | subsequently 105 | approached 106 | revoked 107 | nicknamed 108 | resolved 109 | displaced 110 | admitted 111 | settled 112 | excommunicated 113 | prevented 114 | researched 115 | pardoned 116 | greeted 117 | possessed 118 | departed 119 | uncovered 120 | emphasized 121 | succeeded 122 | qualified 123 | dispatched 124 | predicted 125 | harshly 126 | relied 127 | ported 128 | freed 129 | discussed 130 | alleged 131 | proclaimed 132 | clashed 133 | fallen 134 | traveled 135 | knighted 136 | betrayed 137 | shortened 138 | refused 139 | concluded 140 | agreed 141 | postulated 142 | bought 143 | conceived 144 | undertaken 145 | spoke 146 | hurt 147 | organized 148 | destined 149 | preceded 150 | assured 151 | listed 152 | responsible 153 | suggested 154 | adapted 155 | criticised 156 | hospitalized 157 | protested 158 | invested 159 | solved 160 | inscribed 161 | persecuted 162 | studied 163 | matched 164 | altered 165 | affirmed 166 | stated 167 | neglected 168 | disliked 169 | granted 170 | determined 171 | instituted 172 | assassinated 173 | rescued 174 | labelled 175 | reinstated 176 | acquitted 177 | owned 178 | tortured 179 | demolished 180 | championed 181 | planted 182 | exchanged 183 | temporarily 184 | affected 185 | classified 186 | recovering 187 | incorporated 188 | beheaded 189 | confirmed 190 | blamed 191 | kept 192 | transformed 193 | mocked 194 | weakened 195 | interested 196 | unwilling 197 | retired 198 | labeled 199 | benefited 200 | omitted 201 | punished 202 | rebuilt 203 | underway 204 | witnessed 205 | praised 206 | fined 207 | banished 208 | shifted 209 | sacrificed 210 | overlooked 211 | besieged 212 | visits 213 | relocated 214 | focused 215 | escaped 216 | consecrated 217 | befriended 218 | distinguished 219 | sold 220 | spared 221 | modeled 222 | recognized 223 | noticed 224 | favoured 225 | elaborated 226 | drowned 227 | taught 228 | judged 229 | proceeded 230 | recognised 231 | formalized 232 | practiced 233 | felt 234 | exported 235 | impressed 236 | paid 237 | offered 238 | voluntarily 239 | none 240 | purchased 241 | utilized 242 | tended 243 | feared 244 | encountered 245 | spent 246 | revived 247 | deprived 248 | whilst 249 | exploited 250 | attributed 251 | fulfilled 252 | conquered 253 | respected 254 | rendered 255 | beaten 256 | ridiculed 257 | erected 258 | entertained 259 | already 260 | denounced 261 | descended 262 | begun 263 | attracted 264 | circulated 265 | invoked 266 | sacked 267 | deported 268 | speculated 269 | subjected 270 | deeply 271 | debated 272 | reunited 273 | dissolved 274 | recently 275 | arrived 276 | upheld 277 | issued 278 | depicted 279 | painted 280 | urged 281 | triggered 282 | commented 283 | re 284 | threatened 285 | shipped 286 | repealed 287 | showed 288 | recommended 289 | transferred 290 | planned 291 | damaged 292 | substituted 293 | raised 294 | constantly 295 | revealed 296 | constituted 297 | buried 298 | instructed 299 | ironically 300 | worried 301 | ascribed 302 | survived 303 | termed 304 | ordained 305 | banned 306 | targeted 307 | exposed 308 | posted 309 | presided 310 | enrolled 311 | having 312 | seemed 313 | reopened 314 | invented 315 | counted 316 | chosen 317 | outlined 318 | dubbed 319 | evacuated 320 | delayed 321 | disbanded 322 | invited 323 | ceased 324 | announced 325 | coined 326 | responded 327 | unable 328 | condemned 329 | publicly 330 | posed 331 | prescribed 332 | expelled 333 | honored 334 | denied 335 | absent 336 | promised 337 | governed 338 | presented 339 | commissioned 340 | heard 341 | displayed 342 | entrusted 343 | checked 344 | proved 345 | informed 346 | canceled 347 | commanded 348 | handled 349 | complained 350 | ruled 351 | aimed 352 | anticipated 353 | imprisoned 354 | stopped 355 | dominated 356 | ousted 357 | poisoned 358 | recalled 359 | repudiated 360 | outright 361 | worshipped 362 | excluded 363 | marketed 364 | advocated 365 | documented 366 | expired 367 | credited 368 | spotted 369 | experimented 370 | frequently 371 | accused 372 | relegated 373 | rumors 374 | promulgated 375 | implemented 376 | enlisted 377 | consumed 378 | decided 379 | delivered 380 | confused 381 | suspended 382 | participated 383 | exceeded 384 | slain 385 | educated 386 | largely 387 | extensively 388 | referenced 389 | decorated 390 | forbidden 391 | sung 392 | pioneered 393 | deserted 394 | conducted 395 | reinforced 396 | decreed 397 | replaced 398 | openly 399 | obliged 400 | framed 401 | donated 402 | formulated 403 | reserved 404 | afterward 405 | completed 406 | abolished 407 | repeated 408 | represented 409 | badly 410 | collaborated 411 | criticized 412 | expected 413 | insisted 414 | successfully 415 | disappeared 416 | permitted 417 | existed 418 | attempted 419 | ruined 420 | happened 421 | cleared 422 | excavated 423 | confined 424 | influenced 425 | disagreed 426 | thereafter 427 | characterized 428 | organised 429 | recovered 430 | flown 431 | amended 432 | filed 433 | once 434 | venerated 435 | seized 436 | preparing 437 | reversed 438 | baptized 439 | acquired 440 | frustrated 441 | abandoned 442 | coached 443 | realised 444 | alienated 445 | eligible 446 | reported 447 | outlawed 448 | absorbed 449 | touched 450 | plagued 451 | patented 452 | demanded 453 | summoned 454 | unaware 455 | explored 456 | compelled 457 | besides 458 | suppressed 459 | discarded 460 | appealed 461 | retained 462 | exhibited 463 | defended 464 | approaching 465 | convicted 466 | renounced 467 | surprised 468 | selected 469 | gathered 470 | destroying 471 | halted 472 | popularized 473 | traced 474 | accompanied 475 | travelled 476 | viewed 477 | wounded 478 | entered 479 | cited 480 | rejected 481 | observed 482 | quoted 483 | photographed 484 | honoured 485 | bestowed 486 | avoided 487 | accessed 488 | reorganized 489 | reputed 490 | angered 491 | investigated 492 | charged 493 | endorsed 494 | assumed 495 | restored 496 | managed 497 | trained 498 | commenced 499 | tried 500 | committed 501 | motivated 502 | financed 503 | sentenced 504 | surveyed 505 | diagnosed 506 | overthrown 507 | registered 508 | addressed 509 | testified 510 | mentioned 511 | attending 512 | pursued 513 | upset 514 | earned 515 | employed 516 | devised 517 | crushed 518 | belonged 519 | colonized 520 | persuaded 521 | recruited 522 | converted 523 | deemed 524 | fathered 525 | undergoing 526 | restricted 527 | confronted 528 | grown 529 | staged 530 | bombed 531 | finally 532 | favour 533 | argued 534 | discharged 535 | protected 536 | designated 537 | satisfied 538 | traded 539 | maintained 540 | disappointed 541 | imitated 542 | forged 543 | cancelled 544 | exiled 545 | treated 546 | visiting 547 | superseded 548 | upgraded 549 | remembered 550 | hoped 551 | negotiated 552 | warned 553 | identified 554 | rediscovered 555 | calling 556 | copied 557 | promoted 558 | claimed 559 | injured 560 | awarded 561 | claiming 562 | assembled 563 | acknowledged 564 | executed 565 | destroyed 566 | hanged 567 | classed 568 | contacted 569 | detained 570 | outnumbered 571 | removed 572 | constructed 573 | contracted 574 | filmed 575 | secured 576 | devastated 577 | attended 578 | discontinued 579 | ignored 580 | encouraged 581 | originated 582 | styled 583 | severed 584 | requested 585 | devoted 586 | disabled 587 | relieved 588 | convinced 589 | learnt 590 | initially 591 | stolen 592 | widely 593 | repeatedly 594 | grouped 595 | wished 596 | dealt 597 | interrupted 598 | hitherto 599 | sued 600 | withdrawn 601 | murdered 602 | attained 603 | -------------------------------------------------------------------------------- /result/62.txt: -------------------------------------------------------------------------------- 1 | investment 2 | resources 3 | production 4 | cost 5 | economy 6 | economic 7 | policy 8 | infrastructure 9 | primary 10 | services 11 | development 12 | unemployment 13 | company 14 | largest 15 | electricity 16 | financial 17 | sectors 18 | industry 19 | petroleum 20 | agriculture 21 | construction 22 | food 23 | products 24 | companies 25 | billion 26 | capital 27 | private 28 | est 29 | rate 30 | growth 31 | prices 32 | revenues 33 | currency 34 | debt 35 | internal 36 | banking 37 | industries 38 | bank 39 | commercial 40 | consumer 41 | oil 42 | money 43 | public 44 | industrial 45 | sector 46 | goods 47 | exchange 48 | reserves 49 | agricultural 50 | limited 51 | tourism 52 | markets 53 | consumption 54 | export 55 | manufacturing 56 | power 57 | trade 58 | major 59 | market 60 | business 61 | exports 62 | mining 63 | labor 64 | budget 65 | enterprises 66 | imports 67 | foreign 68 | -------------------------------------------------------------------------------- /result/63.txt: -------------------------------------------------------------------------------- 1 | one 2 | november 3 | year 4 | seven 5 | august 6 | zero 7 | days 8 | april 9 | december 10 | nine 11 | march 12 | eight 13 | september 14 | four 15 | october 16 | january 17 | two 18 | february 19 | six 20 | july 21 | five 22 | three 23 | day 24 | june 25 | -------------------------------------------------------------------------------- /result/64.txt: -------------------------------------------------------------------------------- 1 | rico 2 | rica 3 | southeastern 4 | moravia 5 | libyan 6 | basque 7 | hong 8 | czech 9 | verde 10 | cambodia 11 | catalonia 12 | geography 13 | subdivisions 14 | honduras 15 | burundi 16 | singapore 17 | postal 18 | thailand 19 | lesotho 20 | maltese 21 | lanka 22 | emirates 23 | cayman 24 | andorra 25 | indonesian 26 | chad 27 | turkish 28 | mainland 29 | indonesia 30 | zimbabwe 31 | mozambique 32 | punjab 33 | jamaica 34 | antarctic 35 | balkan 36 | observances 37 | dependencies 38 | romania 39 | gaza 40 | overseas 41 | divisions 42 | belize 43 | americas 44 | gibraltar 45 | tonga 46 | latvian 47 | bangladesh 48 | mauritania 49 | brunei 50 | lithuania 51 | maritime 52 | albania 53 | faroe 54 | malaya 55 | tajikistan 56 | myanmar 57 | venezuela 58 | bengal 59 | zealand 60 | karnataka 61 | federated 62 | greenland 63 | chilean 64 | colonization 65 | bissau 66 | malaysian 67 | namibia 68 | austria 69 | vietnamese 70 | richest 71 | dominica 72 | sweden 73 | uganda 74 | taiwanese 75 | armenia 76 | martinique 77 | lebanese 78 | aruba 79 | landlocked 80 | chiapas 81 | grenada 82 | signatory 83 | prefecture 84 | haiti 85 | benin 86 | libya 87 | turkey 88 | luxembourg 89 | abkhazia 90 | egyptian 91 | algeria 92 | gujarat 93 | eritrea 94 | subcontinent 95 | senegal 96 | tunisia 97 | regional 98 | niger 99 | danish 100 | hungary 101 | oceania 102 | chile 103 | calgary 104 | kong 105 | costa 106 | kerala 107 | lebanon 108 | tobago 109 | ghana 110 | limburg 111 | guam 112 | iranian 113 | bavarian 114 | croatia 115 | wildlife 116 | levant 117 | puerto 118 | liberia 119 | burma 120 | slovakia 121 | palestinian 122 | factbook 123 | baltic 124 | arab 125 | cape 126 | portuguese 127 | alsace 128 | flag 129 | salvador 130 | norway 131 | el 132 | eu 133 | bulgaria 134 | kenya 135 | dominican 136 | ecuador 137 | macau 138 | afghanistan 139 | switzerland 140 | brussels 141 | commonwealth 142 | congo 143 | peninsular 144 | railways 145 | corsican 146 | galicia 147 | formerly 148 | somalia 149 | transportation 150 | tibet 151 | fiji 152 | cuban 153 | sahara 154 | breton 155 | sudan 156 | rwanda 157 | saudi 158 | seceded 159 | bulgarian 160 | laos 161 | macedonian 162 | nicaragua 163 | herzegovina 164 | maldives 165 | kyoto 166 | annexed 167 | franc 168 | arabia 169 | hound 170 | maghreb 171 | esa 172 | poorest 173 | francophone 174 | bhutan 175 | philippines 176 | trinidad 177 | diplomatic 178 | prc 179 | anc 180 | jakarta 181 | corsica 182 | balochistan 183 | argentina 184 | nepal 185 | togo 186 | faso 187 | guyana 188 | shanghai 189 | provinces 190 | antigua 191 | continental 192 | bosnian 193 | cyprus 194 | rhodesia 195 | country 196 | macedonia 197 | slovenia 198 | djibouti 199 | parishes 200 | nation 201 | volcanoes 202 | cannabis 203 | flemish 204 | samoa 205 | seoul 206 | guinea 207 | cia 208 | monaco 209 | korean 210 | kurdistan 211 | finnish 212 | counties 213 | iceland 214 | unified 215 | territories 216 | guadeloupe 217 | baghdad 218 | sri 219 | iran 220 | yemen 221 | telephones 222 | syria 223 | zambia 224 | beijing 225 | serbia 226 | burkina 227 | communes 228 | asian 229 | karachi 230 | belarus 231 | legion 232 | barbados 233 | alberta 234 | cameroon 235 | liechtenstein 236 | hellenic 237 | asean 238 | kazakhstan 239 | greece 240 | kuwait 241 | botswana 242 | tanzania 243 | guatemala 244 | guiana 245 | portal 246 | malaysia 247 | peruvian 248 | miscellaneous 249 | andhra 250 | federation 251 | hawaii 252 | mauritius 253 | bahamas 254 | malta 255 | colony 256 | bermuda 257 | falkland 258 | ivoire 259 | saharan 260 | prehistory 261 | colombia 262 | chechnya 263 | holidays 264 | madagascar 265 | latvia 266 | neighboring 267 | mumbai 268 | croatian 269 | georgian 270 | angola 271 | kashmir 272 | montenegro 273 | confederation 274 | transnistria 275 | frisian 276 | flanders 277 | bureau 278 | gdr 279 | khmer 280 | mali 281 | embassy 282 | moroccan 283 | cuba 284 | northeastern 285 | leone 286 | communications 287 | morocco 288 | melilla 289 | denmark 290 | belgium 291 | crete 292 | colonialism 293 | lao 294 | berber 295 | korea 296 | cairo 297 | municipality 298 | sierra 299 | demographics 300 | nigeria 301 | scandinavian 302 | multilateral 303 | prague 304 | kurdish 305 | poland 306 | taiwan 307 | kyrgyzstan 308 | slovak 309 | neighbouring 310 | malawi 311 | polynesia 312 | sardinia 313 | kiribati 314 | manitoba 315 | balkans 316 | uzbekistan 317 | panama 318 | suriname 319 | rio 320 | lithuanian 321 | bahrain 322 | brazil 323 | economies 324 | wagoner 325 | mexico 326 | capitals 327 | maharashtra 328 | bolivia 329 | ceuta 330 | timor 331 | peru 332 | malay 333 | uruguay 334 | main 335 | principality 336 | comoros 337 | pradesh 338 | moldova 339 | quebec 340 | protectorate 341 | polynesian 342 | azerbaijan 343 | finland 344 | ukraine 345 | autonomous 346 | estonian 347 | alaska 348 | czechoslovakia 349 | albanian 350 | paraguay 351 | prefectures 352 | mongolia 353 | netherlands 354 | bosnia 355 | militaries 356 | gabon 357 | partition 358 | belarusian 359 | serbian 360 | estonia 361 | neighbors 362 | pakistan 363 | ethiopia 364 | madrid 365 | caribbean 366 | municipalities 367 | ethnologue 368 | weimar 369 | equatorial 370 | catalan 371 | constituent 372 | suez 373 | micronesia 374 | republics 375 | -------------------------------------------------------------------------------- /result/65.txt: -------------------------------------------------------------------------------- 1 | web 2 | links 3 | http 4 | library 5 | news 6 | list 7 | articles 8 | information 9 | see 10 | official 11 | com 12 | article 13 | www 14 | project 15 | uk 16 | site 17 | history 18 | page 19 | website 20 | map 21 | references 22 | online 23 | external 24 | bbc 25 | -------------------------------------------------------------------------------- /result/66.txt: -------------------------------------------------------------------------------- 1 | spiders 2 | wooden 3 | cooking 4 | titanium 5 | parasites 6 | chlorine 7 | codeine 8 | rich 9 | rice 10 | disasters 11 | moons 12 | diving 13 | bubble 14 | rush 15 | cream 16 | dyes 17 | ceramic 18 | sauce 19 | fermented 20 | blended 21 | novelty 22 | gases 23 | uranium 24 | beverage 25 | minerals 26 | stomach 27 | barley 28 | coins 29 | coffee 30 | thrash 31 | tissue 32 | gaseous 33 | catalyst 34 | beds 35 | flammable 36 | gut 37 | bauxite 38 | apples 39 | discovered 40 | livestock 41 | nucleic 42 | smuggling 43 | pool 44 | liquefied 45 | predators 46 | spray 47 | fatty 48 | turbines 49 | chemicals 50 | blades 51 | tobacco 52 | sediments 53 | balloons 54 | climbers 55 | homo 56 | cocoa 57 | phosphorus 58 | crops 59 | foods 60 | aquatic 61 | artificial 62 | spontaneously 63 | cane 64 | ores 65 | mixture 66 | anointing 67 | leds 68 | sheets 69 | insoluble 70 | coca 71 | outdoor 72 | flavor 73 | spice 74 | creatures 75 | shareholders 76 | eggs 77 | grains 78 | ethylene 79 | timber 80 | cooked 81 | valves 82 | principally 83 | charcoal 84 | formations 85 | fermentation 86 | deuterium 87 | starch 88 | kosher 89 | stores 90 | coke 91 | abundance 92 | hemoglobin 93 | toxic 94 | soda 95 | beads 96 | mud 97 | erosion 98 | clouds 99 | pork 100 | edible 101 | mushrooms 102 | cheap 103 | mummies 104 | dairy 105 | horses 106 | antibiotics 107 | cadmium 108 | alcohol 109 | limestone 110 | chambers 111 | gypsum 112 | liquids 113 | machinery 114 | prey 115 | reservoirs 116 | fertilizer 117 | acid 118 | manganese 119 | organic 120 | fission 121 | crude 122 | graphite 123 | cake 124 | pumps 125 | wine 126 | semiconductor 127 | metallic 128 | detectors 129 | soluble 130 | extraction 131 | foo 132 | alloys 133 | gasoline 134 | hides 135 | container 136 | refining 137 | fibre 138 | deduction 139 | fossils 140 | clay 141 | mammals 142 | herbs 143 | asteroids 144 | pornographic 145 | dinosaur 146 | poisonous 147 | arable 148 | outward 149 | hollow 150 | canned 151 | robots 152 | alkanes 153 | chloride 154 | steel 155 | bacterium 156 | chromium 157 | gunpowder 158 | dust 159 | bananas 160 | habitat 161 | seeds 162 | packaged 163 | plates 164 | flax 165 | quarks 166 | explosion 167 | nitrogen 168 | cola 169 | solubility 170 | sheep 171 | sheet 172 | fruits 173 | irradiation 174 | soils 175 | shortages 176 | soil 177 | fruit 178 | specimen 179 | paints 180 | tritium 181 | polar 182 | flattened 183 | abundant 184 | inert 185 | heroin 186 | juice 187 | eaten 188 | trees 189 | battery 190 | rum 191 | cotton 192 | gelatin 193 | fuels 194 | sulfur 195 | molybdenum 196 | precious 197 | crystalline 198 | deposits 199 | fats 200 | frozen 201 | cement 202 | hydrocarbon 203 | pebbles 204 | bottles 205 | bottled 206 | indium 207 | diet 208 | ammonium 209 | yeast 210 | olive 211 | chemical 212 | pure 213 | alluvial 214 | tonic 215 | exotic 216 | coconut 217 | mineral 218 | solvents 219 | nutrient 220 | coal 221 | paint 222 | priced 223 | beans 224 | gravel 225 | staple 226 | oils 227 | plastics 228 | hydroelectric 229 | krypton 230 | granite 231 | aquarium 232 | contamination 233 | bose 234 | beef 235 | beer 236 | containing 237 | antimatter 238 | ice 239 | corn 240 | meteorites 241 | pearls 242 | chocolate 243 | flavored 244 | isotope 245 | hazards 246 | asphalt 247 | counterpoint 248 | bronze 249 | brick 250 | welding 251 | fried 252 | lemon 253 | masks 254 | saturated 255 | contaminated 256 | vegetation 257 | diacritics 258 | packaging 259 | mines 260 | mined 261 | propane 262 | fossil 263 | cocaine 264 | silicon 265 | clarity 266 | shrubs 267 | insects 268 | grazing 269 | polluted 270 | nitrate 271 | soy 272 | irrigation 273 | magnetism 274 | benzene 275 | natural 276 | chemically 277 | compounds 278 | aluminium 279 | aromatic 280 | mask 281 | reactors 282 | cyanide 283 | crop 284 | gold 285 | odor 286 | fresh 287 | casing 288 | tomato 289 | commodities 290 | bonds 291 | textiles 292 | ink 293 | glaciers 294 | oxide 295 | methanol 296 | pizza 297 | fever 298 | rocks 299 | cattle 300 | lithium 301 | wax 302 | clothing 303 | hydrocarbons 304 | magnesium 305 | soot 306 | quartz 307 | wheat 308 | peat 309 | reactants 310 | ions 311 | species 312 | lasers 313 | algae 314 | dams 315 | manufacture 316 | boots 317 | molten 318 | ivory 319 | processed 320 | poultry 321 | coated 322 | synthesized 323 | crystals 324 | baking 325 | brackish 326 | dry 327 | meat 328 | bone 329 | seed 330 | sugar 331 | antimony 332 | arsenic 333 | mixtures 334 | butter 335 | gallium 336 | anthrax 337 | esters 338 | dioxide 339 | ore 340 | cheese 341 | ceramics 342 | diamonds 343 | diversion 344 | climbing 345 | amounts 346 | heavier 347 | shells 348 | intoxication 349 | zinc 350 | fish 351 | copper 352 | isotopes 353 | complementary 354 | ornaments 355 | jewelry 356 | pharmaceuticals 357 | gametes 358 | pipes 359 | monoxide 360 | lamp 361 | artificially 362 | mice 363 | bulk 364 | vegetables 365 | acids 366 | poison 367 | potatoes 368 | calorie 369 | complexes 370 | peroxide 371 | seasonal 372 | lamps 373 | gin 374 | phosphate 375 | propellant 376 | hydroxide 377 | carbonate 378 | furniture 379 | shrimp 380 | brass 381 | oxides 382 | polyhedra 383 | pond 384 | chiefly 385 | sedimentary 386 | pipelines 387 | goats 388 | plants 389 | extrasolar 390 | citrus 391 | material 392 | nickel 393 | batteries 394 | fluorescent 395 | dynamite 396 | fertilizers 397 | glass 398 | hot 399 | shale 400 | tungsten 401 | boron 402 | calcium 403 | groundwater 404 | acacia 405 | tankers 406 | pigment 407 | salt 408 | locally 409 | nutrients 410 | stone 411 | fluorine 412 | hunting 413 | salts 414 | plant 415 | fibers 416 | aroma 417 | scenery 418 | animals 419 | pigs 420 | condensate 421 | alloy 422 | rough 423 | scrolls 424 | waste 425 | beryllium 426 | resin 427 | alkali 428 | cellulose 429 | neutrons 430 | crackers 431 | bread 432 | commercially 433 | iron 434 | steam 435 | caves 436 | trucks 437 | fusion 438 | securities 439 | cloth 440 | crystal 441 | fabricated 442 | hops 443 | envelope 444 | flowers 445 | photosynthesis 446 | leather 447 | wheels 448 | elemental 449 | condensation 450 | solvent 451 | egg 452 | cleaning 453 | radioactive 454 | metals 455 | ammonia 456 | corrosion 457 | powder 458 | coating 459 | hazardous 460 | honey 461 | extract 462 | sinks 463 | vegetable 464 | sequestration 465 | milk 466 | nylon 467 | moderator 468 | bottle 469 | fluids 470 | nanotubes 471 | diamond 472 | fine 473 | textile 474 | vapour 475 | pollution 476 | lime 477 | absinthe 478 | soft 479 | chains 480 | plutonium 481 | amorphous 482 | methane 483 | ethanol 484 | raw 485 | explosives 486 | metal 487 | fabrics 488 | containers 489 | tin 490 | stagnant 491 | drinks 492 | alkaline 493 | radon 494 | distillation 495 | constituents 496 | plastic 497 | poisoning 498 | wood 499 | wool 500 | dye 501 | aluminum 502 | skeletons 503 | distilled 504 | samples 505 | rubber 506 | synthetic 507 | fat 508 | imported 509 | inorganic 510 | thread 511 | syrup 512 | solids 513 | spices 514 | tar 515 | underwater 516 | flour 517 | beverages 518 | grain 519 | lead 520 | maize 521 | domesticated 522 | -------------------------------------------------------------------------------- /result/68.txt: -------------------------------------------------------------------------------- 1 | cytochrome 2 | sentry 3 | fig 4 | wildcat 5 | lowercase 6 | litre 7 | messier 8 | sco 9 | sch 10 | sanh 11 | abbreviated 12 | sharps 13 | vol 14 | ackerman 15 | wei 16 | tnt 17 | totaled 18 | cong 19 | ol 20 | fluoride 21 | cerro 22 | bigg 23 | trans 24 | approx 25 | nov 26 | nos 27 | elbing 28 | ff 29 | png 30 | pinyin 31 | psi 32 | gonna 33 | hertz 34 | nster 35 | abner 36 | ninja 37 | dassault 38 | aires 39 | richter 40 | lin 41 | rho 42 | qquad 43 | nippon 44 | gion 45 | sv 46 | gita 47 | zeitschrift 48 | sqrt 49 | triangular 50 | gait 51 | aus 52 | sorry 53 | med 54 | mer 55 | reykjav 56 | aqsa 57 | aston 58 | mapsto 59 | rub 60 | bol 61 | equiv 62 | sigma 63 | geq 64 | gen 65 | dkw 66 | kappa 67 | husayn 68 | cyclopedia 69 | juventus 70 | conseil 71 | alois 72 | cha 73 | che 74 | chi 75 | chr 76 | qui 77 | sfg 78 | recommendation 79 | ns 80 | harrier 81 | tl 82 | saber 83 | mus 84 | xxx 85 | atta 86 | ros 87 | farewell 88 | epsilon 89 | moa 90 | kelvin 91 | nchen 92 | mathcal 93 | roses 94 | sur 95 | sup 96 | jacobs 97 | patel 98 | app 99 | hy 100 | rgen 101 | mirage 102 | ldots 103 | josef 104 | tilde 105 | circ 106 | ver 107 | vee 108 | kcal 109 | canvas 110 | dowleh 111 | acc 112 | ac 113 | ab 114 | ae 115 | ag 116 | af 117 | ai 118 | ak 119 | al 120 | ao 121 | aq 122 | ap 123 | ar 124 | au 125 | ay 126 | ax 127 | az 128 | annex 129 | exp 130 | ser 131 | sec 132 | sei 133 | ursula 134 | ba 135 | bb 136 | bl 137 | bn 138 | bo 139 | bh 140 | br 141 | hornet 142 | hello 143 | leq 144 | essendon 145 | nadh 146 | vitamin 147 | ck 148 | ch 149 | cn 150 | cl 151 | cc 152 | cb 153 | cf 154 | cs 155 | cr 156 | cp 157 | cu 158 | ct 159 | phi 160 | rangle 161 | vogt 162 | aka 163 | zef 164 | giraffe 165 | magnum 166 | dn 167 | dl 168 | dm 169 | dh 170 | di 171 | df 172 | dd 173 | db 174 | dz 175 | dx 176 | dv 177 | dt 178 | du 179 | ds 180 | dp 181 | cop 182 | cos 183 | cod 184 | col 185 | con 186 | mails 187 | ttingen 188 | colt 189 | coli 190 | concerto 191 | em 192 | en 193 | ei 194 | ek 195 | ee 196 | eg 197 | ef 198 | ea 199 | ec 200 | eb 201 | ez 202 | et 203 | ev 204 | es 205 | er 206 | selma 207 | uppercase 208 | hrer 209 | zeitung 210 | fr 211 | fs 212 | fb 213 | fc 214 | fe 215 | fg 216 | fl 217 | fn 218 | dis 219 | hbar 220 | operatorname 221 | gu 222 | gt 223 | gr 224 | gy 225 | gx 226 | gg 227 | gf 228 | ge 229 | ga 230 | gn 231 | gl 232 | gi 233 | gh 234 | mitsubishi 235 | ller 236 | beg 237 | ber 238 | sha 239 | suzuki 240 | hz 241 | hr 242 | hu 243 | hk 244 | hi 245 | ho 246 | hl 247 | hm 248 | ha 249 | hf 250 | nen 251 | counts 252 | infty 253 | ir 254 | ik 255 | im 256 | il 257 | ib 258 | zur 259 | azure 260 | shin 261 | hummer 262 | langle 263 | masud 264 | skinner 265 | delta 266 | ji 267 | je 268 | ja 269 | powerbook 270 | jonas 271 | der 272 | des 273 | det 274 | dev 275 | del 276 | den 277 | deg 278 | buckminsterfullerene 279 | ka 280 | ke 281 | kj 282 | ki 283 | ko 284 | kr 285 | kw 286 | ku 287 | ky 288 | zeta 289 | platinum 290 | rightarrow 291 | sapiens 292 | pei 293 | le 294 | ln 295 | lo 296 | lu 297 | rez 298 | rex 299 | reg 300 | esp 301 | gesellschaft 302 | md 303 | ma 304 | mc 305 | mb 306 | ml 307 | mo 308 | mn 309 | mu 310 | mt 311 | mv 312 | mx 313 | eng 314 | gov 315 | flop 316 | amor 317 | cort 318 | sept 319 | nh 320 | ni 321 | nn 322 | nc 323 | ne 324 | nx 325 | nu 326 | li 327 | def 328 | mst 329 | rufus 330 | colon 331 | vantage 332 | om 333 | ok 334 | oh 335 | og 336 | ou 337 | op 338 | ter 339 | tes 340 | wolff 341 | pr 342 | ps 343 | pp 344 | pa 345 | pe 346 | pi 347 | pl 348 | pm 349 | corsair 350 | kh 351 | redesignated 352 | inen 353 | qu 354 | qi 355 | andromeda 356 | align 357 | howitzer 358 | raining 359 | rttemberg 360 | deutsche 361 | xn 362 | xm 363 | rt 364 | ru 365 | rv 366 | rp 367 | rr 368 | rs 369 | rx 370 | ra 371 | rm 372 | ro 373 | rh 374 | ri 375 | rk 376 | dots 377 | sol 378 | sz 379 | sx 380 | sp 381 | su 382 | sk 383 | sj 384 | si 385 | sh 386 | sn 387 | sl 388 | sc 389 | sa 390 | sg 391 | se 392 | krak 393 | terra 394 | tz 395 | tt 396 | tu 397 | tr 398 | ts 399 | ti 400 | te 401 | ta 402 | xor 403 | rgensen 404 | albatross 405 | ux 406 | ut 407 | cio 408 | ur 409 | cit 410 | ud 411 | overline 412 | tre 413 | va 414 | vf 415 | vs 416 | sonata 417 | int 418 | stra 419 | iaea 420 | wg 421 | wa 422 | wi 423 | wu 424 | aix 425 | ain 426 | truncated 427 | demille 428 | cap 429 | cam 430 | cal 431 | xi 432 | xl 433 | xb 434 | xf 435 | xx 436 | xy 437 | quad 438 | ein 439 | lite 440 | thunderbolt 441 | log 442 | lor 443 | haemoglobin 444 | turbo 445 | yi 446 | ya 447 | yu 448 | zh 449 | za 450 | zu 451 | zs 452 | bun 453 | gro 454 | dot 455 | exponent 456 | und 457 | une 458 | sar 459 | mar 460 | mal 461 | zilog 462 | barbarossa 463 | svg 464 | citation 465 | orient 466 | para 467 | ruiz 468 | gau 469 | gal 470 | rdoba 471 | nun 472 | ballard 473 | min 474 | zseries 475 | aa 476 | ah 477 | av 478 | ascorbic 479 | rang 480 | mathbf 481 | carbine 482 | delle 483 | ell 484 | fianna 485 | ng 486 | cdot 487 | garc 488 | grumman 489 | rowling 490 | oboe 491 | ger 492 | prelude 493 | tley 494 | fantasia 495 | eds 496 | sim 497 | flex 498 | surat 499 | nde 500 | val 501 | var 502 | tomcat 503 | hern 504 | ath 505 | mathrm 506 | deutschen 507 | bi 508 | subunit 509 | italia 510 | itu 511 | alla 512 | hmmwv 513 | designation 514 | algol 515 | chesterton 516 | horst 517 | hartmann 518 | laplace 519 | ode 520 | respectively 521 | pour 522 | forall 523 | sadd 524 | hubert 525 | lat 526 | pascal 527 | tel 528 | rated 529 | nig 530 | nis 531 | mays 532 | binomial 533 | plo 534 | omega 535 | htm 536 | ci 537 | ca 538 | trujillo 539 | sebasti 540 | str 541 | lim 542 | lix 543 | alpha 544 | imac 545 | nad 546 | maj 547 | singh 548 | aqua 549 | cdots 550 | deutschland 551 | varepsilon 552 | pt 553 | px 554 | helsing 555 | po 556 | bar 557 | dim 558 | din 559 | alto 560 | bius 561 | lyons 562 | piccolo 563 | kool 564 | mart 565 | pax 566 | mor 567 | mon 568 | mol 569 | mod 570 | bessel 571 | ansi 572 | abs 573 | elbl 574 | chan 575 | mbox 576 | bia 577 | bis 578 | varphi 579 | serie 580 | sinn 581 | gcd 582 | da 583 | dar 584 | das 585 | escher 586 | otimes 587 | rad 588 | ral 589 | tis 590 | longitude 591 | tornado 592 | comp 593 | como 594 | fas 595 | fao 596 | fac 597 | bart 598 | republika 599 | tiberian 600 | rim 601 | prod 602 | par 603 | sparrow 604 | tau 605 | tan 606 | tai 607 | ackermann 608 | cygnus 609 | theta 610 | eh 611 | gan 612 | -------------------------------------------------------------------------------- /result/69.txt: -------------------------------------------------------------------------------- 1 | west 2 | north 3 | africa 4 | ocean 5 | asia 6 | sea 7 | central 8 | located 9 | border 10 | islands 11 | island 12 | province 13 | km 14 | regions 15 | areas 16 | western 17 | south 18 | northern 19 | coast 20 | eastern 21 | east 22 | cities 23 | region 24 | river 25 | indian 26 | india 27 | southern 28 | area 29 | territory 30 | african 31 | lake 32 | -------------------------------------------------------------------------------- /result/70.txt: -------------------------------------------------------------------------------- 1 | years 2 | babylonian 3 | era 4 | seventeenth 5 | fifteenth 6 | times 7 | renaissance 8 | romans 9 | beginning 10 | century 11 | classical 12 | dynasty 13 | period 14 | date 15 | ad 16 | bc 17 | byzantine 18 | ce 19 | greek 20 | thirteenth 21 | antiquity 22 | during 23 | medieval 24 | rome 25 | earlier 26 | eighteenth 27 | calendar 28 | middle 29 | late 30 | throughout 31 | twentieth 32 | circa 33 | came 34 | th 35 | gaul 36 | post 37 | prehistoric 38 | onwards 39 | bce 40 | modern 41 | ancient 42 | sixteenth 43 | mid 44 | neolithic 45 | roman 46 | until 47 | nineteenth 48 | pre 49 | old 50 | age 51 | continued 52 | rule 53 | centuries 54 | early 55 | emperors 56 | probably 57 | began 58 | ages 59 | hellenistic 60 | empire 61 | -------------------------------------------------------------------------------- /result/71.txt: -------------------------------------------------------------------------------- 1 | projection 2 | dna 3 | intake 4 | telescope 5 | spectrum 6 | plate 7 | sensitivity 8 | airflow 9 | heating 10 | deflection 11 | altitude 12 | chain 13 | amplification 14 | throughput 15 | frames 16 | friction 17 | circumference 18 | photon 19 | wires 20 | edges 21 | sums 22 | magma 23 | cavity 24 | amplifier 25 | clock 26 | occurs 27 | dipole 28 | measurements 29 | inserting 30 | dynamics 31 | greenhouse 32 | frame 33 | membrane 34 | carbohydrates 35 | illusion 36 | magnetic 37 | alternating 38 | blocking 39 | barrier 40 | electrostatic 41 | optimum 42 | mutations 43 | cylinder 44 | cone 45 | usable 46 | maximum 47 | layers 48 | extra 49 | divergence 50 | transition 51 | output 52 | cathode 53 | stars 54 | recoil 55 | pitched 56 | excess 57 | marginal 58 | conventional 59 | producing 60 | horizontal 61 | thermal 62 | loads 63 | electrons 64 | velocity 65 | proton 66 | injection 67 | orbit 68 | wave 69 | gene 70 | transitions 71 | galaxies 72 | projectile 73 | receptors 74 | tuned 75 | limits 76 | refraction 77 | contraction 78 | combination 79 | cosmic 80 | deeper 81 | jupiter 82 | microwave 83 | fraction 84 | sample 85 | sugars 86 | vapor 87 | threshold 88 | strain 89 | protein 90 | collision 91 | shape 92 | planet 93 | constant 94 | varies 95 | galaxy 96 | intermediate 97 | rotating 98 | emitting 99 | intensity 100 | placebo 101 | masses 102 | anomaly 103 | elastic 104 | flip 105 | detail 106 | filter 107 | scattering 108 | melting 109 | sunlight 110 | faster 111 | nuclei 112 | frequencies 113 | bulbs 114 | fuel 115 | surfaces 116 | diode 117 | direction 118 | bullets 119 | compressed 120 | terrestrial 121 | orbits 122 | lighting 123 | nucleus 124 | weight 125 | loops 126 | electric 127 | precision 128 | pipeline 129 | fluctuations 130 | fold 131 | cerebral 132 | warming 133 | transfer 134 | spiral 135 | blade 136 | damage 137 | modulation 138 | wind 139 | displacement 140 | sensors 141 | concrete 142 | lift 143 | shifting 144 | reducing 145 | panels 146 | wavelengths 147 | collisions 148 | spectroscopy 149 | ambient 150 | costs 151 | photons 152 | tube 153 | ratios 154 | diffraction 155 | diffusion 156 | drift 157 | elevated 158 | focal 159 | flat 160 | tidal 161 | efficiently 162 | frequency 163 | molecules 164 | adjusted 165 | trajectory 166 | laser 167 | delivery 168 | altitudes 169 | strength 170 | infrared 171 | plasma 172 | blast 173 | illumination 174 | nerve 175 | sheer 176 | proportion 177 | texture 178 | comet 179 | helium 180 | momentum 181 | downward 182 | heated 183 | circulation 184 | antenna 185 | strings 186 | reflected 187 | distances 188 | signal 189 | depth 190 | cloud 191 | elliptical 192 | upward 193 | orbital 194 | reflection 195 | bohr 196 | tensile 197 | activation 198 | cholesterol 199 | brightness 200 | telescopes 201 | payload 202 | quantities 203 | skin 204 | inertial 205 | rays 206 | interference 207 | bonding 208 | detecting 209 | aperture 210 | energies 211 | projected 212 | needle 213 | extracted 214 | depths 215 | generators 216 | supply 217 | atomic 218 | resonant 219 | lm 220 | likelihood 221 | tide 222 | gravity 223 | caches 224 | atmospheric 225 | spacetime 226 | visible 227 | glucose 228 | ceiling 229 | flow 230 | capacity 231 | cord 232 | medium 233 | heat 234 | bullet 235 | varying 236 | spectral 237 | surroundings 238 | stroke 239 | hydrogen 240 | coordinated 241 | weighted 242 | sodium 243 | propagation 244 | tunneling 245 | illuminated 246 | bubbles 247 | glide 248 | flood 249 | measured 250 | excessive 251 | orbiting 252 | tends 253 | potassium 254 | electron 255 | tension 256 | induction 257 | transistor 258 | polarization 259 | layer 260 | radiation 261 | bending 262 | upwards 263 | atoms 264 | diodes 265 | speeds 266 | radius 267 | pressures 268 | activated 269 | optimal 270 | molecule 271 | freezing 272 | vertical 273 | diffuse 274 | vacuum 275 | waves 276 | distortion 277 | turbine 278 | measurement 279 | evaporation 280 | enzyme 281 | factor 282 | hardness 283 | uv 284 | holes 285 | transmission 286 | resulting 287 | slit 288 | delay 289 | decay 290 | rotation 291 | mechanical 292 | piston 293 | ultra 294 | therapeutic 295 | gravitational 296 | distribution 297 | bang 298 | thick 299 | calculated 300 | emit 301 | tails 302 | price 303 | typically 304 | rectangular 305 | thickness 306 | probabilities 307 | impulse 308 | spectra 309 | kinetic 310 | mach 311 | minimal 312 | tubes 313 | circular 314 | detector 315 | comparable 316 | conical 317 | dose 318 | variation 319 | ear 320 | coefficient 321 | bond 322 | gradient 323 | distance 324 | boltzmann 325 | electromagnetic 326 | shift 327 | connector 328 | sensor 329 | efficient 330 | potential 331 | aberration 332 | slits 333 | grid 334 | matching 335 | decomposition 336 | difference 337 | formation 338 | filters 339 | reverse 340 | gap 341 | flux 342 | decrease 343 | amplitude 344 | acceleration 345 | emitted 346 | bulb 347 | lenses 348 | stellar 349 | muzzle 350 | flame 351 | fluid 352 | electrodes 353 | detection 354 | stopping 355 | cylinders 356 | indirect 357 | discharge 358 | charge 359 | gram 360 | cooling 361 | coupled 362 | reduces 363 | crust 364 | induced 365 | slower 366 | pump 367 | optical 368 | tempered 369 | mutation 370 | breathing 371 | pulses 372 | angle 373 | petrol 374 | elevations 375 | hole 376 | feedback 377 | atm 378 | atp 379 | transistors 380 | occurring 381 | packets 382 | quantity 383 | stress 384 | decreases 385 | chromatic 386 | slow 387 | sampling 388 | exit 389 | shaft 390 | emission 391 | plane 392 | molecular 393 | salinity 394 | beams 395 | load 396 | triple 397 | signals 398 | atom 399 | continuously 400 | octave 401 | doubling 402 | valve 403 | thrust 404 | atmosphere 405 | explosive 406 | increases 407 | tides 408 | humidity 409 | curvature 410 | eclipse 411 | ultraviolet 412 | oxygen 413 | diesel 414 | target 415 | phase 416 | observer 417 | switches 418 | lifting 419 | projectiles 420 | wavelength 421 | angular 422 | exerted 423 | velocities 424 | tones 425 | reservoir 426 | concentration 427 | circle 428 | capsule 429 | converting 430 | magnitude 431 | strokes 432 | quality 433 | pitch 434 | efficiency 435 | offset 436 | interstellar 437 | receptor 438 | overhead 439 | currents 440 | particles 441 | grade 442 | moisture 443 | aether 444 | ether 445 | affinity 446 | generated 447 | dense 448 | rotational 449 | inputs 450 | relative 451 | albedo 452 | yield 453 | exhaust 454 | measuring 455 | emissions 456 | cables 457 | ranged 458 | capacitor 459 | sharp 460 | detected 461 | solid 462 | eclipses 463 | neutron 464 | latency 465 | lens 466 | shock 467 | attachment 468 | gear 469 | curved 470 | beam 471 | substrate 472 | phases 473 | angles 474 | planets 475 | ion 476 | voltage 477 | absorption 478 | transmitted 479 | noise 480 | correlation 481 | earth 482 | combustion 483 | positron 484 | cycle 485 | synthesis 486 | solar 487 | sphere 488 | stream 489 | motion 490 | conversion 491 | boiling 492 | multiply 493 | lighter 494 | multiplied 495 | unusually 496 | reaction 497 | stops 498 | liquid 499 | concentrations 500 | dispersion 501 | runoff 502 | protons 503 | fiber 504 | vanes 505 | incandescent 506 | reduction 507 | depending 508 | intervals 509 | ammunition 510 | scales 511 | inlet 512 | transmitter 513 | dive 514 | saturation 515 | carbohydrate 516 | -------------------------------------------------------------------------------- /result/72.txt: -------------------------------------------------------------------------------- 1 | kids 2 | discworld 3 | cinematic 4 | jaguar 5 | bandits 6 | consoles 7 | episodes 8 | advertisement 9 | dilbert 10 | brazilian 11 | sci 12 | republished 13 | doom 14 | bulletin 15 | narnia 16 | adaptation 17 | raiders 18 | infamous 19 | oscars 20 | granada 21 | colecovision 22 | antichrist 23 | promotional 24 | robot 25 | doraemon 26 | machinima 27 | rbi 28 | newest 29 | akira 30 | emmy 31 | eurovision 32 | declassified 33 | plow 34 | bebop 35 | ladder 36 | maniac 37 | emi 38 | frontline 39 | lcd 40 | abridged 41 | airing 42 | challenger 43 | premiered 44 | amd 45 | registry 46 | monty 47 | commodore 48 | brightest 49 | apocalypse 50 | aired 51 | kart 52 | famicom 53 | ratings 54 | dvd 55 | entertainment 56 | warcraft 57 | supernova 58 | afrika 59 | climax 60 | ova 61 | fable 62 | mario 63 | saturn 64 | debuted 65 | fourier 66 | prints 67 | analyst 68 | majors 69 | boy 70 | transplant 71 | multiplayer 72 | doonesbury 73 | everquest 74 | dungeons 75 | narrator 76 | colossus 77 | unofficial 78 | vhs 79 | hitchhiker 80 | videogame 81 | dragon 82 | micro 83 | headlines 84 | subsidiary 85 | profile 86 | tsr 87 | sequel 88 | rental 89 | pbs 90 | arpanet 91 | fantasy 92 | groundbreaking 93 | expos 94 | zodiac 95 | deliveries 96 | maclaurin 97 | macross 98 | syndicated 99 | superman 100 | roleplaying 101 | beastie 102 | managing 103 | ntsc 104 | simulator 105 | eniac 106 | photography 107 | finale 108 | sponsors 109 | adventure 110 | commemorative 111 | kino 112 | remade 113 | makers 114 | showcase 115 | mclaren 116 | lottery 117 | gargoyles 118 | clip 119 | rpg 120 | cameo 121 | hosts 122 | gaming 123 | lego 124 | theatres 125 | episode 126 | godzilla 127 | pirate 128 | adapter 129 | adaptations 130 | massively 131 | ranger 132 | shooter 133 | fps 134 | infocom 135 | espn 136 | bootleg 137 | fellini 138 | astro 139 | roddenberry 140 | bros 141 | ace 142 | acm 143 | scoreless 144 | cpr 145 | radios 146 | blaxploitation 147 | acorn 148 | condor 149 | audi 150 | sims 151 | bt 152 | arcade 153 | toho 154 | twins 155 | notebook 156 | python 157 | latest 158 | blockbuster 159 | superhero 160 | recurring 161 | footage 162 | packard 163 | mpeg 164 | codecs 165 | hosted 166 | airs 167 | dc 168 | smallville 169 | anime 170 | spy 171 | halo 172 | ep 173 | breakfast 174 | bollywood 175 | recorder 176 | credits 177 | intercontinental 178 | gambling 179 | coverage 180 | spawned 181 | remixes 182 | fi 183 | asp 184 | pub 185 | terminator 186 | slash 187 | gp 188 | gb 189 | wizard 190 | daleks 191 | titanic 192 | amstrad 193 | rotten 194 | eminem 195 | auto 196 | spinoff 197 | battlestar 198 | borland 199 | nintendo 200 | nes 201 | videotape 202 | cthulhu 203 | iss 204 | mattel 205 | playstation 206 | sporting 207 | wwe 208 | cosmos 209 | marconi 210 | konami 211 | capturing 212 | guys 213 | agony 214 | monster 215 | listings 216 | snes 217 | bmw 218 | rainbow 219 | hugely 220 | scout 221 | dec 222 | handheld 223 | headroom 224 | sitcom 225 | compaq 226 | jockey 227 | unreal 228 | programmes 229 | announcer 230 | rec 231 | monkey 232 | firefly 233 | pravda 234 | creators 235 | quicktime 236 | disney 237 | auction 238 | touchdowns 239 | orion 240 | syndication 241 | steamboat 242 | mediawiki 243 | rpgs 244 | mandelbrot 245 | mazda 246 | corp 247 | trailers 248 | msn 249 | capcom 250 | azores 251 | poll 252 | coupe 253 | schedules 254 | cbc 255 | regents 256 | concentric 257 | uncut 258 | coleco 259 | exhibition 260 | dvds 261 | standalone 262 | slated 263 | warner 264 | puppets 265 | studios 266 | trivia 267 | cypress 268 | eastenders 269 | trek 270 | thriller 271 | honda 272 | pocket 273 | nationwide 274 | voyager 275 | pet 276 | theaters 277 | muppet 278 | mascot 279 | conferencing 280 | mans 281 | hex 282 | symbiosis 283 | homepage 284 | intellivision 285 | lucasarts 286 | monsters 287 | advertisements 288 | poster 289 | magic 290 | casino 291 | sgi 292 | backup 293 | sirius 294 | noir 295 | shaping 296 | gba 297 | macromedia 298 | mansion 299 | workstations 300 | logo 301 | created 302 | nasty 303 | convertible 304 | boxed 305 | presenter 306 | gamecube 307 | rosetta 308 | transmissions 309 | frasier 310 | juvenile 311 | joystick 312 | starship 313 | compuserve 314 | minicomputer 315 | mickey 316 | circus 317 | raven 318 | miniseries 319 | quiz 320 | demo 321 | fide 322 | clown 323 | gorillaz 324 | mini 325 | doo 326 | bells 327 | countdown 328 | camelot 329 | hbo 330 | tandem 331 | talk 332 | broadcast 333 | gathering 334 | monochrome 335 | rating 336 | workshop 337 | parody 338 | ascent 339 | compilation 340 | brewery 341 | disneyland 342 | cheers 343 | storyline 344 | theft 345 | excavation 346 | forthcoming 347 | avalon 348 | blizzard 349 | upcoming 350 | tubular 351 | highlander 352 | wumpus 353 | rca 354 | skating 355 | monkeys 356 | soundtracks 357 | preview 358 | affiliate 359 | sears 360 | toy 361 | cowboy 362 | gig 363 | transcontinental 364 | paramount 365 | aspen 366 | pok 367 | tiger 368 | projector 369 | cartoon 370 | commercials 371 | jeep 372 | fawlty 373 | alt 374 | programme 375 | rko 376 | shady 377 | developer 378 | saloon 379 | js 380 | backbone 381 | remix 382 | spoof 383 | sid 384 | quake 385 | newsgroup 386 | ipod 387 | shutout 388 | imdb 389 | ultima 390 | televised 391 | walt 392 | spectator 393 | console 394 | debuts 395 | vax 396 | lucasfilm 397 | galactica 398 | hdtv 399 | spider 400 | centauri 401 | marvel 402 | parodied 403 | stamps 404 | rushing 405 | appendix 406 | kazaa 407 | ddr 408 | smile 409 | teen 410 | ducktales 411 | broadcasting 412 | itv 413 | alphanumeric 414 | pdp 415 | ducks 416 | quest 417 | netscape 418 | npr 419 | tld 420 | cbs 421 | microsystems 422 | nationally 423 | futurama 424 | gundam 425 | tickets 426 | simpsons 427 | sony 428 | traveller 429 | soap 430 | lois 431 | mtv 432 | vegas 433 | newsreel 434 | crossover 435 | gentlemen 436 | fansite 437 | pixar 438 | playable 439 | spreadsheet 440 | inventing 441 | std 442 | mega 443 | outstanding 444 | kamikaze 445 | stargate 446 | blitz 447 | globe 448 | playground 449 | ars 450 | mgm 451 | stats 452 | duo 453 | hosting 454 | hijackings 455 | mmorpg 456 | tapes 457 | digitally 458 | chess 459 | streaming 460 | chrono 461 | almanac 462 | themed 463 | sega 464 | specials 465 | phillies 466 | hillary 467 | sequels 468 | channel 469 | kermit 470 | remake 471 | mars 472 | pal 473 | icann 474 | celebrity 475 | abc 476 | animaniacs 477 | destination 478 | atari 479 | bulls 480 | cyborg 481 | bio 482 | goldeneye 483 | clips 484 | bubblegum 485 | serial 486 | coen 487 | nebula 488 | starcraft 489 | seti 490 | host 491 | bobble 492 | lynx 493 | tabletop 494 | venue 495 | muse 496 | daredevil 497 | mercury 498 | hearts 499 | digimon 500 | xbox 501 | cnn 502 | puzzle 503 | viva 504 | flagship 505 | clone 506 | costas 507 | flare 508 | mariner 509 | lensman 510 | postage 511 | hasbro 512 | alcs 513 | fan 514 | nbc 515 | mmm 516 | pirates 517 | generation 518 | navigator 519 | crash 520 | postseason 521 | nlcs 522 | heretic 523 | mmend 524 | broadcasts 525 | premiere 526 | buffy 527 | -------------------------------------------------------------------------------- /result/74.txt: -------------------------------------------------------------------------------- 1 | absolute 2 | arrays 3 | variable 4 | cardinality 5 | symmetry 6 | constants 7 | dimension 8 | norm 9 | hash 10 | periodic 11 | denoted 12 | definition 13 | pairs 14 | conjugate 15 | exponential 16 | algorithm 17 | matrix 18 | imaginary 19 | problem 20 | entropy 21 | interval 22 | product 23 | non 24 | ring 25 | amino 26 | metric 27 | null 28 | empty 29 | composition 30 | arithmetic 31 | compact 32 | key 33 | functions 34 | basis 35 | measurable 36 | formulas 37 | each 38 | numbers 39 | point 40 | definable 41 | fixed 42 | invariant 43 | measure 44 | numerical 45 | inverse 46 | differential 47 | representations 48 | representation 49 | spaces 50 | case 51 | sum 52 | equations 53 | counting 54 | cauchy 55 | subsets 56 | diagram 57 | topological 58 | positive 59 | valued 60 | values 61 | parameter 62 | integrals 63 | dimensions 64 | linear 65 | number 66 | set 67 | integral 68 | defined 69 | derivative 70 | function 71 | smooth 72 | fractions 73 | symmetric 74 | polynomial 75 | graph 76 | logarithm 77 | space 78 | lambda 79 | real 80 | morphism 81 | operator 82 | completeness 83 | probability 84 | transformation 85 | integers 86 | instance 87 | ordinal 88 | limit 89 | solution 90 | vector 91 | type 92 | continuous 93 | points 94 | equals 95 | euler 96 | elliptic 97 | string 98 | pair 99 | specified 100 | field 101 | notation 102 | assignment 103 | examples 104 | theorems 105 | equilibrium 106 | value 107 | bernoulli 108 | bundle 109 | every 110 | recursion 111 | complex 112 | irrational 113 | coordinates 114 | theory 115 | model 116 | curve 117 | scalar 118 | equation 119 | discrete 120 | transcendental 121 | integer 122 | table 123 | dual 124 | example 125 | thermodynamic 126 | logic 127 | euclidean 128 | logical 129 | binary 130 | generalized 131 | dimensional 132 | yields 133 | differentiable 134 | element 135 | subset 136 | infinity 137 | infinite 138 | compute 139 | approximation 140 | negative 141 | attribute 142 | domain 143 | rational 144 | axioms 145 | multiplicative 146 | equivalent 147 | sets 148 | generating 149 | mathematical 150 | computable 151 | precisely 152 | corresponding 153 | spherical 154 | simplest 155 | item 156 | coefficients 157 | chromosomes 158 | component 159 | simple 160 | single 161 | objects 162 | axiom 163 | banach 164 | functional 165 | complexity 166 | solutions 167 | variance 168 | arbitrary 169 | valence 170 | transform 171 | node 172 | riemann 173 | dynamical 174 | array 175 | given 176 | algebra 177 | gamma 178 | characteristic 179 | class 180 | sequences 181 | digit 182 | unit 183 | fibonacci 184 | object 185 | topology 186 | vectors 187 | formula 188 | note 189 | manifold 190 | method 191 | elements 192 | partial 193 | odd 194 | calculus 195 | trivial 196 | satisfies 197 | abstract 198 | variables 199 | algebraic 200 | coordinate 201 | equivalence 202 | orbitals 203 | modular 204 | solving 205 | decimal 206 | quantum 207 | parameters 208 | lattice 209 | structure 210 | boolean 211 | geometry 212 | hexadecimal 213 | axiomatic 214 | group 215 | harmonic 216 | above 217 | suppose 218 | approximate 219 | floating 220 | analytic 221 | q 222 | cantor 223 | geometric 224 | particular 225 | relation 226 | smallest 227 | follows 228 | proportional 229 | polynomials 230 | calculation 231 | multiplication 232 | relativity 233 | exists 234 | define 235 | finite 236 | logarithmic 237 | naive 238 | calculating 239 | computation 240 | properties 241 | lebesgue 242 | particle 243 | symbol 244 | recursive 245 | countable 246 | analysis 247 | theorem 248 | category 249 | sequence 250 | -------------------------------------------------------------------------------- /result/75.txt: -------------------------------------------------------------------------------- 1 | diocese 2 | patriarch 3 | testament 4 | sects 5 | gentile 6 | catholicism 7 | heresy 8 | traditions 9 | apostles 10 | prayer 11 | heretical 12 | religious 13 | revelation 14 | coptic 15 | salvation 16 | believers 17 | reformation 18 | pentecostal 19 | faith 20 | among 21 | jerusalem 22 | acts 23 | evangelical 24 | denominations 25 | islamic 26 | qur 27 | reformed 28 | christian 29 | church 30 | protestants 31 | believer 32 | believed 33 | disciples 34 | pagan 35 | jewish 36 | jesus 37 | eucharist 38 | tanakh 39 | churches 40 | sacraments 41 | faiths 42 | tradition 43 | martyrs 44 | canonical 45 | protestantism 46 | theology 47 | liturgical 48 | views 49 | anglicanism 50 | regarded 51 | rabbi 52 | according 53 | alonzo 54 | sect 55 | doctrines 56 | orthodoxy 57 | god 58 | passover 59 | clergy 60 | rites 61 | worship 62 | conception 63 | teachings 64 | mormons 65 | islam 66 | orthodox 67 | gospel 68 | creed 69 | bishops 70 | judaism 71 | rsted 72 | belief 73 | monastery 74 | messiah 75 | sacrament 76 | baptist 77 | baptism 78 | latter 79 | religions 80 | muslim 81 | fundamentalist 82 | saints 83 | followers 84 | arianism 85 | liturgy 86 | ecumenical 87 | protestant 88 | anglican 89 | greeks 90 | bible 91 | lds 92 | heretics 93 | christians 94 | scriptures 95 | communion 96 | jew 97 | mormon 98 | priests 99 | accepted 100 | bibles 101 | catholic 102 | emancipation 103 | hindu 104 | apostolic 105 | holy 106 | prelate 107 | muslims 108 | canon 109 | prophets 110 | gospels 111 | rite 112 | religion 113 | lutheran 114 | trinity 115 | methodist 116 | fathers 117 | biblical 118 | teaching 119 | bah 120 | doctrine 121 | claim 122 | jews 123 | monks 124 | fundamentalists 125 | oriental 126 | scholars 127 | christ 128 | excommunication 129 | esoteric 130 | scripture 131 | devout 132 | torah 133 | judeo 134 | episcopal 135 | christianity 136 | catholics 137 | theologians 138 | denomination 139 | practice 140 | view 141 | jehovah 142 | -------------------------------------------------------------------------------- /result/76.txt: -------------------------------------------------------------------------------- 1 | had 2 | lived 3 | father 4 | gave 5 | later 6 | wife 7 | king 8 | who 9 | married 10 | life 11 | child 12 | birth 13 | marriage 14 | sent 15 | moved 16 | himself 17 | she 18 | he 19 | prince 20 | died 21 | killed 22 | took 23 | emperor 24 | worked 25 | son 26 | her 27 | returned 28 | death 29 | young 30 | daughter 31 | after 32 | was 33 | family 34 | soon 35 | queen 36 | visited 37 | mother 38 | woman 39 | eventually 40 | him 41 | went 42 | mary 43 | children 44 | brother 45 | his 46 | whom 47 | -------------------------------------------------------------------------------- /result/80.txt: -------------------------------------------------------------------------------- 1 | china 2 | union 3 | germany 4 | america 5 | independence 6 | relations 7 | peace 8 | republic 9 | agreement 10 | established 11 | israel 12 | france 13 | ireland 14 | treaty 15 | countries 16 | kingdom 17 | united 18 | european 19 | russia 20 | australia 21 | spain 22 | japan 23 | canada 24 | states 25 | nations 26 | england 27 | egypt 28 | europe 29 | scotland 30 | signed 31 | italy 32 | britain 33 | -------------------------------------------------------------------------------- /result/83.txt: -------------------------------------------------------------------------------- 1 | usenet 2 | affiliated 3 | vouchers 4 | tech 5 | academic 6 | corporate 7 | advancement 8 | dianetic 9 | working 10 | professors 11 | bioinformatics 12 | research 13 | preservation 14 | organisations 15 | rehabilitation 16 | survey 17 | educational 18 | undergraduate 19 | audit 20 | mathematics 21 | biology 22 | certified 23 | telecommunications 24 | mit 25 | architectural 26 | conservation 27 | professionals 28 | psychical 29 | physics 30 | competitions 31 | aeronautical 32 | department 33 | education 34 | clinics 35 | genealogical 36 | international 37 | genetics 38 | vocational 39 | collegiate 40 | colleges 41 | expert 42 | alternative 43 | organizational 44 | accredited 45 | altos 46 | school 47 | museums 48 | advocacy 49 | botanical 50 | amateur 51 | standards 52 | nursing 53 | naturalized 54 | sciences 55 | directory 56 | departments 57 | metallurgy 58 | wrestling 59 | degree 60 | accountants 61 | methodology 62 | rankings 63 | laboratory 64 | advisory 65 | dental 66 | fpga 67 | studies 68 | curricula 69 | tuba 70 | psychology 71 | imaging 72 | institutes 73 | community 74 | fund 75 | computational 76 | studying 77 | nist 78 | phd 79 | housing 80 | security 81 | graduates 82 | media 83 | foresight 84 | anthropological 85 | healthcare 86 | practitioner 87 | logging 88 | medical 89 | staples 90 | humanistic 91 | curriculum 92 | finance 93 | arts 94 | pharmaceutical 95 | students 96 | cooperative 97 | faculty 98 | insurance 99 | chemistry 100 | bachelor 101 | electronics 102 | environmental 103 | biotechnology 104 | enterprise 105 | teachers 106 | technological 107 | health 108 | institutions 109 | associates 110 | charitable 111 | postgraduate 112 | planning 113 | pioneering 114 | schools 115 | foundation 116 | faculties 117 | psychiatric 118 | psychological 119 | funded 120 | resource 121 | psychotherapy 122 | consultant 123 | engineering 124 | behavioral 125 | welfare 126 | ethics 127 | doctorates 128 | comprehensive 129 | technical 130 | renowned 131 | medicine 132 | anatomy 133 | cryptography 134 | applied 135 | organizations 136 | chiropractic 137 | statistical 138 | hospitals 139 | caltech 140 | crafts 141 | astronomical 142 | journal 143 | economics 144 | boarding 145 | topics 146 | consortium 147 | secondary 148 | conferences 149 | association 150 | martial 151 | automotive 152 | institutional 153 | facilities 154 | forum 155 | interdisciplinary 156 | fitness 157 | sports 158 | collaborative 159 | enrollment 160 | associations 161 | fisheries 162 | agencies 163 | student 164 | specialist 165 | beaux 166 | textbooks 167 | occupational 168 | commerce 169 | creative 170 | training 171 | preparatory 172 | scientific 173 | graduate 174 | aerospace 175 | veterinary 176 | centers 177 | society 178 | steering 179 | lab 180 | recreational 181 | fellows 182 | clinical 183 | occupations 184 | professional 185 | learning 186 | laboratories 187 | elementary 188 | headquartered 189 | sponsored 190 | statistics 191 | electrical 192 | stabilization 193 | intelligence 194 | fencing 195 | anthropology 196 | study 197 | standardization 198 | offering 199 | institute 200 | certification 201 | doctoral 202 | organizing 203 | conducting 204 | organization 205 | cognitive 206 | humanities 207 | doctorate 208 | linguistics 209 | landmarks 210 | journalism 211 | forestry 212 | decorative 213 | advanced 214 | neuroscience 215 | classroom 216 | hypnosis 217 | engineers 218 | universities 219 | biomedical 220 | institution 221 | junk 222 | -------------------------------------------------------------------------------- /result/84.txt: -------------------------------------------------------------------------------- 1 | eugenics 2 | evolutionism 3 | democracies 4 | oneness 5 | assimilation 6 | impressions 7 | epistemology 8 | objectivist 9 | rabbinical 10 | yoga 11 | abrahamic 12 | graffiti 13 | atheistic 14 | secular 15 | satire 16 | trotskyism 17 | positivist 18 | positivism 19 | conceptions 20 | broader 21 | evolutionary 22 | monotheism 23 | altruism 24 | lifestyle 25 | historiography 26 | arminianism 27 | ecumenism 28 | deconstruction 29 | charismatic 30 | ideology 31 | outlook 32 | cannibalism 33 | faire 34 | anarcho 35 | anarchy 36 | intellectualism 37 | eschatological 38 | culture 39 | sentiments 40 | prevailing 41 | subgenre 42 | metaphysics 43 | dharma 44 | marketplace 45 | atheist 46 | atheism 47 | rationalist 48 | rationalism 49 | incorporating 50 | pseudo 51 | exemplified 52 | taoist 53 | taoism 54 | freemasonry 55 | meme 56 | spirituality 57 | stigma 58 | nazism 59 | mores 60 | memetics 61 | perspective 62 | homophobia 63 | grounded 64 | skepticism 65 | communism 66 | jurisprudence 67 | enquiry 68 | neoclassical 69 | dada 70 | hinayana 71 | liberalism 72 | agnosticism 73 | halakha 74 | icon 75 | homology 76 | mahayana 77 | revolutions 78 | electromagnetism 79 | feminist 80 | feminism 81 | diversity 82 | eminent 83 | quasi 84 | libertarian 85 | philology 86 | prejudice 87 | connotation 88 | bourgeois 89 | mainstream 90 | dogmatic 91 | fascism 92 | buddhist 93 | buddhism 94 | antisemitism 95 | egalitarian 96 | monastic 97 | leaning 98 | apologetics 99 | worldview 100 | secularism 101 | conceptual 102 | ideas 103 | sociology 104 | erotic 105 | globalization 106 | intuition 107 | zoroastrianism 108 | homosexuality 109 | laissez 110 | racial 111 | standpoint 112 | focusing 113 | monasticism 114 | homeland 115 | nationalism 116 | impressionism 117 | feudalism 118 | creationist 119 | creationism 120 | partisan 121 | libertarians 122 | oppression 123 | globalisation 124 | zen 125 | fandom 126 | postmodern 127 | depictions 128 | kinship 129 | alchemy 130 | critique 131 | religiously 132 | nihilism 133 | ethic 134 | relativism 135 | intellectual 136 | existentialism 137 | existentialist 138 | bias 139 | conservative 140 | ontology 141 | connotations 142 | animism 143 | hegelian 144 | dichotomy 145 | tenets 146 | talmudic 147 | hegel 148 | reconstructionist 149 | creation 150 | civilization 151 | critiques 152 | stance 153 | fundamentalism 154 | agenda 155 | activism 156 | islamist 157 | islamism 158 | vedanta 159 | evolution 160 | overtones 161 | eschatology 162 | semitism 163 | naturalism 164 | neo 165 | evolving 166 | rhetoric 167 | messianic 168 | stresses 169 | shia 170 | iconography 171 | jain 172 | cognition 173 | conspiracy 174 | contemporary 175 | revisionism 176 | revisionist 177 | platonism 178 | gnosticism 179 | dualism 180 | creativity 181 | trinitarian 182 | sexuality 183 | rejection 184 | philosophy 185 | anthropic 186 | scholastic 187 | structuralism 188 | polytheistic 189 | traumatic 190 | socio 191 | pseudoscience 192 | theistic 193 | ballroom 194 | realist 195 | realism 196 | racism 197 | racist 198 | descartes 199 | environmentalism 200 | inequality 201 | computability 202 | statist 203 | inactive 204 | ecology 205 | materialist 206 | materialism 207 | conservatism 208 | gnosis 209 | ideological 210 | cult 211 | criticism 212 | adherence 213 | gritty 214 | theological 215 | spiritual 216 | druidic 217 | demonology 218 | pluralism 219 | origins 220 | sensibility 221 | enlightenment 222 | astrology 223 | sociological 224 | rooted 225 | progressive 226 | darwinism 227 | minimalism 228 | lindy 229 | monotheistic 230 | aristotelian 231 | nanotechnology 232 | convergence 233 | predominant 234 | anarchism 235 | anarchist 236 | assassinations 237 | pederastic 238 | affiliation 239 | perceptions 240 | linguistic 241 | realities 242 | orientation 243 | agnostic 244 | proponent 245 | ethos 246 | mormonism 247 | tendencies 248 | fervor 249 | determinism 250 | hierarchy 251 | ciphers 252 | norms 253 | socialism 254 | renewal 255 | jainism 256 | frontiers 257 | advocates 258 | memes 259 | leninist 260 | leninism 261 | stratum 262 | individualist 263 | individualism 264 | freedom 265 | holiness 266 | pragmatism 267 | aligned 268 | calvinism 269 | calvinist 270 | confucianism 271 | originating 272 | superstition 273 | goth 274 | modernism 275 | modernist 276 | polytheism 277 | confucian 278 | anabaptist 279 | fringe 280 | oral 281 | arian 282 | militant 283 | affiliations 284 | discourse 285 | democracy 286 | countercult 287 | dissent 288 | ideals 289 | ills 290 | mystical 291 | tibetan 292 | mithraism 293 | continuity 294 | leftist 295 | cultural 296 | zionist 297 | zionism 298 | intolerance 299 | postmodernism 300 | promoting 301 | monism 302 | yogic 303 | cosmology 304 | occult 305 | aesthetic 306 | hungry 307 | bourdieu 308 | empiricism 309 | newtonian 310 | proxy 311 | advocating 312 | vedic 313 | eurasian 314 | exegesis 315 | naturalistic 316 | leanings 317 | unity 318 | jihad 319 | lore 320 | hoc 321 | whig 322 | sexist 323 | harmony 324 | dogma 325 | ware 326 | thinkers 327 | logos 328 | keynesian 329 | mysticism 330 | corporatism 331 | psychiatry 332 | social 333 | subculture 334 | agrarian 335 | electrodynamics 336 | artistic 337 | rejecting 338 | utilitarianism 339 | microbial 340 | platonic 341 | extremists 342 | aesthetics 343 | kabbalah 344 | observance 345 | circles 346 | humanism 347 | convictions 348 | metaphysical 349 | idealism 350 | idealist 351 | subversion 352 | symbolist 353 | symbolism 354 | authoritarian 355 | rabbinic 356 | radical 357 | utopia 358 | speculative 359 | gravitation 360 | folklore 361 | collectivism 362 | bureaucracy 363 | popper 364 | conformity 365 | alienation 366 | forgery 367 | apologist 368 | proponents 369 | reactionary 370 | macroeconomics 371 | darwinian 372 | lesbian 373 | capitalism 374 | capitalist 375 | deco 376 | intimidation 377 | tolerance 378 | overt 379 | marxist 380 | marxism 381 | hedonism 382 | marx 383 | advaita 384 | philosophies 385 | movements 386 | caste 387 | movement 388 | kantian 389 | mistakenly 390 | imperialist 391 | imperialism 392 | glossolalia 393 | phenomenology 394 | extremist 395 | chomsky 396 | sdp 397 | populist 398 | gnostic 399 | libertarianism 400 | zoroastrian 401 | utopian 402 | iconoclasm 403 | philosophical 404 | evangelicalism 405 | queer 406 | theism 407 | civilisation 408 | authenticity 409 | hacker 410 | ethology 411 | viewpoint 412 | dissident 413 | perennial 414 | attitudes 415 | cults 416 | ethnicity 417 | ideologies 418 | hinduism 419 | holistic 420 | heterosexuality 421 | thermodynamics 422 | -------------------------------------------------------------------------------- /result/85.txt: -------------------------------------------------------------------------------- 1 | hermann 2 | allan 3 | mason 4 | abbott 5 | rick 6 | dave 7 | hal 8 | alice 9 | starring 10 | maxwell 11 | marshall 12 | benson 13 | thompson 14 | jim 15 | turner 16 | phil 17 | harvey 18 | rhodes 19 | s 20 | hopkins 21 | hugo 22 | hugh 23 | scott 24 | isaac 25 | bell 26 | eddie 27 | lang 28 | victor 29 | babe 30 | cecil 31 | jay 32 | rapper 33 | edgar 34 | emma 35 | burroughs 36 | peters 37 | sarah 38 | pulitzer 39 | davies 40 | daniel 41 | judith 42 | timothy 43 | bruce 44 | lewis 45 | letterman 46 | tony 47 | noel 48 | josh 49 | wright 50 | peel 51 | guy 52 | franklin 53 | kurt 54 | orwell 55 | mrs 56 | biographer 57 | amy 58 | francis 59 | starr 60 | curtis 61 | bryan 62 | greg 63 | grant 64 | ryan 65 | clark 66 | orson 67 | ronald 68 | humphrey 69 | ken 70 | evelyn 71 | stan 72 | buddy 73 | herbert 74 | mel 75 | joshua 76 | robertson 77 | gordon 78 | christopher 79 | earl 80 | lionel 81 | shakespeare 82 | bogart 83 | lynch 84 | bob 85 | rachel 86 | kevin 87 | bailey 88 | sean 89 | companion 90 | adams 91 | founder 92 | robinson 93 | perry 94 | nicholas 95 | apostle 96 | wollstonecraft 97 | derek 98 | murphy 99 | ellen 100 | butler 101 | montgomery 102 | powell 103 | griffith 104 | doyle 105 | beck 106 | drummer 107 | alex 108 | dee 109 | jean 110 | burns 111 | kaufman 112 | ron 113 | rob 114 | roy 115 | marion 116 | colin 117 | andy 118 | casey 119 | sidney 120 | farmer 121 | brett 122 | milton 123 | andrew 124 | patrick 125 | porter 126 | burton 127 | brien 128 | hoffman 129 | susan 130 | hunter 131 | wilson 132 | patricia 133 | mingus 134 | nick 135 | dale 136 | youngest 137 | olivier 138 | glen 139 | martha 140 | joe 141 | jon 142 | reeves 143 | jeremy 144 | geoffrey 145 | miller 146 | ian 147 | bates 148 | nigel 149 | professor 150 | macdonald 151 | fox 152 | nixon 153 | potter 154 | marvin 155 | harris 156 | gershwin 157 | barnard 158 | hardy 159 | macleod 160 | owen 161 | armstrong 162 | walker 163 | lee 164 | les 165 | davis 166 | lloyd 167 | co 168 | cy 169 | jerome 170 | bennett 171 | hearst 172 | watson 173 | cox 174 | petty 175 | jerry 176 | everett 177 | carroll 178 | hale 179 | ex 180 | abraham 181 | frederic 182 | clarke 183 | neil 184 | eddy 185 | jordan 186 | inducted 187 | anthony 188 | mitchell 189 | shaw 190 | collins 191 | blake 192 | joyce 193 | morton 194 | parker 195 | luc 196 | jesse 197 | reagan 198 | murray 199 | mccarthy 200 | stewart 201 | hood 202 | neal 203 | ford 204 | laura 205 | lennon 206 | killer 207 | alfred 208 | jr 209 | jo 210 | barry 211 | lopez 212 | joan 213 | marc 214 | simon 215 | barker 216 | edwin 217 | edmund 218 | luke 219 | pierce 220 | bill 221 | monroe 222 | carver 223 | fisher 224 | knight 225 | lt 226 | rev 227 | frank 228 | bernard 229 | freeman 230 | baker 231 | mr 232 | chuck 233 | hank 234 | campbell 235 | cooper 236 | fitzgerald 237 | pseudonym 238 | kerry 239 | gerard 240 | aquinas 241 | ann 242 | connor 243 | percy 244 | polk 245 | hughes 246 | arnold 247 | harrison 248 | taylor 249 | ted 250 | benjamin 251 | vincent 252 | chandler 253 | arthur 254 | sonny 255 | nash 256 | steve 257 | bryant 258 | ashcroft 259 | chapman 260 | van 261 | cohen 262 | dorothy 263 | cleese 264 | admiral 265 | eisenhower 266 | rn 267 | wells 268 | manson 269 | lucas 270 | sebastian 271 | sr 272 | allen 273 | fripp 274 | mann 275 | sterling 276 | johnny 277 | terry 278 | adam 279 | harry 280 | schumacher 281 | morgan 282 | leigh 283 | bernstein 284 | kelly 285 | named 286 | rebecca 287 | carol 288 | hyde 289 | holmes 290 | crosby 291 | warren 292 | newman 293 | roberts 294 | linda 295 | juan 296 | matthew 297 | interview 298 | costello 299 | albert 300 | fleming 301 | brad 302 | moore 303 | churchill 304 | carr 305 | carl 306 | stevens 307 | carson 308 | lou 309 | douglas 310 | cameron 311 | foster 312 | frankenstein 313 | kay 314 | mack 315 | randy 316 | jeff 317 | larry 318 | barbara 319 | booth 320 | colonel 321 | jonathan 322 | jorge 323 | vince 324 | glenn 325 | conan 326 | erik 327 | eric 328 | dewey 329 | simpson 330 | dre 331 | oscar 332 | ward 333 | helen 334 | thornton 335 | pete 336 | kim 337 | lowe 338 | kenneth 339 | max 340 | congressman 341 | johnson 342 | jackson 343 | brooks 344 | brooke 345 | keith 346 | friedman 347 | dick 348 | jeffrey 349 | jake 350 | ellis 351 | chris 352 | emily 353 | jackie 354 | leonard 355 | drake 356 | hart 357 | longtime 358 | lawrence 359 | nominee 360 | ray 361 | jimmy 362 | steven 363 | kirk 364 | morris 365 | matt 366 | gibson 367 | ralph 368 | wagner 369 | jack 370 | ernest 371 | tom 372 | theodore 373 | brigham 374 | hunt 375 | cook 376 | phillip 377 | russell 378 | alan 379 | phillips 380 | hoover 381 | berry 382 | rose 383 | ross 384 | kennedy 385 | gary 386 | stephen 387 | shepherd 388 | bertrand 389 | graham 390 | calvin 391 | brian 392 | billy 393 | mike 394 | leon 395 | margaret 396 | richardson 397 | bacon 398 | reporter 399 | barnes 400 | gilbert 401 | bush 402 | irving 403 | bobby 404 | jane 405 | elton 406 | coleman 407 | williams 408 | sam 409 | beckham 410 | roger 411 | mick 412 | nelson 413 | gerald 414 | lowell 415 | wayne 416 | byron 417 | robin 418 | chase 419 | stuart 420 | edwards 421 | laurence 422 | emerson 423 | producer 424 | cage 425 | gardner 426 | nancy 427 | taggart 428 | raymond 429 | edward 430 | lindsay 431 | carlos 432 | dean 433 | kane 434 | bradley 435 | craig 436 | samuel 437 | nathaniel 438 | oliver 439 | carey 440 | willie 441 | carpenter 442 | griffin 443 | strauss 444 | todd 445 | darwin 446 | walter 447 | carter 448 | winston 449 | dennis 450 | evans 451 | bassist 452 | kelley 453 | williamson 454 | captain 455 | doug 456 | roland 457 | berg 458 | jones 459 | norman 460 | tracy 461 | pat 462 | doctor 463 | gates 464 | mcdonald 465 | fellow 466 | abu 467 | hopper 468 | leslie 469 | directed 470 | hanson 471 | jason 472 | joel 473 | gabriel 474 | dan 475 | harold 476 | denis 477 | herman 478 | tyler 479 | eliot 480 | stephenson 481 | lynn 482 | danny 483 | fred 484 | rogers 485 | sullivan 486 | karen 487 | charlie 488 | spencer 489 | donald 490 | anderson 491 | tim 492 | levy 493 | wallace 494 | stanley 495 | columnist 496 | howard 497 | gregory 498 | chaplin 499 | aaron 500 | starred 501 | garfield 502 | anne 503 | palmer 504 | dwight 505 | reilly 506 | adrian 507 | tommy 508 | welles 509 | -------------------------------------------------------------------------------- /result/86.txt: -------------------------------------------------------------------------------- 1 | agassi 2 | competed 3 | world 4 | attendance 5 | singles 6 | next 7 | colts 8 | rockies 9 | championships 10 | baseman 11 | fulham 12 | pitcher 13 | arena 14 | league 15 | grand 16 | bowl 17 | lost 18 | home 19 | third 20 | tennis 21 | bengals 22 | round 23 | first 24 | playoffs 25 | tour 26 | nhl 27 | doubles 28 | cup 29 | reached 30 | teams 31 | vikings 32 | conference 33 | leagues 34 | football 35 | touchdown 36 | jaguars 37 | batting 38 | finals 39 | soccer 40 | premiership 41 | wins 42 | broncos 43 | tigers 44 | tournament 45 | team 46 | matches 47 | dodgers 48 | hockey 49 | marlins 50 | browns 51 | play 52 | goalkeeper 53 | ball 54 | finish 55 | fa 56 | texans 57 | won 58 | run 59 | franchise 60 | panthers 61 | mcg 62 | olympic 63 | rugby 64 | wimbledon 65 | pennant 66 | afl 67 | afc 68 | winners 69 | clubs 70 | nl 71 | cubs 72 | divisional 73 | kasparov 74 | cowboys 75 | astros 76 | reds 77 | nfc 78 | nfl 79 | uefa 80 | record 81 | basketball 82 | stadium 83 | losing 84 | sox 85 | charlton 86 | golf 87 | champion 88 | races 89 | blackjack 90 | race 91 | winning 92 | ravens 93 | horn 94 | rookie 95 | mvp 96 | cardinals 97 | division 98 | card 99 | slam 100 | ferrari 101 | sport 102 | rules 103 | arsenal 104 | steelers 105 | game 106 | chelsea 107 | win 108 | voyage 109 | roster 110 | brewers 111 | mate 112 | finished 113 | match 114 | playoff 115 | top 116 | stanza 117 | games 118 | ashes 119 | coach 120 | champions 121 | racing 122 | minor 123 | hitter 124 | second 125 | prix 126 | played 127 | player 128 | yards 129 | giants 130 | mlb 131 | quarterback 132 | inning 133 | ncaa 134 | trophy 135 | braves 136 | scored 137 | scores 138 | club 139 | innings 140 | yankees 141 | patriots 142 | tournaments 143 | final 144 | indoor 145 | winner 146 | dolphins 147 | cricket 148 | contest 149 | fifa 150 | scoring 151 | olympics 152 | super 153 | lions 154 | hanseatic 155 | ruth 156 | falcons 157 | players 158 | tie 159 | baseball 160 | australian 161 | streak 162 | season 163 | championship 164 | nba 165 | karpov 166 | seasons 167 | hit 168 | consecutive 169 | orioles 170 | -------------------------------------------------------------------------------- /result/87.txt: -------------------------------------------------------------------------------- 1 | woods 2 | wooded 3 | topography 4 | travel 5 | ham 6 | crater 7 | islets 8 | temperate 9 | crossroads 10 | concentrated 11 | continents 12 | sand 13 | barren 14 | belt 15 | suburbs 16 | atlantic 17 | land 18 | flowing 19 | loch 20 | mountainous 21 | comprising 22 | commuter 23 | reefs 24 | cultivated 25 | places 26 | nuts 27 | arch 28 | freshwater 29 | fortified 30 | interstate 31 | nile 32 | tropical 33 | beaver 34 | waterway 35 | basins 36 | streets 37 | territorial 38 | caspian 39 | separating 40 | lowlands 41 | northwest 42 | rift 43 | broad 44 | trading 45 | tunnels 46 | northeast 47 | ears 48 | basin 49 | nearest 50 | reef 51 | seas 52 | boundaries 53 | across 54 | strait 55 | sights 56 | fertile 57 | marshes 58 | corridor 59 | valleys 60 | overlooking 61 | entire 62 | rivers 63 | amazon 64 | boundary 65 | urbanized 66 | midway 67 | sumatra 68 | heights 69 | peaks 70 | rhine 71 | passage 72 | port 73 | aegean 74 | gulf 75 | portions 76 | railway 77 | depletion 78 | beaches 79 | shore 80 | skyscrapers 81 | lying 82 | indus 83 | harbour 84 | winds 85 | euphrates 86 | shaded 87 | eagles 88 | highlands 89 | geographical 90 | wilderness 91 | weather 92 | divide 93 | siberia 94 | oceanic 95 | catchment 96 | hemisphere 97 | palm 98 | bordering 99 | vacation 100 | trains 101 | situated 102 | axis 103 | geographic 104 | highway 105 | steppe 106 | volcanic 107 | towns 108 | pillars 109 | location 110 | primarily 111 | mediterranean 112 | bend 113 | rising 114 | residential 115 | rural 116 | near 117 | indies 118 | forts 119 | sub 120 | neighborhoods 121 | madeira 122 | comparative 123 | hills 124 | hilly 125 | zone 126 | scandinavia 127 | entrance 128 | towers 129 | comprised 130 | mostly 131 | rugged 132 | fortifications 133 | foothills 134 | coastline 135 | lakes 136 | arid 137 | sandy 138 | route 139 | arabian 140 | extends 141 | inner 142 | downstream 143 | alpine 144 | harbors 145 | inhabited 146 | abdomen 147 | plains 148 | villages 149 | zones 150 | springs 151 | metropolitan 152 | dwelling 153 | borders 154 | wizards 155 | drainage 156 | lands 157 | suburban 158 | airport 159 | narrow 160 | transit 161 | drained 162 | alps 163 | andaman 164 | scattered 165 | halves 166 | submerged 167 | mesopotamia 168 | latitude 169 | continent 170 | andes 171 | upstream 172 | ruins 173 | southernmost 174 | inland 175 | fauna 176 | canary 177 | hub 178 | falls 179 | southwestern 180 | floods 181 | pole 182 | pacific 183 | danube 184 | tributary 185 | terminus 186 | bounded 187 | trench 188 | plateau 189 | tributaries 190 | populous 191 | deserts 192 | canal 193 | lowland 194 | summers 195 | westward 196 | fishing 197 | oceans 198 | volcano 199 | toll 200 | elevation 201 | glacier 202 | shores 203 | golan 204 | winters 205 | around 206 | slopes 207 | adriatic 208 | arctic 209 | rises 210 | antarctica 211 | adjoining 212 | highways 213 | expressways 214 | drains 215 | principal 216 | streams 217 | runway 218 | offshore 219 | rocky 220 | ecliptic 221 | deepest 222 | covering 223 | uninhabited 224 | coral 225 | southwest 226 | motorway 227 | vicinity 228 | amusement 229 | between 230 | geographically 231 | peak 232 | northernmost 233 | archipelago 234 | surrounded 235 | humid 236 | constellation 237 | sinai 238 | canals 239 | crosses 240 | outer 241 | crossing 242 | watershed 243 | underground 244 | erie 245 | vast 246 | boroughs 247 | waterfront 248 | forested 249 | outskirts 250 | parks 251 | adjacent 252 | sailing 253 | corner 254 | deep 255 | rainforest 256 | part 257 | plateaus 258 | silk 259 | connecting 260 | recreation 261 | outlying 262 | trail 263 | forest 264 | ridge 265 | tourist 266 | urban 267 | sanctuary 268 | southeast 269 | pyramid 270 | ridges 271 | estuary 272 | populated 273 | terrain 274 | outside 275 | densely 276 | widest 277 | attractions 278 | extremes 279 | elongated 280 | resort 281 | parts 282 | eruption 283 | flows 284 | strategically 285 | tropics 286 | frontier 287 | shelf 288 | clash 289 | wall 290 | corners 291 | subtropical 292 | holdings 293 | flooding 294 | equator 295 | forming 296 | navigable 297 | along 298 | divided 299 | caucasus 300 | unnamed 301 | routes 302 | outlet 303 | skyline 304 | dome 305 | stretch 306 | lanes 307 | waterways 308 | contiguous 309 | enclosed 310 | beneath 311 | courtyard 312 | headwaters 313 | tiny 314 | roads 315 | forests 316 | extending 317 | eurasia 318 | straits 319 | centred 320 | peninsula 321 | upper 322 | subdivided 323 | gorge 324 | nearby 325 | lie 326 | farms 327 | shoreline 328 | expressway 329 | atoll 330 | portion 331 | apogee 332 | bay 333 | interior 334 | anatolia 335 | lies 336 | covers 337 | bordered 338 | earthquake 339 | downtown 340 | mountains 341 | stretches 342 | stretched 343 | shopping 344 | hdl 345 | railroad 346 | road 347 | celestial 348 | thames 349 | neighborhood 350 | ranges 351 | stretching 352 | ports 353 | mountain 354 | desert 355 | tunnel 356 | waters 357 | bridges 358 | junction 359 | dam 360 | highland 361 | plain 362 | proximity 363 | albatrosses 364 | pit 365 | surrounding 366 | centered 367 | isolated 368 | shallow 369 | coastal 370 | tip 371 | isles 372 | ferry 373 | lagoon 374 | wide 375 | isthmus 376 | valley 377 | far 378 | seaports 379 | sandwich 380 | harbours 381 | coasts 382 | edge 383 | metro 384 | owl 385 | covered 386 | endemic 387 | sky 388 | ski 389 | earthquakes 390 | -------------------------------------------------------------------------------- /result/88.txt: -------------------------------------------------------------------------------- 1 | much 2 | has 3 | being 4 | with 5 | more 6 | also 7 | sometimes 8 | have 9 | still 10 | not 11 | now 12 | however 13 | when 14 | today 15 | there 16 | people 17 | for 18 | as 19 | be 20 | by 21 | they 22 | the 23 | generally 24 | very 25 | since 26 | used 27 | is 28 | it 29 | were 30 | those 31 | same 32 | different 33 | from 34 | but 35 | been 36 | and 37 | any 38 | on 39 | of 40 | or 41 | few 42 | other 43 | many 44 | to 45 | found 46 | usually 47 | can 48 | only 49 | these 50 | well 51 | seen 52 | may 53 | most 54 | an 55 | although 56 | though 57 | all 58 | known 59 | their 60 | which 61 | made 62 | considered 63 | time 64 | such 65 | where 66 | its 67 | this 68 | work 69 | that 70 | than 71 | in 72 | a 73 | both 74 | while 75 | some 76 | even 77 | often 78 | are 79 | use 80 | called 81 | because 82 | -------------------------------------------------------------------------------- /result/89.txt: -------------------------------------------------------------------------------- 1 | effects 2 | caused 3 | small 4 | pressure 5 | climate 6 | tone 7 | produce 8 | heavy 9 | cause 10 | surface 11 | sound 12 | level 13 | doses 14 | higher 15 | range 16 | volume 17 | carbon 18 | energy 19 | levels 20 | change 21 | size 22 | speed 23 | blood 24 | larger 25 | temperature 26 | due 27 | lower 28 | increase 29 | mass 30 | large 31 | low 32 | conditions 33 | changes 34 | gas 35 | greater 36 | engine 37 | smaller 38 | light 39 | temperatures 40 | high 41 | less 42 | increased 43 | amount 44 | cell 45 | effect 46 | cells 47 | normal 48 | scale 49 | body 50 | relatively 51 | water 52 | -------------------------------------------------------------------------------- /result/90.txt: -------------------------------------------------------------------------------- 1 | francesco 2 | battista 3 | mystic 4 | tuatha 5 | arranger 6 | songwriter 7 | rer 8 | eduard 9 | jurist 10 | fritz 11 | orientalist 12 | alexandre 13 | pietro 14 | heinrich 15 | erich 16 | maker 17 | alessandro 18 | cosmonaut 19 | giacomo 20 | hans 21 | shogun 22 | jacques 23 | edmond 24 | dictator 25 | guillaume 26 | illustrator 27 | publicist 28 | guido 29 | tienne 30 | warlord 31 | painters 32 | baptiste 33 | gabriele 34 | marie 35 | physicist 36 | jules 37 | martyred 38 | mayer 39 | vogue 40 | giulio 41 | astrologer 42 | essayist 43 | politician 44 | jakob 45 | carlo 46 | eug 47 | anthropologist 48 | playwrights 49 | swimmer 50 | reformer 51 | armand 52 | bandleader 53 | nitz 54 | researcher 55 | broadcaster 56 | bafta 57 | abel 58 | yves 59 | critic 60 | gustave 61 | andrei 62 | andrea 63 | mathematician 64 | folklorist 65 | engraver 66 | andr 67 | theorist 68 | jos 69 | lyricist 70 | georges 71 | adventurer 72 | filmmaker 73 | dramatist 74 | pastor 75 | anton 76 | physiology 77 | clergyman 78 | ornithologist 79 | physician 80 | lyndon 81 | norwegian 82 | violinist 83 | jan 84 | domenico 85 | antiquarian 86 | cole 87 | gian 88 | astronomer 89 | soldier 90 | karl 91 | maurice 92 | jesuit 93 | conspirator 94 | paolo 95 | willem 96 | baron 97 | belgian 98 | activist 99 | christoph 100 | aviator 101 | businessman 102 | footballer 103 | zoologist 104 | naturalist 105 | playwright 106 | chef 107 | linguist 108 | sergio 109 | scholar 110 | designer 111 | polymath 112 | hungarian 113 | ju 114 | lawyer 115 | vladimir 116 | gottlieb 117 | archaeologist 118 | commentator 119 | golfer 120 | surgeon 121 | fran 122 | ren 123 | franz 124 | laureate 125 | missionary 126 | entertainer 127 | theologian 128 | evangelist 129 | novelists 130 | pacifist 131 | geneticist 132 | saxophonist 133 | humorist 134 | swedish 135 | partement 136 | ans 137 | werner 138 | coups 139 | soprano 140 | animator 141 | environmentalist 142 | argentine 143 | screenwriter 144 | jeanne 145 | musician 146 | sculptor 147 | painter 148 | guitarist 149 | ry 150 | entomologist 151 | psychiatrist 152 | ludwig 153 | luigi 154 | baritone 155 | walther 156 | lester 157 | gilles 158 | roberto 159 | economist 160 | tenor 161 | marquis 162 | cher 163 | cellist 164 | boxer 165 | emil 166 | anatomist 167 | partements 168 | monk 169 | recipient 170 | giuseppe 171 | cartographer 172 | puritan 173 | dame 174 | georg 175 | cricketer 176 | cartoonist 177 | magician 178 | translator 179 | marshal 180 | orator 181 | konrad 182 | preacher 183 | artist 184 | comedian 185 | marcel 186 | ois 187 | pioneer 188 | adler 189 | emile 190 | logician 191 | alberto 192 | botanist 193 | sociologist 194 | swiss 195 | statesman 196 | luis 197 | industrialist 198 | auguste 199 | antonio 200 | satirist 201 | claude 202 | cleric 203 | anconia 204 | skater 205 | cardinal 206 | engineer 207 | sculptors 208 | wrestler 209 | architect 210 | eugen 211 | choreographer 212 | patriot 213 | biologist 214 | scottish 215 | alembert 216 | psychoanalyst 217 | diplomat 218 | este 219 | bodybuilder 220 | gerhard 221 | explorer 222 | inventor 223 | financier 224 | romanian 225 | gangster 226 | driver 227 | johan 228 | athlete 229 | geographer 230 | giovanni 231 | geologist 232 | humanist 233 | photographer 234 | banker 235 | cois 236 | michel 237 | assassin 238 | elias 239 | philanthropist 240 | argentinian 241 | pierre 242 | aristocrat 243 | impresario 244 | johann 245 | poet 246 | theodor 247 | ph 248 | chemist 249 | andre 250 | historian 251 | physiologist 252 | ernst 253 | nicolas 254 | statistician 255 | comte 256 | trader 257 | astronaut 258 | sergei 259 | publisher 260 | dramatists 261 | organist 262 | gottfried 263 | austrian 264 | occultist 265 | abolitionist 266 | novelist 267 | chemists 268 | philipp 269 | journalist 270 | henri 271 | dietrich 272 | educator 273 | entrepreneur 274 | conductor 275 | antoine 276 | churchman 277 | ukrainian 278 | philologist 279 | psychologist 280 | wolfgang 281 | etat 282 | pianist 283 | johannes 284 | ric 285 | biochemist 286 | anna 287 | philosopher 288 | cyclist 289 | tat 290 | guru 291 | emanuel 292 | dancer 293 | murderer 294 | -------------------------------------------------------------------------------- /result/91.txt: -------------------------------------------------------------------------------- 1 | sonja 2 | blonde 3 | fra 4 | hat 5 | shirts 6 | jewels 7 | mandolin 8 | cobalt 9 | volta 10 | bicameral 11 | petals 12 | jam 13 | feather 14 | crux 15 | panda 16 | fireballs 17 | amaranth 18 | emblem 19 | shields 20 | colored 21 | supremacist 22 | crows 23 | gum 24 | berets 25 | corona 26 | nosed 27 | colours 28 | neon 29 | brindle 30 | coloured 31 | grey 32 | kara 33 | squirrel 34 | pepper 35 | costume 36 | hearted 37 | swan 38 | jackets 39 | jpg 40 | hawks 41 | wears 42 | bearded 43 | dwarf 44 | dolphin 45 | shoes 46 | fiery 47 | geo 48 | seal 49 | ratchet 50 | brackets 51 | guards 52 | lifts 53 | peppers 54 | busch 55 | stripe 56 | rgb 57 | wattle 58 | sparks 59 | hair 60 | socks 61 | feathers 62 | blue 63 | colors 64 | cherry 65 | rod 66 | cyan 67 | moor 68 | whales 69 | crest 70 | subspecies 71 | herring 72 | banjo 73 | triangle 74 | shirt 75 | lone 76 | kangaroo 77 | shades 78 | ape 79 | frog 80 | camel 81 | rhapsody 82 | cliff 83 | yellow 84 | packers 85 | fifths 86 | dragons 87 | silver 88 | bowls 89 | greenish 90 | chili 91 | spades 92 | crocodile 93 | elephant 94 | dwarfs 95 | bowling 96 | robe 97 | skies 98 | clad 99 | fringes 100 | image 101 | dressing 102 | columbine 103 | hamster 104 | livery 105 | silvery 106 | sails 107 | bird 108 | pygmy 109 | rondo 110 | bald 111 | colour 112 | glue 113 | onion 114 | serpent 115 | green 116 | pigments 117 | mcintosh 118 | jays 119 | plated 120 | purple 121 | callithrix 122 | grange 123 | robes 124 | pun 125 | caption 126 | gloves 127 | arches 128 | sands 129 | eco 130 | bee 131 | candy 132 | sized 133 | hook 134 | leontopithecus 135 | lizard 136 | tans 137 | sunflower 138 | sapphire 139 | sticks 140 | brownish 141 | grunwald 142 | pink 143 | pine 144 | skinned 145 | black 146 | marble 147 | foxes 148 | aloe 149 | fur 150 | iucn 151 | pea 152 | tasman 153 | red 154 | dunes 155 | panel 156 | bud 157 | hats 158 | shining 159 | dragoons 160 | martians 161 | alga 162 | hairs 163 | zebra 164 | hue 165 | coat 166 | ant 167 | penguins 168 | color 169 | helmet 170 | amber 171 | seals 172 | tea 173 | footed 174 | yster 175 | collar 176 | uniforms 177 | adder 178 | marlin 179 | fries 180 | carrot 181 | orange 182 | emerald 183 | cross 184 | panther 185 | bile 186 | big 187 | beech 188 | miranda 189 | beetle 190 | coats 191 | lawn 192 | lotus 193 | bright 194 | dark 195 | lobster 196 | legged 197 | tail 198 | ballad 199 | polarized 200 | alert 201 | pale 202 | wolf 203 | reggie 204 | hawk 205 | skelton 206 | shorts 207 | hawking 208 | cedar 209 | vein 210 | nigger 211 | versus 212 | admirals 213 | indigo 214 | charing 215 | lagenorhynchus 216 | flames 217 | pear 218 | maple 219 | kryptonite 220 | elves 221 | wings 222 | crab 223 | counterpart 224 | gray 225 | jackal 226 | radiator 227 | wreck 228 | velvet 229 | mint 230 | cones 231 | potato 232 | makeup 233 | shield 234 | eyed 235 | butt 236 | stockings 237 | mulatto 238 | deer 239 | winged 240 | salmon 241 | lion 242 | fang 243 | martian 244 | widowers 245 | bull 246 | tailed 247 | oak 248 | snow 249 | jerseys 250 | elk 251 | elf 252 | yacht 253 | erroneously 254 | abalone 255 | footprint 256 | nails 257 | aces 258 | ale 259 | goat 260 | shade 261 | palette 262 | shaped 263 | hooks 264 | ensign 265 | whale 266 | sabre 267 | grapes 268 | hammer 269 | infra 270 | crescent 271 | turtle 272 | bluish 273 | cloak 274 | mammal 275 | dress 276 | lantern 277 | sleeves 278 | mummy 279 | trumpet 280 | yellowish 281 | scare 282 | fluffy 283 | trash 284 | spots 285 | kiwi 286 | engined 287 | hoist 288 | horizon 289 | brown 290 | sandstone 291 | cliffs 292 | complexion 293 | poplar 294 | scanner 295 | cebus 296 | craters 297 | foley 298 | skull 299 | beryl 300 | nichols 301 | stump 302 | bears 303 | beard 304 | barb 305 | nucleosynthesis 306 | savannah 307 | laurel 308 | cactus 309 | calf 310 | grass 311 | bag 312 | reddish 313 | blindness 314 | obelisk 315 | schwarzschild 316 | pan 317 | ribbon 318 | shark 319 | rye 320 | flower 321 | giant 322 | devils 323 | leopard 324 | flags 325 | negro 326 | stripes 327 | bean 328 | striped 329 | pie 330 | parrot 331 | haired 332 | rat 333 | glow 334 | jelly 335 | cracker 336 | trim 337 | swans 338 | white 339 | sasquatch 340 | subfamily 341 | crane 342 | alder 343 | supermassive 344 | penis 345 | onions 346 | chicken 347 | violet 348 | pants 349 | wild 350 | ridinghood 351 | leaf 352 | -------------------------------------------------------------------------------- /result/93.txt: -------------------------------------------------------------------------------- 1 | menlo 2 | wales 3 | bradford 4 | orleans 5 | cincinnati 6 | antwerp 7 | zoo 8 | midwest 9 | suffolk 10 | rangers 11 | melbourne 12 | opens 13 | lane 14 | derby 15 | brighton 16 | houston 17 | manor 18 | ohio 19 | bristol 20 | camden 21 | gardens 22 | memorial 23 | missouri 24 | vermont 25 | edmonton 26 | jose 27 | cornell 28 | plymouth 29 | dartmouth 30 | windsor 31 | devon 32 | queensland 33 | wyoming 34 | brunswick 35 | houses 36 | cave 37 | rockefeller 38 | albany 39 | albans 40 | papua 41 | manhattan 42 | birthplace 43 | clara 44 | university 45 | wisconsin 46 | gallery 47 | sheriff 48 | tyre 49 | riverside 50 | lincoln 51 | anchorage 52 | dartmoor 53 | berlin 54 | palace 55 | royal 56 | cardiff 57 | queens 58 | founded 59 | portland 60 | lisbon 61 | baltimore 62 | tennessee 63 | copenhagen 64 | citadel 65 | exeter 66 | iowa 67 | moines 68 | detroit 69 | bridge 70 | minnesota 71 | greenwich 72 | renamed 73 | trent 74 | athens 75 | presbyterian 76 | statue 77 | delhi 78 | tower 79 | minneapolis 80 | carnegie 81 | fenway 82 | milwaukee 83 | avenue 84 | hill 85 | arlington 86 | rochester 87 | village 88 | johns 89 | buffalo 90 | holland 91 | press 92 | township 93 | geneva 94 | seminary 95 | victoria 96 | grove 97 | canyon 98 | hatfield 99 | gotham 100 | subway 101 | webster 102 | sheffield 103 | jefferson 104 | carolina 105 | at 106 | archives 107 | northwestern 108 | garden 109 | manchester 110 | atlanta 111 | columbia 112 | smithsonian 113 | angeles 114 | kingston 115 | oldest 116 | geology 117 | indiana 118 | denver 119 | honolulu 120 | davenport 121 | vatican 122 | hall 123 | opened 124 | oakland 125 | idaho 126 | ash 127 | heritage 128 | austin 129 | montana 130 | jersey 131 | texas 132 | historic 133 | cleveland 134 | mississippi 135 | new 136 | county 137 | kabul 138 | princeton 139 | fillmore 140 | belfast 141 | jacksonville 142 | fort 143 | seneca 144 | adelaide 145 | croydon 146 | beirut 147 | junior 148 | alexandria 149 | town 150 | penn 151 | cypriot 152 | campuses 153 | afb 154 | buildings 155 | mcgill 156 | center 157 | dakota 158 | halifax 159 | memphis 160 | sussex 161 | cork 162 | scotia 163 | dublin 164 | madison 165 | virginia 166 | liverpool 167 | andrews 168 | niagara 169 | athletics 170 | usa 171 | academy 172 | bronx 173 | saskatchewan 174 | pittsburgh 175 | glasgow 176 | capitol 177 | birmingham 178 | creek 179 | nova 180 | vancouver 181 | edinburgh 182 | landmark 183 | louisville 184 | city 185 | castle 186 | aberdeen 187 | hobart 188 | sydney 189 | colorado 190 | richmond 191 | rhode 192 | louisiana 193 | campus 194 | inn 195 | arkansas 196 | beach 197 | alumni 198 | athletic 199 | macquarie 200 | cornwall 201 | portsmouth 202 | leicester 203 | maine 204 | lansing 205 | los 206 | stanford 207 | auckland 208 | hampshire 209 | hudson 210 | anaheim 211 | lecturer 212 | delaware 213 | diego 214 | newfoundland 215 | gettysburg 216 | street 217 | providence 218 | arbor 219 | oxford 220 | park 221 | fredericton 222 | hastings 223 | ontario 224 | maryland 225 | hospital 226 | harlem 227 | london 228 | eugene 229 | lodge 230 | kentucky 231 | suburb 232 | alabama 233 | oklahoma 234 | district 235 | dundee 236 | college 237 | mount 238 | pennsylvania 239 | berkeley 240 | abbey 241 | hotel 242 | comiskey 243 | georgia 244 | tribune 245 | washington 246 | nabla 247 | miami 248 | yankee 249 | hague 250 | helsinki 251 | headquarters 252 | cathedral 253 | boston 254 | tasmania 255 | santa 256 | oregon 257 | san 258 | residence 259 | essex 260 | philadelphia 261 | mall 262 | malm 263 | limerick 264 | brooklyn 265 | galway 266 | ithaca 267 | wilmington 268 | monument 269 | chapel 270 | las 271 | polytechnic 272 | canterbury 273 | toronto 274 | mayo 275 | columbus 276 | prairie 277 | montreal 278 | massachusetts 279 | building 280 | wesleyan 281 | nebraska 282 | indianapolis 283 | cemetery 284 | kansas 285 | florida 286 | michigan 287 | utah 288 | francisco 289 | museum 290 | westminster 291 | frankfurt 292 | helena 293 | nevada 294 | harvard 295 | seattle 296 | sacramento 297 | amsterdam 298 | tokyo 299 | clair 300 | yorkshire 301 | california 302 | canton 303 | perth 304 | moncton 305 | chester 306 | newark 307 | chicago 308 | establishments 309 | dallas 310 | dalhousie 311 | heathrow 312 | connecticut 313 | fortress 314 | gate 315 | arizona 316 | phoenix 317 | yale 318 | hamilton 319 | kent 320 | charleston 321 | isle 322 | metropolis 323 | royale 324 | cambridge 325 | cove 326 | leeds 327 | york 328 | centre 329 | illinois 330 | -------------------------------------------------------------------------------- /result/94.txt: -------------------------------------------------------------------------------- 1 | selassie 2 | ching 3 | matilda 4 | ahmed 5 | xvi 6 | jin 7 | macedon 8 | zahn 9 | dexter 10 | otto 11 | jahan 12 | odes 13 | pausanias 14 | ashoka 15 | melancholia 16 | benedict 17 | nikolai 18 | menelik 19 | rudolph 20 | hercules 21 | timur 22 | saud 23 | matthias 24 | boleslaus 25 | temmu 26 | marcellus 27 | zhou 28 | humayun 29 | amadeus 30 | pileser 31 | maximus 32 | frederick 33 | xiii 34 | ibn 35 | grandson 36 | visigoths 37 | adolf 38 | adversus 39 | kaiser 40 | macbeth 41 | successors 42 | herod 43 | abdullah 44 | aleksandar 45 | sergius 46 | trajan 47 | consort 48 | theodoric 49 | tenn 50 | pius 51 | letsie 52 | maria 53 | cyrus 54 | basil 55 | yer 56 | carta 57 | bukhari 58 | nephi 59 | germanicus 60 | nikola 61 | antony 62 | crimson 63 | medici 64 | haile 65 | vespasian 66 | godfather 67 | nukem 68 | portugal 69 | constans 70 | sihanouk 71 | saga 72 | umberto 73 | hamlet 74 | alaric 75 | alexius 76 | justin 77 | afonso 78 | xvii 79 | philippe 80 | elizabeth 81 | epirus 82 | succeeds 83 | minuteman 84 | aurelian 85 | deposed 86 | prussia 87 | trident 88 | abbas 89 | damasus 90 | abdication 91 | castile 92 | photius 93 | suk 94 | vlad 95 | emmanuel 96 | almagest 97 | jehoram 98 | successor 99 | rudolf 100 | lucius 101 | titus 102 | marries 103 | rodney 104 | naples 105 | nicephorus 106 | artaxerxes 107 | boles 108 | henrietta 109 | gustaf 110 | agrippa 111 | isabella 112 | aw 113 | ismail 114 | burgundy 115 | fergus 116 | ladislaus 117 | josiah 118 | leo 119 | mehmed 120 | pepin 121 | cromwell 122 | malcolm 123 | felix 124 | commodus 125 | count 126 | brandenburg 127 | assyria 128 | reign 129 | nebuchadnezzar 130 | magnus 131 | mustafa 132 | lothar 133 | rahman 134 | priam 135 | livy 136 | brutus 137 | sforza 138 | nero 139 | frederik 140 | darius 141 | elder 142 | ramesses 143 | shah 144 | fabius 145 | sicily 146 | hezekiah 147 | ferdinand 148 | elector 149 | agamemnon 150 | navarre 151 | swabia 152 | palatine 153 | augustine 154 | mieszko 155 | charlemagne 156 | romanus 157 | mistress 158 | hannibal 159 | athanasius 160 | diocletian 161 | ix 162 | iv 163 | ii 164 | mahmud 165 | adrianople 166 | andronicus 167 | poseidon 168 | magna 169 | edsel 170 | caracalla 171 | manuel 172 | constantius 173 | canute 174 | quintus 175 | usurper 176 | apollodorus 177 | koh 178 | caesar 179 | ambrose 180 | murad 181 | murat 182 | lf 183 | hammurabi 184 | sejong 185 | joachim 186 | ghidorah 187 | hirohito 188 | gon 189 | gustavus 190 | nur 191 | rehoboam 192 | hus 193 | ovid 194 | baldwin 195 | regent 196 | northumbria 197 | epitome 198 | tsar 199 | executioner 200 | judah 201 | nebuchadrezzar 202 | claudius 203 | ahaz 204 | heir 205 | zahir 206 | tyrant 207 | elagabalus 208 | idris 209 | blackadder 210 | hohenzollern 211 | crowned 212 | sancho 213 | antipope 214 | viii 215 | innocent 216 | byzantium 217 | pentium 218 | savoy 219 | wilhelm 220 | mughal 221 | tiberius 222 | hamid 223 | archduke 224 | ivan 225 | ptolemy 226 | ul 227 | drusus 228 | genghis 229 | vi 230 | yoannis 231 | pedro 232 | soga 233 | sixtus 234 | asturias 235 | ww 236 | rainier 237 | xv 238 | paschal 239 | ruler 240 | napoleon 241 | popes 242 | khan 243 | saxony 244 | reigning 245 | kazimierz 246 | pretender 247 | mussolini 248 | laurens 249 | laurent 250 | aeolus 251 | kings 252 | faramir 253 | dost 254 | attila 255 | pippin 256 | dukes 257 | bonaparte 258 | aquitaine 259 | hammerstein 260 | casimir 261 | unn 262 | septimius 263 | friedrich 264 | harald 265 | zeno 266 | acceded 267 | peerage 268 | eldest 269 | mk 270 | aurelius 271 | kimmei 272 | xerxes 273 | twin 274 | conqueror 275 | shapur 276 | eleanor 277 | boniface 278 | champagne 279 | sultan 280 | lydia 281 | antiochus 282 | iii 283 | moshoeshoe 284 | flavius 285 | coronation 286 | absalom 287 | conrad 288 | reigned 289 | julio 290 | jehoshaphat 291 | haakon 292 | ethelbert 293 | della 294 | theodora 295 | shalmaneser 296 | virgil 297 | ethelred 298 | simeon 299 | cyril 300 | hector 301 | tenji 302 | julius 303 | theodosius 304 | sigismund 305 | hadrian 306 | augustus 307 | amalric 308 | umar 309 | bishop 310 | babylon 311 | sulla 312 | ali 313 | minos 314 | bashir 315 | anastasius 316 | marcus 317 | marwan 318 | lothair 319 | selkirk 320 | patron 321 | caliph 322 | philip 323 | vortigern 324 | constantine 325 | kammu 326 | licinius 327 | canonized 328 | maximilian 329 | xii 330 | xiv 331 | mei 332 | bayezid 333 | rollins 334 | noor 335 | vic 336 | vii 337 | mehmet 338 | kamehameha 339 | andreas 340 | martyr 341 | persia 342 | hussein 343 | rama 344 | descendant 345 | legate 346 | catherine 347 | papacy 348 | tudor 349 | moctezuma 350 | abdicated 351 | abdicates 352 | nephew 353 | gaius 354 | selim 355 | celestine 356 | jumaada 357 | abdu 358 | romulus 359 | chilperic 360 | demetrius 361 | pharaoh 362 | constantinople 363 | valentinian 364 | antigonus 365 | zork 366 | norodom 367 | valdemar 368 | faisal 369 | valens 370 | olaf 371 | becomes 372 | maximinus 373 | wenceslaus 374 | princess 375 | luther 376 | damascus 377 | manasseh 378 | solomon 379 | aragon 380 | gustav 381 | trebizond 382 | fahd 383 | dio 384 | heraclius 385 | hassan 386 | severus 387 | ahaziah 388 | marquess 389 | bavaria 390 | sennacherib 391 | justinian 392 | auschwitz 393 | empress 394 | agricola 395 | duchy 396 | diablo 397 | abd 398 | wellington 399 | octavian 400 | zulu 401 | columba 402 | icarus 403 | clement 404 | carloman 405 | predecessor 406 | franks 407 | bohemia 408 | farouk 409 | hazael 410 | cicero 411 | leopold 412 | akbar 413 | albrecht 414 | corinthians 415 | eusebius 416 | gibbon 417 | comnenus 418 | countess 419 | alfonso 420 | aram 421 | uncle 422 | helios 423 | viceroy 424 | habsburg 425 | opold 426 | brittany 427 | jeroboam 428 | antoninus 429 | anjou 430 | antioch 431 | clovis 432 | lorraine 433 | viscount 434 | cleopatra 435 | margrave 436 | xavier 437 | honorius 438 | uzziah 439 | lear 440 | throne 441 | -------------------------------------------------------------------------------- /result/97.txt: -------------------------------------------------------------------------------- 1 | expeditionary 2 | service 3 | boarded 4 | brigades 5 | passenger 6 | heavyweight 7 | suspension 8 | battleships 9 | aboard 10 | rover 11 | traffic 12 | sank 13 | operation 14 | tanker 15 | combatants 16 | motors 17 | brigade 18 | harbor 19 | nuclear 20 | samurai 21 | carriers 22 | squadrons 23 | train 24 | test 25 | concorde 26 | automobiles 27 | gun 28 | battleship 29 | corps 30 | locomotive 31 | base 32 | station 33 | pack 34 | armor 35 | operated 36 | propelled 37 | crew 38 | probe 39 | troop 40 | testing 41 | fighters 42 | landing 43 | bombardment 44 | police 45 | motorcycles 46 | vtol 47 | planes 48 | disarmament 49 | locomotives 50 | barracks 51 | supplies 52 | satellite 53 | transatlantic 54 | tanks 55 | eagle 56 | enigma 57 | pilot 58 | airfield 59 | naval 60 | balloon 61 | automobile 62 | storm 63 | rifle 64 | defense 65 | flight 66 | cruiser 67 | usaf 68 | tactical 69 | carrier 70 | artillery 71 | sulphur 72 | bomb 73 | reactor 74 | avenger 75 | disaster 76 | supersonic 77 | operations 78 | equipped 79 | bombs 80 | us 81 | jets 82 | kriegsmarine 83 | contingent 84 | clones 85 | installations 86 | observatory 87 | fire 88 | battalion 89 | phantom 90 | sided 91 | benz 92 | boeing 93 | medal 94 | dock 95 | command 96 | transport 97 | boats 98 | vessels 99 | manned 100 | squadron 101 | ordnance 102 | raid 103 | amphibious 104 | rail 105 | streetcar 106 | fires 107 | defenses 108 | ground 109 | ship 110 | suppliers 111 | stealth 112 | multinational 113 | airborne 114 | paramilitary 115 | airplay 116 | missile 117 | attack 118 | bel 119 | rescue 120 | chariots 121 | surprise 122 | tank 123 | reconnaissance 124 | pins 125 | opium 126 | stations 127 | brute 128 | purchases 129 | railroads 130 | soyuz 131 | warheads 132 | airports 133 | warships 134 | plaintext 135 | luftwaffe 136 | airplanes 137 | shuttle 138 | weapon 139 | deployment 140 | battlecruisers 141 | ballistic 142 | propulsion 143 | airbus 144 | weapons 145 | guided 146 | regiments 147 | guns 148 | mission 149 | units 150 | attendant 151 | deployed 152 | nasa 153 | weights 154 | uss 155 | ships 156 | satellites 157 | combat 158 | torpedo 159 | hms 160 | auxiliary 161 | sinking 162 | canaveral 163 | facility 164 | launching 165 | prototype 166 | missiles 167 | pearl 168 | conditioning 169 | jet 170 | peacekeeping 171 | astronauts 172 | warfare 173 | apollo 174 | bombing 175 | luxury 176 | launches 177 | air 178 | launched 179 | mounted 180 | cargo 181 | uniform 182 | car 183 | cars 184 | cannon 185 | armour 186 | launch 187 | camouflage 188 | vessel 189 | airliners 190 | barbary 191 | hydro 192 | bases 193 | navy 194 | mine 195 | arithmetical 196 | personnel 197 | sunk 198 | destroyers 199 | twa 200 | rifles 201 | radar 202 | raf 203 | semi 204 | asteroid 205 | infantry 206 | strategic 207 | mil 208 | mig 209 | volunteer 210 | ads 211 | bicycle 212 | defences 213 | submarine 214 | mechanized 215 | minted 216 | crews 217 | refueling 218 | flying 219 | crashes 220 | crashed 221 | convoy 222 | helicopter 223 | spacecraft 224 | warship 225 | frigate 226 | moist 227 | contractor 228 | firing 229 | patrol 230 | rockets 231 | module 232 | cruisers 233 | wheeled 234 | armoured 235 | accident 236 | armored 237 | battlefield 238 | truck 239 | boat 240 | airliner 241 | airlines 242 | surveillance 243 | regiment 244 | cockpit 245 | unmanned 246 | sidewinder 247 | daimler 248 | repair 249 | aerial 250 | fighter 251 | armament 252 | carrying 253 | motorcycle 254 | touring 255 | powered 256 | replica 257 | inventory 258 | engines 259 | airplane 260 | marine 261 | targets 262 | mobile 263 | flights 264 | mutiny 265 | fleet 266 | vehicle 267 | control 268 | cruise 269 | helicopters 270 | medals 271 | joint 272 | technician 273 | force 274 | arms 275 | deck 276 | microscopy 277 | microscope 278 | aviation 279 | assault 280 | bomber 281 | escort 282 | lightning 283 | airways 284 | manufactured 285 | manufacturer 286 | airline 287 | abm 288 | csm 289 | pilots 290 | built 291 | aircraft 292 | vehicles 293 | bombers 294 | demonstration 295 | merchant 296 | destroyer 297 | buildup 298 | craft 299 | navigation 300 | factory 301 | hull 302 | marines 303 | missions 304 | submarines 305 | explodes 306 | cannons 307 | motor 308 | operational 309 | rocket 310 | shipping 311 | --------------------------------------------------------------------------------