-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path3-syllables-sorted-by-frequency.txt
More file actions
5987 lines (5987 loc) · 67.2 KB
/
Copy path3-syllables-sorted-by-frequency.txt
File metadata and controls
5987 lines (5987 loc) · 67.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ser;vic;es
pol;i;cy
cop;y;right
vid;e;o
pri;va;cy
com;pa;ny
gen;er;al
man;age;ment
u;nit;ed
na;tion;al
ar;e;a
fam;i;ly
re;lat;ed
com;put;er
fol;low;ing
me;di;a
his;to;ry
per;son;al
in;clud;ing
lo;ca;tion
gov;ern;ment
dig;it;al
pre;vi;ous
de;part;ment
de;scrip;tion
an;oth;er
prop;er;ty
qual;i;ty
cus;tom;er
ar;ti;cle
dif;fer;ent
ca;na;da
gal;ler;y
reg;is;ter
how;ev;er
li;brar;y
re;al;ly
in;dus;try
pro;vid;ed
med;i;cal
fi;nan;cial
e;quip;ment
mem;o;ry
per;for;mance
im;por;tant
ex;am;ple
au;di;o
pos;si;ble
com;mit;tee
in;ter;est
sim;i;lar
ref;er;ence
en;er;gy
pop;u;lar
ra;di;o
dis;cus;sion
a;gree;ment
e;di;tion
mar;ket;ing
up;dat;ed
al;read;y
spe;cif;ic
sev;er;al
col;lec;tion
lim;it;ed
di;rec;tor
nat;u;ral
pe;ri;od
of;fi;cial
av;er;age
tech;ni;cal
con;fer;ence
cal;en;dar
doc;u;ment
fed;er;al
to;geth;er
in;clud;ed
eve;ry;thing
var;i;ous
pro;duc;tion
com;mer;cial
news;let;ter
mag;a;zine
cam;er;a
cur;rent;ly
con;struc;tion
reg;is;tered
pro;tec;tion
man;ag;er
po;si;tion
an;nu;al
cor;po;rate
hol;i;day
cre;at;ed
re;mem;ber
ad;ver;tise
sum;mar;y
a;gen;cy
em;ploy;ment
o;ver;all
com;mis;sion
re;gion;al
in;sti;tute
con;tin;ue
an;y;thing
con;di;tion
ef;fec;tive
se;lec;tion
ca;si;no
an;y;one
so;lu;tion
ad;di;tion
jew;el;ry
ac;cord;ing
de;ci;sion
di;vi;sion
les;bi;an
sta;tis;tics
cap;i;tal
in;vest;ment
con;sum;er
fur;ni;ture
lo;cat;ed
mul;ti;ple
ed;i;tor
po;ten;tial
i;de;a
pri;ma;ry
eve;ry;one
cam;er;as
phys;i;cal
med;i;cine
de;vel;oped
tel;e;phone
an;i;mal
reg;u;lar
ev;i;dence
fa;vor;ite
un;der;stand
re;cent;ly
prob;a;bly
con;nec;tion
pub;lish;er
hos;pi;tal
o;ver;view
ex;cel;lent
as;sess;ment
in;ter;face
max;i;mum
am;a;zon
beau;ti;ful
di;rect;ly
pro;vid;ing
cat;a;log
con;sid;ered
strat;e;gy
en;ter;prise
pos;i;tive
o;pin;ion
de;vel;op
re;la;tions
re;pub;lic
va;ca;tion
cen;tu;ry
as;sis;tance
com;plet;ed
pa;cif;ic
ve;hi;cle
con;sid;er
oth;er;wise
pol;i;tics
dis;claim;er
fac;ul;ty
mem;ber;ship
mod;i;fied
in;ter;nal
char;ac;ter
main;te;nance
bat;ter;y
sub;mit;ted
me;di;um
stu;di;o
vir;tu;al
pro;gram;ming
ex;ter;nal
re;gard;ing
in;struc;tions
the;o;ry
min;i;mum
vis;u;al
man;u;al
be;gin;ning
fi;nal;ly
e;lec;tric
of;fic;er
spec;i;fied
res;tau;rant
cre;a;tive
ben;e;fit
mu;se;um
ac;cept;ed
gal;ler;ies
re;spec;tive
mich;i;gan
crit;i;cal
mu;si;cal
em;ploy;ee
rel;e;vant
at;ten;tion
dif;fer;ence
min;is;ter
di;rec;tions
mon;i;tor
cov;er;age
suc;cess;ful
clin;i;cal
pub;lish;ing
cur;ren;cy
de;ter;mine
ac;tu;al
dif;fi;cult
sat;el;lite
am;a;teur
cul;tur;al
eas;i;ly
func;tion;al
grad;u;ate
in;i;tial
rec;om;mend
pro;vid;er
op;tion;al
ac;count;ing
fan;ta;sy
pro;fes;sor
ap;par;el
con;tin;ued
re;li;gion
per;mis;sion
sur;ger;y
chem;i;cal
com;po;nent
en;a;ble
ex;er;cise
guar;an;tee
pa;per;back
ar;gu;ment
cre;at;ing
pre;mi;um
at;tor;ney
ther;a;py
se;ri;ous
quan;ti;ty
es;sen;tial
com;pli;ance
im;prove;ment
ac;cept;ance
in;tend;ed
e;lec;tion
cer;ti;fied
com;put;ing
el;e;ment
sep;a;rate
pro;ce;dure
lead;er;ship
re;li;gious
av;e;nue
do;mes;tic
ex;tend;ed
o;pen;ing
ap;prov;al
ad;ven;ture
of;fer;ing
as;sis;tant
yes;ter;day
de;ter;mined
ex;ten;sion
com;plete;ly
port;a;ble
the;a;tre
ear;li;er
clas;si;cal
war;ran;ty
di;rec;tion
bas;ket;ball
as;sem;bly
nu;cle;ar
crim;i;nal
sex;u;al
pow;er;ful
per;son;nel
de;cid;ed
ad;van;tage
in;ter;view
be;hav;ior
fre;quent;ly
rev;e;nue
fes;ti;val
what;ev;er
ex;act;ly
or;i;gin
an;i;me
pro;to;col
part;ner;ship
ex;pres;sion
eq;ui;ty
re;place;ment
stra;te;gic
a;part;ment
con;sult;ing
de;sign;er
neg;a;tive
the;a;ter
trans;la;tion
in;ju;ry
min;is;try
pro;pos;al
lin;ge;rie
ul;ti;mate
fre;quen;cy
in;tro;duced
phar;ma;cy
cre;a;tion
vi;o;lence
dy;nam;ic
per;ma;nent
prac;ti;cal
ex;clu;sive
re;duc;tion
nu;tri;tion
re;cord;ing
won;der;ful
pre;ven;tion
in;creas;ing
con;nect;ed
a;mend;ment
guar;an;teed
li;brar;ies
con;ven;tion
prin;ci;pal
bat;ter;ies
a;do;be
sub;scrip;tion
ex;po;sure
sig;na;ture
pro;vi;sion
lux;u;ry
cer;tain;ly
news;pa;per
re;mov;al
eas;i;er
fac;to;ry
op;ti;cal
pro;mo;tion
rel;a;tive
a;maz;ing
con;ver;sion
se;ri;al
re;vi;sion
in;flu;ence
im;por;tance
rec;i;pe
pre;scrip;tion
rep;re;sent
i;de;al
dis;cov;er
ad;vi;sor
mar;ket;place
ge;ner;ic
po;et;ry
re;ceiv;ing
ac;cord;ance
ac;cu;rate
al;co;hol
in;struc;tion
man;ag;ing
es;tab;lish
par;a;graph
em;ploy;er
per;cent;age
her;it;age
sup;port;ing
au;di;ence
spe;cial;ist
di;rect;ed
af;fect;ed
to;tal;ly
in;di;cate
fa;vour;ite
trans;mis;sion
or;gan;ic
ex;treme;ly
con;cern;ing
chem;is;try
neigh;bor;hood
a;gen;da
an;y;way
an;y;where
in;ves;tor
print;a;ble
en;force;ment
hard;cov;er
glos;sa;ry
ap;pen;dix
no;ti;fy
choc;o;late
sup;pli;er
re;quire;ment
preg;nan;cy
ex;plor;er
his;tor;ic
dis;a;bled
au;thor;ized
re;tire;ment
fi;nanc;ing
com;e;dy
a;dopt;ed
ef;fi;cient
lin;e;ar
com;mit;ment
spe;cial;ty
car;ri;er
de;liv;er
qual;i;fied
clas;si;fied
re;lat;ing
con;fi;dence
al;li;ance
en;gi;neer
con;sist;ent
con;vert;er
be;com;ing
sa;fa;ri
ob;jec;tive
re;la;tion
vol;un;teer
a;dapt;er
pro;ces;sor
con;trib;ute
sub;mis;sion
es;ti;mate
en;cour;age
in;spec;tion
trans;ac;tion
con;trac;tor
ep;i;sode
bul;le;tin
mod;i;fy
com;mit;ted
ex;ten;sive
u;ni;verse
can;di;date
out;stand;ing
per;spec;tive
mes;sen;ger
tour;na;ment
cat;a;logue
ter;mi;nal
sal;a;ry
prop;er;ly
av;a;tar
il;le;gal
ex;pan;sion
to;mor;row
per;form;ing
col;lect;ed
suit;a;ble
fea;tur;ing
im;ple;ment
typ;i;cal
suf;fi;cient
cath;o;lic
a;ware;ness
gov;er;nor
meas;ure;ment
for;mu;la
pack;ag;ing
un;a;ble
wall;pa;per
mer;chan;dise
re;sist;ance
vis;i;tor
tran;si;tion
in;stru;ment
phy;si;cian
cel;lu;lar
nor;mal;ly
flex;i;ble
nu;mer;ous
mag;net;ic
reg;is;try
pov;er;ty
mys;ter;y
de;pend;ent
ap;pli;cant
rec;og;nized
li;cens;ing
de;pos;it
sem;i;nar
spec;i;fy
sen;si;tive
com;ple;tion
cal;cu;late
con;vert;ed
ac;ci;dent
res;i;dent
pos;si;bly
con;sump;tion
af;ter;noon
con;sult;ant
con;trol;ler
own;er;ship
res;i;dence
den;si;ty
par;al;lel
op;er;ate
op;er;a
cin;e;ma
re;ac;tion
gen;er;ate
ex;cep;tion
du;ra;tion
pur;su;ant
re;cruit;ment
or;gan;ized
a;dop;tion
im;prov;ing
ex;pen;sive
buf;fa;lo
ex;pert;ise
mech;an;ism
con;clu;sion
de;tec;tion
for;ma;tion
en;ti;ty
set;tle;ment
e;rot;ic
for;ev;er
fan;tas;tic
im;ag;ine
ap;point;ed
lib;er;al
or;a;cle
dis;as;ter
in;struc;tor
in;ju;ries
u;su;al
on;go;ing
im;ag;ing
lib;er;ty
an;a;lyst
dan;ger;ous
ex;cit;ing
at;tach;ment
ap;point;ment
hur;ri;cane
pro;duc;er
care;ful;ly
un;der;ground
prin;ci;ple
se;mes;ter
ap;pear;ance
al;go;rithm
val;en;tine
fa;mil;iar
ca;pa;ble
in;volv;ing
ad;mis;sion
car;ry;ing
vic;to;ry
ter;ror;ism
par;lia;ment
cit;i;zen
ver;ti;cal
struc;tur;al
ab;so;lute
an;y;time
guard;i;an
bank;rupt;cy
ge;net;ic
cab;i;net
tif;fa;ny
trop;i;cal
na;tion;wide
ex;ist;ence
mu;tu;al
at;trib;ute
eve;ry;day
sur;round;ing
in;quir;y
ex;hib;it
si;er;ra
vis;i;ble
mer;cu;ry
nav;i;gate
re;ceiv;er
sub;stan;tial
pro;gres;sive
ob;vi;ous
de;pres;sion
cov;er;ing
plat;i;num
mod;el;ing
sub;sec;tion
ar;ri;val
pot;ter;y
em;pha;sis
in;fec;tion
in;volve;ment
sub;se;quent
dis;clo;sure
ad;e;quate
sen;a;tor
en;tire;ly
re;duc;ing
di;a;ry
pol;lu;tion
eb;on;y
dem;on;strate
at;mos;phere
o;ver;seas
in;vit;ed
as;sign;ment
coun;sel;ing
sat;is;fied
ver;i;fy
no;bod;y
con;fig;ure
ap;ply;ing
re;port;er
cham;pi;on
ma;ri;a
u;ni;form
ex;cel;lence
vac;u;um
rec;og;nize
sur;viv;al
when;ev;er
pi;o;neer
for;got;ten
ac;ro;bat
ath;let;ic
be;hav;iour
char;i;ty
trav;el;er
re;al;ize
re;gard;less
en;e;my
re;strict;ed
at;tend;ance
pen;al;ty
a;re;na
an;nounce;ment
ex;pand;ed
cas;u;al
cus;tom;ize
tra;di;tion
dep;u;ty
schol;ar;ship
gov;ern;ance
ca;ter;ing
to;bac;co
in;ci;dent
dy;nam;ics
e;merg;ing
pro;duc;ing
pre;ci;sion
dam;ag;es
re;cord;er
di;vid;ed
re;cep;tion
cor;rect;ly
in;sid;er
leg;a;cy
vit;a;min
gen;u;ine
par;a;dise
o;ver;night
in;tro;duce
ro;man;tic
ex;am;ine
sus;pen;sion
cor;rec;tion
sup;ple;ment
pro;mot;ing
e;qua;tion
di;men;sion
quar;ter;ly
al;ter;nate
a;chieve;ment
fu;ner;al
pas;sen;ger
con;ven;ient
an;a;log
bound;a;ry
en;cour;aged
pre;par;ing
ath;let;ics
de;struc;tion
mi;gra;tion
dis;or;der
hab;i;tat
me;di;an
ju;di;cial
ad;just;ment
in;te;ger
bach;e;lor
at;ti;tude
bi;na;ry
ge;net;ics
col;lec;tive
en;roll;ment
col;lec;tor
de;let;ed
con;ven;ience
con;tain;er
de;fend;ant
em;bed;ded
li;a;ble
pe;ti;tion
an;ten;na
de;par;ture
bi;ki;ni
at;trac;tion
mod;er;ate
op;po;site
un;der;stood
rap;id;ly
as;sur;ance
hap;pen;ing
at;trac;tive
oc;ca;sion
gar;den;ing
or;ches;tra
more;o;ver
min;i;mal
lot;ter;y
dis;ci;pline
di;a;logue
dis;pos;al
in;stal;ling
com;mon;ly
re;quir;ing
en;gage;ment
re;fi;nance
sud;den;ly
ox;y;gen
ar;range;ment
fur;ther;more
meas;ur;ing
head;quar;ters
med;i;care
sub;scrib;er
do;na;tion
com;mon;wealth
re;al;ized
eve;ry;where
haz;ard;ous
some;bod;y
re;sist;ant
cre;a;tor
pho;to;graph
su;i;cide
gath;er;ing
pro;jec;tion
log;i;cal
spe;cial;ized
pay;a;ble
cour;te;sy
crit;i;cism
ju;ve;nile
in;jec;tion
pro;tec;tive
a;cous;tic
min;er;al
sun;glass;es
pref;er;ence
sta;di;um
com;pres;sion
sea;son;al
per;fect;ly
in;stant;ly
ex;am;ined
en;cod;ing
broad;cast;ing
cos;met;ic
ter;ror;ist
eth;i;cal
suf;fer;ing
pro;spec;tive
e;qual;ly
con;nec;tor
vi;o;lent
un;der;wear
in;clu;sive
an;y;more
lo;ca;tor
con;stant;ly
en;sur;ing
pro;cure;ment
un;tit;led
re;fer;ral
sur;veil;lance
op;ti;mal
sub;sti;tute
in;clu;sion
hope;ful;ly
o;me;ga
au;then;tic
mac;in;tosh
ver;i;fied
for;mer;ly
pro;jec;tor
re;tail;er
el;e;gant
re;new;al
ex;clud;ing
com;mand;er
sug;ges;tion
in;ter;val
re;peat;ed
lo;gis;tics
pro;por;tion
a;tom;ic
pro;tect;ing
trans;mit;ted
in;ten;sive
de;vi;ant
ad;ja;cent
tu;i;tion
ex;ot;ic
re;cep;tor
sur;gi;cal
ci;ta;tion
prem;is;es
of;fen;sive
ben;ja;min
de;ploy;ment
stud;y;ing
di;rec;tive
gro;cer;y
at;tend;ing
e;mis;sion
re;al;ty
ap;par;ent
trav;el;ing
ex;cit;ed
re;cov;er
re;pro;duced
ex;plic;it
oc;ca;sions
ce;ram;ic
com;pos;ite
de;sign;ing
qual;i;fy
fin;ger;ing
di;a;gram
re;mov;ing
in;ter;im
syn;di;cate
a;bor;tion
di;a;log
cal;ci;um
ad;dress;ing
con;sti;tute
lo;cal;ly
con;clud;ed
des;per;ate
ad;dic;tion
mo;roc;co
syn;the;sis
un;de;fined
en;hance;ment
o;a;sis
sil;i;con
re;ten;tion
won;der;ing
pro;fes;sion
e;lec;tron
treas;ur;y
roy;al;ty
ob;serv;er
pro;vin;cial
en;a;bling
en;cryp;tion
fo;cus;es
so;vi;et
pos;ses;sion
ad;vanc;es
re;spond;ent
sat;is;fy
cel;e;brate
ap;pli;ance
ra;di;us
im;pres;sive
ar;chi;tect
chal;leng;ing
mi;cro;wave
dis;cre;tion
vi;bra;tor
vet;er;an
in;te;gral
syn;op;sis
re;un;ion
com;pos;er
con;tra;ry
fo;cus;ing
vi;rus;es
ad;mit;ted
a;chiev;ing
fish;er;ies
com;pan;ion
an;a;lyze
fel;low;ship
in;val;id
ex;e;cute
up;dat;ing
dis;trib;ute
com;pil;er
en;large;ment
u;ni;ty
con;junc;tion
cor;rup;tion
no;ti;fied
dra;mat;ic
ter;ri;ble
sci;en;tist
ar;thri;tis
tax;a;tion
the;o;rem
in;fla;tion
rad;i;cal
con;trol;ling
as;sum;ing
eld;er;ly
in;quir;ies
cu;ri;ous
af;fect;ing
ag;gre;gate
ac;tive;ly
cour;i;er
un;like;ly
bev;er;age
for;est;ry
gen;e;sis
bar;ri;er
in;cor;rect
bi;cy;cle
fur;nish;ings
par;ti;cle
per;cep;tion
re;nais;sance
or;di;nance
a;mi;no
as;sump;tion
in;ven;tion
tech;ni;cian
en;quir;ies
cog;ni;tive
ex;plor;ing
en;quir;y
reg;is;trar
with;draw;al
pub;lic;ly
ge;ne;va
re;sell;er
in;for;mal
rel;e;vance
in;cen;tive
but;ter;fly
me;chan;ics
heav;i;ly
de;fin;ing
re;flec;tion
de;vot;ed
so;di;um
tim;o;thy
war;ri;or
di;plo;ma
in;no;cent
con;sen;sus
cop;y;ing
jour;nal;ism
triv;i;a
in;ten;tion
dis;a;gree
bool;e;an
cir;cu;lar
in;ter;act
hap;pi;ness
ac;com;plished
im;pres;sion
rep;li;ca
trans;par;ent
trin;i;ty
com;par;ing
or;gan;ize
la;ti;no
har;mo;ny
dis;tin;guished
tri;an;gle