# emode fuzzy table v1 July 2005
# add final e
$	e
# remove final e
e$	 
# remove initial '
^'	 
# replace initial ' with e
^'	e
# replace initial ' with a
^'	a
# replace v with u	(changed by Alistair from replace initial, to replace anywhere)
v	u
# replace final ck with k
ck$	k
# replace final ck with c	(added by Alistair)
ck$	c
# replace final k with c	(added by Alistair)
k$	c
# replace final 'd with ed
'd$	ed
# replace final ie with y
ie$	y
# replace final ies with ys
ies$	ys
# replace final t with ed
t$	ed
# replace final yes with ies
yes$	ies
# replace final ey with y	(added by Alistair)
ey$	y
# replace final es with s	(added by Alistair)
es$	s
# replace final th with s	(added by Alistair)
th$	s
#remove -			(added by Alistair)
-	 
# replace a with e
a	e
# replace a with i
a	i
# replace a with o
a	o
# replace au with a
au	a
# replace c with s
c	s
# replace cy with ce
cy	ce
# replace d with t
d	t
# replace e with a
e	a
# replace e with ea
e	ea
# replace e with i
e	i
# replace e with o
e	o
# replace ea with e
ea	e
# replace ei with ie
ei	ie
# replace i with e
i	e
# replace ou with o
ou	o
# replace s with c
s	c
# replace s with z
s	z
# replace t with c
t	c
# replace th with d
th	d
# replace u with v
u	v
# replace w with u
w	u
# replace y with i
y	i
# replace y with ie
y	ie
# replace z with s
z	s
# replace d with dd
d	dd
# replace p with pp
p	pp
# replace r with rr
r	rr
# replace s with ss
s	ss
# replace t with tt
t	tt
# replace z with zz
z	zz
# replace bb with b
bb	b
# replace ee with ea
ee	ea
# replace ee with ie
ee	ie
# replace ll with l
ll	l
# replace nn with n
nn	n
# replace rr with r
rr	r
# replace ss with s
ss	s
# replace tt with t
tt	t
# replace vv with w
vv	w
# replace zz with z
zz	z
end