text-to-speech through DAC to audio amp/speaker

Dependencies:   mbed

text-to-speech TTS

Committer:
manitou
Date:
Sat Jun 24 19:41:42 2017 +0000
Revision:
3:d12c34704b6d
Parent:
0:bcd16e4a0207
format/indent

Who changed what in which revision?

UserRevisionLine numberNew contents of line
manitou 0:bcd16e4a0207 1 #ifndef _ENGLISH_
manitou 0:bcd16e4a0207 2 #define _ENGLISH_
manitou 0:bcd16e4a0207 3
manitou 0:bcd16e4a0207 4
manitou 0:bcd16e4a0207 5 /******************************************************************************
manitou 0:bcd16e4a0207 6 * Definitions
manitou 0:bcd16e4a0207 7 ******************************************************************************/
manitou 0:bcd16e4a0207 8 // neutralize AVR PROGMEM stuff
manitou 0:bcd16e4a0207 9 #define PROGMEM
manitou 0:bcd16e4a0207 10 #define pgm_read_byte(addr) (*(const unsigned char *)(addr))
manitou 0:bcd16e4a0207 11 #define pgm_read_word(addr) ({ \
manitou 0:bcd16e4a0207 12 typeof(addr) _addr = (addr); \
manitou 0:bcd16e4a0207 13 *(const unsigned short *)(_addr); \
manitou 0:bcd16e4a0207 14 })
manitou 0:bcd16e4a0207 15
manitou 0:bcd16e4a0207 16 typedef uint8_t byte;
manitou 0:bcd16e4a0207 17 typedef bool boolean;
manitou 0:bcd16e4a0207 18
manitou 0:bcd16e4a0207 19
manitou 0:bcd16e4a0207 20 #ifndef TRUE
manitou 0:bcd16e4a0207 21 #define FALSE 0
manitou 0:bcd16e4a0207 22 #define TRUE -1
manitou 0:bcd16e4a0207 23 #endif
manitou 0:bcd16e4a0207 24
manitou 0:bcd16e4a0207 25 #define numVocab sizeof(s_vocab)/sizeof(VOCAB)
manitou 0:bcd16e4a0207 26 #define numPhoneme sizeof(s_phonemes)/sizeof(PHONEME)
manitou 0:bcd16e4a0207 27
manitou 0:bcd16e4a0207 28 typedef struct Vocab {
manitou 0:bcd16e4a0207 29 const char* txt;
manitou 0:bcd16e4a0207 30 const char* phoneme;
manitou 0:bcd16e4a0207 31 } VOCAB;
manitou 0:bcd16e4a0207 32
manitou 0:bcd16e4a0207 33 typedef struct Phoneme {
manitou 0:bcd16e4a0207 34 const char* txt;
manitou 0:bcd16e4a0207 35 const char* phoneme;
manitou 0:bcd16e4a0207 36 uint8_t attenuate;
manitou 0:bcd16e4a0207 37 } PHONEME;
manitou 0:bcd16e4a0207 38
manitou 0:bcd16e4a0207 39 typedef struct strSoundIndex{
manitou 0:bcd16e4a0207 40 uint8_t SoundNumber;
manitou 0:bcd16e4a0207 41 int8_t byte1;
manitou 0:bcd16e4a0207 42 uint8_t byte2;
manitou 0:bcd16e4a0207 43 } SOUND_INDEX;
manitou 0:bcd16e4a0207 44
manitou 0:bcd16e4a0207 45 /*
manitou 0:bcd16e4a0207 46 * Define vocabulary and phonemes for English
manitou 0:bcd16e4a0207 47 *
manitou 0:bcd16e4a0207 48 */
manitou 0:bcd16e4a0207 49
manitou 0:bcd16e4a0207 50 static const char v1a[] PROGMEM="OUS_";
manitou 0:bcd16e4a0207 51 static const char v1b[] PROGMEM="/U5S";
manitou 0:bcd16e4a0207 52
manitou 0:bcd16e4a0207 53 static const char v2a[] PROGMEM="I#Y";
manitou 0:bcd16e4a0207 54 static const char v2b[] PROGMEM="IY#EE";
manitou 0:bcd16e4a0207 55
manitou 0:bcd16e4a0207 56 static const char v3a[] PROGMEM=" #ERE";
manitou 0:bcd16e4a0207 57 static const char v3b[] PROGMEM=" #EE5ER";
manitou 0:bcd16e4a0207 58
manitou 0:bcd16e4a0207 59 static const char v4a[] PROGMEM="GTH_";
manitou 0:bcd16e4a0207 60 static const char v4b[] PROGMEM="TH";
manitou 0:bcd16e4a0207 61
manitou 0:bcd16e4a0207 62 static const char v5a[] PROGMEM="NGER";
manitou 0:bcd16e4a0207 63 static const char v5b[] PROGMEM="NXGER";
manitou 0:bcd16e4a0207 64
manitou 0:bcd16e4a0207 65 static const char v6a[] PROGMEM="AGE_";
manitou 0:bcd16e4a0207 66 static const char v6b[] PROGMEM="AYJ";
manitou 0:bcd16e4a0207 67
manitou 0:bcd16e4a0207 68 static const char v7a[] PROGMEM="BBC";
manitou 0:bcd16e4a0207 69 static const char v7b[] PROGMEM="BEE5%%BEESEE";
manitou 0:bcd16e4a0207 70
manitou 0:bcd16e4a0207 71 static const char v8a[] PROGMEM="MICRO";
manitou 0:bcd16e4a0207 72 static const char v8b[] PROGMEM="MIY5KROW";
manitou 0:bcd16e4a0207 73
manitou 0:bcd16e4a0207 74 static const char v9a[] PROGMEM="O#U";
manitou 0:bcd16e4a0207 75 static const char v9b[] PROGMEM="OW5#";
manitou 0:bcd16e4a0207 76
manitou 0:bcd16e4a0207 77 static const char v10a[] PROGMEM="AUGH";
manitou 0:bcd16e4a0207 78 static const char v10b[] PROGMEM="AA5F";
manitou 0:bcd16e4a0207 79
manitou 0:bcd16e4a0207 80 static const char v11a[] PROGMEM="KN";
manitou 0:bcd16e4a0207 81 static const char v11b[] PROGMEM="N";
manitou 0:bcd16e4a0207 82
manitou 0:bcd16e4a0207 83 static const char v12a[] PROGMEM="#EY_";
manitou 0:bcd16e4a0207 84 static const char v12b[] PROGMEM="#EEY";
manitou 0:bcd16e4a0207 85
manitou 0:bcd16e4a0207 86 static const char v13a[] PROGMEM=" OUGHT";
manitou 0:bcd16e4a0207 87 static const char v13b[] PROGMEM="AO4T";
manitou 0:bcd16e4a0207 88
manitou 0:bcd16e4a0207 89 static const char v14a[] PROGMEM="XC";
manitou 0:bcd16e4a0207 90 static const char v14b[] PROGMEM="KS";
manitou 0:bcd16e4a0207 91
manitou 0:bcd16e4a0207 92 static const char v15a[] PROGMEM="YS";
manitou 0:bcd16e4a0207 93 static const char v15b[] PROGMEM="IH4S";
manitou 0:bcd16e4a0207 94
manitou 0:bcd16e4a0207 95 static const char v16a[] PROGMEM=" #OUGH_";
manitou 0:bcd16e4a0207 96 static const char v16b[] PROGMEM=" #AHF";
manitou 0:bcd16e4a0207 97
manitou 0:bcd16e4a0207 98 static const char v17a[] PROGMEM="ERY_";
manitou 0:bcd16e4a0207 99 static const char v17b[] PROGMEM="EH4REE";
manitou 0:bcd16e4a0207 100
manitou 0:bcd16e4a0207 101 static const char v18a[] PROGMEM="OUGH_";
manitou 0:bcd16e4a0207 102 static const char v18b[] PROGMEM="OH5W";
manitou 0:bcd16e4a0207 103
manitou 0:bcd16e4a0207 104 static const char v19a[] PROGMEM=" SCI";
manitou 0:bcd16e4a0207 105 static const char v19b[] PROGMEM=" SIY";
manitou 0:bcd16e4a0207 106
manitou 0:bcd16e4a0207 107 static const char v20a[] PROGMEM="CHN";
manitou 0:bcd16e4a0207 108 static const char v20b[] PROGMEM="KN";
manitou 0:bcd16e4a0207 109
manitou 0:bcd16e4a0207 110 static const char v21a[] PROGMEM="OGY";
manitou 0:bcd16e4a0207 111 static const char v21b[] PROGMEM="OJEE";
manitou 0:bcd16e4a0207 112
manitou 0:bcd16e4a0207 113 static const char v22a[] PROGMEM="IRO";
manitou 0:bcd16e4a0207 114 static const char v22b[] PROGMEM="IYRO";
manitou 0:bcd16e4a0207 115
manitou 0:bcd16e4a0207 116 static const char v23a[] PROGMEM="SUPERIOR";
manitou 0:bcd16e4a0207 117 static const char v23b[] PROGMEM="SUX4PEE5RIHAOR";
manitou 0:bcd16e4a0207 118
manitou 0:bcd16e4a0207 119 static const char v24a[] PROGMEM="CI";
manitou 0:bcd16e4a0207 120 static const char v24b[] PROGMEM="SIH";
manitou 0:bcd16e4a0207 121
manitou 0:bcd16e4a0207 122 static const char v25a[] PROGMEM="TCH";
manitou 0:bcd16e4a0207 123 static const char v25b[] PROGMEM="CH";
manitou 0:bcd16e4a0207 124
manitou 0:bcd16e4a0207 125 static const char v26a[] PROGMEM="GHOTI";
manitou 0:bcd16e4a0207 126 static const char v26b[] PROGMEM="FIH4SH";
manitou 0:bcd16e4a0207 127
manitou 0:bcd16e4a0207 128 static const char v27a[] PROGMEM="UE_";
manitou 0:bcd16e4a0207 129 static const char v27b[] PROGMEM="UW6";
manitou 0:bcd16e4a0207 130
manitou 0:bcd16e4a0207 131 static const char v28a[] PROGMEM=" YES_";
manitou 0:bcd16e4a0207 132 static const char v28b[] PROGMEM=" YEH5S";
manitou 0:bcd16e4a0207 133
manitou 0:bcd16e4a0207 134 static const char v29a[] PROGMEM="GUE_";
manitou 0:bcd16e4a0207 135 static const char v29b[] PROGMEM="G";
manitou 0:bcd16e4a0207 136
manitou 0:bcd16e4a0207 137 static const char v30a[] PROGMEM="URE_";
manitou 0:bcd16e4a0207 138 static const char v30b[] PROGMEM="UH5R";
manitou 0:bcd16e4a0207 139
manitou 0:bcd16e4a0207 140 static const char v31a[] PROGMEM="UY";
manitou 0:bcd16e4a0207 141 static const char v31b[] PROGMEM="IY5";
manitou 0:bcd16e4a0207 142
manitou 0:bcd16e4a0207 143 static const char v32a[] PROGMEM="OUGH";
manitou 0:bcd16e4a0207 144 static const char v32b[] PROGMEM="AH";
manitou 0:bcd16e4a0207 145
manitou 0:bcd16e4a0207 146 static const char v33a[] PROGMEM=" #IE";
manitou 0:bcd16e4a0207 147 static const char v33b[] PROGMEM=" #IY";
manitou 0:bcd16e4a0207 148
manitou 0:bcd16e4a0207 149 static const char v34a[] PROGMEM="OLE_";
manitou 0:bcd16e4a0207 150 static const char v34b[] PROGMEM="OW4L";
manitou 0:bcd16e4a0207 151
manitou 0:bcd16e4a0207 152 static const char v35a[] PROGMEM=" ABLE";
manitou 0:bcd16e4a0207 153 static const char v35b[] PROGMEM=" AY5BL";
manitou 0:bcd16e4a0207 154
manitou 0:bcd16e4a0207 155 static const char v36[] PROGMEM="IY";
manitou 0:bcd16e4a0207 156
manitou 0:bcd16e4a0207 157 static const char v37a[] PROGMEM="AIGH";
manitou 0:bcd16e4a0207 158 static const char v37b[] PROGMEM="AY";
manitou 0:bcd16e4a0207 159
manitou 0:bcd16e4a0207 160 static const char v38a[] PROGMEM="ABLE";
manitou 0:bcd16e4a0207 161 static const char v38b[] PROGMEM="AHB/UL";
manitou 0:bcd16e4a0207 162
manitou 0:bcd16e4a0207 163 static const char v39a[] PROGMEM="CHR";
manitou 0:bcd16e4a0207 164 static const char v39b[] PROGMEM="KR";
manitou 0:bcd16e4a0207 165
manitou 0:bcd16e4a0207 166 static const char v40a[] PROGMEM="ITLE";
manitou 0:bcd16e4a0207 167 static const char v40b[] PROGMEM="IYT/UL";
manitou 0:bcd16e4a0207 168
manitou 0:bcd16e4a0207 169 static const char v41a[] PROGMEM="A#I";
manitou 0:bcd16e4a0207 170 static const char v41b[] PROGMEM="AY5#";
manitou 0:bcd16e4a0207 171
manitou 0:bcd16e4a0207 172 static const char v42a[] PROGMEM="SHALL";
manitou 0:bcd16e4a0207 173 static const char v42b[] PROGMEM="SHAEL";
manitou 0:bcd16e4a0207 174
manitou 0:bcd16e4a0207 175 static const char v43a[] PROGMEM="ARE";
manitou 0:bcd16e4a0207 176 static const char v43b[] PROGMEM="AI5R";
manitou 0:bcd16e4a0207 177
manitou 0:bcd16e4a0207 178 static const char v44a[] PROGMEM="A_";
manitou 0:bcd16e4a0207 179 static const char v44b[] PROGMEM="AH";
manitou 0:bcd16e4a0207 180
manitou 0:bcd16e4a0207 181 static const char v45a[] PROGMEM="OE";
manitou 0:bcd16e4a0207 182 static const char v45b[] PROGMEM="OW5";
manitou 0:bcd16e4a0207 183
manitou 0:bcd16e4a0207 184 static const char v46a[] PROGMEM="ANGE_";
manitou 0:bcd16e4a0207 185 static const char v46b[] PROGMEM="AY4NJ";
manitou 0:bcd16e4a0207 186
manitou 0:bcd16e4a0207 187 static const char v47a[] PROGMEM="ANGE";
manitou 0:bcd16e4a0207 188 static const char v47b[] PROGMEM="AY4NJ/U";
manitou 0:bcd16e4a0207 189
manitou 0:bcd16e4a0207 190 static const char v48[] PROGMEM="/U";
manitou 0:bcd16e4a0207 191
manitou 0:bcd16e4a0207 192 static const char v49a[] PROGMEM=" GET";
manitou 0:bcd16e4a0207 193 static const char v49b[] PROGMEM=" GEHT";
manitou 0:bcd16e4a0207 194
manitou 0:bcd16e4a0207 195 static const char v50a[] PROGMEM="IED";
manitou 0:bcd16e4a0207 196 static const char v50b[] PROGMEM="AY5D";
manitou 0:bcd16e4a0207 197
manitou 0:bcd16e4a0207 198 static const char v51a[] PROGMEM="ALLY";
manitou 0:bcd16e4a0207 199 static const char v51b[] PROGMEM="AE4LEE";
manitou 0:bcd16e4a0207 200
manitou 0:bcd16e4a0207 201 static const char v52a[] PROGMEM="A#A";
manitou 0:bcd16e4a0207 202 static const char v52b[] PROGMEM="AY#";
manitou 0:bcd16e4a0207 203
manitou 0:bcd16e4a0207 204 static const char v53a[] PROGMEM="REAT";
manitou 0:bcd16e4a0207 205 static const char v53b[] PROGMEM="RAY5T";
manitou 0:bcd16e4a0207 206
manitou 0:bcd16e4a0207 207 static const char v54a[] PROGMEM="COME_";
manitou 0:bcd16e4a0207 208 static const char v54b[] PROGMEM="KAHM";
manitou 0:bcd16e4a0207 209
manitou 0:bcd16e4a0207 210 static const char v55a[] PROGMEM="OULD_";
manitou 0:bcd16e4a0207 211 static const char v55b[] PROGMEM="UH5D";
manitou 0:bcd16e4a0207 212
manitou 0:bcd16e4a0207 213 static const char v56a[] PROGMEM=" ANY";
manitou 0:bcd16e4a0207 214 static const char v56b[] PROGMEM=" EH4NEE";
manitou 0:bcd16e4a0207 215
manitou 0:bcd16e4a0207 216 static const char v57a[] PROGMEM="O#O";
manitou 0:bcd16e4a0207 217 static const char v57b[] PROGMEM="OW4#";
manitou 0:bcd16e4a0207 218
manitou 0:bcd16e4a0207 219 static const char v58a[] PROGMEM="O#A";
manitou 0:bcd16e4a0207 220 static const char v58b[] PROGMEM="OW4#";
manitou 0:bcd16e4a0207 221
manitou 0:bcd16e4a0207 222 static const char v59a[] PROGMEM="A#E";
manitou 0:bcd16e4a0207 223 static const char v59b[] PROGMEM="AY6#";
manitou 0:bcd16e4a0207 224
manitou 0:bcd16e4a0207 225 static const char v60a[] PROGMEM="I#E";
manitou 0:bcd16e4a0207 226 static const char v60b[] PROGMEM="IY5#";
manitou 0:bcd16e4a0207 227
manitou 0:bcd16e4a0207 228 static const char v61a[] PROGMEM="A#O";
manitou 0:bcd16e4a0207 229 static const char v61b[] PROGMEM="AY#";
manitou 0:bcd16e4a0207 230
manitou 0:bcd16e4a0207 231 static const char v62a[] PROGMEM="O#E";
manitou 0:bcd16e4a0207 232 static const char v62b[] PROGMEM="OW5#";
manitou 0:bcd16e4a0207 233
manitou 0:bcd16e4a0207 234 static const char v63a[] PROGMEM="U#E";
manitou 0:bcd16e4a0207 235 static const char v63b[] PROGMEM="IHUW5#";
manitou 0:bcd16e4a0207 236
manitou 0:bcd16e4a0207 237 static const char v64a[] PROGMEM="U#A";
manitou 0:bcd16e4a0207 238 static const char v64b[] PROGMEM="UXW#";
manitou 0:bcd16e4a0207 239
manitou 0:bcd16e4a0207 240 static const char v65a[] PROGMEM="TU#E";
manitou 0:bcd16e4a0207 241 static const char v65b[] PROGMEM="CHUW#";
manitou 0:bcd16e4a0207 242
manitou 0:bcd16e4a0207 243 static const char v66a[] PROGMEM=" U#E";
manitou 0:bcd16e4a0207 244 static const char v66b[] PROGMEM=" YUXW#";
manitou 0:bcd16e4a0207 245
manitou 0:bcd16e4a0207 246 static const char v67a[] PROGMEM="IE";
manitou 0:bcd16e4a0207 247 static const char v67b[] PROGMEM="EE";
manitou 0:bcd16e4a0207 248
manitou 0:bcd16e4a0207 249 static const char v68a[] PROGMEM="U#I";
manitou 0:bcd16e4a0207 250 static const char v68b[] PROGMEM="YUXW#";
manitou 0:bcd16e4a0207 251
manitou 0:bcd16e4a0207 252 static const char v69a[] PROGMEM="OOK";
manitou 0:bcd16e4a0207 253 static const char v69b[] PROGMEM="UH5K";
manitou 0:bcd16e4a0207 254
manitou 0:bcd16e4a0207 255 static const char v70a[] PROGMEM="COW";
manitou 0:bcd16e4a0207 256 static const char v70b[] PROGMEM="KAW";
manitou 0:bcd16e4a0207 257
manitou 0:bcd16e4a0207 258 static const char v71a[] PROGMEM="NGS_";
manitou 0:bcd16e4a0207 259 static const char v71b[] PROGMEM="NXZ";
manitou 0:bcd16e4a0207 260
manitou 0:bcd16e4a0207 261 static const char v72a[] PROGMEM="STION";
manitou 0:bcd16e4a0207 262 static const char v72b[] PROGMEM="S%CH/UN";
manitou 0:bcd16e4a0207 263
manitou 0:bcd16e4a0207 264 static const char v73a[] PROGMEM="GOO";
manitou 0:bcd16e4a0207 265 static const char v73b[] PROGMEM="GUH4";
manitou 0:bcd16e4a0207 266
manitou 0:bcd16e4a0207 267 static const char v74a[] PROGMEM="HOW";
manitou 0:bcd16e4a0207 268 static const char v74b[] PROGMEM="/HAW4";
manitou 0:bcd16e4a0207 269
manitou 0:bcd16e4a0207 270 static const char v75a[] PROGMEM="NOW";
manitou 0:bcd16e4a0207 271 static const char v75b[] PROGMEM="NAW";
manitou 0:bcd16e4a0207 272
manitou 0:bcd16e4a0207 273 static const char v76a[] PROGMEM="POW";
manitou 0:bcd16e4a0207 274 static const char v76b[] PROGMEM="PAW5";
manitou 0:bcd16e4a0207 275
manitou 0:bcd16e4a0207 276 static const char v77a[] PROGMEM="ERR";
manitou 0:bcd16e4a0207 277 static const char v77b[] PROGMEM="EH4R";
manitou 0:bcd16e4a0207 278
manitou 0:bcd16e4a0207 279 static const char v78a[] PROGMEM="DOW";
manitou 0:bcd16e4a0207 280 static const char v78b[] PROGMEM="DAW4";
manitou 0:bcd16e4a0207 281
manitou 0:bcd16e4a0207 282 static const char v79a[] PROGMEM="SES_";
manitou 0:bcd16e4a0207 283 static const char v79b[] PROGMEM="SIXZ";
manitou 0:bcd16e4a0207 284
manitou 0:bcd16e4a0207 285 static const char v80a[] PROGMEM="PROG";
manitou 0:bcd16e4a0207 286 static const char v80b[] PROGMEM="PROW4G";
manitou 0:bcd16e4a0207 287
manitou 0:bcd16e4a0207 288 static const char v81a[] PROGMEM="NGE";
manitou 0:bcd16e4a0207 289 static const char v81b[] PROGMEM="NJ";
manitou 0:bcd16e4a0207 290
manitou 0:bcd16e4a0207 291 static const char v82a[] PROGMEM="DO_";
manitou 0:bcd16e4a0207 292 static const char v82b[] PROGMEM="DUH4W";
manitou 0:bcd16e4a0207 293
manitou 0:bcd16e4a0207 294 static const char v83a[] PROGMEM="OU";
manitou 0:bcd16e4a0207 295 static const char v83b[] PROGMEM="AE4UX";
manitou 0:bcd16e4a0207 296
manitou 0:bcd16e4a0207 297 static const char v84a[] PROGMEM=" OUR";
manitou 0:bcd16e4a0207 298 static const char v84b[] PROGMEM=" AW5R";
manitou 0:bcd16e4a0207 299
manitou 0:bcd16e4a0207 300 static const char v85a[] PROGMEM="OUR";
manitou 0:bcd16e4a0207 301 static const char v85b[] PROGMEM="AO5R";
manitou 0:bcd16e4a0207 302
manitou 0:bcd16e4a0207 303 static const char v86a[] PROGMEM=" ONE";
manitou 0:bcd16e4a0207 304 static const char v86b[] PROGMEM=" WO4N";
manitou 0:bcd16e4a0207 305
manitou 0:bcd16e4a0207 306 static const char v87a[] PROGMEM="AU";
manitou 0:bcd16e4a0207 307 static const char v87b[] PROGMEM="AO5";
manitou 0:bcd16e4a0207 308
manitou 0:bcd16e4a0207 309 static const char v88a[] PROGMEM="OIC";
manitou 0:bcd16e4a0207 310 static const char v88b[] PROGMEM="OYS";
manitou 0:bcd16e4a0207 311
manitou 0:bcd16e4a0207 312 static const char v89a[] PROGMEM="O_";
manitou 0:bcd16e4a0207 313 static const char v89b[] PROGMEM="OW";
manitou 0:bcd16e4a0207 314
manitou 0:bcd16e4a0207 315 static const char v90a[] PROGMEM="AVI";
manitou 0:bcd16e4a0207 316 static const char v90b[] PROGMEM="AY4VIX";
manitou 0:bcd16e4a0207 317
manitou 0:bcd16e4a0207 318 static const char v91a[] PROGMEM="ES_";
manitou 0:bcd16e4a0207 319 static const char v91b[] PROGMEM="S";
manitou 0:bcd16e4a0207 320
manitou 0:bcd16e4a0207 321 static const char v92a[] PROGMEM="ULL";
manitou 0:bcd16e4a0207 322 static const char v92b[] PROGMEM="UH5L";
manitou 0:bcd16e4a0207 323
manitou 0:bcd16e4a0207 324 static const char v93[] PROGMEM="UH";
manitou 0:bcd16e4a0207 325
manitou 0:bcd16e4a0207 326 static const char v94a[] PROGMEM="FOOT";
manitou 0:bcd16e4a0207 327 static const char v94b[] PROGMEM="FUH4T";
manitou 0:bcd16e4a0207 328
manitou 0:bcd16e4a0207 329 static const char v95a[] PROGMEM="UL_";
manitou 0:bcd16e4a0207 330 static const char v95b[] PROGMEM="/UL";
manitou 0:bcd16e4a0207 331
manitou 0:bcd16e4a0207 332 static const char v96a[] PROGMEM="EFUL_";
manitou 0:bcd16e4a0207 333 static const char v96b[] PROGMEM="F/UL";
manitou 0:bcd16e4a0207 334
manitou 0:bcd16e4a0207 335 static const char v97a[] PROGMEM="EASE_";
manitou 0:bcd16e4a0207 336 static const char v97b[] PROGMEM="EEZ";
manitou 0:bcd16e4a0207 337
manitou 0:bcd16e4a0207 338 static const char v98a[] PROGMEM="DG";
manitou 0:bcd16e4a0207 339 static const char v98b[] PROGMEM="J";
manitou 0:bcd16e4a0207 340
manitou 0:bcd16e4a0207 341 static const char v99a[] PROGMEM="OA";
manitou 0:bcd16e4a0207 342 static const char v99b[] PROGMEM="OH5W";
manitou 0:bcd16e4a0207 343
manitou 0:bcd16e4a0207 344 static const char v100a[] PROGMEM="GEN";
manitou 0:bcd16e4a0207 345 static const char v100b[] PROGMEM="JEH5N";
manitou 0:bcd16e4a0207 346
manitou 0:bcd16e4a0207 347 static const char v101a[] PROGMEM="LE_";
manitou 0:bcd16e4a0207 348 static const char v101b[] PROGMEM="/UL";
manitou 0:bcd16e4a0207 349
manitou 0:bcd16e4a0207 350 static const char v102a[] PROGMEM="YPE";
manitou 0:bcd16e4a0207 351 static const char v102b[] PROGMEM="IY4P";
manitou 0:bcd16e4a0207 352
manitou 0:bcd16e4a0207 353 static const char v103a[] PROGMEM="TLE";
manitou 0:bcd16e4a0207 354 static const char v103b[] PROGMEM="TL";
manitou 0:bcd16e4a0207 355
manitou 0:bcd16e4a0207 356 static const char v104a[] PROGMEM="IGI";
manitou 0:bcd16e4a0207 357 static const char v104b[] PROGMEM="IX4JIH";
manitou 0:bcd16e4a0207 358
manitou 0:bcd16e4a0207 359 static const char v105a[] PROGMEM="WHO";
manitou 0:bcd16e4a0207 360 static const char v105b[] PROGMEM="/HUHW";
manitou 0:bcd16e4a0207 361
manitou 0:bcd16e4a0207 362 static const char v106a[] PROGMEM="NION";
manitou 0:bcd16e4a0207 363 static const char v106b[] PROGMEM="NIX/UN";
manitou 0:bcd16e4a0207 364
manitou 0:bcd16e4a0207 365 static const char v107a[] PROGMEM="WAS_";
manitou 0:bcd16e4a0207 366 static const char v107b[] PROGMEM="WOZ";
manitou 0:bcd16e4a0207 367
manitou 0:bcd16e4a0207 368 static const char v108a[] PROGMEM="ORE_";
manitou 0:bcd16e4a0207 369 static const char v108b[] PROGMEM="AO4R";
manitou 0:bcd16e4a0207 370
manitou 0:bcd16e4a0207 371 static const char v109a[] PROGMEM=" TO_";
manitou 0:bcd16e4a0207 372 static const char v109b[] PROGMEM=" TUX5";
manitou 0:bcd16e4a0207 373
manitou 0:bcd16e4a0207 374 static const char v110a[] PROGMEM="ALK";
manitou 0:bcd16e4a0207 375 static const char v110b[] PROGMEM="AORK";
manitou 0:bcd16e4a0207 376
manitou 0:bcd16e4a0207 377 static const char v111a[] PROGMEM=" BE_";
manitou 0:bcd16e4a0207 378 static const char v111b[] PROGMEM="BEE5";
manitou 0:bcd16e4a0207 379
manitou 0:bcd16e4a0207 380 static const char v112a[] PROGMEM="TIO";
manitou 0:bcd16e4a0207 381 static const char v112b[] PROGMEM="SHAH";
manitou 0:bcd16e4a0207 382
manitou 0:bcd16e4a0207 383 static const char v113a[] PROGMEM="YE_";
manitou 0:bcd16e4a0207 384 static const char v113b[] PROGMEM="IY";
manitou 0:bcd16e4a0207 385
manitou 0:bcd16e4a0207 386 static const char v114a[] PROGMEM="AR";
manitou 0:bcd16e4a0207 387 static const char v114b[] PROGMEM="AA5";
manitou 0:bcd16e4a0207 388
manitou 0:bcd16e4a0207 389 static const char v115a[] PROGMEM="AF";
manitou 0:bcd16e4a0207 390 static const char v115b[] PROGMEM="AA4F";
manitou 0:bcd16e4a0207 391
manitou 0:bcd16e4a0207 392 static const char v116a[] PROGMEM="AST";
manitou 0:bcd16e4a0207 393 static const char v116b[] PROGMEM="AA6ST";
manitou 0:bcd16e4a0207 394
manitou 0:bcd16e4a0207 395 static const char v117a[] PROGMEM="E_";
manitou 0:bcd16e4a0207 396 static const char v117b[] PROGMEM="%";
manitou 0:bcd16e4a0207 397
manitou 0:bcd16e4a0207 398 static const char v118a[] PROGMEM="GHO";
manitou 0:bcd16e4a0207 399 static const char v118b[] PROGMEM="GOH4W";
manitou 0:bcd16e4a0207 400
manitou 0:bcd16e4a0207 401 static const char v119a[] PROGMEM="AZY";
manitou 0:bcd16e4a0207 402 static const char v119b[] PROGMEM="AY5ZEE";
manitou 0:bcd16e4a0207 403
manitou 0:bcd16e4a0207 404 static const char v120a[] PROGMEM="WHA";
manitou 0:bcd16e4a0207 405 static const char v120b[] PROGMEM="WO5";
manitou 0:bcd16e4a0207 406
manitou 0:bcd16e4a0207 407 static const char v121a[] PROGMEM="WAT";
manitou 0:bcd16e4a0207 408 static const char v121b[] PROGMEM="WAO6T";
manitou 0:bcd16e4a0207 409
manitou 0:bcd16e4a0207 410 static const char v122a[] PROGMEM="ALL";
manitou 0:bcd16e4a0207 411 static const char v122b[] PROGMEM="AO4L";
manitou 0:bcd16e4a0207 412
manitou 0:bcd16e4a0207 413 static const char v123a[] PROGMEM=" OF_";
manitou 0:bcd16e4a0207 414 static const char v123b[] PROGMEM=" O5V";
manitou 0:bcd16e4a0207 415
manitou 0:bcd16e4a0207 416 static const char v124a[] PROGMEM="SS";
manitou 0:bcd16e4a0207 417 static const char v124b[] PROGMEM="S";
manitou 0:bcd16e4a0207 418
manitou 0:bcd16e4a0207 419 static const char v125a[] PROGMEM="FF";
manitou 0:bcd16e4a0207 420 static const char v125b[] PROGMEM="F";
manitou 0:bcd16e4a0207 421
manitou 0:bcd16e4a0207 422 static const char v126a[] PROGMEM="CE_";
manitou 0:bcd16e4a0207 423 static const char v126b[] PROGMEM="S";
manitou 0:bcd16e4a0207 424
manitou 0:bcd16e4a0207 425 static const char v127a[] PROGMEM="CE";
manitou 0:bcd16e4a0207 426 static const char v127b[] PROGMEM="SEH4";
manitou 0:bcd16e4a0207 427
manitou 0:bcd16e4a0207 428 static const char v128a[] PROGMEM="TIA";
manitou 0:bcd16e4a0207 429 static const char v128b[] PROGMEM="SHIX/U";
manitou 0:bcd16e4a0207 430
manitou 0:bcd16e4a0207 431 static const char v129a[] PROGMEM=" A_";
manitou 0:bcd16e4a0207 432 static const char v129b[] PROGMEM=" AY";
manitou 0:bcd16e4a0207 433
manitou 0:bcd16e4a0207 434 static const char v130a[] PROGMEM="MB_";
manitou 0:bcd16e4a0207 435 static const char v130b[] PROGMEM="M";
manitou 0:bcd16e4a0207 436
manitou 0:bcd16e4a0207 437 static const char v131a[] PROGMEM="A#Y";
manitou 0:bcd16e4a0207 438 static const char v131b[] PROGMEM="AIIX#EE";
manitou 0:bcd16e4a0207 439
manitou 0:bcd16e4a0207 440 static const char v132a[] PROGMEM="THE_";
manitou 0:bcd16e4a0207 441 static const char v132b[] PROGMEM="DH/U%";
manitou 0:bcd16e4a0207 442
manitou 0:bcd16e4a0207 443 static const char v133a[] PROGMEM=" ARE_";
manitou 0:bcd16e4a0207 444 static const char v133b[] PROGMEM=" AA5R";
manitou 0:bcd16e4a0207 445
manitou 0:bcd16e4a0207 446 static const char v134a[] PROGMEM="Y_";
manitou 0:bcd16e4a0207 447 static const char v134b[] PROGMEM="EE";
manitou 0:bcd16e4a0207 448
manitou 0:bcd16e4a0207 449 static const char v135a[] PROGMEM="SIO";
manitou 0:bcd16e4a0207 450 static const char v135b[] PROGMEM="ZH/U";
manitou 0:bcd16e4a0207 451
manitou 0:bcd16e4a0207 452 static const char v136a[] PROGMEM=" I_";
manitou 0:bcd16e4a0207 453 static const char v136b[] PROGMEM=" IY6";
manitou 0:bcd16e4a0207 454
manitou 0:bcd16e4a0207 455 static const char v137[] PROGMEM="OW";
manitou 0:bcd16e4a0207 456
manitou 0:bcd16e4a0207 457 static const char v138[] PROGMEM="AW";
manitou 0:bcd16e4a0207 458
manitou 0:bcd16e4a0207 459 static const char v139a[] PROGMEM="WH";
manitou 0:bcd16e4a0207 460 static const char v139b[] PROGMEM="W";
manitou 0:bcd16e4a0207 461
manitou 0:bcd16e4a0207 462 static const char v140[] PROGMEM="T";
manitou 0:bcd16e4a0207 463
manitou 0:bcd16e4a0207 464 static const char v141a[] PROGMEM=" WOR";
manitou 0:bcd16e4a0207 465 static const char v141b[] PROGMEM=" WER5";
manitou 0:bcd16e4a0207 466
manitou 0:bcd16e4a0207 467 static const char v142a[] PROGMEM="WR";
manitou 0:bcd16e4a0207 468 static const char v142b[] PROGMEM="R";
manitou 0:bcd16e4a0207 469
manitou 0:bcd16e4a0207 470 static const char v143a[] PROGMEM="ISM";
manitou 0:bcd16e4a0207 471 static const char v143b[] PROGMEM="IX5Z/UM";
manitou 0:bcd16e4a0207 472
manitou 0:bcd16e4a0207 473 static const char v144a[] PROGMEM=" ME_";
manitou 0:bcd16e4a0207 474 static const char v144b[] PROGMEM=" MEE5";
manitou 0:bcd16e4a0207 475
manitou 0:bcd16e4a0207 476 static const char v145[] PROGMEM="G";
manitou 0:bcd16e4a0207 477
manitou 0:bcd16e4a0207 478 static const char v146[] PROGMEM="D";
manitou 0:bcd16e4a0207 479
manitou 0:bcd16e4a0207 480 static const char v147[] PROGMEM="P";
manitou 0:bcd16e4a0207 481
manitou 0:bcd16e4a0207 482 static const char v148[] PROGMEM="B";
manitou 0:bcd16e4a0207 483
manitou 0:bcd16e4a0207 484 static const char v149a[] PROGMEM="WOO";
manitou 0:bcd16e4a0207 485 static const char v149b[] PROGMEM="WUH";
manitou 0:bcd16e4a0207 486
manitou 0:bcd16e4a0207 487 static const char v150a[] PROGMEM=" GI";
manitou 0:bcd16e4a0207 488 static const char v150b[] PROGMEM=" JIY";
manitou 0:bcd16e4a0207 489
manitou 0:bcd16e4a0207 490 static const char v151a[] PROGMEM="YOU_";
manitou 0:bcd16e4a0207 491 static const char v151b[] PROGMEM="YUW";
manitou 0:bcd16e4a0207 492
manitou 0:bcd16e4a0207 493 static const char v152a[] PROGMEM="AI";
manitou 0:bcd16e4a0207 494 static const char v152b[] PROGMEM="AY4";
manitou 0:bcd16e4a0207 495
manitou 0:bcd16e4a0207 496 static const char v153a[] PROGMEM="IGH";
manitou 0:bcd16e4a0207 497 static const char v153b[] PROGMEM="IY4";
manitou 0:bcd16e4a0207 498
manitou 0:bcd16e4a0207 499 static const char v154a[] PROGMEM="IR";
manitou 0:bcd16e4a0207 500 static const char v154b[] PROGMEM="ER6";
manitou 0:bcd16e4a0207 501
manitou 0:bcd16e4a0207 502 static const char v155a[] PROGMEM="UAL";
manitou 0:bcd16e4a0207 503 static const char v155b[] PROGMEM="Y/UL";
manitou 0:bcd16e4a0207 504
manitou 0:bcd16e4a0207 505 static const char v156a[] PROGMEM="EW";
manitou 0:bcd16e4a0207 506 static const char v156b[] PROGMEM="IHUW";
manitou 0:bcd16e4a0207 507
manitou 0:bcd16e4a0207 508 static const char v157a[] PROGMEM="UR";
manitou 0:bcd16e4a0207 509 static const char v157b[] PROGMEM="ER5R";
manitou 0:bcd16e4a0207 510
manitou 0:bcd16e4a0207 511 static const char v158a[] PROGMEM=" MY_";
manitou 0:bcd16e4a0207 512 static const char v158b[] PROGMEM=" MIY";
manitou 0:bcd16e4a0207 513
manitou 0:bcd16e4a0207 514 static const char v159a[] PROGMEM="A";
manitou 0:bcd16e4a0207 515 static const char v159b[] PROGMEM="AE";
manitou 0:bcd16e4a0207 516
manitou 0:bcd16e4a0207 517 static const char v160a[] PROGMEM="I";
manitou 0:bcd16e4a0207 518 static const char v160b[] PROGMEM="IH";
manitou 0:bcd16e4a0207 519
manitou 0:bcd16e4a0207 520 static const char v161[] PROGMEM="K";
manitou 0:bcd16e4a0207 521
manitou 0:bcd16e4a0207 522 static const char v162a[] PROGMEM="C";
manitou 0:bcd16e4a0207 523 static const char v162b[] PROGMEM="K";
manitou 0:bcd16e4a0207 524
manitou 0:bcd16e4a0207 525 static const char v163[] PROGMEM="W";
manitou 0:bcd16e4a0207 526
manitou 0:bcd16e4a0207 527 static const char v164[] PROGMEM="F";
manitou 0:bcd16e4a0207 528
manitou 0:bcd16e4a0207 529 static const char v165a[] PROGMEM="ZZ";
manitou 0:bcd16e4a0207 530 static const char v165b[] PROGMEM="Z";
manitou 0:bcd16e4a0207 531
manitou 0:bcd16e4a0207 532 static const char v166a[] PROGMEM="ORI";
manitou 0:bcd16e4a0207 533 static const char v166b[] PROGMEM="AORIX4";
manitou 0:bcd16e4a0207 534
manitou 0:bcd16e4a0207 535 static const char v167[] PROGMEM="S";
manitou 0:bcd16e4a0207 536
manitou 0:bcd16e4a0207 537 static const char v168[] PROGMEM="Z";
manitou 0:bcd16e4a0207 538
manitou 0:bcd16e4a0207 539 static const char v169[] PROGMEM="V";
manitou 0:bcd16e4a0207 540
manitou 0:bcd16e4a0207 541 static const char v170[] PROGMEM="L";
manitou 0:bcd16e4a0207 542
manitou 0:bcd16e4a0207 543 static const char v171[] PROGMEM="Y";
manitou 0:bcd16e4a0207 544
manitou 0:bcd16e4a0207 545 static const char v172[] PROGMEM="R";
manitou 0:bcd16e4a0207 546
manitou 0:bcd16e4a0207 547 static const char v173[] PROGMEM="M";
manitou 0:bcd16e4a0207 548
manitou 0:bcd16e4a0207 549 static const char v174[] PROGMEM="N";
manitou 0:bcd16e4a0207 550
manitou 0:bcd16e4a0207 551 static const char v175a[] PROGMEM="U";
manitou 0:bcd16e4a0207 552 static const char v175b[] PROGMEM="AH";
manitou 0:bcd16e4a0207 553
manitou 0:bcd16e4a0207 554 static const char v176[] PROGMEM="O";
manitou 0:bcd16e4a0207 555
manitou 0:bcd16e4a0207 556 static const char v177[] PROGMEM="J";
manitou 0:bcd16e4a0207 557
manitou 0:bcd16e4a0207 558 static const char v178a[] PROGMEM="H";
manitou 0:bcd16e4a0207 559 static const char v178b[] PROGMEM="/H";
manitou 0:bcd16e4a0207 560
manitou 0:bcd16e4a0207 561 static const char v179a[] PROGMEM="PH";
manitou 0:bcd16e4a0207 562 static const char v179b[] PROGMEM="F";
manitou 0:bcd16e4a0207 563
manitou 0:bcd16e4a0207 564 static const char v180a[] PROGMEM="EU";
manitou 0:bcd16e4a0207 565 static const char v180b[] PROGMEM="IHUH4";
manitou 0:bcd16e4a0207 566
manitou 0:bcd16e4a0207 567 static const char v181a[] PROGMEM="OO";
manitou 0:bcd16e4a0207 568 static const char v181b[] PROGMEM="UX";
manitou 0:bcd16e4a0207 569
manitou 0:bcd16e4a0207 570 static const char v182a[] PROGMEM="EE";
manitou 0:bcd16e4a0207 571 static const char v182b[] PROGMEM="EE6";
manitou 0:bcd16e4a0207 572
manitou 0:bcd16e4a0207 573 static const char v183a[] PROGMEM="MM";
manitou 0:bcd16e4a0207 574 static const char v183b[] PROGMEM="M";
manitou 0:bcd16e4a0207 575
manitou 0:bcd16e4a0207 576 static const char v184a[] PROGMEM="NN";
manitou 0:bcd16e4a0207 577 static const char v184b[] PROGMEM="N";
manitou 0:bcd16e4a0207 578
manitou 0:bcd16e4a0207 579 static const char v185[] PROGMEM="AIR";
manitou 0:bcd16e4a0207 580
manitou 0:bcd16e4a0207 581 static const char v186a[] PROGMEM="ERE";
manitou 0:bcd16e4a0207 582 static const char v186b[] PROGMEM="AIR";
manitou 0:bcd16e4a0207 583
manitou 0:bcd16e4a0207 584 static const char v187[] PROGMEM="ER";
manitou 0:bcd16e4a0207 585
manitou 0:bcd16e4a0207 586 static const char v188a[] PROGMEM="OR";
manitou 0:bcd16e4a0207 587 static const char v188b[] PROGMEM="AOR";
manitou 0:bcd16e4a0207 588
manitou 0:bcd16e4a0207 589 static const char v189a[] PROGMEM="LL";
manitou 0:bcd16e4a0207 590 static const char v189b[] PROGMEM="L";
manitou 0:bcd16e4a0207 591
manitou 0:bcd16e4a0207 592 static const char v190a[] PROGMEM="CK";
manitou 0:bcd16e4a0207 593 static const char v190b[] PROGMEM="K";
manitou 0:bcd16e4a0207 594
manitou 0:bcd16e4a0207 595 static const char v191a[] PROGMEM="E";
manitou 0:bcd16e4a0207 596 static const char v191b[] PROGMEM="EH";
manitou 0:bcd16e4a0207 597
manitou 0:bcd16e4a0207 598 static const char v192[] PROGMEM="TH";
manitou 0:bcd16e4a0207 599
manitou 0:bcd16e4a0207 600 static const char v193a[] PROGMEM="TT";
manitou 0:bcd16e4a0207 601 static const char v193b[] PROGMEM="T";
manitou 0:bcd16e4a0207 602
manitou 0:bcd16e4a0207 603 static const char v194[] PROGMEM="DH";
manitou 0:bcd16e4a0207 604
manitou 0:bcd16e4a0207 605 static const char v195a[] PROGMEM="NG_";
manitou 0:bcd16e4a0207 606 static const char v195b[] PROGMEM="NX";
manitou 0:bcd16e4a0207 607
manitou 0:bcd16e4a0207 608 static const char v196a[] PROGMEM="NG";
manitou 0:bcd16e4a0207 609 static const char v196b[] PROGMEM="NXG";
manitou 0:bcd16e4a0207 610
manitou 0:bcd16e4a0207 611 static const char v197a[] PROGMEM="QU";
manitou 0:bcd16e4a0207 612 static const char v197b[] PROGMEM="KW";
manitou 0:bcd16e4a0207 613
manitou 0:bcd16e4a0207 614 static const char v198[] PROGMEM="SH";
manitou 0:bcd16e4a0207 615
manitou 0:bcd16e4a0207 616 static const char v199[] PROGMEM="ZH";
manitou 0:bcd16e4a0207 617
manitou 0:bcd16e4a0207 618 static const char v200[] PROGMEM="OH";
manitou 0:bcd16e4a0207 619
manitou 0:bcd16e4a0207 620 static const char v201a[] PROGMEM="X";
manitou 0:bcd16e4a0207 621 static const char v201b[] PROGMEM="KS";
manitou 0:bcd16e4a0207 622
manitou 0:bcd16e4a0207 623 static const char v202[] PROGMEM="CH";
manitou 0:bcd16e4a0207 624
manitou 0:bcd16e4a0207 625 static const char v203a[] PROGMEM="PP";
manitou 0:bcd16e4a0207 626 static const char v203b[] PROGMEM="P";
manitou 0:bcd16e4a0207 627
manitou 0:bcd16e4a0207 628 static const char v204[] PROGMEM="AY";
manitou 0:bcd16e4a0207 629
manitou 0:bcd16e4a0207 630 static const char v205a[] PROGMEM=" IS_";
manitou 0:bcd16e4a0207 631 static const char v205b[] PROGMEM=" IX6Z";
manitou 0:bcd16e4a0207 632
manitou 0:bcd16e4a0207 633 static const char v206a[] PROGMEM=" SC";
manitou 0:bcd16e4a0207 634 static const char v206b[] PROGMEM=" S";
manitou 0:bcd16e4a0207 635
manitou 0:bcd16e4a0207 636 static const char v207a[] PROGMEM="OOR";
manitou 0:bcd16e4a0207 637 static const char v207b[] PROGMEM="AO5R";
manitou 0:bcd16e4a0207 638
manitou 0:bcd16e4a0207 639 static const char v208a[] PROGMEM="RR";
manitou 0:bcd16e4a0207 640 static const char v208b[] PROGMEM="R";
manitou 0:bcd16e4a0207 641
manitou 0:bcd16e4a0207 642 static const char v209a[] PROGMEM="OI";
manitou 0:bcd16e4a0207 643 static const char v209b[] PROGMEM="OY5";
manitou 0:bcd16e4a0207 644
manitou 0:bcd16e4a0207 645 static const char v210[] PROGMEM="OY";
manitou 0:bcd16e4a0207 646
manitou 0:bcd16e4a0207 647 static const char v211a[] PROGMEM=" AS_";
manitou 0:bcd16e4a0207 648 static const char v211b[] PROGMEM=" AEZ";
manitou 0:bcd16e4a0207 649
manitou 0:bcd16e4a0207 650 static const char v212a[] PROGMEM=" WITH_";
manitou 0:bcd16e4a0207 651 static const char v212b[] PROGMEM=" WIX5DH";
manitou 0:bcd16e4a0207 652
manitou 0:bcd16e4a0207 653 static const char v213a[] PROGMEM="HE_";
manitou 0:bcd16e4a0207 654 static const char v213b[] PROGMEM="/HEE6";
manitou 0:bcd16e4a0207 655
manitou 0:bcd16e4a0207 656 static const char v214a[] PROGMEM=" HAVE_";
manitou 0:bcd16e4a0207 657 static const char v214b[] PROGMEM=" /HAE5V";
manitou 0:bcd16e4a0207 658
manitou 0:bcd16e4a0207 659 static const char v215a[] PROGMEM=" BY";
manitou 0:bcd16e4a0207 660 static const char v215b[] PROGMEM=" BIY3";
manitou 0:bcd16e4a0207 661
manitou 0:bcd16e4a0207 662 static const char v216a[] PROGMEM=" THIS";
manitou 0:bcd16e4a0207 663 static const char v216b[] PROGMEM=" DHIXS";
manitou 0:bcd16e4a0207 664
manitou 0:bcd16e4a0207 665 static const char v217a[] PROGMEM=" WE_";
manitou 0:bcd16e4a0207 666 static const char v217b[] PROGMEM=" WEE5";
manitou 0:bcd16e4a0207 667
manitou 0:bcd16e4a0207 668 static const char v218a[] PROGMEM=" THEY_";
manitou 0:bcd16e4a0207 669 static const char v218b[] PROGMEM=" DHAY4";
manitou 0:bcd16e4a0207 670
manitou 0:bcd16e4a0207 671 static const char v219a[] PROGMEM=" HAS_";
manitou 0:bcd16e4a0207 672 static const char v219b[] PROGMEM=" /HAEZ";
manitou 0:bcd16e4a0207 673
manitou 0:bcd16e4a0207 674 static const char v220a[] PROGMEM=" THEIR_";
manitou 0:bcd16e4a0207 675 static const char v220b[] PROGMEM=" DHAI4R";
manitou 0:bcd16e4a0207 676
manitou 0:bcd16e4a0207 677 static const char v221a[] PROGMEM="DD";
manitou 0:bcd16e4a0207 678 static const char v221b[] PROGMEM="D";
manitou 0:bcd16e4a0207 679
manitou 0:bcd16e4a0207 680 static const char v222a[] PROGMEM=" THAN_";
manitou 0:bcd16e4a0207 681 static const char v222b[] PROGMEM=" DHAE6N";
manitou 0:bcd16e4a0207 682
manitou 0:bcd16e4a0207 683 static const char v223a[] PROGMEM="BB";
manitou 0:bcd16e4a0207 684 static const char v223b[] PROGMEM="B";
manitou 0:bcd16e4a0207 685
manitou 0:bcd16e4a0207 686 static const char v224a[] PROGMEM="GG";
manitou 0:bcd16e4a0207 687 static const char v224b[] PROGMEM="G";
manitou 0:bcd16e4a0207 688
manitou 0:bcd16e4a0207 689 static const char v225a[] PROGMEM=" ONLY_";
manitou 0:bcd16e4a0207 690 static const char v225b[] PROGMEM=" OW5NLEE";
manitou 0:bcd16e4a0207 691
manitou 0:bcd16e4a0207 692 static const char v226a[] PROGMEM=" PEO";
manitou 0:bcd16e4a0207 693 static const char v226b[] PROGMEM=" PEE4";
manitou 0:bcd16e4a0207 694
manitou 0:bcd16e4a0207 695 static const char v227a[] PROGMEM=" SHE_";
manitou 0:bcd16e4a0207 696 static const char v227b[] PROGMEM=" SHEE5";
manitou 0:bcd16e4a0207 697
manitou 0:bcd16e4a0207 698 static const char v228a[] PROGMEM="OTHER";
manitou 0:bcd16e4a0207 699 static const char v228b[] PROGMEM="AHDHER";
manitou 0:bcd16e4a0207 700
manitou 0:bcd16e4a0207 701 static const char v229a[] PROGMEM=" SAID_";
manitou 0:bcd16e4a0207 702 static const char v229b[] PROGMEM=" SAI6D";
manitou 0:bcd16e4a0207 703
manitou 0:bcd16e4a0207 704 static const char v230a[] PROGMEM="Q";
manitou 0:bcd16e4a0207 705 static const char v230b[] PROGMEM="K";
manitou 0:bcd16e4a0207 706
manitou 0:bcd16e4a0207 707 static const char v231a[] PROGMEM=" SOME";
manitou 0:bcd16e4a0207 708 static const char v231b[] PROGMEM=" SAH5M";
manitou 0:bcd16e4a0207 709
manitou 0:bcd16e4a0207 710 static const char v232a[] PROGMEM=" THEN_";
manitou 0:bcd16e4a0207 711 static const char v232b[] PROGMEM=" DHEH5N";
manitou 0:bcd16e4a0207 712
manitou 0:bcd16e4a0207 713 static const char v233a[] PROGMEM="AR_";
manitou 0:bcd16e4a0207 714 static const char v233b[] PROGMEM="AA5R";
manitou 0:bcd16e4a0207 715
manitou 0:bcd16e4a0207 716 static const char v234a[] PROGMEM=" MOST_";
manitou 0:bcd16e4a0207 717 static const char v234b[] PROGMEM=" MOW4ST";
manitou 0:bcd16e4a0207 718
manitou 0:bcd16e4a0207 719 static const char v235a[] PROGMEM="ARR";
manitou 0:bcd16e4a0207 720 static const char v235b[] PROGMEM="AE5R";
manitou 0:bcd16e4a0207 721
manitou 0:bcd16e4a0207 722 static const char v236a[] PROGMEM="URR";
manitou 0:bcd16e4a0207 723 static const char v236b[] PROGMEM="AHR";
manitou 0:bcd16e4a0207 724
manitou 0:bcd16e4a0207 725 static const char v237a[] PROGMEM="ORR";
manitou 0:bcd16e4a0207 726 static const char v237b[] PROGMEM="OR";
manitou 0:bcd16e4a0207 727
manitou 0:bcd16e4a0207 728 static const char v238a[] PROGMEM="PLY";
manitou 0:bcd16e4a0207 729 static const char v238b[] PROGMEM="PLIY";
manitou 0:bcd16e4a0207 730
manitou 0:bcd16e4a0207 731 static const char v239a[] PROGMEM="EY";
manitou 0:bcd16e4a0207 732 static const char v239b[] PROGMEM="AY";
manitou 0:bcd16e4a0207 733
manitou 0:bcd16e4a0207 734 static const char v240a[] PROGMEM="EA";
manitou 0:bcd16e4a0207 735 static const char v240b[] PROGMEM="EE5";
manitou 0:bcd16e4a0207 736
manitou 0:bcd16e4a0207 737 static const char v241a[] PROGMEM="SCR";
manitou 0:bcd16e4a0207 738 static const char v241b[] PROGMEM="SKR";
manitou 0:bcd16e4a0207 739
manitou 0:bcd16e4a0207 740 static const char v242a[] PROGMEM="0";
manitou 0:bcd16e4a0207 741 static const char v242b[] PROGMEM="ZIH5R4OW";
manitou 0:bcd16e4a0207 742
manitou 0:bcd16e4a0207 743 static const char v243a[] PROGMEM="1";
manitou 0:bcd16e4a0207 744 static const char v243b[] PROGMEM="WO5N";
manitou 0:bcd16e4a0207 745
manitou 0:bcd16e4a0207 746 static const char v244a[] PROGMEM="2";
manitou 0:bcd16e4a0207 747 static const char v244b[] PROGMEM="TUH4W";
manitou 0:bcd16e4a0207 748
manitou 0:bcd16e4a0207 749 static const char v245a[] PROGMEM="3";
manitou 0:bcd16e4a0207 750 static const char v245b[] PROGMEM="THREE5";
manitou 0:bcd16e4a0207 751
manitou 0:bcd16e4a0207 752 static const char v246a[] PROGMEM="4";
manitou 0:bcd16e4a0207 753 static const char v246b[] PROGMEM="FAO5R";
manitou 0:bcd16e4a0207 754
manitou 0:bcd16e4a0207 755 static const char v247a[] PROGMEM="5";
manitou 0:bcd16e4a0207 756 static const char v247b[] PROGMEM="FIY5V";
manitou 0:bcd16e4a0207 757
manitou 0:bcd16e4a0207 758 static const char v248a[] PROGMEM="6";
manitou 0:bcd16e4a0207 759 static const char v248b[] PROGMEM="SIH6KS";
manitou 0:bcd16e4a0207 760
manitou 0:bcd16e4a0207 761 static const char v249a[] PROGMEM="7";
manitou 0:bcd16e4a0207 762 static const char v249b[] PROGMEM="SEH5V/UN";
manitou 0:bcd16e4a0207 763
manitou 0:bcd16e4a0207 764 static const char v250a[] PROGMEM="8";
manitou 0:bcd16e4a0207 765 static const char v250b[] PROGMEM="AY5T";
manitou 0:bcd16e4a0207 766
manitou 0:bcd16e4a0207 767 static const char v251a[] PROGMEM="9";
manitou 0:bcd16e4a0207 768 static const char v251b[] PROGMEM="NIY5N";
manitou 0:bcd16e4a0207 769
manitou 0:bcd16e4a0207 770 static const char v252a[] PROGMEM=":";
manitou 0:bcd16e4a0207 771 static const char v252b[] PROGMEM=".";
manitou 0:bcd16e4a0207 772
manitou 0:bcd16e4a0207 773 static const char v253a[] PROGMEM=";";
manitou 0:bcd16e4a0207 774 static const char v253b[] PROGMEM="?";
manitou 0:bcd16e4a0207 775
manitou 0:bcd16e4a0207 776 static const char v254a[] PROGMEM="-";
manitou 0:bcd16e4a0207 777 static const char v254b[] PROGMEM="/";
manitou 0:bcd16e4a0207 778
manitou 0:bcd16e4a0207 779 static const char v255[] PROGMEM=" ";
manitou 0:bcd16e4a0207 780
manitou 0:bcd16e4a0207 781 static const char v256[] PROGMEM=",";
manitou 0:bcd16e4a0207 782
manitou 0:bcd16e4a0207 783 static const char v257[] PROGMEM=".";
manitou 0:bcd16e4a0207 784
manitou 0:bcd16e4a0207 785 static const char v258[] PROGMEM="?";
manitou 0:bcd16e4a0207 786
manitou 0:bcd16e4a0207 787 static const char v259a[] PROGMEM="'";
manitou 0:bcd16e4a0207 788 static const char v259b[] PROGMEM="";
manitou 0:bcd16e4a0207 789
manitou 0:bcd16e4a0207 790 static const char v260a[] PROGMEM="!";
manitou 0:bcd16e4a0207 791 static const char v260b[] PROGMEM=",";
manitou 0:bcd16e4a0207 792
manitou 0:bcd16e4a0207 793 static const char v261a[] PROGMEM="/";
manitou 0:bcd16e4a0207 794 static const char v261b[] PROGMEM=",";
manitou 0:bcd16e4a0207 795
manitou 0:bcd16e4a0207 796 // stand alone characters
manitou 0:bcd16e4a0207 797 static const char v262a[] PROGMEM=" B_";
manitou 0:bcd16e4a0207 798 static const char v262b[] PROGMEM=" BEE5";
manitou 0:bcd16e4a0207 799
manitou 0:bcd16e4a0207 800 static const char v263a[] PROGMEM=" C_";
manitou 0:bcd16e4a0207 801 static const char v263b[] PROGMEM=" SEE5";
manitou 0:bcd16e4a0207 802
manitou 0:bcd16e4a0207 803 static const char v264a[] PROGMEM=" H_";
manitou 0:bcd16e4a0207 804 static const char v264b[] PROGMEM=" AYCH";
manitou 0:bcd16e4a0207 805
manitou 0:bcd16e4a0207 806 static const char v265a[] PROGMEM=" I_";
manitou 0:bcd16e4a0207 807 static const char v265b[] PROGMEM=" IY5";
manitou 0:bcd16e4a0207 808
manitou 0:bcd16e4a0207 809 static const char v266a[] PROGMEM=" F_";
manitou 0:bcd16e4a0207 810 static const char v266b[] PROGMEM=" EHF";
manitou 0:bcd16e4a0207 811
manitou 0:bcd16e4a0207 812 static const char v267a[] PROGMEM=" R_";
manitou 0:bcd16e4a0207 813 static const char v267b[] PROGMEM=" AA5R";
manitou 0:bcd16e4a0207 814
manitou 0:bcd16e4a0207 815 static const char v268a[] PROGMEM=" M_";
manitou 0:bcd16e4a0207 816 static const char v268b[] PROGMEM=" EHM";
manitou 0:bcd16e4a0207 817
manitou 0:bcd16e4a0207 818 static const char v269a[] PROGMEM=" N_";
manitou 0:bcd16e4a0207 819 static const char v269b[] PROGMEM=" EHN";
manitou 0:bcd16e4a0207 820
manitou 0:bcd16e4a0207 821 static const char v270a[] PROGMEM=" J_";
manitou 0:bcd16e4a0207 822 static const char v270b[] PROGMEM=" JAY";
manitou 0:bcd16e4a0207 823
manitou 0:bcd16e4a0207 824
manitou 0:bcd16e4a0207 825 static const VOCAB s_vocab[] PROGMEM={
manitou 0:bcd16e4a0207 826 { v1a, v1b} ,{ v2a, v2b}, { v3a, v3b},{ v4a, v4b},{ v5a, v5b},{ v6a, v6b},{ v7a, v7b},{ v8a, v8b},{ v9a, v9b},{ v10a, v10b},
manitou 0:bcd16e4a0207 827 { v11a, v11b},{ v12a, v12b},{ v13a, v13b},{ v14a, v14b},{ v15a, v15b},{ v16a, v16b},{ v17a, v17b},{ v18a, v18b},{ v19a, v19b},{ v20a, v20b},
manitou 0:bcd16e4a0207 828 { v21a, v21b},{ v22a, v22b},{ v23a, v23b},{ v24a, v24b},{ v25a, v25b},{ v26a, v26b},{ v27a, v27b},{ v28a, v28b},{ v29a, v29b},{ v30a, v30b},
manitou 0:bcd16e4a0207 829 { v31a, v31b},{ v32a, v32b},{ v33a, v33b},{ v34a, v34b},{ v35a, v35b},{ v36 , v36 },{ v37a, v37b},{ v38a, v38b},{ v39a, v39b},{ v40a, v40b},
manitou 0:bcd16e4a0207 830 { v41a, v41b},{ v42a, v42b},{ v43a, v43b},{ v44a, v44b},{ v45a, v45b},{ v46a, v46b},{ v47a, v47b},{ v48 , v48 },{ v49a, v49b},{ v50a, v50b},
manitou 0:bcd16e4a0207 831 { v51a, v51b},{ v52a, v52b},{ v53a, v53b},{ v54a, v54b},{ v55a, v55b},{ v56a, v56b},{ v57a, v57b},{ v58a, v58b},{ v59a, v59b},{ v60a, v60b},
manitou 0:bcd16e4a0207 832 { v61a, v61b},{ v62a, v62b},{ v63a, v63b},{ v64a, v64b},{ v65a, v65b},{ v66a, v66b},{ v67a, v67b},{ v68a, v68b},{ v69a, v69b},{ v70a, v70b},
manitou 0:bcd16e4a0207 833 { v71a, v71b},{ v72a, v72b},{ v73a, v73b},{ v74a, v74b},{ v75a, v75b},{ v76a, v76b},{ v77a, v77b},{ v78a, v78b},{ v79a, v79b},{ v80a, v80b},
manitou 0:bcd16e4a0207 834 { v81a, v81b},{ v82a, v82b},{ v83a, v83b},{ v84a, v84b},{ v85a, v85b},{ v86a, v86b},{ v87a, v87b},{ v88a, v88b},{ v89a, v89b},{ v90a, v90b},
manitou 0:bcd16e4a0207 835 { v91a, v91b},{ v92a, v92b},{ v93 , v93 },{ v94a, v94b},{ v95a, v95b},{ v96a, v96b},{ v97a, v97b},{ v98a, v98b},{ v99a, v99b},{v100a,v100b},
manitou 0:bcd16e4a0207 836 {v101a,v101b},{v102a,v102b},{v103a,v103b},{v104a,v104b},{v105a,v105b},{v106a,v106b},{v107a,v107b},{v108a,v108b},{v109a,v109b},{v110a,v110b},
manitou 0:bcd16e4a0207 837 {v111a,v111b},{v112a,v112b},{v113a,v113b},{v114a,v114b},{v115a,v115b},{v116a,v116b},{v117a,v117b},{v118a,v118b},{v119a,v119b},{v120a,v120b},
manitou 0:bcd16e4a0207 838 {v121a,v121b},{v122a,v122b},{v123a,v123b},{v124a,v124b},{v125a,v125b},{v126a,v126b},{v127a,v127b},{v128a,v128b},{v129a,v129b},{v130a,v130b},
manitou 0:bcd16e4a0207 839 {v131a,v131b},{v132a,v132b},{v133a,v133b},{v134a,v134b},{v135a,v135b},{v136a,v136b},{v137 ,v137 },{v138 ,v138 },{v139a,v139b},{v140 ,v140 },
manitou 0:bcd16e4a0207 840 {v141a,v141b},{v142a,v142b},{v143a,v143b},{v144a,v144b},{v145 ,v145 },{v146 ,v146 },{v147 ,v147 },{v148 ,v148 },{v149a,v149b},{v150a,v150b},
manitou 0:bcd16e4a0207 841 {v151a,v151b},{v152a,v152b},{v153a,v153b},{v154a,v154b},{v155a,v155b},{v156a,v156b},{v157a,v157b},{v158a,v158b},{v159a,v159b},{v160a,v160b},
manitou 0:bcd16e4a0207 842 {v161 ,v161 },{v162a,v162b},{v163 ,v163 },{v164 ,v164 },{v165a,v165b},{v166a,v166b},{v167 ,v167 },{v168 ,v168 },{v169 ,v169 },{v170 ,v170 },
manitou 0:bcd16e4a0207 843 {v171 ,v171 },{v172 ,v172 },{v173 ,v173 },{v174 ,v174 },{v175a,v175b},{v176 ,v176 },{v177 ,v177 },{v178a,v178b},{v179a,v179b},{v180a,v180b},
manitou 0:bcd16e4a0207 844 {v181a,v181b},{v182a,v182b},{v183a,v183b},{v184a,v184b},{v185 ,v185 },{v186a,v186b},{v187 ,v187 },{v188a,v188b},{v189a,v189b},{v190a,v190b},
manitou 0:bcd16e4a0207 845 {v191a,v191b},{v192 ,v192 },{v193a,v193b},{v194 ,v194 },{v195a,v195b},{v196a,v196b},{v197a,v197b},{v198 ,v198 },{v199 ,v199 },{v200 ,v200 },
manitou 0:bcd16e4a0207 846 {v201a,v201b},{v202 ,v202 },{v203a,v203b},{v204 ,v204 },{v205a,v205b},{v206a,v206b},{v207a,v207b},{v208a,v208b},{v209a,v209b},{v210 ,v210 },
manitou 0:bcd16e4a0207 847 {v211a,v211b},{v212a,v212b},{v213a,v213b},{v214a,v214b},{v215a,v215b},{v216a,v216b},{v217a,v217b},{v218a,v218b},{v219a,v219b},{v220a,v220b},
manitou 0:bcd16e4a0207 848 {v221a,v221b},{v222a,v222b},{v223a,v223b},{v224a,v224b},{v225a,v225b},{v226a,v226b},{v227a,v227b},{v228a,v228b},{v229a,v229b},{v230a,v230b},
manitou 0:bcd16e4a0207 849 {v231a,v231b},{v232a,v232b},{v233a,v233b},{v234a,v234b},{v235a,v235b},{v236a,v236b},{v237a,v237b},{v238a,v238b},{v239a,v239b},{v240a,v240b},
manitou 0:bcd16e4a0207 850 {v241a,v241b},{v242a,v242b},{v243a,v243b},{v244a,v244b},{v245a,v245b},{v246a,v246b},{v247a,v247b},{v248a,v248b},{v249a,v249b},{v250a,v250b},
manitou 0:bcd16e4a0207 851 {v251a,v251b},{v252a,v252b},{v253a,v253b},{v254a,v254b},{v255 ,v255 },{v256 ,v256 },{v257 ,v257 },{v258 ,v258 },{v259a,v259b},{v260a,v260b},
manitou 0:bcd16e4a0207 852 {v261a,v261b},
manitou 0:bcd16e4a0207 853 {v262a,v262b},{v263a,v263b},{v264a,v264b},{v265a,v265b},{v266a,v266b},{v267a,v267b},{v268a,v268b},{v269a,v269b},{v270a,v270b}
manitou 0:bcd16e4a0207 854
manitou 0:bcd16e4a0207 855 };
manitou 0:bcd16e4a0207 856
manitou 0:bcd16e4a0207 857 static const char p1a[] PROGMEM="dux";
manitou 0:bcd16e4a0207 858 static const char p1b[] PROGMEM="a5V2E8";
manitou 0:bcd16e4a0207 859
manitou 0:bcd16e4a0207 860 static const char p2a[] PROGMEM="ae";
manitou 0:bcd16e4a0207 861 static const char p2b[] PROGMEM="A7";
manitou 0:bcd16e4a0207 862
manitou 0:bcd16e4a0207 863 static const char p3a[] PROGMEM="aa";
manitou 0:bcd16e4a0207 864 static const char p3b[] PROGMEM="B9";
manitou 0:bcd16e4a0207 865
manitou 0:bcd16e4a0207 866 static const char p4a[] PROGMEM="aw";
manitou 0:bcd16e4a0207 867 static const char p4b[] PROGMEM="A9R6";
manitou 0:bcd16e4a0207 868
manitou 0:bcd16e4a0207 869 static const char p5a[] PROGMEM="r";
manitou 0:bcd16e4a0207 870 static const char p5b[] PROGMEM="D7";
manitou 0:bcd16e4a0207 871
manitou 0:bcd16e4a0207 872 static const char p6a[] PROGMEM="ux";
manitou 0:bcd16e4a0207 873 static const char p6b[] PROGMEM="E8";
manitou 0:bcd16e4a0207 874
manitou 0:bcd16e4a0207 875 static const char p7a[] PROGMEM="uw";
manitou 0:bcd16e4a0207 876 static const char p7b[] PROGMEM="E7R6";
manitou 0:bcd16e4a0207 877
manitou 0:bcd16e4a0207 878 static const char p8a[] PROGMEM="ao";
manitou 0:bcd16e4a0207 879 static const char p8b[] PROGMEM="F9";
manitou 0:bcd16e4a0207 880
manitou 0:bcd16e4a0207 881 static const char p9a[] PROGMEM="ee";
manitou 0:bcd16e4a0207 882 static const char p9b[] PROGMEM="G7";
manitou 0:bcd16e4a0207 883
manitou 0:bcd16e4a0207 884 static const char p10a[] PROGMEM="l";
manitou 0:bcd16e4a0207 885 static const char p10b[] PROGMEM="H7";
manitou 0:bcd16e4a0207 886
manitou 0:bcd16e4a0207 887 static const char p11a[] PROGMEM="m";
manitou 0:bcd16e4a0207 888 static const char p11b[] PROGMEM="J7";
manitou 0:bcd16e4a0207 889
manitou 0:bcd16e4a0207 890 static const char p12a[] PROGMEM="ah";
manitou 0:bcd16e4a0207 891 static const char p12b[] PROGMEM="K7";
manitou 0:bcd16e4a0207 892
manitou 0:bcd16e4a0207 893 static const char p13a[] PROGMEM="v";
manitou 0:bcd16e4a0207 894 static const char p13b[] PROGMEM="L5";
manitou 0:bcd16e4a0207 895
manitou 0:bcd16e4a0207 896 static const char p14a[] PROGMEM="/h";
manitou 0:bcd16e4a0207 897 static const char p14b[] PROGMEM="N4";
manitou 0:bcd16e4a0207 898
manitou 0:bcd16e4a0207 899 static const char p15a[] PROGMEM="t";
manitou 0:bcd16e4a0207 900 static const char p15b[] PROGMEM="O1";
manitou 0:bcd16e4a0207 901
manitou 0:bcd16e4a0207 902 static const char p16a[] PROGMEM="p";
manitou 0:bcd16e4a0207 903 static const char p16b[] PROGMEM="P1";
manitou 0:bcd16e4a0207 904
manitou 0:bcd16e4a0207 905 static const char p17a[] PROGMEM="n";
manitou 0:bcd16e4a0207 906 static const char p17b[] PROGMEM="I7";
manitou 0:bcd16e4a0207 907
manitou 0:bcd16e4a0207 908 static const char p18a[] PROGMEM="b";
manitou 0:bcd16e4a0207 909 static const char p18b[] PROGMEM="M1";
manitou 0:bcd16e4a0207 910
manitou 0:bcd16e4a0207 911 static const char p19a[] PROGMEM="k";
manitou 0:bcd16e4a0207 912 static const char p19b[] PROGMEM="Q1";
manitou 0:bcd16e4a0207 913
manitou 0:bcd16e4a0207 914 static const char p20a[] PROGMEM="w";
manitou 0:bcd16e4a0207 915 static const char p20b[] PROGMEM="R7";
manitou 0:bcd16e4a0207 916
manitou 0:bcd16e4a0207 917 static const char p21a[] PROGMEM="ay";
manitou 0:bcd16e4a0207 918 static const char p21b[] PROGMEM="S9U5T2";
manitou 0:bcd16e4a0207 919
manitou 0:bcd16e4a0207 920 static const char p22a[] PROGMEM="y";
manitou 0:bcd16e4a0207 921 static const char p22b[] PROGMEM="T7";
manitou 0:bcd16e4a0207 922
manitou 0:bcd16e4a0207 923 static const char p23a[] PROGMEM="ih";
manitou 0:bcd16e4a0207 924 static const char p23b[] PROGMEM="U7";
manitou 0:bcd16e4a0207 925
manitou 0:bcd16e4a0207 926 static const char p24a[] PROGMEM="ix";
manitou 0:bcd16e4a0207 927 static const char p24b[] PROGMEM="U5";
manitou 0:bcd16e4a0207 928
manitou 0:bcd16e4a0207 929 static const char p25a[] PROGMEM="j";
manitou 0:bcd16e4a0207 930 static const char p25b[] PROGMEM="a3V3a2";
manitou 0:bcd16e4a0207 931
manitou 0:bcd16e4a0207 932 static const char p26a[] PROGMEM="d";
manitou 0:bcd16e4a0207 933 static const char p26b[] PROGMEM="W1";
manitou 0:bcd16e4a0207 934
manitou 0:bcd16e4a0207 935 static const char p27a[] PROGMEM="nx";
manitou 0:bcd16e4a0207 936 static const char p27b[] PROGMEM="X7";
manitou 0:bcd16e4a0207 937
manitou 0:bcd16e4a0207 938 static const char p28a[] PROGMEM="oh";
manitou 0:bcd16e4a0207 939 static const char p28b[] PROGMEM="Y8";
manitou 0:bcd16e4a0207 940
manitou 0:bcd16e4a0207 941 static const char p29a[] PROGMEM="o";
manitou 0:bcd16e4a0207 942 static const char p29b[] PROGMEM="Z8";
manitou 0:bcd16e4a0207 943
manitou 0:bcd16e4a0207 944 static const char p30a[] PROGMEM="er";
manitou 0:bcd16e4a0207 945 static const char p30b[] PROGMEM="[9";
manitou 0:bcd16e4a0207 946
manitou 0:bcd16e4a0207 947 static const char p31a[] PROGMEM="sh";
manitou 0:bcd16e4a0207 948 static const char p31b[] PROGMEM="\\6";
manitou 0:bcd16e4a0207 949
manitou 0:bcd16e4a0207 950 static const char p32a[] PROGMEM="ow";
manitou 0:bcd16e4a0207 951 static const char p32b[] PROGMEM="Y9R5";
manitou 0:bcd16e4a0207 952
manitou 0:bcd16e4a0207 953 static const char p33a[] PROGMEM="oy";
manitou 0:bcd16e4a0207 954 static const char p33b[] PROGMEM="F9U4T2";
manitou 0:bcd16e4a0207 955
manitou 0:bcd16e4a0207 956 static const char p34a[] PROGMEM="ch";
manitou 0:bcd16e4a0207 957 static const char p34b[] PROGMEM="a6\\3a1";
manitou 0:bcd16e4a0207 958
manitou 0:bcd16e4a0207 959 static const char p35a[] PROGMEM="g";
manitou 0:bcd16e4a0207 960 static const char p35b[] PROGMEM="]1";
manitou 0:bcd16e4a0207 961
manitou 0:bcd16e4a0207 962 static const char p36a[] PROGMEM="s";
manitou 0:bcd16e4a0207 963 static const char p36b[] PROGMEM="^5";
manitou 0:bcd16e4a0207 964
manitou 0:bcd16e4a0207 965 static const char p37a[] PROGMEM="f";
manitou 0:bcd16e4a0207 966 static const char p37b[] PROGMEM="_5";
manitou 0:bcd16e4a0207 967
manitou 0:bcd16e4a0207 968 static const char p38a[] PROGMEM="z";
manitou 0:bcd16e4a0207 969 static const char p38b[] PROGMEM="`5";
manitou 0:bcd16e4a0207 970
manitou 0:bcd16e4a0207 971 static const char p39a[] PROGMEM="/";
manitou 0:bcd16e4a0207 972 static const char p39b[] PROGMEM="a9";
manitou 0:bcd16e4a0207 973
manitou 0:bcd16e4a0207 974 static const char p40a[] PROGMEM="th";
manitou 0:bcd16e4a0207 975 static const char p40b[] PROGMEM="b5";
manitou 0:bcd16e4a0207 976
manitou 0:bcd16e4a0207 977 static const char p41a[] PROGMEM="dh";
manitou 0:bcd16e4a0207 978 static const char p41b[] PROGMEM="c4";
manitou 0:bcd16e4a0207 979
manitou 0:bcd16e4a0207 980 static const char p42a[] PROGMEM="/u";
manitou 0:bcd16e4a0207 981 static const char p42b[] PROGMEM="d8";
manitou 0:bcd16e4a0207 982
manitou 0:bcd16e4a0207 983 static const char p43a[] PROGMEM="zh";
manitou 0:bcd16e4a0207 984 static const char p43b[] PROGMEM="e5";
manitou 0:bcd16e4a0207 985
manitou 0:bcd16e4a0207 986 static const char p44a[] PROGMEM="dr";
manitou 0:bcd16e4a0207 987 static const char p44b[] PROGMEM="a2V3D7";
manitou 0:bcd16e4a0207 988
manitou 0:bcd16e4a0207 989 static const char p45a[] PROGMEM="tr";
manitou 0:bcd16e4a0207 990 static const char p45b[] PROGMEM="a4V3D7";
manitou 0:bcd16e4a0207 991
manitou 0:bcd16e4a0207 992 static const char p46a[] PROGMEM="ct";
manitou 0:bcd16e4a0207 993 static const char p46b[] PROGMEM="a2Q1a1O1";
manitou 0:bcd16e4a0207 994
manitou 0:bcd16e4a0207 995 static const char p47a[] PROGMEM="eh";
manitou 0:bcd16e4a0207 996 static const char p47b[] PROGMEM="f7";
manitou 0:bcd16e4a0207 997
manitou 0:bcd16e4a0207 998 static const char p48a[] PROGMEM="uh";
manitou 0:bcd16e4a0207 999 static const char p48b[] PROGMEM="g7";
manitou 0:bcd16e4a0207 1000
manitou 0:bcd16e4a0207 1001 static const char p49a[] PROGMEM="iy";
manitou 0:bcd16e4a0207 1002 static const char p49b[] PROGMEM="B9U6";
manitou 0:bcd16e4a0207 1003
manitou 0:bcd16e4a0207 1004 static const char p50a[] PROGMEM="ai";
manitou 0:bcd16e4a0207 1005 static const char p50b[] PROGMEM="C9";
manitou 0:bcd16e4a0207 1006
manitou 0:bcd16e4a0207 1007 static const char p51a[] PROGMEM="%";
manitou 0:bcd16e4a0207 1008 static const char p51b[] PROGMEM="a1";
manitou 0:bcd16e4a0207 1009
manitou 0:bcd16e4a0207 1010 static const char p52a[] PROGMEM="j_";
manitou 0:bcd16e4a0207 1011 static const char p52b[] PROGMEM="a4V3";
manitou 0:bcd16e4a0207 1012
manitou 0:bcd16e4a0207 1013 static const char p53a[] PROGMEM=" ";
manitou 0:bcd16e4a0207 1014 static const char p53b[] PROGMEM="zz";
manitou 0:bcd16e4a0207 1015
manitou 0:bcd16e4a0207 1016 static const char p54a[] PROGMEM=",";
manitou 0:bcd16e4a0207 1017 static const char p54b[] PROGMEM="a9a2";
manitou 0:bcd16e4a0207 1018
manitou 0:bcd16e4a0207 1019 static const char p55a[] PROGMEM=".";
manitou 0:bcd16e4a0207 1020 static const char p55b[] PROGMEM="i9a5";
manitou 0:bcd16e4a0207 1021
manitou 0:bcd16e4a0207 1022 static const char p56a[] PROGMEM="?";
manitou 0:bcd16e4a0207 1023 static const char p56b[] PROGMEM="h9a5";
manitou 0:bcd16e4a0207 1024
manitou 0:bcd16e4a0207 1025
manitou 0:bcd16e4a0207 1026 static const PHONEME s_phonemes[] PROGMEM= {
manitou 0:bcd16e4a0207 1027 { p1a, p1b,1},{ p2a, p2b,1},{ p3a, p3b,1},{ p4a, p4b,1},{ p5a, p5b,0},{ p6a, p6b,1},{ p7a, p7b,1},{ p8a, p8b,1},
manitou 0:bcd16e4a0207 1028 { p9a, p9b,1},{p10a,p10b,0},{p11a,p11b,0},{p12a,p12b,1},{p13a,p13b,0},{p14a,p14b,1},{p15a,p15b,0},{p16a,p16b,0},
manitou 0:bcd16e4a0207 1029 {p17a,p17b,0},{p18a,p18b,0},{p19a,p19b,0},{p20a,p20b,0},{p21a,p21b,1},{p22a,p22b,0},{p23a,p23b,1},{p24a,p24b,1},
manitou 0:bcd16e4a0207 1030 {p25a,p25b,0},{p26a,p26b,0},{p27a,p27b,0},{p28a,p28b,1},{p29a,p29b,1},{p30a,p30b,1},{p31a,p31b,0},{p32a,p32b,1},
manitou 0:bcd16e4a0207 1031 {p33a,p33b,1},{p34a,p34b,1},{p35a,p35b,0},{p36a,p36b,0},{p37a,p37b,1},{p38a,p38b,0},{p39a,p39b,1},{p40a,p40b,1},
manitou 0:bcd16e4a0207 1032 {p41a,p41b,0},{p42a,p42b,1},{p43a,p43b,0},{p44a,p44b,0},{p45a,p45b,0},{p46a,p46b,0},{p47a,p47b,1},{p48a,p48b,1},
manitou 0:bcd16e4a0207 1033 {p49a,p49b,1},{p50a,p50b,1},{p51a,p51b,0},{p52a,p52b,0},{p53a,p53b,1},{p54a,p54b,0},{p55a,p55b,0},{p56a,p56b,0}
manitou 0:bcd16e4a0207 1034 };
manitou 0:bcd16e4a0207 1035
manitou 0:bcd16e4a0207 1036 static const uint8_t SoundData[] PROGMEM= {
manitou 0:bcd16e4a0207 1037 // A - phoneme 'ae'
manitou 0:bcd16e4a0207 1038 0x74,0xFF,0xFF,0x04,0x30,0xFB,0xCF,0x88,0x88,0x78,0x45,0x95,0xCD,0x6A,0x44,0x85,
manitou 0:bcd16e4a0207 1039 0xAA,0x68,0x65,0x76,0x88,0x88,0x88,0x68,0x55,0x86,0xA9,0x8A,0x56,0x65,0x87,0xA8,
manitou 0:bcd16e4a0207 1040 0xCB,0x8A,0x56,0x85,0xBA,0x8A,0x78,0x87,0x88,0x88,0x88,0x66,0x55,0x76,0x88,0x56,
manitou 0:bcd16e4a0207 1041 0x54,0x65,0x66,0x56,0x55,0x44,0x54,0x66,0x56,0x55,0x65,0x56,0x54,0x86,0x46,0x44,
manitou 0:bcd16e4a0207 1042
manitou 0:bcd16e4a0207 1043 // B - phoneme 'aa'
manitou 0:bcd16e4a0207 1044 0x96,0xEE,0xFF,0xED,0x44,0x10,0x52,0xD9,0xEF,0xBD,0x58,0x45,0x66,0x86,0x88,0x77,
manitou 0:bcd16e4a0207 1045 0xA8,0xBA,0x9B,0x48,0x44,0x53,0xA7,0xCB,0xAB,0x68,0x55,0x65,0x87,0x99,0x89,0x88,
manitou 0:bcd16e4a0207 1046 0x88,0xA9,0x99,0x88,0x78,0x98,0xA9,0x99,0x78,0x66,0x87,0x98,0x88,0x68,0x66,0x76,
manitou 0:bcd16e4a0207 1047 0x88,0x88,0x78,0x67,0x66,0x66,0x66,0x66,0x66,0x76,0x77,0x66,0x67,0x67,0x87,0x77,
manitou 0:bcd16e4a0207 1048
manitou 0:bcd16e4a0207 1049 //C - phoneme 'ai'
manitou 0:bcd16e4a0207 1050 0x66,0x96,0xB8,0xFF,0xCB,0xFB,0x9A,0x85,0x73,0x78,0x58,0xBA,0x9D,0x99,0x89,0x88,
manitou 0:bcd16e4a0207 1051 0x44,0x64,0x58,0x86,0xA9,0xAA,0x88,0x86,0x58,0x54,0x76,0x87,0x88,0x99,0x9A,0x78,
manitou 0:bcd16e4a0207 1052 0x88,0x67,0x66,0x86,0x88,0x9A,0xCA,0xAA,0xA8,0x88,0x86,0x76,0x88,0x89,0x88,0x89,
manitou 0:bcd16e4a0207 1053 0x67,0x66,0x65,0x65,0x65,0x66,0x66,0x66,0x56,0x55,0x55,0x55,0x44,0x77,0x68,0x2B,
manitou 0:bcd16e4a0207 1054
manitou 0:bcd16e4a0207 1055 //D - phoneme 'r'
manitou 0:bcd16e4a0207 1056 0x44,0x75,0xEA,0xFF,0xAC,0xDA,0xEE,0x5A,0x32,0x65,0x56,0x55,0x76,0xBA,0xCD,0x8B,
manitou 0:bcd16e4a0207 1057 0x87,0x99,0x48,0x22,0x53,0x77,0x66,0x97,0xAA,0xAB,0x8A,0x66,0x76,0x57,0x44,0x75,
manitou 0:bcd16e4a0207 1058 0x98,0x88,0x98,0xAA,0xBB,0xAB,0x89,0x87,0x88,0x56,0x75,0x88,0x88,0x88,0x88,0x68,
manitou 0:bcd16e4a0207 1059 0x56,0x55,0x55,0x55,0x55,0x55,0x66,0x56,0x66,0x56,0x55,0x55,0x44,0x65,0x66,0x55,
manitou 0:bcd16e4a0207 1060
manitou 0:bcd16e4a0207 1061 //E - phoneme 'ux'
manitou 0:bcd16e4a0207 1062 0x44,0x54,0x55,0x55,0x76,0xB9,0xFD,0xFF,0xFF,0xEE,0xDE,0xCD,0xAB,0x68,0x45,0x23,
manitou 0:bcd16e4a0207 1063 0x32,0x44,0x44,0x55,0x76,0xA9,0xBA,0xBB,0xAB,0xAA,0x9A,0x89,0x68,0x55,0x44,0x44,
manitou 0:bcd16e4a0207 1064 0x54,0x65,0x66,0x87,0x98,0xA9,0xAA,0xAA,0x9A,0xA9,0xAA,0xAA,0x9A,0x89,0x88,0x88,
manitou 0:bcd16e4a0207 1065 0x88,0x88,0x66,0x55,0x55,0x55,0x55,0x45,0x44,0x54,0x55,0x55,0x45,0x44,0x44,0x54,
manitou 0:bcd16e4a0207 1066
manitou 0:bcd16e4a0207 1067 //F - phoneme 'ao'
manitou 0:bcd16e4a0207 1068 0x55,0x65,0x66,0x67,0x87,0xB9,0xEC,0xFF,0xFF,0xCF,0x8A,0x24,0x01,0x31,0x75,0xDA,
manitou 0:bcd16e4a0207 1069 0xFE,0xFF,0xCE,0x8A,0x56,0x44,0x54,0x65,0x88,0x99,0xAA,0xAA,0xBB,0xBB,0xAA,0x89,
manitou 0:bcd16e4a0207 1070 0x57,0x45,0x54,0x75,0xA8,0xCB,0xDD,0xDD,0xBC,0x9A,0x68,0x56,0x55,0x65,0x87,0xA9,
manitou 0:bcd16e4a0207 1071 0xBB,0xBB,0x9A,0x88,0x66,0x55,0x55,0x66,0x87,0x98,0x99,0x99,0x88,0x67,0x56,0x55,
manitou 0:bcd16e4a0207 1072
manitou 0:bcd16e4a0207 1073 //G - phoneme 'ee'
manitou 0:bcd16e4a0207 1074 0x35,0x43,0x07,0xE1,0xA4,0x79,0xBD,0xE8,0xFD,0xDA,0xCF,0xDB,0xFB,0x9A,0xAB,0x68,
manitou 0:bcd16e4a0207 1075 0x96,0x45,0x54,0x25,0x52,0x44,0x54,0x56,0x65,0x87,0x76,0x9A,0x98,0xAA,0x99,0xAA,
manitou 0:bcd16e4a0207 1076 0x89,0xA9,0x89,0x88,0x68,0x86,0x68,0x65,0x67,0x85,0x77,0x79,0xA9,0x87,0xAA,0xAA,
manitou 0:bcd16e4a0207 1077 0x9A,0xA9,0x98,0x88,0x88,0x67,0x66,0x55,0x55,0x55,0x54,0x55,0x44,0x45,0x54,0x34,
manitou 0:bcd16e4a0207 1078
manitou 0:bcd16e4a0207 1079 //H - phoneme 'l'
manitou 0:bcd16e4a0207 1080 0x55,0x55,0x75,0xA8,0xDB,0xFE,0xEF,0xBE,0x8B,0x68,0x55,0x54,0x54,0x55,0x55,0x66,
manitou 0:bcd16e4a0207 1081 0x87,0x99,0xAA,0xAB,0xAA,0x89,0x66,0x55,0x55,0x55,0x65,0x76,0x87,0x88,0x99,0x99,
manitou 0:bcd16e4a0207 1082 0x99,0x9A,0x99,0x99,0x98,0x88,0x88,0x68,0x67,0x67,0x77,0x76,0x66,0x66,0x66,0x66,
manitou 0:bcd16e4a0207 1083 0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x66,0x55,
manitou 0:bcd16e4a0207 1084
manitou 0:bcd16e4a0207 1085 //I - phoneme 'n'
manitou 0:bcd16e4a0207 1086 0x55,0x66,0x66,0x76,0x9A,0xA6,0xBB,0xCB,0xBB,0xDE,0xED,0xDD,0xDD,0xBC,0xBC,0xBA,
manitou 0:bcd16e4a0207 1087 0x9A,0x99,0x78,0x68,0x66,0x56,0x55,0x55,0x55,0x55,0x55,0x66,0x65,0x66,0x76,0x77,
manitou 0:bcd16e4a0207 1088 0x88,0x88,0x88,0x98,0x99,0xAA,0xAA,0xAA,0xBA,0xBA,0xAB,0xAA,0xAA,0x99,0x89,0x88,
manitou 0:bcd16e4a0207 1089 0x68,0x66,0x55,0x55,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x44,0x54,0x45,0x55,0x65,
manitou 0:bcd16e4a0207 1090
manitou 0:bcd16e4a0207 1091 //J - phoneme 'm'
manitou 0:bcd16e4a0207 1092 0x32,0x43,0x34,0x43,0x44,0x55,0x55,0x65,0x76,0xB9,0xA8,0x9A,0xBB,0xCD,0xDD,0xDD,
manitou 0:bcd16e4a0207 1093 0xEE,0xED,0xDD,0xDC,0xBB,0xAB,0x99,0x89,0x88,0x66,0x56,0x55,0x45,0x44,0x54,0x55,
manitou 0:bcd16e4a0207 1094 0x55,0x55,0x65,0x66,0x87,0x88,0x88,0x99,0x99,0xAA,0xAA,0xBA,0xAB,0xBB,0xAB,0xBB,
manitou 0:bcd16e4a0207 1095 0xBB,0xAA,0x9A,0x89,0x88,0x78,0x66,0x56,0x55,0x44,0x44,0x34,0x33,0x33,0x34,0x43,
manitou 0:bcd16e4a0207 1096
manitou 0:bcd16e4a0207 1097 //K - phoneme 'ah'
manitou 0:bcd16e4a0207 1098 0x55,0xD7,0xFF,0xBF,0x49,0x33,0x67,0x68,0x89,0xA9,0xDD,0x8B,0x24,0x22,0x95,0xAA,
manitou 0:bcd16e4a0207 1099 0x9A,0x89,0x99,0x58,0x34,0x54,0xA7,0xBB,0x8A,0x68,0x66,0x66,0x65,0x97,0xBA,0xAB,
manitou 0:bcd16e4a0207 1100 0x68,0x55,0x76,0x98,0x89,0x98,0x88,0x68,0x56,0x75,0x88,0x89,0x68,0x66,0x66,0x66,
manitou 0:bcd16e4a0207 1101 0x66,0x76,0x88,0x67,0x56,0x55,0x76,0x67,0x76,0x66,0x77,0x66,0x66,0x56,0x66,0x67,
manitou 0:bcd16e4a0207 1102
manitou 0:bcd16e4a0207 1103 //L - phoneme 'v'
manitou 0:bcd16e4a0207 1104 0x99,0x99,0x99,0x78,0x77,0x77,0x67,0x66,0x77,0x77,0x77,0x98,0x99,0x99,0xA9,0xAA,
manitou 0:bcd16e4a0207 1105 0x99,0x99,0x99,0x78,0x77,0x77,0x67,0x66,0x77,0x77,0x77,0x98,0x99,0x99,0xA9,0xAA,
manitou 0:bcd16e4a0207 1106 0x89,0x99,0x99,0x99,0xAA,0x9A,0x99,0x99,0x89,0x77,0x77,0x77,0x66,0x76,0x77,0x77,
manitou 0:bcd16e4a0207 1107 0x87,0x99,0x99,0x99,0xAA,0x9A,0x99,0x99,0x89,0x77,0x77,0x77,0x66,0x76,0x77,0x77,
manitou 0:bcd16e4a0207 1108
manitou 0:bcd16e4a0207 1109 //M - phoneme 'b'
manitou 0:bcd16e4a0207 1110 0x86,0x88,0x98,0x88,0x88,0x88,0x99,0x89,0x88,0x88,0x88,0x99,0x88,0x88,0x98,0x99,
manitou 0:bcd16e4a0207 1111 0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x78,0x88,0x87,0x77,0x77,
manitou 0:bcd16e4a0207 1112 0x88,0x88,0x77,0x87,0x88,0x88,0x77,0x66,0x66,0x66,0x56,0x55,0x55,0x55,0x66,0xB8,
manitou 0:bcd16e4a0207 1113 0xFE,0xFF,0xCE,0x9A,0x89,0x48,0x24,0x01,0x20,0x55,0x66,0x56,0x55,0x55,0x24,0x00,
manitou 0:bcd16e4a0207 1114
manitou 0:bcd16e4a0207 1115 //N - phoneme '/h'
manitou 0:bcd16e4a0207 1116 0x88,0x88,0x68,0x86,0x78,0x97,0x89,0x88,0x76,0x76,0x88,0x89,0x99,0x88,0x68,0x56,
manitou 0:bcd16e4a0207 1117 0x87,0x99,0xA9,0x89,0x66,0x56,0x76,0x88,0x88,0x89,0x78,0x77,0x88,0x88,0x99,0x88,
manitou 0:bcd16e4a0207 1118 0x68,0x55,0x75,0xA9,0x9A,0x89,0x68,0x55,0x66,0x86,0xA9,0x9A,0x88,0x56,0x86,0x88,
manitou 0:bcd16e4a0207 1119 0x88,0x68,0x75,0x77,0x98,0xAA,0x98,0x89,0x58,0x55,0x66,0xB9,0xAB,0x8A,0x58,0x65,
manitou 0:bcd16e4a0207 1120
manitou 0:bcd16e4a0207 1121 //O - phoneme 't'
manitou 0:bcd16e4a0207 1122 0x96,0x78,0x78,0xB9,0xB8,0x78,0x89,0x76,0x65,0x78,0x4B,0x87,0x75,0x8B,0xB5,0x76,
manitou 0:bcd16e4a0207 1123 0xA8,0xA9,0x44,0x5D,0x49,0x8B,0x83,0x95,0x78,0x1A,0x6C,0x7A,0xC2,0xB4,0x55,0x7B,
manitou 0:bcd16e4a0207 1124 0x85,0xA8,0x78,0x98,0x85,0x87,0xC4,0x85,0x85,0x3B,0xB8,0x47,0x78,0xA4,0x94,0x68,
manitou 0:bcd16e4a0207 1125 0x87,0x66,0x7A,0x7A,0x89,0x67,0xC8,0xA6,0x83,0x7B,0xC5,0xC1,0xB4,0x98,0x87,0xB3,
manitou 0:bcd16e4a0207 1126
manitou 0:bcd16e4a0207 1127 //P - phoneme 'p'
manitou 0:bcd16e4a0207 1128 0x88,0x99,0x99,0xA9,0xDA,0xBC,0xED,0xCD,0xBB,0xCC,0xDC,0xFD,0xFF,0xFF,0xFF,0xFF,
manitou 0:bcd16e4a0207 1129 0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0xFF,0x8C,0x04,0x00,0x00,0x00,0x00,
manitou 0:bcd16e4a0207 1130 0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x32,0x45,0x13,0x00,0x00,0x00,0x00,0x00,0x00,
manitou 0:bcd16e4a0207 1131 0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x11,0x10,0x11,0x11,0x32,0x54,0x55,0x76,0x76,
manitou 0:bcd16e4a0207 1132
manitou 0:bcd16e4a0207 1133 //Q - phoneme 'k'
manitou 0:bcd16e4a0207 1134 0x99,0x58,0x65,0x88,0x48,0xA3,0xAB,0x76,0xC9,0x4A,0x21,0x84,0x69,0x44,0xC7,0x4A,
manitou 0:bcd16e4a0207 1135 0x52,0xA9,0x48,0x72,0xED,0x8B,0x78,0x55,0x24,0x32,0xF4,0xCF,0x10,0xFB,0x4F,0x54,
manitou 0:bcd16e4a0207 1136 0x98,0x68,0x74,0x88,0x56,0x85,0x89,0x56,0x87,0x78,0x76,0x98,0x99,0x99,0x89,0x68,
manitou 0:bcd16e4a0207 1137 0x76,0x67,0x65,0x98,0x78,0x44,0x54,0xB8,0xAB,0x69,0x55,0x76,0x88,0x56,0x65,0x98,
manitou 0:bcd16e4a0207 1138
manitou 0:bcd16e4a0207 1139 //R - phoneme 'w'
manitou 0:bcd16e4a0207 1140 0x44,0x55,0x76,0xB9,0xDC,0xFE,0xFF,0xDE,0xCD,0xAB,0x9A,0x88,0x56,0x45,0x23,0x22,
manitou 0:bcd16e4a0207 1141 0x43,0x54,0x86,0x98,0xA9,0xAA,0x9A,0x99,0x99,0x89,0x88,0x56,0x45,0x44,0x54,0x55,
manitou 0:bcd16e4a0207 1142 0x66,0x76,0x87,0x88,0x98,0x99,0x99,0xA9,0x99,0xAA,0xAA,0xAA,0x9A,0x89,0x78,0x66,
manitou 0:bcd16e4a0207 1143 0x66,0x66,0x66,0x56,0x55,0x55,0x55,0x66,0x66,0x66,0x56,0x55,0x55,0x55,0x55,0x55,
manitou 0:bcd16e4a0207 1144
manitou 0:bcd16e4a0207 1145 //S - phonene
manitou 0:bcd16e4a0207 1146 0x45,0xB6,0xFF,0xA5,0xFB,0x6A,0x84,0x95,0x56,0x73,0xD9,0x69,0xB8,0x8C,0x56,0x66,
manitou 0:bcd16e4a0207 1147 0x67,0x44,0xA6,0x8A,0x96,0xAA,0x68,0x65,0x76,0x46,0x75,0x99,0x88,0xA9,0x8A,0x67,
manitou 0:bcd16e4a0207 1148 0x76,0x67,0x65,0x97,0x88,0xC9,0x9A,0xA9,0xA9,0x59,0x65,0x89,0x55,0x98,0x88,0x67,
manitou 0:bcd16e4a0207 1149 0x66,0x46,0x54,0x66,0x55,0x86,0x56,0x76,0x56,0x55,0x56,0x65,0x45,0x87,0x58,0x75,
manitou 0:bcd16e4a0207 1150
manitou 0:bcd16e4a0207 1151 //T - phoneme 'y'
manitou 0:bcd16e4a0207 1152 0x55,0x95,0x54,0x5C,0x87,0xA9,0xA8,0xAD,0xBB,0xBD,0x9D,0x9F,0xAB,0xAB,0x8A,0x8B,
manitou 0:bcd16e4a0207 1153 0x88,0x88,0x46,0x47,0x44,0x55,0x44,0x55,0x54,0x65,0x55,0x87,0x86,0x97,0x88,0x99,
manitou 0:bcd16e4a0207 1154 0x98,0xA9,0x99,0x9A,0x98,0x99,0x98,0x9A,0x99,0x99,0x98,0x8A,0x88,0x88,0x78,0x68,
manitou 0:bcd16e4a0207 1155 0x66,0x56,0x55,0x45,0x54,0x44,0x54,0x44,0x55,0x54,0x55,0x44,0x45,0x64,0x54,0x47,
manitou 0:bcd16e4a0207 1156
manitou 0:bcd16e4a0207 1157 //U - phoneme 'ih'
manitou 0:bcd16e4a0207 1158 0xA4,0x58,0xD5,0x1F,0xD7,0x8F,0xD5,0x8F,0xA5,0x88,0x84,0x34,0x95,0x34,0xB6,0x5A,
manitou 0:bcd16e4a0207 1159 0xB7,0x6C,0x89,0x89,0x87,0x55,0x67,0x44,0x87,0x58,0x99,0x89,0x99,0x99,0x88,0x86,
manitou 0:bcd16e4a0207 1160 0x88,0x65,0x88,0x98,0x89,0xAB,0x9B,0xB9,0x89,0x86,0x58,0x65,0x55,0x54,0x55,0x67,
manitou 0:bcd16e4a0207 1161 0x66,0x88,0x66,0x87,0x55,0x56,0x64,0x46,0x75,0x46,0x84,0x59,0x75,0x89,0x74,0x67,
manitou 0:bcd16e4a0207 1162
manitou 0:bcd16e4a0207 1163 //V - phoneme 'j'
manitou 0:bcd16e4a0207 1164 0x76,0x66,0x67,0x66,0x77,0x87,0x77,0x89,0x88,0x89,0x89,0x89,0xA8,0x99,0x9A,0xA9,
manitou 0:bcd16e4a0207 1165 0x9A,0xBA,0x9A,0x9A,0xA9,0x89,0x89,0x88,0x79,0x87,0x77,0x67,0x66,0x67,0x76,0x76,
manitou 0:bcd16e4a0207 1166 0x67,0x77,0x77,0x88,0x97,0x89,0x99,0x99,0xAA,0xA9,0x9A,0xAA,0xA9,0x9A,0x99,0x89,
manitou 0:bcd16e4a0207 1167 0x99,0x87,0x78,0x77,0x67,0x77,0x76,0x66,0x67,0x66,0x77,0x87,0x77,0x89,0x88,0x89,
manitou 0:bcd16e4a0207 1168
manitou 0:bcd16e4a0207 1169 //W - phoneme 'd'
manitou 0:bcd16e4a0207 1170 0x3A,0xFB,0x98,0x6C,0xA9,0xA5,0x5A,0x89,0xA8,0x58,0x67,0x67,0x55,0x55,0x66,0x56,
manitou 0:bcd16e4a0207 1171 0x76,0x88,0x76,0x86,0x87,0x54,0x55,0x47,0x55,0x85,0x65,0x66,0x88,0x8A,0xA8,0xAA,
manitou 0:bcd16e4a0207 1172 0x89,0x98,0x89,0x67,0x88,0x89,0x98,0xBA,0xAB,0xBA,0xBC,0xAB,0xAA,0xAA,0x78,0x87,
manitou 0:bcd16e4a0207 1173 0x78,0x66,0x86,0x88,0x87,0x98,0x88,0x77,0x78,0x56,0x55,0x56,0x44,0x54,0x45,0x44,
manitou 0:bcd16e4a0207 1174
manitou 0:bcd16e4a0207 1175 //X - phoneme 'nx'
manitou 0:bcd16e4a0207 1176 0x44,0xA6,0xAA,0xBB,0xCB,0xBD,0xBD,0xAB,0xAA,0xBA,0x9A,0x89,0x88,0x88,0x88,0x66,
manitou 0:bcd16e4a0207 1177 0x66,0x66,0x66,0x67,0x87,0x78,0x88,0x88,0x88,0x87,0x77,0x77,0x77,0x77,0x88,0x88,
manitou 0:bcd16e4a0207 1178 0x88,0x99,0xAA,0xAA,0xAA,0xAA,0x99,0x99,0x99,0x88,0x88,0x66,0x66,0x55,0x55,0x55,
manitou 0:bcd16e4a0207 1179 0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x55,0x65,0x56,0x55,0x55,0x55,0x55,0x45,
manitou 0:bcd16e4a0207 1180
manitou 0:bcd16e4a0207 1181 //Y - phoneme 'oh'
manitou 0:bcd16e4a0207 1182 0x66,0x66,0xF7,0xFF,0x9E,0x5B,0x74,0x88,0x56,0x54,0x75,0xDB,0xBD,0x88,0x46,0x75,
manitou 0:bcd16e4a0207 1183 0x58,0x45,0x65,0xB7,0xCB,0x8A,0x68,0x56,0x76,0x56,0x54,0x87,0xBA,0xAB,0x78,0x77,
manitou 0:bcd16e4a0207 1184 0x66,0x66,0x56,0x96,0xDA,0xBD,0x8B,0x56,0x75,0x67,0x76,0x76,0x98,0x9A,0x88,0x66,
manitou 0:bcd16e4a0207 1185 0x65,0x77,0x66,0x56,0x66,0x87,0x66,0x55,0x65,0x66,0x56,0x65,0x66,0x77,0x88,0x67,
manitou 0:bcd16e4a0207 1186
manitou 0:bcd16e4a0207 1187 //Z - phoneme 'o'
manitou 0:bcd16e4a0207 1188 0x95,0xDB,0xFF,0xFF,0x4A,0x02,0x00,0x73,0xFB,0xFF,0xAF,0x48,0x23,0x42,0x75,0x88,
manitou 0:bcd16e4a0207 1189 0x99,0x98,0xAA,0xAA,0x68,0x25,0x22,0x53,0xB8,0xED,0xBD,0x69,0x24,0x32,0x75,0xA9,
manitou 0:bcd16e4a0207 1190 0xAB,0x9A,0x88,0x88,0xA9,0x89,0x67,0x66,0x87,0x89,0x89,0x69,0x67,0x66,0x66,0x66,
manitou 0:bcd16e4a0207 1191 0x55,0x66,0x86,0x78,0x66,0x55,0x55,0x55,0x66,0x66,0x66,0x66,0x66,0x66,0x56,0x45,
manitou 0:bcd16e4a0207 1192
manitou 0:bcd16e4a0207 1193 //[ - phoneme 'er'
manitou 0:bcd16e4a0207 1194 0x67,0xD7,0xFF,0xAB,0xCB,0xAC,0x89,0x26,0x52,0x87,0x56,0x86,0xBA,0xCB,0x8B,0x76,
manitou 0:bcd16e4a0207 1195 0x88,0x48,0x44,0x55,0x76,0x89,0x88,0xB9,0xAB,0x88,0x67,0x66,0x66,0x45,0x75,0x98,
manitou 0:bcd16e4a0207 1196 0x99,0x99,0x99,0xBA,0x8A,0x87,0x88,0x78,0x77,0x76,0x98,0x89,0x87,0x88,0x78,0x66,
manitou 0:bcd16e4a0207 1197 0x55,0x65,0x66,0x65,0x66,0x66,0x66,0x56,0x65,0x56,0x55,0x65,0x56,0x66,0x66,0x66,
manitou 0:bcd16e4a0207 1198
manitou 0:bcd16e4a0207 1199 // phoneme - 'sh'
manitou 0:bcd16e4a0207 1200 0x8B,0x43,0x97,0x3B,0x93,0x4C,0x55,0x3F,0x74,0x59,0x58,0xC8,0x03,0xC7,0x26,0xC3,
manitou 0:bcd16e4a0207 1201 0x18,0x77,0x7A,0x34,0xC9,0x82,0xA1,0x2B,0x81,0x2D,0x76,0xA8,0x38,0x78,0x7A,0xE0,
manitou 0:bcd16e4a0207 1202 0x48,0xA6,0x83,0x47,0x3B,0xA5,0x3A,0x85,0x3B,0x98,0x64,0x89,0x56,0xB8,0x88,0x83,
manitou 0:bcd16e4a0207 1203 0x67,0x87,0x27,0x77,0x0D,0x73,0x5E,0x72,0xCC,0x70,0xD8,0x44,0x47,0x59,0x98,0x58,
manitou 0:bcd16e4a0207 1204
manitou 0:bcd16e4a0207 1205 //] - phoneme 'g'
manitou 0:bcd16e4a0207 1206 0x76,0x87,0x88,0x98,0x99,0xAA,0xAA,0xAA,0xAA,0x99,0x89,0x88,0x88,0x77,0x66,0x66,
manitou 0:bcd16e4a0207 1207 0x55,0x45,0x41,0xB7,0xDC,0xBE,0x99,0xB9,0xBB,0x8A,0x45,0x43,0x54,0x55,0x24,0x42,
manitou 0:bcd16e4a0207 1208 0x65,0x76,0x56,0x54,0x65,0x77,0x66,0x86,0xCB,0xED,0xCE,0xBB,0xBA,0xAB,0x99,0x68,
manitou 0:bcd16e4a0207 1209 0x65,0x66,0x76,0x86,0x77,0x87,0x88,0x89,0x88,0x78,0x99,0x99,0x99,0x98,0x99,0x9A,
manitou 0:bcd16e4a0207 1210
manitou 0:bcd16e4a0207 1211 // ^ - phoneme 's'
manitou 0:bcd16e4a0207 1212 0xB6,0x75,0x5A,0x4B,0x99,0xB5,0x58,0x5B,0x89,0xA6,0x96,0x68,0x88,0xA6,0x78,0x4A,
manitou 0:bcd16e4a0207 1213 0x8B,0xA5,0xA5,0x4A,0x4B,0xB7,0xB4,0x7A,0x4C,0x87,0xC3,0x78,0x2C,0x4B,0xC5,0xA4,
manitou 0:bcd16e4a0207 1214 0x3A,0x5B,0x99,0x95,0x88,0x49,0xB7,0xB4,0x68,0x8A,0xA7,0xB5,0x78,0x4C,0x9A,0xA5,
manitou 0:bcd16e4a0207 1215 0x78,0x5A,0x87,0xB5,0x78,0x5C,0x6B,0xA6,0x78,0x5A,0xA7,0xB3,0x58,0x2D,0x89,0xD5,
manitou 0:bcd16e4a0207 1216
manitou 0:bcd16e4a0207 1217 // _ - phomeme 'f'
manitou 0:bcd16e4a0207 1218 0x65,0x66,0x6A,0x66,0xA7,0x98,0x66,0x6A,0x66,0xA7,0xA6,0x67,0x66,0x68,0xA6,0x6A,
manitou 0:bcd16e4a0207 1219 0x67,0xA7,0x98,0x66,0x66,0xA7,0x9A,0xA5,0x86,0x66,0x77,0x68,0xA6,0x9A,0x59,0x66,
manitou 0:bcd16e4a0207 1220 0x89,0xA7,0x89,0x65,0x68,0x86,0xA6,0x76,0x68,0x86,0x66,0xAA,0x68,0x66,0x6A,0x76,
manitou 0:bcd16e4a0207 1221 0x86,0x76,0x7A,0x66,0xA6,0x6A,0x7A,0x66,0xA6,0x8A,0x76,0x7A,0x8A,0x95,0x6A,0xA6,
manitou 0:bcd16e4a0207 1222
manitou 0:bcd16e4a0207 1223 // ` - phoneme 'z'
manitou 0:bcd16e4a0207 1224 0x89,0x89,0x89,0xA8,0x99,0x9A,0xA9,0x9A,0xBA,0x9A,0x9A,0xA9,0x89,0x89,0x88,0x79,
manitou 0:bcd16e4a0207 1225 0x87,0x77,0x67,0x66,0x67,0x76,0x76,0x67,0x77,0x77,0x88,0x97,0x89,0x99,0x99,0xAA,
manitou 0:bcd16e4a0207 1226 0xA9,0x9A,0xAA,0xA9,0x9A,0x99,0x89,0x99,0x87,0x78,0x77,0x67,0x77,0x76,0x66,0x67,
manitou 0:bcd16e4a0207 1227 0x66,0x77,0x87,0x77,0x89,0x88,0x89,0x89,0x89,0xA8,0x99,0x9A,0xA9,0x9A,0xBA,0x9A,
manitou 0:bcd16e4a0207 1228
manitou 0:bcd16e4a0207 1229 //a - pause
manitou 0:bcd16e4a0207 1230 0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
manitou 0:bcd16e4a0207 1231 0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
manitou 0:bcd16e4a0207 1232 0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
manitou 0:bcd16e4a0207 1233 0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,0x88,
manitou 0:bcd16e4a0207 1234
manitou 0:bcd16e4a0207 1235 // b - phoneme 'th'
manitou 0:bcd16e4a0207 1236 0x88,0x88,0x87,0x88,0x79,0x86,0x88,0x76,0x86,0x86,0x66,0x66,0x76,0x78,0x98,0x88,
manitou 0:bcd16e4a0207 1237 0x8A,0x99,0x88,0x89,0x79,0x7A,0x8A,0x99,0x89,0xA8,0x98,0x98,0x68,0x88,0x89,0x79,
manitou 0:bcd16e4a0207 1238 0x78,0x78,0x88,0x86,0x88,0x67,0x68,0x87,0x87,0x85,0x67,0x7A,0x88,0x8A,0x8B,0x9A,
manitou 0:bcd16e4a0207 1239 0xA9,0x99,0xA9,0x98,0xA9,0xA9,0xA8,0x98,0xA8,0x96,0x86,0x76,0x76,0x78,0x76,0x66,
manitou 0:bcd16e4a0207 1240
manitou 0:bcd16e4a0207 1241 // c - phoneme 'dh'
manitou 0:bcd16e4a0207 1242 0x67,0x98,0x99,0xA9,0xAA,0x9A,0xAA,0x89,0x88,0x78,0x67,0x76,0x67,0x76,0x87,0x88,
manitou 0:bcd16e4a0207 1243 0x99,0x9A,0xA9,0xAA,0x99,0x99,0x89,0x77,0x77,0x66,0x76,0x77,0x77,0x88,0x88,0xA9,
manitou 0:bcd16e4a0207 1244 0xAA,0xA9,0xAA,0x89,0x88,0x78,0x77,0x77,0x66,0x76,0x77,0x87,0x99,0x99,0xA9,0xAA,
manitou 0:bcd16e4a0207 1245 0x99,0x9A,0x89,0x88,0x77,0x66,0x87,0x99,0x99,0xAA,0xAA,0xA9,0x9A,0x88,0x88,0x77,
manitou 0:bcd16e4a0207 1246
manitou 0:bcd16e4a0207 1247 // d - phoneme '/u`'
manitou 0:bcd16e4a0207 1248 0xD6,0xFC,0xCD,0x9C,0x88,0x88,0x56,0x44,0x76,0xBA,0xAB,0x99,0x89,0x78,0x56,0x44,
manitou 0:bcd16e4a0207 1249 0x65,0x98,0x99,0x99,0x99,0x89,0x56,0x45,0x64,0x87,0x88,0x98,0x99,0x99,0x68,0x55,
manitou 0:bcd16e4a0207 1250 0x65,0x86,0xA9,0xBB,0xAB,0x8A,0x68,0x56,0x66,0x87,0x88,0x88,0x78,0x56,0x55,0x55,
manitou 0:bcd16e4a0207 1251 0x55,0x65,0x66,0x66,0x56,0x66,0x55,0x55,0x56,0x45,0x65,0x87,0x88,0x66,0x55,0x55,
manitou 0:bcd16e4a0207 1252
manitou 0:bcd16e4a0207 1253 // e - phoneme 'zh'
manitou 0:bcd16e4a0207 1254 0x98,0x89,0xAA,0x99,0xAA,0x89,0x89,0x67,0x77,0x66,0x77,0x76,0x88,0x97,0xA9,0xA9,
manitou 0:bcd16e4a0207 1255 0xAB,0x99,0x99,0x87,0x78,0x76,0x67,0x76,0x77,0x97,0x89,0xA9,0x9A,0xB9,0x99,0x99,
manitou 0:bcd16e4a0207 1256 0x78,0x88,0x66,0x76,0x66,0x87,0x88,0xA9,0x99,0xAA,0x99,0x9A,0x88,0x88,0x76,0x67,
manitou 0:bcd16e4a0207 1257 0x66,0x77,0x86,0x88,0x98,0x98,0x89,0xAA,0x99,0xAA,0x89,0x89,0x67,0x77,0x66,0x77,
manitou 0:bcd16e4a0207 1258
manitou 0:bcd16e4a0207 1259 // f - phoneme 'eh'
manitou 0:bcd16e4a0207 1260 0x55,0x87,0xF4,0x8F,0x95,0x8F,0x23,0x67,0x86,0x75,0xFB,0x79,0xB8,0x29,0x53,0x76,
manitou 0:bcd16e4a0207 1261 0x66,0xB8,0x9C,0x78,0x88,0x45,0x65,0x87,0x97,0xAA,0x89,0x87,0x56,0x55,0x76,0x88,
manitou 0:bcd16e4a0207 1262 0x99,0x8A,0x68,0x66,0x55,0x76,0xAB,0x98,0xBA,0x58,0x65,0x56,0x76,0x99,0x89,0x88,
manitou 0:bcd16e4a0207 1263 0x68,0x55,0x66,0x66,0x98,0x88,0x77,0x66,0x55,0x56,0x66,0x66,0x86,0x57,0x87,0x56,
manitou 0:bcd16e4a0207 1264
manitou 0:bcd16e4a0207 1265 // g - phonemem 'uh'
manitou 0:bcd16e4a0207 1266 0x21,0x32,0x44,0x44,0x64,0x86,0xAA,0x9A,0x77,0xB9,0xFD,0xFF,0xCD,0xBA,0xCB,0xCB,
manitou 0:bcd16e4a0207 1267 0x8A,0x55,0x65,0xA7,0xAA,0x89,0x98,0xB9,0xCC,0xAB,0x68,0x66,0x88,0x78,0x57,0x55,
manitou 0:bcd16e4a0207 1268 0x97,0xBA,0xAB,0x9A,0x99,0xAA,0x9A,0x68,0x66,0x86,0x98,0x99,0xDB,0xFD,0xFF,0xDF,
manitou 0:bcd16e4a0207 1269 0xAB,0x89,0x88,0x68,0x55,0x55,0x76,0x88,0x78,0x56,0x66,0x66,0x56,0x34,0x22,0x32,
manitou 0:bcd16e4a0207 1270
manitou 0:bcd16e4a0207 1271 //UNUSED
manitou 0:bcd16e4a0207 1272 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
manitou 0:bcd16e4a0207 1273 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
manitou 0:bcd16e4a0207 1274 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
manitou 0:bcd16e4a0207 1275 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00
manitou 0:bcd16e4a0207 1276 };
manitou 0:bcd16e4a0207 1277
manitou 0:bcd16e4a0207 1278 static const SOUND_INDEX SoundIndex[41] PROGMEM= {
manitou 0:bcd16e4a0207 1279 // Sound Phoneme
manitou 0:bcd16e4a0207 1280 { 0, 0,10}, // A
manitou 0:bcd16e4a0207 1281 { 1, 0,10}, // B
manitou 0:bcd16e4a0207 1282 { 2, 0,10}, // C
manitou 0:bcd16e4a0207 1283 { 3, 0,10}, // D
manitou 0:bcd16e4a0207 1284 { 4, 0, 8}, // E
manitou 0:bcd16e4a0207 1285 { 5, 0,12}, // F
manitou 0:bcd16e4a0207 1286 { 6, 0, 8}, // G
manitou 0:bcd16e4a0207 1287 { 7, 0, 1}, // H
manitou 0:bcd16e4a0207 1288 { 8, 0, 1}, // I
manitou 0:bcd16e4a0207 1289 { 9, 0, 1}, // J
manitou 0:bcd16e4a0207 1290 {10, 0, 6}, // K
manitou 0:bcd16e4a0207 1291 {11,-1, 0}, // L v (add 'f')
manitou 0:bcd16e4a0207 1292 {12, 1,12}, // M
manitou 0:bcd16e4a0207 1293 {13, 2, 0}, // N
manitou 0:bcd16e4a0207 1294 {14, 1,12}, // O
manitou 0:bcd16e4a0207 1295 {15, 1,12}, // P
manitou 0:bcd16e4a0207 1296 {16, 1,12}, // Q
manitou 0:bcd16e4a0207 1297 {17, 0, 6}, // R
manitou 0:bcd16e4a0207 1298 {18, 0, 6}, // S
manitou 0:bcd16e4a0207 1299 {19, 0, 6}, // T
manitou 0:bcd16e4a0207 1300 {20, 0, 6}, // U
manitou 0:bcd16e4a0207 1301 {21,-4, 0}, // V j (add 'sh')
manitou 0:bcd16e4a0207 1302 {22, 1,12}, // W
manitou 0:bcd16e4a0207 1303 {23, 0, 4}, // X
manitou 0:bcd16e4a0207 1304 {24, 0, 8}, // Y
manitou 0:bcd16e4a0207 1305 {25, 0, 6}, // Z
manitou 0:bcd16e4a0207 1306 {26, 0,10}, // [
manitou 0:bcd16e4a0207 1307 {27, 2, 0}, // '\\'
manitou 0:bcd16e4a0207 1308 {28, 1,12}, // ]
manitou 0:bcd16e4a0207 1309 {29, 2, 0}, // ^ s
manitou 0:bcd16e4a0207 1310 {30, 2, 0}, // _ f
manitou 0:bcd16e4a0207 1311 {31,-2, 0}, // ` z (add 's')
manitou 0:bcd16e4a0207 1312 {32, 0,10}, // a
manitou 0:bcd16e4a0207 1313 {33, 2, 0}, // b th
manitou 0:bcd16e4a0207 1314 {34,-3, 0}, // c dh (add 'th')
manitou 0:bcd16e4a0207 1315 {35, 0, 6}, // d
manitou 0:bcd16e4a0207 1316 {36,-4, 0}, // e zh (add 'sh')
manitou 0:bcd16e4a0207 1317 {37, 0, 8}, // f
manitou 0:bcd16e4a0207 1318 {38, 0, 8}, // g
manitou 0:bcd16e4a0207 1319 {32, 0,10}, // h
manitou 0:bcd16e4a0207 1320 {32, 0,10} // i
manitou 0:bcd16e4a0207 1321 };
manitou 0:bcd16e4a0207 1322
manitou 0:bcd16e4a0207 1323
manitou 0:bcd16e4a0207 1324 #endif