/*
 ** 
 ** 
 ** 
 ** 
 ** 
 ** 
 *
 ** 
 *
 ** 
 ** 
 ** 
 ** 
 ** 
 */

// GENERAL
   // A, E, I, O, P, U should create variants, 
   // EE = final "e" (english & french)
   // V, B from Spanish
   // but a, e, i, o, u should not create any new variant
"EE" "" "$" "e"
    
"A" "" "" "a"
"E" "" "" "e"
"I" "" "" "i"
"O" "" "" "o"
"P" "" "" "o"
"U" "" "" "u"

"B" "" "[fktSs]" "p" 
"B" "" "p" "" 
"B" "" "$" "p" 
"V" "" "[pktSs]" "f" 
"V" "" "f" "" 
"V" "" "$" "f" 

"B" "" "" "b"
"V" "" "" "v"
