liblouis-rb 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (517) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +520 -0
  3. data/README.md +100 -0
  4. data/Rakefile +80 -0
  5. data/ext/liblouis/braille_character.c +200 -0
  6. data/ext/liblouis/braille_table.c +198 -0
  7. data/ext/liblouis/braille_text.c +223 -0
  8. data/ext/liblouis/extconf.rb +73 -0
  9. data/ext/liblouis/liblouis.c +168 -0
  10. data/ext/liblouis/liblouis_ext.h +49 -0
  11. data/ext/liblouis/table_source.c +161 -0
  12. data/ext/liblouis/translation.c +443 -0
  13. data/liblouis-rb.gemspec +49 -0
  14. data/spec/liblouis_spec.rb +62 -0
  15. data/test/integration/packaging_test.rb +82 -0
  16. data/test/table_source_cases.rb +9 -0
  17. data/test/test_braille_character.rb +62 -0
  18. data/test/test_braille_table.rb +379 -0
  19. data/test/test_braille_text.rb +30 -0
  20. data/test/test_helper.rb +7 -0
  21. data/test/translation_cases.rb +33 -0
  22. data/vendor/liblouis/COPYING +674 -0
  23. data/vendor/liblouis/COPYING.LESSER +502 -0
  24. data/vendor/liblouis/configure.ac +290 -0
  25. data/vendor/liblouis/liblouis/commonTranslationFunctions.c +95 -0
  26. data/vendor/liblouis/liblouis/compileTranslationTable.c +5515 -0
  27. data/vendor/liblouis/liblouis/internal.h +781 -0
  28. data/vendor/liblouis/liblouis/liblouis.h.in +514 -0
  29. data/vendor/liblouis/liblouis/logging.c +233 -0
  30. data/vendor/liblouis/liblouis/lou_backTranslateString.c +1855 -0
  31. data/vendor/liblouis/liblouis/lou_translateString.c +4177 -0
  32. data/vendor/liblouis/liblouis/maketable.c +463 -0
  33. data/vendor/liblouis/liblouis/metadata.c +1258 -0
  34. data/vendor/liblouis/liblouis/pattern.c +1632 -0
  35. data/vendor/liblouis/liblouis/utils.c +448 -0
  36. data/vendor/liblouis/tables/Es-Es-G0.utb +248 -0
  37. data/vendor/liblouis/tables/IPA-unicode-range.uti +200 -0
  38. data/vendor/liblouis/tables/IPA.utb +164 -0
  39. data/vendor/liblouis/tables/Lv-Lv-g1.utb +509 -0
  40. data/vendor/liblouis/tables/Makefile.am +503 -0
  41. data/vendor/liblouis/tables/Pl-Pl-g1.utb +312 -0
  42. data/vendor/liblouis/tables/README +6 -0
  43. data/vendor/liblouis/tables/afr-za-g1.ctb +63 -0
  44. data/vendor/liblouis/tables/afr-za-g2.ctb +1050 -0
  45. data/vendor/liblouis/tables/akk-borger.utb +997 -0
  46. data/vendor/liblouis/tables/akk.utb +1002 -0
  47. data/vendor/liblouis/tables/ancient-languages-borger.utb +114 -0
  48. data/vendor/liblouis/tables/ancient-languages-us.utb +114 -0
  49. data/vendor/liblouis/tables/ar-ar-comp8.utb +293 -0
  50. data/vendor/liblouis/tables/ar-ar-g1-core.uti +291 -0
  51. data/vendor/liblouis/tables/ar-ar-g1.utb +26 -0
  52. data/vendor/liblouis/tables/ar-ar-g2.ctb +447 -0
  53. data/vendor/liblouis/tables/ar-ar-math.uti +501 -0
  54. data/vendor/liblouis/tables/ar.tbl +17 -0
  55. data/vendor/liblouis/tables/as-in-g1.utb +27 -0
  56. data/vendor/liblouis/tables/as.tbl +18 -0
  57. data/vendor/liblouis/tables/aw-in-g1.utb +27 -0
  58. data/vendor/liblouis/tables/awa.tbl +18 -0
  59. data/vendor/liblouis/tables/ba.utb +64 -0
  60. data/vendor/liblouis/tables/be-in-g1.utb +27 -0
  61. data/vendor/liblouis/tables/bel-comp.utb +42 -0
  62. data/vendor/liblouis/tables/bel-detailed.utb +32 -0
  63. data/vendor/liblouis/tables/bel.utb +61 -0
  64. data/vendor/liblouis/tables/bengali.cti +238 -0
  65. data/vendor/liblouis/tables/bg.ctb +215 -0
  66. data/vendor/liblouis/tables/bg.dis +84 -0
  67. data/vendor/liblouis/tables/bg.tbl +21 -0
  68. data/vendor/liblouis/tables/bg.utb +454 -0
  69. data/vendor/liblouis/tables/bh.ctb +24 -0
  70. data/vendor/liblouis/tables/bh.tbl +17 -0
  71. data/vendor/liblouis/tables/bn.tbl +18 -0
  72. data/vendor/liblouis/tables/bo.ctb +184 -0
  73. data/vendor/liblouis/tables/bo.tbl +21 -0
  74. data/vendor/liblouis/tables/boxes.ctb +162 -0
  75. data/vendor/liblouis/tables/br-in-g1.utb +27 -0
  76. data/vendor/liblouis/tables/bra.tbl +18 -0
  77. data/vendor/liblouis/tables/braille-patterns.cti +287 -0
  78. data/vendor/liblouis/tables/ca-chardefs.cti +225 -0
  79. data/vendor/liblouis/tables/ca-g1.ctb +46 -0
  80. data/vendor/liblouis/tables/ca.tbl +18 -0
  81. data/vendor/liblouis/tables/chr-us-g1.ctb +180 -0
  82. data/vendor/liblouis/tables/ckb-chardefs.cti +219 -0
  83. data/vendor/liblouis/tables/ckb-g1.ctb +31 -0
  84. data/vendor/liblouis/tables/ckb-translation.cti +131 -0
  85. data/vendor/liblouis/tables/ckb.tbl +18 -0
  86. data/vendor/liblouis/tables/compress.cti +44 -0
  87. data/vendor/liblouis/tables/controlchars.cti +27 -0
  88. data/vendor/liblouis/tables/cop-eg-comp8.utb +255 -0
  89. data/vendor/liblouis/tables/cop.utb +231 -0
  90. data/vendor/liblouis/tables/corrections.cti +47 -0
  91. data/vendor/liblouis/tables/countries.cti +263 -0
  92. data/vendor/liblouis/tables/critical-apparatus.uti +54 -0
  93. data/vendor/liblouis/tables/cs-chardefs.cti +385 -0
  94. data/vendor/liblouis/tables/cs-comp8.utb +405 -0
  95. data/vendor/liblouis/tables/cs-g1.ctb +37 -0
  96. data/vendor/liblouis/tables/cs-translation.cti +63 -0
  97. data/vendor/liblouis/tables/cs.tbl +20 -0
  98. data/vendor/liblouis/tables/cuneiform-transliterated-compact.utb +432 -0
  99. data/vendor/liblouis/tables/cuneiform-transliterated.utb +160 -0
  100. data/vendor/liblouis/tables/cy-cy-g1.utb +487 -0
  101. data/vendor/liblouis/tables/cy-cy-g2.ctb +199 -0
  102. data/vendor/liblouis/tables/cy.tbl +19 -0
  103. data/vendor/liblouis/tables/da-dk-6miscChars.cti +385 -0
  104. data/vendor/liblouis/tables/da-dk-6miscChars_1993.cti +412 -0
  105. data/vendor/liblouis/tables/da-dk-8miscChars.cti +90 -0
  106. data/vendor/liblouis/tables/da-dk-8miscChars_1993.cti +102 -0
  107. data/vendor/liblouis/tables/da-dk-g08.ctb +290 -0
  108. data/vendor/liblouis/tables/da-dk-g08_1993.ctb +331 -0
  109. data/vendor/liblouis/tables/da-dk-g16-lit_1993.ctb +294 -0
  110. data/vendor/liblouis/tables/da-dk-g16.ctb +289 -0
  111. data/vendor/liblouis/tables/da-dk-g16_1993.ctb +305 -0
  112. data/vendor/liblouis/tables/da-dk-g18.ctb +545 -0
  113. data/vendor/liblouis/tables/da-dk-g18_1993.ctb +563 -0
  114. data/vendor/liblouis/tables/da-dk-g2.dic +7439 -0
  115. data/vendor/liblouis/tables/da-dk-g26-lit_1993.ctb +898 -0
  116. data/vendor/liblouis/tables/da-dk-g26.ctb +1345 -0
  117. data/vendor/liblouis/tables/da-dk-g26_1993.ctb +1127 -0
  118. data/vendor/liblouis/tables/da-dk-g26l-lit_1993.ctb +588 -0
  119. data/vendor/liblouis/tables/da-dk-g26l_1993.ctb +604 -0
  120. data/vendor/liblouis/tables/da-dk-g28.ctb +2426 -0
  121. data/vendor/liblouis/tables/da-dk-g28_1993.ctb +2063 -0
  122. data/vendor/liblouis/tables/da-dk-g28l_1993.ctb +1594 -0
  123. data/vendor/liblouis/tables/da-dk-octobraille.dis +316 -0
  124. data/vendor/liblouis/tables/da-dk-octobraille_1993.dis +313 -0
  125. data/vendor/liblouis/tables/de-accents-detailed.cti +214 -0
  126. data/vendor/liblouis/tables/de-accents.cti +214 -0
  127. data/vendor/liblouis/tables/de-chardefs6.cti +289 -0
  128. data/vendor/liblouis/tables/de-chardefs8.cti +278 -0
  129. data/vendor/liblouis/tables/de-chess.ctb +37 -0
  130. data/vendor/liblouis/tables/de-comp6.utb +226 -0
  131. data/vendor/liblouis/tables/de-de-comp8.ctb +492 -0
  132. data/vendor/liblouis/tables/de-de.dis +331 -0
  133. data/vendor/liblouis/tables/de-eurobrl6.dis +101 -0
  134. data/vendor/liblouis/tables/de-eurobrl6u.dis +96 -0
  135. data/vendor/liblouis/tables/de-g0-core.uti +732 -0
  136. data/vendor/liblouis/tables/de-g0-detailed.utb +84 -0
  137. data/vendor/liblouis/tables/de-g0.utb +57 -0
  138. data/vendor/liblouis/tables/de-g1-core-patterns.dic +4863 -0
  139. data/vendor/liblouis/tables/de-g1-core.cti +67 -0
  140. data/vendor/liblouis/tables/de-g1-detailed.ctb +79 -0
  141. data/vendor/liblouis/tables/de-g1.ctb +54 -0
  142. data/vendor/liblouis/tables/de-g2-core-patterns.dic +26711 -0
  143. data/vendor/liblouis/tables/de-g2-core.cti +607 -0
  144. data/vendor/liblouis/tables/de-g2-detailed.ctb +60 -0
  145. data/vendor/liblouis/tables/de-g2.ctb +57 -0
  146. data/vendor/liblouis/tables/devanagari.cti +325 -0
  147. data/vendor/liblouis/tables/digits6Dots.uti +30 -0
  148. data/vendor/liblouis/tables/digits6DotsPlusDot6.uti +30 -0
  149. data/vendor/liblouis/tables/digits8Dots.uti +30 -0
  150. data/vendor/liblouis/tables/dra.ctb +23 -0
  151. data/vendor/liblouis/tables/dra.tbl +21 -0
  152. data/vendor/liblouis/tables/el.ctb +775 -0
  153. data/vendor/liblouis/tables/en-GB-g2.ctb +829 -0
  154. data/vendor/liblouis/tables/en-chardefs.cti +193 -0
  155. data/vendor/liblouis/tables/en-chess.ctb +37 -0
  156. data/vendor/liblouis/tables/en-g3-patterns.dic +11194 -0
  157. data/vendor/liblouis/tables/en-g3.ctb +2261 -0
  158. data/vendor/liblouis/tables/en-gb-comp8.ctb +282 -0
  159. data/vendor/liblouis/tables/en-gb-g1.utb +527 -0
  160. data/vendor/liblouis/tables/en-in-g1.ctb +162 -0
  161. data/vendor/liblouis/tables/en-nabcc.utb +166 -0
  162. data/vendor/liblouis/tables/en-nz-g1.utb +65 -0
  163. data/vendor/liblouis/tables/en-nz-g2.ctb +46 -0
  164. data/vendor/liblouis/tables/en-ueb-chardefs.uti +938 -0
  165. data/vendor/liblouis/tables/en-ueb-g1.ctb +167 -0
  166. data/vendor/liblouis/tables/en-ueb-g2.ctb +3925 -0
  167. data/vendor/liblouis/tables/en-ueb-math.ctb +71 -0
  168. data/vendor/liblouis/tables/en-us-brf.dis +102 -0
  169. data/vendor/liblouis/tables/en-us-comp6.ctb +149 -0
  170. data/vendor/liblouis/tables/en-us-comp8-ext.utb +626 -0
  171. data/vendor/liblouis/tables/en-us-comp8.ctb +62 -0
  172. data/vendor/liblouis/tables/en-us-compbrl.uti +69 -0
  173. data/vendor/liblouis/tables/en-us-emphasis.uti +45 -0
  174. data/vendor/liblouis/tables/en-us-g1.ctb +199 -0
  175. data/vendor/liblouis/tables/en-us-g2.ctb +1081 -0
  176. data/vendor/liblouis/tables/en-us-interline.ctb +1126 -0
  177. data/vendor/liblouis/tables/en-us-mathtext.ctb +880 -0
  178. data/vendor/liblouis/tables/en_CA.ctb +195 -0
  179. data/vendor/liblouis/tables/en_CA.tbl +21 -0
  180. data/vendor/liblouis/tables/en_GB.tbl +26 -0
  181. data/vendor/liblouis/tables/en_US-comp8-ext.tbl +15 -0
  182. data/vendor/liblouis/tables/en_US.tbl +26 -0
  183. data/vendor/liblouis/tables/eo-g1-x-system.ctb +85 -0
  184. data/vendor/liblouis/tables/eo-g1.ctb +165 -0
  185. data/vendor/liblouis/tables/eo.tbl +14 -0
  186. data/vendor/liblouis/tables/es-chardefs.cti +206 -0
  187. data/vendor/liblouis/tables/es-g1.ctb +36 -0
  188. data/vendor/liblouis/tables/es-g2.ctb +955 -0
  189. data/vendor/liblouis/tables/es-new.dis +284 -0
  190. data/vendor/liblouis/tables/es-no.utb +79 -0
  191. data/vendor/liblouis/tables/es-old.dis +284 -0
  192. data/vendor/liblouis/tables/es.tbl +19 -0
  193. data/vendor/liblouis/tables/et-6dot.utb +269 -0
  194. data/vendor/liblouis/tables/et-g0.utb +139 -0
  195. data/vendor/liblouis/tables/ethio-g1.ctb +335 -0
  196. data/vendor/liblouis/tables/eurodefs.cti +107 -0
  197. data/vendor/liblouis/tables/fa-ir-comp8.ctb +250 -0
  198. data/vendor/liblouis/tables/fa-ir-g1.utb +311 -0
  199. data/vendor/liblouis/tables/fi-fi-8dot.ctb +278 -0
  200. data/vendor/liblouis/tables/fi.utb +354 -0
  201. data/vendor/liblouis/tables/fil-g2.ctb +491 -0
  202. data/vendor/liblouis/tables/fr-bfu-comp6-puncs-math.uti +351 -0
  203. data/vendor/liblouis/tables/fr-bfu-comp6.utb +238 -0
  204. data/vendor/liblouis/tables/fr-bfu-comp68.cti +251 -0
  205. data/vendor/liblouis/tables/fr-bfu-comp8.utb +323 -0
  206. data/vendor/liblouis/tables/fr-bfu-g2.ctb +4644 -0
  207. data/vendor/liblouis/tables/ga-g1.utb +95 -0
  208. data/vendor/liblouis/tables/ga-g2.ctb +231 -0
  209. data/vendor/liblouis/tables/gd.ctb +123 -0
  210. data/vendor/liblouis/tables/gd.tbl +21 -0
  211. data/vendor/liblouis/tables/gez.tbl +21 -0
  212. data/vendor/liblouis/tables/gon.ctb +25 -0
  213. data/vendor/liblouis/tables/gon.tbl +17 -0
  214. data/vendor/liblouis/tables/gr-pl-comp8.uti +256 -0
  215. data/vendor/liblouis/tables/grc-international-common.uti +104 -0
  216. data/vendor/liblouis/tables/grc-international-composed.uti +268 -0
  217. data/vendor/liblouis/tables/grc-international-decomposed.uti +268 -0
  218. data/vendor/liblouis/tables/grc-international-en-composed.utb +54 -0
  219. data/vendor/liblouis/tables/grc-international-en.utb +206 -0
  220. data/vendor/liblouis/tables/grc-international-es.utb +228 -0
  221. data/vendor/liblouis/tables/gu-in-g1.utb +27 -0
  222. data/vendor/liblouis/tables/gu.tbl +18 -0
  223. data/vendor/liblouis/tables/gujarati.cti +221 -0
  224. data/vendor/liblouis/tables/gurumuki.cti +393 -0
  225. data/vendor/liblouis/tables/haw-us-g1.ctb +54 -0
  226. data/vendor/liblouis/tables/hbo-cantillated-rules.uti +71 -0
  227. data/vendor/liblouis/tables/hbo-cantillated.utb +109 -0
  228. data/vendor/liblouis/tables/hbo-common-rules.uti +152 -0
  229. data/vendor/liblouis/tables/hbo-ihbc-rules.uti +58 -0
  230. data/vendor/liblouis/tables/hbo-slim-rules.uti +68 -0
  231. data/vendor/liblouis/tables/hbo-slim.utb +100 -0
  232. data/vendor/liblouis/tables/hbo.utb +107 -0
  233. data/vendor/liblouis/tables/he-IL-comp8.utb +464 -0
  234. data/vendor/liblouis/tables/he-IL.utb +406 -0
  235. data/vendor/liblouis/tables/he-common-consonants.uti +102 -0
  236. data/vendor/liblouis/tables/he-common-vowels-ihbc.uti +161 -0
  237. data/vendor/liblouis/tables/hi-in-g1.utb +27 -0
  238. data/vendor/liblouis/tables/hi.tbl +18 -0
  239. data/vendor/liblouis/tables/hr-chardefs.cti +278 -0
  240. data/vendor/liblouis/tables/hr-comp8.tbl +21 -0
  241. data/vendor/liblouis/tables/hr-comp8.utb +239 -0
  242. data/vendor/liblouis/tables/hr-digits.uti +40 -0
  243. data/vendor/liblouis/tables/hr-g1.ctb +36 -0
  244. data/vendor/liblouis/tables/hr-g1.tbl +9 -0
  245. data/vendor/liblouis/tables/hr-translation.cti +364 -0
  246. data/vendor/liblouis/tables/ht-frenchcompatibility.uti +61 -0
  247. data/vendor/liblouis/tables/ht-g1.utb +114 -0
  248. data/vendor/liblouis/tables/hu-backtranslate-correction.dis +38 -0
  249. data/vendor/liblouis/tables/hu-backtranslate-word-corrections.cti +4293 -0
  250. data/vendor/liblouis/tables/hu-chardefs.cti +298 -0
  251. data/vendor/liblouis/tables/hu-exceptionwords.cti +3204 -0
  252. data/vendor/liblouis/tables/hu-hu-comp8.ctb +183 -0
  253. data/vendor/liblouis/tables/hu-hu-g1.ctb +129 -0
  254. data/vendor/liblouis/tables/hu-hu-g1_braille_input.cti +486 -0
  255. data/vendor/liblouis/tables/hu-hu-g2.ctb +270 -0
  256. data/vendor/liblouis/tables/hu-hu-g2_exceptions.cti +1164 -0
  257. data/vendor/liblouis/tables/hy.ctb +121 -0
  258. data/vendor/liblouis/tables/hy.tbl +21 -0
  259. data/vendor/liblouis/tables/hyph_cs_CZ.dic +3637 -0
  260. data/vendor/liblouis/tables/hyph_da_DK.dic +8896 -0
  261. data/vendor/liblouis/tables/hyph_de_DE.dic +5799 -0
  262. data/vendor/liblouis/tables/hyph_en_US.dic +5537 -0
  263. data/vendor/liblouis/tables/hyph_eo.dic +1024 -0
  264. data/vendor/liblouis/tables/hyph_es_ES.dic +877 -0
  265. data/vendor/liblouis/tables/hyph_fr_FR.dic +1067 -0
  266. data/vendor/liblouis/tables/hyph_hu_HU.dic +98519 -0
  267. data/vendor/liblouis/tables/hyph_it_IT.dic +410 -0
  268. data/vendor/liblouis/tables/hyph_nb_NO.dic +27142 -0
  269. data/vendor/liblouis/tables/hyph_nl_NL.dic +12725 -0
  270. data/vendor/liblouis/tables/hyph_nn_NO.dic +27142 -0
  271. data/vendor/liblouis/tables/hyph_pl_PL.dic +4074 -0
  272. data/vendor/liblouis/tables/hyph_pt_PT.dic +308 -0
  273. data/vendor/liblouis/tables/hyph_ru.dic +6480 -0
  274. data/vendor/liblouis/tables/hyph_sv_SE.dic +4697 -0
  275. data/vendor/liblouis/tables/is-chardefs6.cti +170 -0
  276. data/vendor/liblouis/tables/is-chardefs8.cti +293 -0
  277. data/vendor/liblouis/tables/is.ctb +157 -0
  278. data/vendor/liblouis/tables/is.tbl +18 -0
  279. data/vendor/liblouis/tables/it-it-comp6.utb +404 -0
  280. data/vendor/liblouis/tables/it-it-comp8.utb +663 -0
  281. data/vendor/liblouis/tables/iu-ca-g1.ctb +236 -0
  282. data/vendor/liblouis/tables/ja-kantenji-ucs2.utb +11448 -0
  283. data/vendor/liblouis/tables/ja-kantenji.utb +53 -0
  284. data/vendor/liblouis/tables/ja-rokutenkanji.utb +8710 -0
  285. data/vendor/liblouis/tables/ka-in-g1.utb +27 -0
  286. data/vendor/liblouis/tables/ka.utb +128 -0
  287. data/vendor/liblouis/tables/kannada.cti +282 -0
  288. data/vendor/liblouis/tables/kh-in-g1.utb +26 -0
  289. data/vendor/liblouis/tables/kha.tbl +18 -0
  290. data/vendor/liblouis/tables/kk.utb +77 -0
  291. data/vendor/liblouis/tables/km-g1.utb +412 -0
  292. data/vendor/liblouis/tables/kmr.tbl +108 -0
  293. data/vendor/liblouis/tables/kn.tbl +18 -0
  294. data/vendor/liblouis/tables/ko-2006-g1.ctb +49 -0
  295. data/vendor/liblouis/tables/ko-2006-g2.ctb +53 -0
  296. data/vendor/liblouis/tables/ko-2006.cti +190 -0
  297. data/vendor/liblouis/tables/ko-chars.cti +15140 -0
  298. data/vendor/liblouis/tables/ko-g1-rules.cti +634 -0
  299. data/vendor/liblouis/tables/ko-g1.ctb +48 -0
  300. data/vendor/liblouis/tables/ko-g2-rules.cti +9263 -0
  301. data/vendor/liblouis/tables/ko-g2.ctb +52 -0
  302. data/vendor/liblouis/tables/ko.cti +223 -0
  303. data/vendor/liblouis/tables/kok.ctb +24 -0
  304. data/vendor/liblouis/tables/kok.tbl +17 -0
  305. data/vendor/liblouis/tables/kru.ctb +24 -0
  306. data/vendor/liblouis/tables/kru.tbl +17 -0
  307. data/vendor/liblouis/tables/ks-in-g1.utb +27 -0
  308. data/vendor/liblouis/tables/latinLetterDef6Dots.uti +78 -0
  309. data/vendor/liblouis/tables/latinLetterDef8Dots.uti +75 -0
  310. data/vendor/liblouis/tables/latinLowercase.uti +389 -0
  311. data/vendor/liblouis/tables/latinUppercaseComp6.uti +78 -0
  312. data/vendor/liblouis/tables/lg-ug-g1.utb +60 -0
  313. data/vendor/liblouis/tables/litdigits6Dots.uti +30 -0
  314. data/vendor/liblouis/tables/litdigits6DotsPlusDot6.uti +30 -0
  315. data/vendor/liblouis/tables/lo-g1.utb +3127 -0
  316. data/vendor/liblouis/tables/loweredDigits6Dots.uti +30 -0
  317. data/vendor/liblouis/tables/loweredDigits8Dots.uti +30 -0
  318. data/vendor/liblouis/tables/lt-6dot.utb +308 -0
  319. data/vendor/liblouis/tables/lt-8dot.utb +281 -0
  320. data/vendor/liblouis/tables/lt.ctb +313 -0
  321. data/vendor/liblouis/tables/lv.tbl +22 -0
  322. data/vendor/liblouis/tables/maketablelist.sh +52 -0
  323. data/vendor/liblouis/tables/malayalam.cti +674 -0
  324. data/vendor/liblouis/tables/mao-nz-g1.ctb +65 -0
  325. data/vendor/liblouis/tables/marburg_single_cell_defs.cti +66 -0
  326. data/vendor/liblouis/tables/marburg_unicode_defs.cti +297 -0
  327. data/vendor/liblouis/tables/mk-g1.utb +240 -0
  328. data/vendor/liblouis/tables/ml-in-g1.utb +27 -0
  329. data/vendor/liblouis/tables/ml.tbl +21 -0
  330. data/vendor/liblouis/tables/mn-MN-common.cti +110 -0
  331. data/vendor/liblouis/tables/mn-MN-g1.utb +52 -0
  332. data/vendor/liblouis/tables/mn-MN-g2.ctb +50 -0
  333. data/vendor/liblouis/tables/mn-in-g1.utb +27 -0
  334. data/vendor/liblouis/tables/mni.tbl +18 -0
  335. data/vendor/liblouis/tables/mr-in-g1.utb +27 -0
  336. data/vendor/liblouis/tables/mr.tbl +18 -0
  337. data/vendor/liblouis/tables/ms-my-g2.ctb +4897 -0
  338. data/vendor/liblouis/tables/mt.ctb +114 -0
  339. data/vendor/liblouis/tables/mt.tbl +21 -0
  340. data/vendor/liblouis/tables/mun.ctb +24 -0
  341. data/vendor/liblouis/tables/mun.tbl +17 -0
  342. data/vendor/liblouis/tables/mwr.ctb +24 -0
  343. data/vendor/liblouis/tables/mwr.tbl +17 -0
  344. data/vendor/liblouis/tables/my-g1.utb +771 -0
  345. data/vendor/liblouis/tables/my-g2.ctb +3805 -0
  346. data/vendor/liblouis/tables/ne.ctb +22 -0
  347. data/vendor/liblouis/tables/ne.tbl +18 -0
  348. data/vendor/liblouis/tables/nemethdefs.cti +382 -0
  349. data/vendor/liblouis/tables/nl-BE.dis +532 -0
  350. data/vendor/liblouis/tables/nl-NL-g0.utb.in +646 -0
  351. data/vendor/liblouis/tables/nl-chardefs.uti.in +455 -0
  352. data/vendor/liblouis/tables/nl-comp8.utb +411 -0
  353. data/vendor/liblouis/tables/nl-print.dis +551 -0
  354. data/vendor/liblouis/tables/nl-unicode.dis +540 -0
  355. data/vendor/liblouis/tables/no-no-8dot-fallback-6dot-g0.utb +59 -0
  356. data/vendor/liblouis/tables/no-no-8dot.utb +629 -0
  357. data/vendor/liblouis/tables/no-no-braillo-047-01.dis +247 -0
  358. data/vendor/liblouis/tables/no-no-chardefs6.uti +305 -0
  359. data/vendor/liblouis/tables/no-no-comp8.ctb +323 -0
  360. data/vendor/liblouis/tables/no-no-cyrillic6dot.uti +95 -0
  361. data/vendor/liblouis/tables/no-no-g0.utb +320 -0
  362. data/vendor/liblouis/tables/no-no-g1.ctb +272 -0
  363. data/vendor/liblouis/tables/no-no-g2.ctb +737 -0
  364. data/vendor/liblouis/tables/no-no-g3.ctb +3597 -0
  365. data/vendor/liblouis/tables/no-no-generic.ctb +295 -0
  366. data/vendor/liblouis/tables/no-no-generic.dis +295 -0
  367. data/vendor/liblouis/tables/no-no-latinLetterDef6Dots_diacritics.uti +852 -0
  368. data/vendor/liblouis/tables/no-no.dis +291 -0
  369. data/vendor/liblouis/tables/np-in-g1.utb +27 -0
  370. data/vendor/liblouis/tables/nso-za-g1.utb +38 -0
  371. data/vendor/liblouis/tables/nso-za-g2.ctb +38 -0
  372. data/vendor/liblouis/tables/ny-mw.utb +70 -0
  373. data/vendor/liblouis/tables/or-in-g1.utb +27 -0
  374. data/vendor/liblouis/tables/or.tbl +18 -0
  375. data/vendor/liblouis/tables/oriya.cti +238 -0
  376. data/vendor/liblouis/tables/ovd-6g0.utb +64 -0
  377. data/vendor/liblouis/tables/ovd-8g0.utb +81 -0
  378. data/vendor/liblouis/tables/pa.tbl +18 -0
  379. data/vendor/liblouis/tables/pi.ctb +24 -0
  380. data/vendor/liblouis/tables/pi.tbl +17 -0
  381. data/vendor/liblouis/tables/pl-pl-comp8.ctb +658 -0
  382. data/vendor/liblouis/tables/pl.tbl +12 -0
  383. data/vendor/liblouis/tables/printables.cti +70 -0
  384. data/vendor/liblouis/tables/pt-comp6.utb +299 -0
  385. data/vendor/liblouis/tables/pt-pt-comp8.ctb +395 -0
  386. data/vendor/liblouis/tables/pt-pt-g1.utb +1312 -0
  387. data/vendor/liblouis/tables/pt-pt-g2.ctb +874 -0
  388. data/vendor/liblouis/tables/pt.tbl +20 -0
  389. data/vendor/liblouis/tables/pu-in-g1.utb +42 -0
  390. data/vendor/liblouis/tables/quotation-marks.uti +30 -0
  391. data/vendor/liblouis/tables/ro-g0.utb +85 -0
  392. data/vendor/liblouis/tables/ro.ctb +126 -0
  393. data/vendor/liblouis/tables/ro.tbl +21 -0
  394. data/vendor/liblouis/tables/ru-brf.dis +116 -0
  395. data/vendor/liblouis/tables/ru-comp6.utb +258 -0
  396. data/vendor/liblouis/tables/ru-comp8.utb +740 -0
  397. data/vendor/liblouis/tables/ru-letters.dis +145 -0
  398. data/vendor/liblouis/tables/ru-litbrl-detailed.utb +77 -0
  399. data/vendor/liblouis/tables/ru-litbrl.ctb +857 -0
  400. data/vendor/liblouis/tables/ru-math.uti +395 -0
  401. data/vendor/liblouis/tables/ru-ru-g1.ctb +804 -0
  402. data/vendor/liblouis/tables/ru-unicode.dis +121 -0
  403. data/vendor/liblouis/tables/rw-rw-g1.utb +133 -0
  404. data/vendor/liblouis/tables/sa-in-g1.utb +27 -0
  405. data/vendor/liblouis/tables/sa.tbl +18 -0
  406. data/vendor/liblouis/tables/sah.utb +72 -0
  407. data/vendor/liblouis/tables/sd.tbl +18 -0
  408. data/vendor/liblouis/tables/se-se.ctb +246 -0
  409. data/vendor/liblouis/tables/se-se.dis +334 -0
  410. data/vendor/liblouis/tables/si-in-g1.utb +27 -0
  411. data/vendor/liblouis/tables/sin.cti +213 -0
  412. data/vendor/liblouis/tables/sin.utb +35 -0
  413. data/vendor/liblouis/tables/sk-g1.ctb +1019 -0
  414. data/vendor/liblouis/tables/sk-sk-g1.utb +206 -0
  415. data/vendor/liblouis/tables/sk-sk.utb +112 -0
  416. data/vendor/liblouis/tables/sl-si-comp8.ctb +204 -0
  417. data/vendor/liblouis/tables/sl-si-g1.utb +471 -0
  418. data/vendor/liblouis/tables/sl.tbl +20 -0
  419. data/vendor/liblouis/tables/smi-6g0.utb +64 -0
  420. data/vendor/liblouis/tables/smi-8g0.utb +61 -0
  421. data/vendor/liblouis/tables/sot-za-g1.ctb +72 -0
  422. data/vendor/liblouis/tables/sot-za-g2.ctb +244 -0
  423. data/vendor/liblouis/tables/spaces.uti +62 -0
  424. data/vendor/liblouis/tables/sr-Cyrl.ctb +59 -0
  425. data/vendor/liblouis/tables/sr-common.cti +161 -0
  426. data/vendor/liblouis/tables/sr-cyrletters.cti +92 -0
  427. data/vendor/liblouis/tables/sr-g1.ctb +57 -0
  428. data/vendor/liblouis/tables/sr-latletters.cti +45 -0
  429. data/vendor/liblouis/tables/sv-1989.ctb +241 -0
  430. data/vendor/liblouis/tables/sv-1996.ctb +180 -0
  431. data/vendor/liblouis/tables/sv-6common.uti +1199 -0
  432. data/vendor/liblouis/tables/sv-6g0d.utb +508 -0
  433. data/vendor/liblouis/tables/sv-6g0p.utb +61 -0
  434. data/vendor/liblouis/tables/sv-6g1.uti +106 -0
  435. data/vendor/liblouis/tables/sv-6g1d.ctb +57 -0
  436. data/vendor/liblouis/tables/sv-6g2.uti +254 -0
  437. data/vendor/liblouis/tables/sv-6g2d.ctb +57 -0
  438. data/vendor/liblouis/tables/sv-8g0d.utb +495 -0
  439. data/vendor/liblouis/tables/sv-8g0n.utb +1236 -0
  440. data/vendor/liblouis/tables/sv-8g1.uti +199 -0
  441. data/vendor/liblouis/tables/sv-8g1d.ctb +73 -0
  442. data/vendor/liblouis/tables/sv-8g1n.ctb +73 -0
  443. data/vendor/liblouis/tables/sv-8g2.uti +486 -0
  444. data/vendor/liblouis/tables/sv-8g2d.ctb +73 -0
  445. data/vendor/liblouis/tables/sv-8g2n.ctb +73 -0
  446. data/vendor/liblouis/tables/sv-g0.utb +65 -0
  447. data/vendor/liblouis/tables/sv-g1.ctb +57 -0
  448. data/vendor/liblouis/tables/sv-g2.ctb +57 -0
  449. data/vendor/liblouis/tables/sv-phon.uti +241 -0
  450. data/vendor/liblouis/tables/sw-ke-g1-2.ctb +90 -0
  451. data/vendor/liblouis/tables/sw-ke-g1-3.ctb +109 -0
  452. data/vendor/liblouis/tables/sw-ke-g1-4.ctb +107 -0
  453. data/vendor/liblouis/tables/sw-ke-g1-5.ctb +73 -0
  454. data/vendor/liblouis/tables/sw-ke-g1.utb +278 -0
  455. data/vendor/liblouis/tables/sw-ke-g2.ctb +276 -0
  456. data/vendor/liblouis/tables/syc.utb +195 -0
  457. data/vendor/liblouis/tables/ta-ta-g1.ctb +167 -0
  458. data/vendor/liblouis/tables/ta.ctb +24 -0
  459. data/vendor/liblouis/tables/ta.tbl +21 -0
  460. data/vendor/liblouis/tables/tamil.cti +86 -0
  461. data/vendor/liblouis/tables/te-in-g1.utb +27 -0
  462. data/vendor/liblouis/tables/te.tbl +18 -0
  463. data/vendor/liblouis/tables/telugu.cti +239 -0
  464. data/vendor/liblouis/tables/text_nabcc.dis +426 -0
  465. data/vendor/liblouis/tables/th-comp8-backward.utb +226 -0
  466. data/vendor/liblouis/tables/th-g0.utb +177 -0
  467. data/vendor/liblouis/tables/th-g1.utb +89 -0
  468. data/vendor/liblouis/tables/th-g1.uti +315 -0
  469. data/vendor/liblouis/tables/th-g2.ctb +616 -0
  470. data/vendor/liblouis/tables/tr-g1.ctb +254 -0
  471. data/vendor/liblouis/tables/tr-g2.ctb +863 -0
  472. data/vendor/liblouis/tables/tr-g2.tbl +20 -0
  473. data/vendor/liblouis/tables/tr.ctb +324 -0
  474. data/vendor/liblouis/tables/tr.tbl +21 -0
  475. data/vendor/liblouis/tables/tsn-za-g1.ctb +33 -0
  476. data/vendor/liblouis/tables/tsn-za-g2.ctb +33 -0
  477. data/vendor/liblouis/tables/tt.utb +74 -0
  478. data/vendor/liblouis/tables/uga.utb +86 -0
  479. data/vendor/liblouis/tables/uk-comp.utb +53 -0
  480. data/vendor/liblouis/tables/uk-detailed.utb +32 -0
  481. data/vendor/liblouis/tables/uk.utb +101 -0
  482. data/vendor/liblouis/tables/ukchardefs.cti +106 -0
  483. data/vendor/liblouis/tables/ukmaths_single_cell_defs.cti +65 -0
  484. data/vendor/liblouis/tables/ukmaths_unicode_defs.cti +298 -0
  485. data/vendor/liblouis/tables/uni-text.dis +330 -0
  486. data/vendor/liblouis/tables/unicode-braille.utb +291 -0
  487. data/vendor/liblouis/tables/unicode-without-blank.dis +24 -0
  488. data/vendor/liblouis/tables/unicode.dis +278 -0
  489. data/vendor/liblouis/tables/ur-pk-g1.utb +248 -0
  490. data/vendor/liblouis/tables/ur-pk-g2.ctb +641 -0
  491. data/vendor/liblouis/tables/us-table.dis +67 -0
  492. data/vendor/liblouis/tables/uz-g1.utb +117 -0
  493. data/vendor/liblouis/tables/ve-za-g1.utb +69 -0
  494. data/vendor/liblouis/tables/ve-za-g2.ctb +208 -0
  495. data/vendor/liblouis/tables/vi-cb8.utb +49 -0
  496. data/vendor/liblouis/tables/vi-charsdef.uti +36 -0
  497. data/vendor/liblouis/tables/vi-lettersdef.uti +401 -0
  498. data/vendor/liblouis/tables/vi-puncsdef.uti +446 -0
  499. data/vendor/liblouis/tables/vi-saigon-g1.ctb +530 -0
  500. data/vendor/liblouis/tables/vi-vn-g0.utb +135 -0
  501. data/vendor/liblouis/tables/vi-vn-g1.ctb +574 -0
  502. data/vendor/liblouis/tables/vi-vn-g2.ctb +743 -0
  503. data/vendor/liblouis/tables/wiskunde-chardefs.cti +261 -0
  504. data/vendor/liblouis/tables/wordcx.dis +91 -0
  505. data/vendor/liblouis/tables/xh-za-g1.utb +61 -0
  506. data/vendor/liblouis/tables/xh-za-g2.ctb +386 -0
  507. data/vendor/liblouis/tables/yi.utb +236 -0
  508. data/vendor/liblouis/tables/zh-chn.ctb +45011 -0
  509. data/vendor/liblouis/tables/zh-hk.ctb +10461 -0
  510. data/vendor/liblouis/tables/zh-tw.ctb +53810 -0
  511. data/vendor/liblouis/tables/zh_CHN.tbl +23 -0
  512. data/vendor/liblouis/tables/zhcn-cbs.ctb +31523 -0
  513. data/vendor/liblouis/tables/zhcn-g1.ctb +26523 -0
  514. data/vendor/liblouis/tables/zhcn-g2.ctb +26519 -0
  515. data/vendor/liblouis/tables/zu-za-g1.utb +33 -0
  516. data/vendor/liblouis/tables/zu-za-g2.ctb +33 -0
  517. metadata +558 -0
@@ -0,0 +1,4644 @@
1
+ #+language:fr
2
+ #+type:literary
3
+ #+contraction:full
4
+ #+grade:2
5
+ #+system:bfu
6
+ # Marked as "direction:both" by Bue Vester-Andersen
7
+ # as tests run both forward and backward
8
+ #+direction:both
9
+
10
+ #-index-name: French, contracted
11
+ #-display-name: French contracted braille
12
+ #-author: The BRLTTY Team <http://brltty.app/>
13
+ #-author: André-Abush CLAUSE <dev@andreabc.net>
14
+ #-author: Nicolas Pitre <nico@fluxnic.net>
15
+ #-author: Michel Such <michel.such@free.fr>
16
+ #
17
+ #-license: LGPLv2.1
18
+ #-updated: 2018-05-16
19
+
20
+ # liblouis: French Grade 2 Table
21
+
22
+ # This file is free software; you can redistribute it and/or
23
+ # modify it under the terms of the GNU Lesser General Public
24
+ # License as published by the Free Software Foundation; either
25
+ # version 2.1 of the License, or (at your option) any later version.
26
+
27
+ # This file is distributed in the hope that it will be useful,
28
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
29
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
30
+ # Lesser General Public License for more details.
31
+
32
+ # You should have received a copy of the GNU Lesser General Public
33
+ # License along with this file; if not, write to the Free Software
34
+ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
35
+ # liblouis comes with ABSOLUTELY NO WARRANTY.
36
+ #
37
+ # Référence :
38
+ # Manuel d'Abrégé Braille Français - Adaptation du CBFU 2008 - Révision 2013
39
+ # https://www.avh.asso.fr/sites/default/files/manuel_abrege2013_complet_noir_0.doc
40
+ # Association Valentin Haüy
41
+ # 5, rue Duroc 75343 Paris Cedex 07
42
+
43
+ # Contracted French Table: forward and backward translation
44
+ # -----------------------------------------------------------------
45
+
46
+ sign „ 56
47
+
48
+ include fr-bfu-comp6.utb
49
+
50
+ attribute con bcçdfghjklmnpqrstvwxzBCÇDFGHJKLMNPQRSTVWXZ
51
+ attribute voy aeiouyéàèùâêîôûëïüœAEIOUYÉÀÈÙÂÊÄËÏÜŒ
52
+ attribute bmp bmpBMP
53
+ attribute apost '\x2018\x2019
54
+
55
+ #Pour désabréger, il nous faut une classe contenant les consonnes et les abréviations commençant par une consonne
56
+ attribute conabr bcçdfghjklmnpqrstvwxzBCÇDFGHJKLMNPQRSTVWXZ⠘⠆⠷⠩⠒⠹⠶⠻⠸⠫⠖⠴
57
+ #Pour désabréger, extension de la classe bmp aux abréviations commençant par b, m ou p
58
+ attribute bmpabr bmpBMP⠘⠆⠫⠖
59
+
60
+ #Pour désabréger, il nous faut une classe contenant les voyelles et les abréviations commençant par une voyelle excepté celles dont la représentation peut être confondue avec un chiffre
61
+ attribute bvoy aeiouyéàèùAEIOUYÉÀÈÙœŒ⠈⠅⠜⠢⠦⠐⠨⠵⠠⠾⠺⠬⠸
62
+
63
+ #Pour désabréger, une classe contenant les abréviations identiques aux chiffres ou à certains opérateurs
64
+ attribute bvoyy ⠼⠡⠣⠩⠹⠱⠫⠻⠳⠪⠲⠌⠂⠔
65
+ #Enfin, une classe regroupant les deux précédentes pour simplifier certaines règles
66
+ attribute bvoyyy aeiouyéàèùAEIOUYÉÀÈÙœŒ⠈⠅⠜⠢⠦⠐⠨⠵⠠⠾⠺⠬⠰⠸⠼⠡⠣⠩⠹⠱⠫⠻⠳⠪⠲⠌⠂⠔
67
+
68
+ #En désabrègement, cette classe permet de savoir si nous sommes dans une opération mathématique ou non
69
+ attribute frmath ⠬⠼⠡⠣⠩⠹⠱⠫⠻⠳⠪⠂⠆⠒⠲⠖⠶⠦⠔⠴⠤⠄⠐⠠⠌⠘⠷⠾⠜⠃⠨⠈
70
+ attribute puncEnd ⠂,;:.?!")]}
71
+ attribute urlPuncs :./
72
+
73
+ letsign 56
74
+ #multind 56-46 letsign begcaps
75
+ noletsignafter '\x2018\x2019
76
+ hyphen - 36
77
+ space _ 5-36
78
+ noback begcomp 56
79
+
80
+ nofor math [ 12356a
81
+ nofor math ] 23456a
82
+
83
+ comp6 1 16
84
+ comp6 2 126
85
+ comp6 A 46-1
86
+ comp6 B 46-12
87
+ comp6 C 46-14
88
+ comp6 D 46-145
89
+ comp6 E 46-15
90
+ comp6 F 46-124
91
+ comp6 G 46-1245
92
+ comp6 H 46-125
93
+ comp6 I 46-24
94
+ comp6 J 46-245
95
+ comp6 K 46-13
96
+ comp6 L 46-123
97
+ comp6 M 46-134
98
+ comp6 N 46-1345
99
+ comp6 O 46-135
100
+ comp6 P 46-1234
101
+ comp6 Q 46-12345
102
+ comp6 R 46-1235
103
+ comp6 S 46-234
104
+ comp6 T 46-2345
105
+ comp6 U 46-136
106
+ comp6 V 46-1236
107
+ comp6 W 46-2456
108
+ comp6 X 46-1346
109
+ comp6 Y 46-13456
110
+ comp6 Z 46-1356
111
+
112
+ comp6 Â 46-16
113
+ comp6 Ê 46-126
114
+ comp6 Î 46-146
115
+ comp6 Ô 46-1456
116
+ comp6 Û 46-156
117
+ comp6 À 46-12356
118
+ comp6 È 46-2346
119
+ comp6 Ù 46-23456
120
+ comp6 É 46-123456
121
+ comp6 Ë 46-1246
122
+ comp6 Ï 46-12456
123
+ comp6 Ü 46-1256
124
+
125
+ #Caractères de substitution pour certains traitements en forward
126
+ noback punctuation \xfff9 256a
127
+ nofor space \xfffa 6a pour repérer lettre suivie d'un chiffre en backward
128
+ sign \xfffb 256b point dans un sigle
129
+ noback letter \xfffc 12345678a Tiret en fin de mot
130
+ noback math \xfffd 12356 crochet droit mathématique
131
+ noback math \xfffe 23456 crochet gauche matnématique
132
+
133
+ ###
134
+ ### 1. Assemblages de lettres représentés par un seul symbole,
135
+ ### et finales représentées par deux ou trois symboles;
136
+ endword able 45
137
+ endword ables 45-234
138
+ endword ablement 45-134
139
+ endword ablements 45-134-234
140
+ nofor midword âch 16-12356
141
+ nofor midword âgn 16-2356
142
+ nofor midword ackb 1-14-13-12
143
+ nofor midword ackl 1-14-13-123
144
+ always ai 34
145
+
146
+ endword ait 146
147
+ endword aits 146-234
148
+
149
+ nofor word aïe 1-12456-15
150
+ nofor midendword aïen 1-12456-26
151
+ nofor midendword berden 12-236-145-26
152
+ nofor partword aïeu 1-12456-5
153
+ nofor before voy begmidword aïk 1-12456-13
154
+ nofor before voy midword ïss 12456-2346
155
+ nofor before bvoyyy midword âss 16-2346
156
+ nofor always ak 1-13
157
+
158
+ nofor word áird 12356-24-1235-145
159
+ nofor begword bár 12-12356-1235
160
+ nofor midendword ány 12356-1345-13456
161
+
162
+ nofor begword akka 1-13-13-1
163
+ nofor before bvoy always ambr 1-134-23
164
+
165
+ noback before con always an 2
166
+ nofor begmidword an 2
167
+
168
+ endword ant 1456
169
+ endword ants 1456-234
170
+
171
+ noback before con always ar 4
172
+ noback endword ar 4
173
+ nofor partword ar 4
174
+
175
+ nofor word atabek 1-2345-1-12-15-13
176
+
177
+ endword ation 16
178
+ endword ations 16-234
179
+
180
+ noback always au 13
181
+ noback word au) 1-136-356
182
+ nofor before bvoyyy begmidword aubr 13-23
183
+ nofor before bvoyyy begmidword auch 13-12356
184
+ nofor before bvoyyy midword aucl 13-146
185
+ nofor before con midword aucon 13-25
186
+ nofor before bvoyyy midword aucr 13-25
187
+ nofor before bvoyyy midword aufl 13-126
188
+ nofor before bvoyyy begmidword audr 13-1456
189
+ nofor before bvoyyy midword aufr 13-16
190
+ nofor before bvoyyy begmidword augn 13-2356
191
+ nofor before bvoyyy midword augr 13-12456
192
+ nofor before bvoyyy midword aull 13-456
193
+ nofor before bvoyyy midword aupl 13-1246
194
+ nofor before bvoyyy begmidword aupr 13-235
195
+ nofor before bvoyyy begmidword autr 13-356
196
+ nofor endword aux 13-1346
197
+ nofor endword eau 15-13
198
+ nofor endword eaux 15-13-1346
199
+ nofor word eau 15-13
200
+ nofor word eaux 15-13-1346
201
+ nofor endword yau 13456-13
202
+ nofor endword yaux 13456-13-1346
203
+ nofor before con always au 13
204
+ nofor before bvoyyy begmidword auss 13-2346
205
+ nofor before conabr begword autoex 13-2345-135-1346
206
+
207
+ nofor endword az 1-1356
208
+ nofor word län 123-345-1345
209
+ nofor partword jäl 245-345-123
210
+ nofor midword änd 345-1345-145
211
+ nofor midword sän 234-345-1345
212
+ nofor midword kär 13-345-1235
213
+ nofor begword æch 345-12356
214
+ nofor begword æg 345-1245
215
+ nofor begword æl 345-1245
216
+ nofor begword zems 1356-345-234
217
+ nofor begword ænig 345-1345-24-1245
218
+ nofor begword æoli 345-135-1245-24
219
+ nofor begword æsch 345-234-14-125
220
+
221
+ nofor partword back 12-1-14-13
222
+ nofor always bâi 12-16-24
223
+ nofor begword biaur 12-24-13-1235
224
+ nofor midword bigüit 12-24-1245-1256-24-2345
225
+
226
+ word ben 12-15-1345
227
+ begmidword bl 45
228
+ nofor begword bless 45-15-2346
229
+ nofor before con begmidword blê 45-126
230
+ nofor partword ble 45-15
231
+ nofor midendword bleau 45-15-13
232
+ nofor endword blent 45-126
233
+ nofor endword bler 45-236
234
+ nofor endword bles 45-156
235
+ nofor midword bly 45-13456
236
+ nofor after voy midendword bliau 45-24-13
237
+ nofor always block 45-135-14-13
238
+
239
+ noback before voy always br 23
240
+ nofor before bvoyyy begmidword br 23
241
+ nofor after bvoy before bvoy always br 23
242
+ nofor begmidword brê 23-126
243
+ nofor before conabr always brè 23-2346
244
+ nofor always brèch 23-2346-12356
245
+ nofor begmidword brû 23-156
246
+ nofor always brou 23-1256
247
+ nofor begmidword brui 12-1235-23
248
+ nofor endword brable 23-45
249
+ nofor endword brables 23-45-234
250
+ nofor endword bres 23-156
251
+ nofor partword brown 23-135-2456-1345
252
+
253
+ nofor endword çaux 12346-13-1346
254
+
255
+ partword ch 12356
256
+ nofor before bvoyyy begmidword ch 12356
257
+ nofor before conabr begmidword chau 12356-13
258
+
259
+ nofor endword ck 14-13
260
+ nofor endword cks 14-13-234
261
+ nofor before bvoy midword ck 14-13
262
+
263
+ noback before voy always cl 146
264
+ nofor before bvoyyy begmidword cl 146
265
+ nofor before conabr begmidword clien 146-256
266
+ nofor endword clable 146-45
267
+ nofor endword clables 146-45-234
268
+ nofor endword clablement 146-45-134
269
+
270
+ nofor before con begword cock 14-135-14-13
271
+ nofor word cocautions 14-135-14-13-2345-3456-234
272
+ nofor word cocaution 14-135-14-13-2345-3456
273
+ noback before bmp begword com 36
274
+ noback before bmp always -com 36-14-2456
275
+ nofor before bmpabr begword com 36
276
+ begmidword comt 14-2456-2345
277
+
278
+ noback before con always con 25
279
+ nofor before conabr begmidword con 25
280
+ nofor before bvoy begmidword confl 25-126
281
+ nofor before bvoy begmidword confr 25-16
282
+ nofor before bvoy begmidword congl 25-345
283
+
284
+
285
+ prfword cons 14-346-234
286
+ noback before voy always cr 25
287
+ nofor before bvoyyy begmidword cr 25
288
+ nofor always crai 25-34
289
+ nofor before conabr begmidword cran 25-2
290
+ nofor endword crait 25-146
291
+ nofor endword crant 25-1456
292
+ nofor endword crants 25-1456-234
293
+ nofor always crau 25-13
294
+ nofor midendword crelle 25-456
295
+ nofor endword crez 25-1356
296
+ nofor before con begmidword crom 25-2456
297
+ nofor always crou 25-1256
298
+ nofor begmidword crui 25-23
299
+ nofor midendword crable 25-45
300
+ nofor endword crablement 25-45-134
301
+
302
+ noback before con begword dis 256
303
+ nofor before conabr begword dis 256
304
+
305
+ nofor before con begword dock 145-135-14-13
306
+
307
+ noback before voy always dr 1456
308
+ nofor before bvoy begmidword dr 1456
309
+ nofor partword drai 1456-34
310
+ nofor endword drait 1456-146
311
+ nofor endword dration 1456-16
312
+ nofor endword drations 1456-16-234
313
+ nofor endword drent 1456-126
314
+ nofor endword dres 1456-156
315
+ nofor endword drant 1456-1456
316
+ nofor endword drants 1456-1456-234
317
+ nofor begword drêch 1456-126-12356
318
+ nofor before con midword drien 1456-256
319
+ nofor partword drion 1456-3456
320
+ nofor before con midword dror 1456-56
321
+ nofor begmidword drui 1456-23
322
+ nofor before conabr begmidword drin 1456-35
323
+ nofor endword drin 1456-35
324
+ nofor before conabr always dran 1456-2
325
+ nofor before bvoyyy midword drangl 1456-2-345
326
+ nofor begword drôl 145-1235-1456-123
327
+ nofor partword drou 1456-1256
328
+
329
+ nofor endword éau 123456-13
330
+ nofor endword éaux 123456-13-1346
331
+ nofor after conabr midword êch 126-12356
332
+ nofor midword èch 2346-12356
333
+ nofor before bvoyyy midword èdr 2346-1456
334
+ nofor before bvoyyy midword ègr 2346-12456
335
+ nofor midword ekk 15-13-13
336
+ endword elle 456
337
+ endword elles 456-234
338
+ nofor midword ëll 1246-456
339
+
340
+ noback before con always em 345
341
+ nofor before bmpabr begmidword em 345
342
+ nofor before bvoyyy always embl 345-45
343
+ nofor before bvoy always embr 345-23
344
+ nofor midword emni 345-1345-24
345
+ nofor midword emnop 345-1345-1354-1234
346
+ nofor midword emnoï 345-1345-135-12456
347
+ nofor before bvoy begmidword empl 345-1246
348
+ nofor midendword emsb 345-234-12
349
+ nofor midword emss 345-234-234
350
+ nofor midendword emto 345-2345-135
351
+ nofor midword emvi 345-1236-24
352
+ nofor begword nemr 1345-345-1235
353
+ nofor endword ems 345-234
354
+
355
+ before con always en 26
356
+ noback endword en 26
357
+ nofor begmidword en 26
358
+ nofor midendword en- 26-36
359
+ nofor word en) 26-356
360
+
361
+ nofor begword œn 246-1345
362
+ nofor begword œrs 246-1235-234
363
+ nofor begmidword cœr 14-246-1235
364
+ after conabr after bvoy endword ent 126
365
+ endword ents 126-234
366
+ nofor endword éen 123456-26
367
+
368
+ noback before con midword er 236
369
+ endword er 236
370
+ nofor midendword er 236
371
+
372
+ before con begword es 156
373
+ endword es 156
374
+ nofor begword es 156
375
+ nofor endword es 156
376
+
377
+ nofor before bvoyyy always oëss 135-1246-2346
378
+
379
+ word eu 15-136
380
+ partword eu 5
381
+ nofor partword euc 5-14
382
+ nofor partword eup 5-1234
383
+ nofor before bvoyyy always eugl 5-345
384
+ nofor always eut 5-2345
385
+ always eü 15-1256
386
+ nofor always eu- 5-36
387
+
388
+ noback before con midword eur 46
389
+ endword eur 46
390
+ nofor after con midendword eurs 46-234
391
+ nofor midendword ueur 136-46
392
+ nofor midendword oueur 1256-46
393
+ nofor midendword yeur 13456-46
394
+ nofor midword eurd 46-145
395
+ nofor midword eurn 46-1345
396
+ nofor midword eurr 46-1235
397
+ nofor after conabr midendword eurt 46-2345
398
+ nofor midendword eurtement 46-2345-134
399
+ nofor after conabr before bvoy midword eurtr 46-356
400
+ nofor begword eur 5-1235
401
+ nofor before punctuation midendword eur 46
402
+ nofor before bvoyyy always eur 5-1235
403
+ nofor word beurk 12-46-13
404
+
405
+ noback before con always ex 1346
406
+ nofor after conabr before conabr midword ex 1346
407
+ nofor before bvoyyy midword expl 1346-1246
408
+ nofor before bvoyyy midword extr 1346-356
409
+ nofor midword éex 123456-1346
410
+ nofor before conabr begword ex 1346
411
+ nofor midendword xau 1346-13
412
+ nofor partword herx 125-236-1346
413
+ nofor midendword exable 15-1346-45
414
+ nofor midword exci 1346-14-24
415
+ nofor midendword éxat 123456-1346-1-2345
416
+ nofor begmidword apéx 1-1234-123456-1346
417
+
418
+ endword ez 1356
419
+ nofor endword èze 2346-1356-15
420
+ nofor endword èzes 2346-1356-156
421
+
422
+ nofor word fafiau 124-1-124-24-13
423
+ nofor word rafiau 1235-1-124-24-13
424
+
425
+ noback before voy always fl 126
426
+ noback endword flent 124-123-126
427
+ noback begmidword flê 124-123-126
428
+ nofor before bvoyyy begmidword fl 126
429
+ nofor midendword flable 126-45
430
+ nofor begmidword flui 126-23
431
+
432
+ noback before voy always fr 16
433
+ nofor before bvoy begmidword fr 16
434
+ nofor endword frable 16-45
435
+ nofor endword frables 16-45-234
436
+ nofor midendword frablement 16-45-134
437
+ nofor partword frai 16-34
438
+ nofor word frai 16-34
439
+ nofor before conabr always fran 16-2
440
+ nofor before bvoyyy begmidword frangl 16-2-345
441
+ nofor before conabr begword frê 16-126
442
+ nofor partword frêl 16-126-123
443
+ nofor begmidword frui 16-23
444
+ nofor endword frait 16-146
445
+ nofor endword frent 16-126
446
+ nofor endword frant 16-1456
447
+ nofor endword frants 16-1456-234
448
+ nofor partword frion 16-3456
449
+ nofor before conabr begmidword frin 16-35
450
+ nofor endword frin 16-35
451
+ nofor partword frou 16-1256
452
+ nofor partword frô 16-1456
453
+ nofor endword fres 16-156
454
+
455
+ noback before voy always gl 345
456
+ nofor before bvoyyy begmidword gl 345
457
+ nofor endword glable 345-45
458
+ nofor endword glables 345-45-234
459
+
460
+ midword gn 2356
461
+
462
+ noback before voy always gr 12456
463
+ nofor before bvoyyy begmidword gr 12456
464
+ nofor midendword grable 12456-45
465
+ nofor midendword grablement 12456-45-134
466
+ nofor begmidword grâc 12456-16-14
467
+ nofor begmidword grê 12456-126
468
+ nofor before con begmidword grui 12456-23
469
+ nofor begword grœ 12456-246
470
+
471
+ nofor endword güe 1245-1256-15
472
+ nofor endword gües 1245-1256-156
473
+ nofor begword engou 26-1245-1256
474
+
475
+ nofor midendword gueur 1245-136-46
476
+
477
+ nofor partword akaw 1-13-1-2456
478
+ nofor begword kaw 13-1-2456
479
+ nofor begword kno 13-1345-135
480
+ nofor always kh 13-125
481
+ nofor midword kk 13-13
482
+ nofor after bvoy before bvoy always k 13
483
+ nofor after bvoyyy always kr 13-1235
484
+ nofor begword klax 13-123-1-1346
485
+ nofor begword Kronec 13-1235-135-1345-15-14
486
+ midword inkl 35-13-123
487
+
488
+ noback midword ien 256
489
+ nofor after conabr midword ien 256
490
+ nofor midword ienn 256-1345
491
+ endword ien 24-26
492
+
493
+ midendword ieu 6
494
+
495
+ before bmp begword im 246
496
+ nofor before bmpabr begword im 246
497
+
498
+ begword in 35
499
+ before con always in 35
500
+ endword in 35
501
+ nofor partword in 35
502
+
503
+ noback before con always ion 3456
504
+ nofor before conabr begmidword ion 3456
505
+ endword ion 3456
506
+ word ion 24-346
507
+
508
+ endword ition 246
509
+ endword itions 246-234
510
+
511
+ nofor midword îch 146-12356
512
+ nofor always ît 146-2345
513
+ nofor before bvoyyy midword îtr 146-356
514
+
515
+ noback before voy after voy always ll 456
516
+ nofor before bvoyyy after bvoy always ll 456
517
+ nofor midendword llable 456-45
518
+ nofor midendword llablement 456-45-134
519
+ nofor after voy before con midword lleur 456-46
520
+
521
+ nofor endword mau 134-13
522
+ nofor endword maux 134-13-1346
523
+ nofor always mía 134-34-1
524
+ nofor endword men 134-26
525
+ nofor endword chtmen 12356-2345-134-26
526
+
527
+ nofor after voy endword niau 1345-24-13
528
+ nofor after voy endword niaux 1345-24-13-1346
529
+
530
+ partword oi 23456
531
+
532
+ nofor midword oïè 135-12456-2346
533
+ nofor midword oïé 135-12456-123456
534
+ nofor before voy partword oïk 135-12456-13
535
+ nofor always ok 135-13
536
+ nofor before bvoyyy always oaut 135-13-2345
537
+ nofor midword ôch 1456-12356
538
+ nofor midword ôka 1456-13-1
539
+ nofor midword œo 246-135
540
+
541
+ noback before con always om 2456
542
+ nofor before bmpabr begmidword om 2456
543
+ nofor after conabr midword omh 2456-125
544
+ nofor before bvoyyy always ombr 2456-23
545
+ nofor before bvoyyy always omn 2456-1345
546
+ nofor after conabr endword om 2456
547
+ nofor after conabr endword oms 2456-234
548
+ nofor after conabr midword oms 2456-234
549
+ nofor begmidword löf 123-246-124
550
+ nofor partword löl 123-246-123
551
+ nofor partword ögren 246-12456-26
552
+ before con midword öl 246-123
553
+ before con midword öm 246-134
554
+ endword öm 246-134
555
+ before con partword ön 246-1345
556
+ before con partword ör 246-1235
557
+ endword ón 346-1345
558
+
559
+ noback before con always on 346
560
+ nofor partword on 346
561
+ endword on 346
562
+
563
+ always oom 135-135-134
564
+
565
+ before con midword or 56
566
+ endword or 56
567
+ nofor before bvoyyy midword orbl 56-45
568
+ nofor midword orch 56-12356
569
+ nofor before bvoyyy midword orcl 56-146
570
+ nofor before bvoyyy midword ordr 56-1456
571
+ nofor before bvoyyy midword orfl 56-126
572
+ nofor before bvoyyy midword orfr 56-16
573
+ nofor before bvoyyy midword orgl 56-345
574
+ nofor before bvoyyy midword orgn 56-2356
575
+ nofor before bvoyyy midword orgr 56-12456
576
+ nofor before conabr midword orpro 56-235
577
+ nofor midword orks 56-13-234
578
+ nofor before bvoyyy midword ortr 56-356
579
+ nofor endword or. 56-256
580
+
581
+ endword eous 15-135-136-234
582
+ noback always ou 1256
583
+ nofor partword ou 1256
584
+
585
+ before con always our 12346
586
+ endword our 12346
587
+ nofor before bvoy always ourgn 12346-2356
588
+ nofor midendword ourch 12346-12356
589
+ nofor midword ourcr 12346-25
590
+ nofor before bvoyyy begmidword ourdr 12346-1456
591
+ nofor midword ourpr 12346-235
592
+ nofor midword ourtr 12346-356
593
+
594
+ nofor before con begmidword ow 135-2456
595
+ nofor endword oyen 135-13456-26
596
+
597
+ nofor midword piègl 1234-24-2346-345
598
+
599
+ before voy always pl 1246
600
+ nofor before bvoyyy begmidword pl 1246
601
+ nofor midendword plable 1246-45
602
+ nofor begmidword plien 1246-256
603
+ nofor begmidword plui 1246-23
604
+
605
+ before voy always pr 235
606
+ nofor before bvoyyy always pr 235
607
+ nofor before conabr begmidword prâ 235-16
608
+ nofor midendword prelle 235-456
609
+ nofor before conabr begmidword prê 235-126
610
+ nofor before conabr begmidword prî 235-146
611
+ nofor before conabr begmidword prô 235-1456
612
+ nofor before conabr begmidword prui 235-23
613
+ before bmp begmidword prom 235-2456
614
+ nofor endword prant 235-1456
615
+ nofor endword prants 235-1456-234
616
+ nofor endword prait 235-146
617
+ nofor endword prez 235-1356
618
+
619
+ noback before con always pro 235
620
+ nofor begmidword prou 235-1256
621
+ nofor before conabr always pro 235
622
+ nofor always probl 235-45
623
+ nofor before bvoy begmidword progl 235-345
624
+
625
+ noback begmidword qu 12345
626
+ endword que 12345
627
+ endword ques 12345-234
628
+ before apost sufword qu 12345
629
+ nofor before bvoyyy begmidword qu 12345
630
+ nofor midendword quable 12345-45
631
+ nofor endword quablement 12345-45-134
632
+ nofor before conabr midword quien 12345-256
633
+ nofor partword queur 12345-46
634
+ nofor midendword quiau 12345-24-13
635
+ midword qû 12345-156
636
+
637
+ nofor begmidword qw 12345-2456 #+
638
+
639
+ noback before con begword re 3
640
+ nofor before conabr before bvoyy begword re 3
641
+ nofor begword ress 3-2346
642
+ before bmpabr begword rem 1235-345
643
+
644
+ nofor always ría 1235-34-1
645
+ nofor word rígh 1235-34-1245-125
646
+
647
+ noback before voy after voy always ss 2346
648
+ nofor endword assen 1-2346-26
649
+ nofor after bvoyyy before bvoyyy midword ss 2346
650
+ nofor endword ssable 2346-45
651
+ nofor endword ssables 2346-45-234
652
+ nofor midendword ssablement 2346-45-134
653
+ nofor midendword sselle 2346-456
654
+ nofor before conabr midword ssex 2346-1346
655
+ nofor midword ssour 2346-12346
656
+
657
+ nofor endword tau 2345-13
658
+ nofor after voy endword taux 2345-13-1346
659
+ nofor after voy midendword stiau 234-2345-24-13
660
+
661
+ nofor after voy endword tiau 2345-24-13
662
+ nofor after voy endword tiaux 2345-24-13-1346
663
+
664
+ before voy always tr 356
665
+ nofor before bvoyyy begmidword tr 356
666
+ nofor midendword trable 356-45
667
+ nofor midendword trablement 356-45-134
668
+ nofor before con begword trau 356-13
669
+ nofor before conabr always trom 356-2456
670
+ nofor before conabr midword trex 356-1346
671
+ nofor begmidword trui 356-23
672
+ nofor endword triau 356-24-13
673
+
674
+ before con begword trans 356
675
+ nofor before bvoy begword transb 356-12
676
+ nofor before con begword transbor 356-12-56
677
+ nofor before con begword transcon 356-25
678
+ nofor before voy begword transcr 356-25
679
+ nofor before bvoy begword transfl 356-126
680
+ nofor before voy begword transgr 356-12456
681
+ nofor before bvoy begword transfr 356-16
682
+ nofor before bvoyyy begword transpl 356-1246
683
+
684
+ noback before voy after voy always tt 2456
685
+ nofor after bvoyyy before bvoyyy midword tt 2456
686
+ nofor after voy midendword ttable 2456-45
687
+ nofor after voy midendword ttablement 2456-45-134
688
+ nofor endword ttom 2345-2345-2456
689
+ nofor endword ottez 135-2456-1356
690
+
691
+ before con always ui 23
692
+ nofor after conabr midword ui 23
693
+ nofor midendword uich 23-12356
694
+ nofor before bvoyyy always uill 23-456
695
+ nofor before bvoyyy always uiss 23-2346
696
+ nofor before bvoyyy always uitt 23-2456
697
+ endword uin 136-35
698
+ endword uins 136-35-234
699
+ before con midword uin 136-35
700
+ nofor begword uitl 23-2345-123
701
+
702
+ nofor partword walk 2456-1-123-13
703
+ nofor partword week 2456-15-15-13
704
+ nofor midendword ewire 15-2456-24-1235-15
705
+ nofor midendword ewires 15-2456-24-1235-156
706
+ nofor midword owch 135-2456-12356
707
+ nofor endword yen 13456-26
708
+
709
+ nofor before bvoyyy begmidword zw 1356-2456
710
+
711
+ endword bilité 12-123-2345
712
+ endword bilités 12-123-2345-234
713
+ endword ellement 456-134
714
+ endword ellements 456-134-234
715
+ endword logie 123-1245
716
+ endword logies 123-1245-234
717
+ endword quement 12345-134
718
+ endword quements 12345-134-234
719
+ endword tement 2345-134
720
+ endword tements 2345-134-234
721
+ endword ttement 2345-2345-134
722
+ endword ttements 2345-2345-134-234
723
+ endword vement 1236-134
724
+ endword vements 1236-134-234
725
+
726
+ before con always ain 1-35
727
+ endword ain 1-35
728
+ before con always oin 135-35
729
+ endword oin 135-35
730
+
731
+ before con begword recom 3-36
732
+ nofor before bmpabr begword recom 3-36
733
+
734
+ before con begword redis 3-256
735
+ nofor before conabr begword redis 3-256
736
+
737
+ before con begword retrans 3-356
738
+ nofor begword retranscr 3-356-25
739
+ nofor begword retransgr 3-356-12456
740
+ nofor begword retranspl 3-356-1246
741
+
742
+ before bmp begword incom 35-36
743
+ nofor before bmpabr begword incom 35-36
744
+
745
+ before con begword indis 35-256
746
+ nofor before conabr begword indis 35-256
747
+
748
+ before con begword intrans 35-356
749
+ nofor begword intranscr 35-356-25
750
+ nofor begword intransgr 35-356-12456
751
+ nofor begword intranspl 35-356-1246
752
+
753
+ begword ines 35-156
754
+ begword rées 1235-123456-156
755
+
756
+ prfword tient 2345-256-2345
757
+ prfword vient 1236-256-2345
758
+ endword ient 24-126
759
+ word balbutient 12-1-123-12-136-2345-24-126
760
+ word initient 35-24-2345-24-126
761
+ word dévient 145-123456-1236-24-126
762
+ word envient 1235-26-1236-24-126
763
+
764
+ word bleu 45-15-136
765
+ before con always brui 12-1235-23
766
+ endword clait 14-123-146
767
+ before voy always concr 14-346-25
768
+ endword drant 145-1235-1456
769
+ endword drants 145-1235-1456-234
770
+ always drô 145-1235-1456
771
+ endword en? 15-1345-26
772
+ before voy always propr 235-135-235
773
+ before con begword ren 1235-26
774
+ always ssè 234-234-2346
775
+ word (en 236-15-1345
776
+ word entrer 15-1345-356-236
777
+ word (la 236-123-1
778
+
779
+ ###
780
+ ### 2. Mots représentés par un seul symbole
781
+ ###
782
+
783
+ noback word a 1
784
+ noback word A 1
785
+ noback word à 12356
786
+ noback word À 12356
787
+ noback word e 15
788
+ noback word E 15
789
+ noback word y 13456
790
+ noback word Y 13456
791
+
792
+ word ai 34
793
+ word au 13
794
+ word aux 13-1346
795
+ nofor word batik 12-1-2345-24-13
796
+ word bien 12
797
+ word biens 12-234
798
+ word boy 12-135-13456
799
+ word ce 14
800
+ lowword celui 36
801
+ word cet 146
802
+ word dans 1456
803
+ word de 145
804
+ lowword dès 256
805
+ lowword du 236
806
+ nofor word dû 145-156
807
+ word elle 1356
808
+ word elles 1356-234
809
+ word en 26
810
+ word en? 15-1345-26
811
+ word est 156
812
+ word et 23456
813
+ word été 2356
814
+ word étés 2356-234
815
+ word faire 124
816
+ word festoù 56-124-15-234-2345-153-23456
817
+ word grand 12456
818
+ word grands 12456-234
819
+ word il 24
820
+ word ils 24-234
821
+ word je 245
822
+ lowword la 3
823
+ word le 123
824
+ word les 345
825
+ word lui 3456
826
+ word mais 1346
827
+ word mais) 134-34-234-356
828
+ word me 134
829
+ word même 126
830
+ word mêmes 126-234
831
+ word mksa 134-13-234-1
832
+ word möbius 134-246-12-24-136-234
833
+ word msbs 56-134-234-12-234
834
+ word ne 1345
835
+ word nâu 1345-16-136
836
+ word nous 135
837
+ word on 346
838
+ word par 1234
839
+ word plus 1246
840
+ word pour 12346
841
+ lowword puis 235
842
+ word que 12345
843
+ word qui 1245
844
+ word quoi 123456
845
+ word rien 1235
846
+ word riens 1235-234
847
+ word sans 2346
848
+ word se 234
849
+ word si 35
850
+ word son 246
851
+ word sons 246-234
852
+ lowword sous 356
853
+ sufword sous- 356-36
854
+ nofor begword souscr 356-25
855
+ word sur 125
856
+ word te 2345
857
+ word tous 2456
858
+ word tout 16
859
+ word un 136
860
+ word uns 136-234
861
+ word vous 1236
862
+ word vous) 1236-1256-356
863
+ word y 13456
864
+
865
+ before apost sufword c 14
866
+ before apost sufword d 145
867
+ before apost sufword j 245
868
+ before apost sufword l 123
869
+ before apost sufword m 134
870
+ before apost sufword n 1345
871
+ before apost sufword s 234
872
+ before apost sufword t 2345
873
+ before apost sufword C 14
874
+ before apost sufword D 145
875
+ before apost sufword J 245
876
+ before apost sufword L 123
877
+ before apost sufword M 134
878
+ before apost sufword N 1345
879
+ before apost sufword S 234
880
+ before apost sufword T 2345
881
+
882
+ ###
883
+ ### 3. Mots représentés par deux ou plusieurs symboles
884
+ ###
885
+
886
+ noback always -t- 36-2345-36 -
887
+ word absolu 1-12
888
+ contraction ab 1-12
889
+ word absolus 1-12-234
890
+ contraction abs 1-12-234
891
+ word absolue 1-12-15
892
+ word absolues 1-12-156
893
+ word absolument 1-12-134
894
+ contraction abm 1-12-134
895
+ prfword action 1-3456
896
+ prfword actions 1-3456-234
897
+ prfword actionnaire 1-3456-1235
898
+ prfword actionnaires 1-3456-1235-234
899
+ word affaire 1-124-124
900
+ word affaires 1-124-124-234
901
+ word afin 1-124
902
+ word agit-prop 1-1245-24-2345-36-235-1234
903
+ word ailleurs 34-136
904
+ word ainsi 1-24
905
+ word alors 1-123
906
+ contraction al 1-123
907
+ word amen 1-134-15-1345
908
+ word amour 1-134
909
+ contraction am 1-134
910
+ word amours 1-134-234
911
+ word amoureuse 1-134-234-15
912
+ word amoureuses 1-134-234-156
913
+ word amoureusement 1-134-234-134
914
+ word amoureux 1-134-1346
915
+ contraction amx 1-134-1346
916
+ word apparemment 1-1234-134
917
+ word apparence 1-1234-14
918
+ word apparences 1-1234-14-234
919
+ word apparent 1-1234
920
+ word apparents 1-1234-234
921
+ contraction aps 1-1234-234
922
+ word apparente 1-1234-15
923
+ word apparentes 1-1234-156
924
+ nofor word d'après 145-3-1-235
925
+ word après 1-235
926
+ word aq 1-12345
927
+ word assez 1-1356
928
+ word attentif 1-2345-124
929
+ word attentifs 1-2345-124-234
930
+ word attention 1-2345
931
+ word attentions 1-2345-234
932
+ contraction at 1-2345
933
+ word attentive 1-2345-1236
934
+ word attentives 1-2345-1236-234
935
+ word attentivement 1-2345-1236-134
936
+ word aucun 13-14
937
+ word aucune 13-1345
938
+ word aucunement 13-1345-134
939
+ word auparavant 13-1234
940
+ word auprès 13-235
941
+ word auquel 13-12345-123
942
+ word aussi 13-234
943
+ word aussitôt 13-2345
944
+ word autour 13-1235
945
+ word kr 56-13-1235
946
+ word autre 13-356
947
+ word autres 13-356-234
948
+ word autrefois 13-124
949
+ word autrement 13-356-134
950
+ word auxquelles 13-1346-12345-123-123-234
951
+ word auxquels 13-1346-12345-123-234
952
+ word avance 1-1236-14
953
+ contraction avc 1-1236-14
954
+ word avances 1-1236-14-234
955
+ word avancement 1-1236-14-134
956
+ word avant 1-1236
957
+ word avants 1-1236-234
958
+ contraction avs 1-1236-234
959
+ word avantage 1-1236-1245
960
+ contraction avg 1-1236-1245
961
+ word avantages 1-1236-1245-234
962
+ word avantageuse 1-1236-1245-234-15
963
+ word avantageuses 1-1236-1245-234-156
964
+ word avantageusement 1-1236-1245-234-134
965
+ word avantageux 1-1236-1245-1346
966
+ word avec 1-14
967
+ contraction ac 1-14
968
+ word avoir 1-1235
969
+ contraction ar 1-1235
970
+ word avoirs 1-1235-234
971
+ word ayant 1-13456
972
+ contraction ay 1-13456
973
+
974
+ word beaucoup 12-14
975
+ word besogne 12-2356
976
+ word besognes 12-2356-234
977
+ word besogneuse 12-2356-234-15
978
+ word besogneuses 12-2356-234-156
979
+ word besogneusement 12-2356-234-134
980
+ word besogneux 12-2356-1346
981
+ word besoin 12-35
982
+ word besoins 12-35-234
983
+ noback prfword bête 12-126
984
+ noback prfword bêtes 12-126-234
985
+ nofor word bête 12-126
986
+ nofor word bêtes 12-126-234
987
+ nofor word bébête 12-123456-12-126
988
+ nofor word bébêtes 12-123456-12-126-234
989
+ nofor word embête 345-12-126
990
+ nofor word embêtes 345-12-126-234
991
+ word bê 56-12-126
992
+ prfword bêtement 12-126-134
993
+ prfword bêtements 12-126-134-234
994
+ word bienfaisance 12-124-14
995
+ word bienfaisances 12-124-14-234
996
+ word bienfait 12-124
997
+ contraction bf 12-124
998
+ word bienfaits 12-124-234
999
+ word bienfaiteur 12-124-46
1000
+ word bienfaiteurs 12-124-46-234
1001
+ word bienheureuse 12-125-234-15
1002
+ word bienheureuses 12-125-234-156
1003
+ word bienheureux 12-125-1346
1004
+ word bientôt 12-2345
1005
+ word bienveillance 12-1236-14
1006
+ word bienveillances 12-1236-14-234
1007
+ word bienveillant 12-1236
1008
+ word bienveillants 12-1236-234
1009
+ word bienveillante 12-1236-15
1010
+ word bienveillantes 12-1236-156
1011
+ word bizarre 12-1356
1012
+ word bizarres 12-1356-234
1013
+ word bizarrement 12-1356-134
1014
+ word bonheur 12-125
1015
+ word bonheurs 12-125-234
1016
+ word bonjour 12-245
1017
+ word bonjours 12-245-234
1018
+ word bonne 12-1345
1019
+ word bonnes 12-1345-234
1020
+ word bonnement 12-1345-134
1021
+ word bonté 12-135
1022
+ contraction bo 12-135
1023
+ word bontés 12-135-234
1024
+ word boulevard 12-145
1025
+ contraction bd 12-145
1026
+ word boulevards 12-145-234
1027
+ word braille 23-123
1028
+ word brailles 23-123-234
1029
+ word branchage 23-12356-1245
1030
+ word branchages 23-12356-1245-234
1031
+ word branche 23-12356
1032
+ word branches 23-12356-234
1033
+ word branchement 23-12356-134
1034
+ word branchements 23-12356-134-234
1035
+ word brave 23-1236
1036
+ word braves 23-1236-234
1037
+ word bravement 23-1236-134
1038
+ word bruit 23-2345
1039
+ word bruits 23-2345-234
1040
+ word brusque 23-12345
1041
+ word brusques 23-12345-234
1042
+ word brusquement 23-12345-134
1043
+ word budget 12-1245
1044
+ word budgets 12-1245-234
1045
+ word budgétaire 12-1245-1235
1046
+ word budgétaires 12-1245-1235-234
1047
+ word budgétairement 12-1245-1235-134
1048
+ word butô 56-12-136-2345-1456
1049
+
1050
+ word caractère 14-2346
1051
+ word caractères 14-2346-234
1052
+ word caractéristique 14-123456-12345
1053
+ word caractéristiques 14-123456-12345-234
1054
+ word ceci 14-14
1055
+ contraction cc 14-14
1056
+ word cela 14-1
1057
+ contraction ca 14-1
1058
+ word celle 14-123
1059
+ contraction cl 14-123
1060
+ word celles 14-123-234
1061
+ word cependant 14-1234
1062
+ contraction cp 14-1234
1063
+ word ccn 56-14-14-1345
1064
+ word certain 14-35
1065
+ word certains 14-35-234
1066
+ word incertain 35-14-35
1067
+ word incertains 35-14-35-234
1068
+ prfword certaine 14-1345
1069
+ prfword certaines 14-1345-234
1070
+ prfword certainement 14-1345-134
1071
+ word certes 14-236
1072
+ prfword certitude 14-236-145
1073
+ prfword certitudes 14-236-145-234
1074
+ word ces 14-234
1075
+ word cette 14-2345
1076
+ contraction ct 14-2345
1077
+ word ceux 14-1346
1078
+ contraction cx 14-1346
1079
+ word chacun 12356-14
1080
+ word chacune 12356-1345
1081
+ word chagrin 12356-12456
1082
+ word chagrins 12356-12456-234
1083
+ word chaleur 12356-123
1084
+ word chaleurs 12356-123-234
1085
+ word chaleureuse 12356-123-234-15
1086
+ word chaleureuses 12356-123-234-156
1087
+ word chaleureusement 12356-123-234-134
1088
+ word chaleureux 12356-123-1346
1089
+ word champ 12356-1234
1090
+ word champs 12356-1234-234
1091
+ prfword change 12356-1245
1092
+ prfword changes 12356-1245-234
1093
+ word changement 12356-1245-134
1094
+ prfword changeur 12356-1245-46
1095
+ prfword changeurs 12356-1245-46-234
1096
+ prfword changeuse 12356-1245-234-15
1097
+ prfword changeuses 12356-1245-234-156
1098
+ word chaque 12356-12345
1099
+ word charitable 12356-2345-45
1100
+ word charitables 12356-2345-45-234
1101
+ word charitablement 12356-2345-45-134
1102
+ word charité 12356-2345
1103
+ word charités 12356-2345-234
1104
+ word chaud 12356-145
1105
+ word chauds 12356-145-234
1106
+ word chaude 12356-145-15
1107
+ word chaudes 12356-145-156
1108
+ word chaudement 12356-145-134
1109
+ word chemin 12356-134
1110
+ word chemins 12356-134-234
1111
+ word chère 12356-2346
1112
+ word chères 12356-2346-234
1113
+ word chèrement 12356-2346-134
1114
+ word chez 12356-1356
1115
+ word chiffrage 12356-124-1245
1116
+ word chiffrages 12356-124-1245-234
1117
+ word chiffre 12356-124
1118
+ word chiffres 12356-124-234
1119
+ prfword chiffrement 12356-124-134
1120
+ prfword chiffrements 12356-124-134-234
1121
+ noback word choeur 12356-1235
1122
+ noback word choeurs 12356-1235-234
1123
+ word chœur 12356-1235
1124
+ word chœurs 12356-1235-234
1125
+ word choix 12356-1346
1126
+ word chose 12356-234
1127
+ word choses 12356-234-234
1128
+ word circonstance 14-25-14
1129
+ word circonstances 14-25-14-234
1130
+ word circonstanciel 14-25-14-123
1131
+ word circonstanciels 14-25-14-123-234
1132
+ word circonstancielle 14-25-14-123-123
1133
+ word circonstancielles 14-25-14-123-123-234
1134
+ word civil 14-1236
1135
+ contraction cv 14-1236
1136
+ word civils 14-1236-234
1137
+ contraction cvs 14-1236-234
1138
+ word civile 14-1236-15
1139
+ word civiles 14-1236-156
1140
+ word civilement 14-1236-134
1141
+ word civilisation 14-1236-16
1142
+ word civilisations 14-1236-16-234
1143
+ word civilité 14-1236-2345
1144
+ word civilités 14-1236-2345-234
1145
+ word client 146-256-2345
1146
+ noback word coeur 14-1235
1147
+ noback word coeurs 14-1235-234
1148
+ noback word rancoeur 1235-2-14-1235
1149
+ noback word rancoeurs 1235-2-14-1235-234
1150
+ word cœur 14-1235
1151
+ word cœurs 14-1235-234
1152
+ word rancœur 1235-2-14-1235
1153
+ word rancœurs 1235-2-14-1235-234
1154
+ contraction cr 14-1235
1155
+ contraction crs 14-1235-234
1156
+ word combien 14-12
1157
+ contraction cb 14-12
1158
+ word comme 14-134
1159
+ contraction cm 14-134
1160
+ word commencement 36-134
1161
+ word commencements 36-134-234
1162
+ word recommencement 1-36-134
1163
+ word recommencements 1-36-134-234
1164
+ word comment 14-26
1165
+ word commentaire 14-26-1235
1166
+ word commentaires 14-26-1235-234
1167
+ word commentateur 14-26-46
1168
+ word commentateurs 14-26-46-234
1169
+ word commère 36-134-2346
1170
+ word commères 13-134-2346-234
1171
+ word commun 36-1345
1172
+ word communs 36-1345-234
1173
+ word commune 36-1345-15
1174
+ word communes 36-1345-156
1175
+ word communal 36-1345-123
1176
+ word communale 36-1345-123-15
1177
+ word communales 36-1345-123-156
1178
+ word communautaire 36-1345-2345-1235
1179
+ word communautaires 36-1345-2345-1235-234
1180
+ word communauté 36-1345-2345
1181
+ word communautés 36-1345-2345-234
1182
+ word communaux 36-1345-1346
1183
+ word communément 36-1345-134
1184
+ word communion 36-1345-3456
1185
+ word communions 36-1345-3456-234
1186
+ word compère 36-1234-2346
1187
+ word compères 36-1234-2346-234
1188
+ word complément 36-1246-134
1189
+ word compléments 36-1246-134-234
1190
+ word complémentaire 36-1246-134-1235
1191
+ word complémentaires 36-1246-134-1235-234
1192
+ noback prfword complet 36-1246
1193
+ prfword complets 36-1246-234
1194
+ nofor word complet 36-1246
1195
+ nofor word incomplet 35-36-1246
1196
+ word complète 36-2345
1197
+ word incomplète 35-36-2345
1198
+ prfword complètes 36-2345-234
1199
+ prfword complètement 36-2345-134
1200
+ nofor word incomplètement 35-36-2345-134
1201
+ word conclusion 25-14
1202
+ word conclusions 25-14-234
1203
+ word condition 25-145
1204
+ word conditions 25-145-234
1205
+ prfword conditionnel 25-145-123
1206
+ prfword conditionnels 25-145-123-234
1207
+ prfword conditionnelle 25-145-123-123
1208
+ prfword conditionnelles 25-145-123-123-234
1209
+ prfword conditionnellement 25-145-123-134
1210
+ word confiance 25-124-14
1211
+ word confiances 25-124-14-234
1212
+ word confiant 25-124
1213
+ word confiants 25-124-234
1214
+ word confiante 25-124-15
1215
+ word confiantes 25-124-156
1216
+ word congrès 25-12456 <
1217
+ prfword connaissance 25-1345-14
1218
+ prfword connaissances 25-1345-14-234
1219
+ prfword connaître 25-1345
1220
+ prfword consciemment 25-234-134
1221
+ prfword conscience 25-234-14
1222
+ prfword consciences 25-234-14-234
1223
+ word consciencieuse 25-234-14-234-15
1224
+ word consciencieuses 25-234-14-234-156
1225
+ word consciencieusement 25-234-14-234-134
1226
+ word consciencieux 25-234-14-1346
1227
+ word conscient 25-234
1228
+ word conscients 25-234-234
1229
+ word consciente 25-234-15
1230
+ word conscientes 25-234-156
1231
+ word inconsciente 35-25-234-15
1232
+ word inconscientes 35-25-234-156
1233
+ word subconsciente 234-136-12-25-234-15
1234
+ word subconscientes 234-136-12-25-234-156
1235
+ word conséquemment 14-12345-134
1236
+ prfword conséquence 14-12345-14
1237
+ prfword conséquences 14-12345-14-234
1238
+ noback prfword conséquent 14-12345
1239
+ noback prfword conséquents 14-12345-234
1240
+ nofor word conséquent 14-12345
1241
+ nofor word conséquents 14-12345-234
1242
+ nofor word inconséquent 35-14-12345
1243
+ nofor word inconséquents 35-14-12345-234
1244
+
1245
+ prfword conséquente 14-12345-15
1246
+ prfword conséquentes 14-12345-156
1247
+ word considérable 14-145
1248
+ contraction cd
1249
+ word considérables 14-145-234
1250
+ contraction cds
1251
+ word considérablement 14-145-134
1252
+ word considération 14-145-16
1253
+ word considérations 14-145-16-234
1254
+ noback prfword contre 14-356
1255
+ prfword contres 14-356-234
1256
+ nofor word contre 14-356
1257
+ nofor after apost word encontre 26-14-356
1258
+ nofor word hautecontre 125-13-2345-15-14-356
1259
+ nofor word rencontre 1235-26-14-356
1260
+ nofor word surcontre 234-136-1235-14-356
1261
+ word contraire 14-356-1235
1262
+ word contraires 14-356-1235-234
1263
+ word contrairement 14-356-1235-134
1264
+ word conversation 25-1236
1265
+ word conversations 25-1236-234
1266
+ word côté 14-1456
1267
+ word côtés 14-1456-234
1268
+ word couple 14-1246
1269
+ word couples 14-1246-234
1270
+ word courage 14-1245
1271
+ word courages 14-1245-234
1272
+ contraction cg 14-1245
1273
+ contraction cgs 14-1245-234
1274
+ word courageuse 14-1245-234-15
1275
+ word courageuses 14-1245-234-156
1276
+ word courageusement 14-1245-234-134
1277
+ word courageux 14-1245-1346
1278
+
1279
+ word danger 145-1245
1280
+ contraction dg
1281
+ word dangers 145-1245-234
1282
+ word dangereuse 145-1245-234-15
1283
+ contraction dgse
1284
+ word dangereuses 145-1245-234-156
1285
+ word dangereusement 145-1245-234-134
1286
+ word dangereux 145-1245-1346
1287
+ word davantage 145-1
1288
+ word da 56-145-1
1289
+ word debout 145-12
1290
+ contraction db 145-12
1291
+ word dedans 145-145
1292
+ word défaut 145-123456-124-2345
1293
+ word défauts 145-123456-124-2345-234
1294
+ word degré 145-12456
1295
+ word degrés 145-12456-234
1296
+ word dehors 145-125
1297
+ word déjà 145-245
1298
+ contraction dj
1299
+ nofor word deçà 145-15-12346-12356
1300
+ nofor word delà 145-15-123-12356
1301
+ nofor word holà 125-135-123-12356
1302
+ word demain 145-134
1303
+ word demains 145-134-234
1304
+ contraction dm 145-134
1305
+ prfword lendemain 123-26-145-134
1306
+ prfword lendemains 123-26-145-134-234
1307
+ word depuis 145-1234
1308
+ word dernier 145-1345
1309
+ word derniers 145-1345-234
1310
+ contraction dns
1311
+ word dernière 145-1235
1312
+ word dernières 145-1235-234
1313
+ word dernièrement 145-1235-134
1314
+ contraction drm
1315
+ word derrière 145-236
1316
+ word derrières 145-236-234
1317
+ word des 145-234
1318
+ contraction ds 145-234
1319
+ word désormais 145-34
1320
+ word desquels 145-234-12345-123-234
1321
+ word desquelles 145-234-12345-123-123-234
1322
+ word destin 145-35
1323
+ word destins 145-35-234
1324
+ word din 145-24-1345
1325
+ prfword destinataire 145-35-1235
1326
+ prfword destinataires 145-35-1235-234
1327
+ word destination 145-35-16
1328
+ word destinations 145-35-16-234
1329
+ word devant 145-1236
1330
+ word devants 145-1236-234
1331
+ prfword différemment 145-345-134
1332
+ prfword différence 145-26-14
1333
+ prfword différences 145-26-14-234
1334
+ noback prfword différent 145-26
1335
+ noback prfword différents 145-26-234
1336
+ nofor word différent 145-26
1337
+ nofor word différents 145-26-324
1338
+ nofor word indifférent 35-145-26
1339
+ nofor word indifférents 35-145-26-234
1340
+ prfword différente 145-26-15
1341
+ prfword différentes 145-26-156
1342
+ word difficile 145-124
1343
+ word difficiles 145-124-234
1344
+ word difficilement 145-124-134
1345
+ word difficulté 145-124-2345
1346
+ word difficultés 145-124-2345-234
1347
+ word digne 145-2356
1348
+ word dignes 145-2356-234
1349
+ word dignement 145-2356-134
1350
+ word indigne 35-145-2356
1351
+ word indignes 35-145-2356-234
1352
+ word indignement 35-145-2356-134
1353
+
1354
+ word dignitaire 145-2356-2345-1235
1355
+ word dignitaires 145-2356-2345-1235-234
1356
+ prfword dignité 145-2356-2345
1357
+ prfword dignités 145-2356-2345-234
1358
+ word discours 256-14
1359
+ contraction disc 145-24-324-14
1360
+ word dispositif 256-1234-124
1361
+ word dispositifs 256-1234-124-234
1362
+ noback prfword disposition 256-1234
1363
+ noback prfword dispositions 256-1234-234
1364
+ nofor word disposition 256-1234
1365
+ nofor word dispositions 256-1234-234
1366
+ nofor word indisposition 35-256-1234
1367
+ nofor word indispositions 35-256-1234-234
1368
+ nofor word prédisposition 235-123456-256-1234
1369
+ nofor word préispositions 235-123456-256-1234-234
1370
+ word distance 256-2345-14
1371
+ word distances 256-2345-14-234
1372
+ word distant 256-2345
1373
+ word distants 256-2345-234
1374
+ word distante 256-2345-15
1375
+ word distantes 256-2345-156
1376
+ word donc 145-14
1377
+ word dont 145-2345
1378
+ contraction dt 145-2345
1379
+ word douleur 145-123
1380
+ word douleurs 145-123-234
1381
+ word douloureuse 145-123-234-15
1382
+ word douloureuses 145-123-234-156
1383
+ word douloureusement 145-123-234-134
1384
+ word douloureux 145-123-1346
1385
+ word doute 145-1256
1386
+ word doutes 145-1256-234
1387
+ word duquel 145-136-12345-123
1388
+ prfword effectif 15-124-124
1389
+ prfword effectifs 15-124-124-234
1390
+ prfword effective 15-124-1236
1391
+ prfword effectives 15-124-1236-234
1392
+ word effectivement 15-124-1236-134
1393
+ word effet 15-124
1394
+ word effets 15-124-234
1395
+ word égal 123456-1245
1396
+ word égale 123456-1245-15
1397
+ word égales 123456-1245-156
1398
+ word également 123456-1245-134
1399
+ word égalitaire 123456-1245-2345-1235
1400
+ word égalitaires 123456-1245-2345-1235-234
1401
+ word égalité 123456-1245-2345
1402
+ word égalités 123456-1245-2345-234
1403
+ word égaux 123456-1245-1346
1404
+ word élément 123456-123
1405
+ word éléments 123456-123-234
1406
+ word élémentaire 123456-123-1235
1407
+ word élémentaires 123456-123-1235-234
1408
+ word encore 26-14
1409
+ word endroit 26-145
1410
+ word endroits 26-145-234
1411
+ word end 15-1345-145
1412
+ word ends 15-1345-145-234
1413
+ word énergie 123456-1345
1414
+ word énergies 123456-1345-234
1415
+ word énergique 123456-1345-12345
1416
+ word énergiques 123456-1345-12345-234
1417
+ word énergiquement 123456-1345-12345-134
1418
+ word enfin 26-124
1419
+ word ennui 26-1345
1420
+ word ennuis 26-1345-234
1421
+ word ennuyeuse 26-1345-234-15
1422
+ word ennuyeuses 26-1345-234-156
1423
+ word ennuyeux 26-1345-1346
1424
+ word enquête 26-12345
1425
+ word enquêtes 26-12345-234
1426
+ word enquêteur 26-12345-46
1427
+ word enquêteurs 26-12345-46-234
1428
+ word enquêteuse 26-12345-234-15
1429
+ word enquêteuses 26-12345-234-156
1430
+ word ensemble 26-345
1431
+ word ensembles 26-345-234
1432
+ word ensuite 26-234
1433
+ word ens 56-15-1345-234
1434
+ word entier 26-2345
1435
+ word entiers 26-2345-234
1436
+ word entière 26-1235
1437
+ word entières 26-1235-234
1438
+ word entièrement 26-1235-134
1439
+ word environ 26-1236
1440
+ word environs 26-1236-234
1441
+ word espèce 156-1234
1442
+ word espèces 156-1234-234
1443
+ prfword espérance 156-1235-14
1444
+ prfword espérances 156-1235-14-234
1445
+ noback prfword espoir 156-1235
1446
+ noback prfword espoirs 156-1235-234
1447
+ nofor word espoir 156-1235
1448
+ nofor word espoirs 156-1235-234
1449
+ word désespoir 145-123456-234-156-1235
1450
+ word désespoirs 145-123456-234-156-1235-234
1451
+ word esprit 15-235
1452
+ word esprits 15-235-234
1453
+ word essentiel 156-123
1454
+ word essentiels 156-123-234
1455
+ word essentielle 156-123-123
1456
+ word essentielles 156-123-123-234
1457
+ word essentiellement 156-123-134
1458
+ word étant 123456-2345
1459
+ word être 126-356
1460
+ word êtres 126-356-234
1461
+ word événement 123456-1236
1462
+ word événements 123456-1236-234
1463
+ word éventualité 123456-1236-123-2345
1464
+ word éventualités 123456-1236-123-2345-234
1465
+ word éventuel 123456-1236-123
1466
+ word éventuels 123456-1236-123-234
1467
+ word éventuelle 123456-1236-123-123
1468
+ word éventuelles 123456-1236-123-123-234
1469
+ word éventuellement 123456-1236-123-134
1470
+ word excellemment 1346-123-134
1471
+ word excellence 1346-123-14
1472
+ word excellences 1346-123-14-234
1473
+ word excellent 1346-123
1474
+ word excellents 1346-123-234
1475
+ word excellente 1346-123-15
1476
+ word excellentes 1346-123-156
1477
+ word excès 1346-14
1478
+ word excessif 1346-14-124
1479
+ word excessifs 1346-14-124-234
1480
+ word excessive 1346-14-1236
1481
+ word excessives 1346-14-1236-234
1482
+ word excessivement 1346-14-1236-134
1483
+ word exercice 1346-236
1484
+ word exercices 1346-236-234
1485
+ prfword expérience 1346-1234
1486
+ prfword expériences 1346-1234-234
1487
+ contraction xp 1346-1234
1488
+ word exp 56-15-1346-1234
1489
+ word expérimental 1346-1234-123
1490
+ word expérimentale 1346-1234-123-15
1491
+ word expérimentales 1346-1234-123-156
1492
+ word expérimentalement 1346-1234-123-134
1493
+ word expérimentateur 1346-1234-46
1494
+ word expérimentateurs 1346-1234-46-234
1495
+ word expérimentation 1346-1234-16
1496
+ word expérimentations 1346-1234-16-234
1497
+ word expérimentaux 1346-1234-1346
1498
+ prfword explicable 1346-1246-45
1499
+ prfword explicables 1346-1246-45-234
1500
+ word explicatif 1346-1246-124
1501
+ word explicatifs 1346-1246-124-234
1502
+ word explication 1346-1246
1503
+ word explications 1346-1246-234
1504
+ word explicative 1346-1246-1236
1505
+ word explicatives 1346-1246-1236-234
1506
+ prfword expressif 1346-235-124
1507
+ prfword expressifs 1346-235-124-234
1508
+ word expression 1346-235
1509
+ word expressions 1346-235-234
1510
+ prfword expressive 1346-235-1236
1511
+ prfword expressives 1346-235-1236-234
1512
+ prfword expressivement 1346-235-1236-134
1513
+ prfword expressivité 1346-235-1236-2345
1514
+ prfword expressivités 1346-235-1236-2345-234
1515
+ word extérieur 1346-2345
1516
+ word extérieurs 1346-2345-234
1517
+ word extérieure 1346-2345-15
1518
+ word extérieures 1346-2345-156
1519
+ word extérieurement 1346-2345-134
1520
+ word extraordinaire 1346-356-1-56-145
1521
+ word extraordinaires 1346-356-1-56-145-234
1522
+ word extraordinairement 1346-356-1-56-145-134
1523
+ word extrême 1346-356
1524
+ word extrêmes 1346-356-234
1525
+ word extrêmement 1346-356-134
1526
+ word extrémité 1346-356-2345
1527
+ word extrémités 1346-356-2345-234
1528
+
1529
+ word facile 124-14
1530
+ word faciles 124-14-234
1531
+ word facilement 124-14-134
1532
+ word facilité 124-14-2345
1533
+ word facilités 124-14-2345-234
1534
+ word faubourg 124-12
1535
+ word faubourgs 124-12-234
1536
+ word faut 124-2345
1537
+ word faute 124-2345-15
1538
+ word fautes 124-2345-15-234
1539
+ word fautif 124-2345-124
1540
+ word fautifs 124-2345-124-234
1541
+ word fautive 124-2345-1236
1542
+ word fautives 124-2345-1236-234
1543
+ prfword faveur 124-1236
1544
+ prfword faveurs 124-1236-234
1545
+ prfword favorable 124-1236-45
1546
+ prfword favorables 124-1236-45-234
1547
+ prfword favorablement 124-1236-45-134
1548
+ word féminin 124-134-35
1549
+ word féminins 124-134-35-234
1550
+ word féminine 124-134-1345
1551
+ word féminines 124-134-1345-234
1552
+ word féminité 124-134-1345-2345
1553
+ word féminités 124-134-1345-2345-234
1554
+ word femme 124-134
1555
+ contraction fm 124-134
1556
+ word femmes 124-134-234
1557
+ word fête 124-126
1558
+ word fêtes 124-126-234
1559
+ prfword fidèle 124-145
1560
+ prfword fidèles 124-145-234
1561
+ prfword fidèlement 124-145-134
1562
+ prfword fidélité 124-145-2345
1563
+ prfword fidélités 124-145-2345-234
1564
+ prfword figuratif 124-1245-124
1565
+ prfword figuratifs 124-1245-124-234
1566
+ prfword figuration 124-1245-16
1567
+ prfword figurations 124-1245-16-234
1568
+ prfword figurative 124-1245-1236
1569
+ prfword figuratives 124-1245-1236-234
1570
+ word fg 56-124-1245
1571
+ prfword figure 124-1245
1572
+ prfword figures 124-1245-234
1573
+ word fille 124-123
1574
+ word filles 124-123-234
1575
+ word fils 124-234
1576
+ word fonction 124-346
1577
+ word fonctions 124-346-234
1578
+ word fonctionnaire 124-346-1235
1579
+ word fonctionnaires 124-346-1235-234
1580
+ word fonctionnel 124-346-123
1581
+ word fonctionnels 124-346-123-234
1582
+ word fonctionnelle 124-346-123-123
1583
+ word fonctionnelles 124-346-123-123-234
1584
+ word fonctionnellement 124-346-123-134-134
1585
+ prfword fonctionnement 124-346-134
1586
+ prfword fonctionnements 124-346-134-234
1587
+ noback prfword force 124-135
1588
+ noback prfword forces 124-135-234
1589
+ nofor word force 124-135
1590
+ nofor word forces 124-135-234
1591
+ nofor word antiforce 2-2345-24-124-135
1592
+ nofor word antiforces 2-2345-24-124-135-234
1593
+ nofor word bioforce 12-24-135-124-135
1594
+ nofor word bioforces 12-24-135-124-135-234
1595
+ nofor word efforce 15-124-124-135
1596
+ nofor word efforces 15-124-124-135-234
1597
+ nofor word renforce 1235-26-124-135
1598
+ nofor word renforces 1235-26-124-135-234
1599
+ word fo 56-124-135
1600
+ word forcément 124-135-134
1601
+ prfword fortune 124-1345
1602
+ contraction fn 124-1345
1603
+ prfword fortunes 124-1345-234
1604
+ prfword fraternel 124-1235-123
1605
+ prfword fraternels 124-1235-123-234
1606
+ prfword fraternelle 124-1235-123-123
1607
+ prfword fraternelles 124-1235-123-123-234
1608
+ prfword fraternellement 124-1235-123-134
1609
+ prfword fraternisation 124-1235-16
1610
+ prfword fraternisations 124-1235-16-234
1611
+ prfword fraternité 124-1235-2345
1612
+ prfword fraternités 124-1235-2345-234
1613
+ word fréquemment 124-12345-134
1614
+ prfword fréquence 124-12345-14
1615
+ prfword fréquences 124-12345-14-234
1616
+ word fréquent 124-12345
1617
+ word fréquents 124-12345-234
1618
+ word fréquente 124-12345-15
1619
+ word fréquentes 124-12345-156
1620
+ word fréquentation 124-12345-16
1621
+ word fréquentations 124-12345-16-234
1622
+ prfword frère 124-1235
1623
+ prfword frères 124-1235-234
1624
+ word fr 56-124-1235
1625
+ word ifr 56-24-124-1235
1626
+ word sfr 56-234-124-1235
1627
+
1628
+ prfword garde 1245-145
1629
+ prfword gardes 1245-145-234
1630
+ word gd 56-1245-145
1631
+ word général 1245-1345
1632
+ word générale 1245-1345-15
1633
+ word générales 1245-1345-156
1634
+ word généralement 1245-1345-134
1635
+ word généralisation 1245-1345-16
1636
+ word généralisations 1245-1345-16-234
1637
+ word généralité 1245-1345-2345
1638
+ word généralités 1245-1345-2345-234
1639
+ word généraux 1245-1345-1346
1640
+ word généreuse 1245-234-15
1641
+ word généreuses 1245-234-156
1642
+ word généreusement 1245-234-134
1643
+ contraction gsm 1245-234-134
1644
+ word généreux 1245-1346
1645
+ word générosité 1245-234-2345
1646
+ word générosités 1245-234-2345-234
1647
+ word gloire 1245-1235
1648
+ word gloires 1245-1235-234
1649
+ word gr 56-1245-1235
1650
+ word glorieuse 1245-1235-234-15
1651
+ word glorieuses 1245-1235-234-156
1652
+ word glorieusement 1245-1235-234-134
1653
+ word glorieux 1245-1235-1346
1654
+ word gouvernement 1245-1236
1655
+ word gouvernements 1245-1236-234
1656
+ word gouvernemental 1245-1236-123
1657
+ word gouvernementale 1245-1236-123-15
1658
+ word gouvernementales 1245-1236-123-156
1659
+ word gouvernementaux 1245-1236-1346
1660
+ word gouverneur 1245-1236-46
1661
+ word gouverneurs 1245-1236-46-234
1662
+ prfword grâce 12456-14
1663
+ prfword grâces 12456-14-234
1664
+ prfword gracieuse 12456-14-234-15
1665
+ prfword gracieuses 12456-14-234-156
1666
+ prfword gracieusement 12456-14-234-134
1667
+ prfword gracieux 12456-14-1346
1668
+ word grande 12456-145
1669
+ word grandes 12456-145-234
1670
+ word grandement 12456-145-134
1671
+ word grandeur 12456-46
1672
+ word grandeurs 12456-46-234
1673
+ word grave 12456-1236
1674
+ word graves 12456-1236-234
1675
+ word gravement 12456-1236-134
1676
+ word gravitation 12456-1236-2345-16
1677
+ word gravitations 12456-1236-2345-16-234
1678
+ word gravité 12456-1236-2345
1679
+ word gravités 12456-1236-2345-234
1680
+ word groupe 12456-1234
1681
+ word groupes 12456-1234-234
1682
+ prfword groupement 12456-1234-134
1683
+ prfword groupements 12456-1234-134-234
1684
+ word guère 1245-2346
1685
+ word guerre 1245-236
1686
+ word guerres 1245-236-234
1687
+
1688
+ word habitude 125-12
1689
+ word habitudes 125-12-234
1690
+ word hbs 56-125-12-234
1691
+ prfword habituel 125-12-123
1692
+ prfword habituels 125-12-123-234
1693
+ prfword habituelle 125-12-123-123
1694
+ prfword habituelles 125-12-123-123-234
1695
+ prfword habituellement 125-12-123-134
1696
+ word hasard 125-145
1697
+ contraction hd 125-145
1698
+ word hasards 125-145-234
1699
+ word hasardeuse 125-145-234-15
1700
+ word hasardeuses 125-145-234-156
1701
+ word hasardeux 125-145-1346
1702
+ word hélas 125-123
1703
+ word heure 125-1235
1704
+ word heures 125-1235-234
1705
+ word heureuse 125-234-15
1706
+ word heureuses 125-234-156
1707
+ word heureusement 125-234-134
1708
+ word heureux 125-1346
1709
+ word hier 125-236
1710
+ word histoire 125-2345
1711
+ word histoires 125-2345-234
1712
+ contraction ht
1713
+ word préhistoire 235-123456-125-2345
1714
+ word préhistoires 235-123456-125-2345-234
1715
+ prfword historique 125-2345-12345
1716
+ prfword historiques 125-2345-12345-234
1717
+ prfword historiquement 125-2345-12345-134
1718
+ word hiver 125-1236
1719
+ word hivers 125-1236-234
1720
+ word hivernal 125-1236-123
1721
+ word hivernale 125-1236-123-15
1722
+ word hivernales 125-1236-123-156
1723
+ word hivernaux 125-1236-1346
1724
+ word hommage 125-1245
1725
+ word hommages 125-1245-234
1726
+ contraction hg 125-1245
1727
+ word homme 125-134
1728
+ word hommes 125-134-234
1729
+ noback prfword honnête 125-126
1730
+ nofor word honnête 125-126
1731
+ nofor word déshonnête 145-123456-234-125-126
1732
+ nofor word malhonnête 134-1-123-125-126
1733
+ prfword honnêtes 125-126-234
1734
+ prfword honnêtement 125-126-134
1735
+ prfword honnêteté 125-126-2345
1736
+ prfword honnêtetés 125-126-2345-234
1737
+ noback prfword honneur 125-1345
1738
+ noback prfword honneurs 125-1345-234
1739
+ nofor word honneur 125-1345
1740
+ nofor word honneurs 125-1345-234
1741
+ nofor word déshonneur 145-123456-234-125-1345
1742
+ nofor word déshonneurs 145-123456-234-125-1345-234
1743
+
1744
+ word honorabilité 125-1345-12-123-2345
1745
+ word honorabilités 125-1345-12-123-2345-234
1746
+ word honorable 125-1345-45
1747
+ word honorables 125-1345-45-234
1748
+ word honorablement 125-1345-45-134
1749
+ word honoraire 125-1345-1235
1750
+ word honoraires 125-1345-1235-234
1751
+ word horaire 125-1235-1235
1752
+ word horaires 125-1235-1235-234
1753
+ word horizon 125-1356
1754
+ word horizons 125-1356-234
1755
+ word horizontal 125-1356-123
1756
+ word horizontale 125-1356-123-15
1757
+ word horizontales 125-1356-123-156
1758
+ word horizontalement 125-1356-123-134
1759
+ word horizontalité 125-1356-123-2345
1760
+ word horizontalités 125-1356-123-2345-234
1761
+ word horizontaux 125-1356-1346
1762
+ word hypothèse 125-1234
1763
+ contraction hp 125-1234
1764
+ word hypothèses 125-1234-234
1765
+ word hypothétique 125-1234-12345
1766
+ word hypothétiques 125-1234-12345-234
1767
+ word hypothétiquement 125-1234-12345-134
1768
+ prfword humain 125-134-35
1769
+ prfword humains 125-134-35-234
1770
+ prfword humaine 125-134-1345
1771
+ prfword humaines 125-134-1345-234
1772
+ prfword humainement 125-134-1345-134
1773
+ word humanitaire 125-134-1345-2345-1235
1774
+ word humanitaires 125-134-1345-2345-1235-234
1775
+ prfword humanité 125-134-1345-2345
1776
+ prfword humanités 125-134-1345-2345-234
1777
+
1778
+ word idéal 24-145-123
1779
+ word idéale 24-145-123-15
1780
+ word idéales 24-145-123-156
1781
+ word idéalement 24-145-123-134
1782
+ word idéaux 24-145-1346
1783
+ word idée 24-145
1784
+ word idées 24-145-234
1785
+ contraction id 24-145
1786
+ word image 24-1245
1787
+ word images 24-1245-234
1788
+ contraction igs
1789
+ noback prfword imaginable 24-1245-45
1790
+ noback prfword imaginables 24-1245-45-234
1791
+ noback prfword imaginablement 24-1245-45-134
1792
+ nofor word imaginable 24-1245-45
1793
+ nofor word imaginables 24-1245-45-234
1794
+ nofor word imaginablement 24-1245-45-134
1795
+ nofor word inimaginable 35-24-1245-45
1796
+ nofor word inimaginables 35-24-1245-45-234
1797
+ nofor word inimaginablement 35-24-1245-45-134
1798
+
1799
+ word imaginaire 24-1245-1235
1800
+ word imaginaires 24-1245-1235-234
1801
+ word imagination 24-1245-16
1802
+ word imaginations 24-1245-16-234
1803
+ word immédiat 24-134
1804
+ word immédiats 24-134-234
1805
+ word immédiate 24-134-15
1806
+ word immédiates 24-134-156
1807
+ word immédiatement 24-134-134
1808
+ prfword impression 246-235
1809
+ prfword impressions 246-235-234
1810
+ word impressionnable 246-235-45
1811
+ word impressionnables 246-235-45-234
1812
+ word inégal 35-123456-1245
1813
+ word inégale 35-123456-1245-15
1814
+ word inégales 35-123456-1245-156
1815
+ word inégalement 35-123456-1245-134
1816
+ word inégalitaire 35-123456-1245-2345-1235
1817
+ word inégalitaires 35-123456-1245-2345-1235-234
1818
+ word inégalité 35-123456-1245-2345
1819
+ word inégalités 35-123456-1245-2345-234
1820
+ word inégaux 35-123456-1245-1346
1821
+ word inexplicablement 35-1346-1246-134
1822
+ word inférieur 35-124
1823
+ word inférieurs 35-124-234
1824
+ word inf 24-1345-124
1825
+ word inférieure 35-124-15
1826
+ word inférieures 35-124-156
1827
+ word inférieurement 35-124-134
1828
+ word infériorité 35-124-2345
1829
+ word infériorités 35-124-2345-234
1830
+ prfword ïonique 12456-135-1345-24-12345
1831
+ prfword ïoniques 12456-135-1345-24-12345-234
1832
+
1833
+ word inquiet 35-12345
1834
+ word inquiets 35-12345-234
1835
+ word inquiète 35-2346
1836
+ word inquiètes 35-2346-234
1837
+ word inquiétude 35-12345-145
1838
+ word inquiétudes 35-12345-145-234
1839
+ word intelligemment 35-1245-134
1840
+ prfword intelligence 35-1245-14
1841
+ prfword intelligences 35-1245-14-234
1842
+ word intelligent 35-1245
1843
+ word intelligents 35-1245-234
1844
+ word intelligente 35-1245-15
1845
+ word intelligentes 35-1245-156
1846
+ word inintelligent 35-35-1245
1847
+ word inintelligents 35-35-1245-234
1848
+ word inintelligente 35-35-1245-15
1849
+ word inintelligentes 35-35-1245-156
1850
+
1851
+ word intérieur 35-2345
1852
+ word intérieurs 35-2345-234
1853
+ word intérieure 35-2345-15
1854
+ word intérieures 35-2345-156
1855
+ word intérieurement 35-2345-134
1856
+
1857
+ word jadis 245-145
1858
+ word jamais 245-134
1859
+ word jeune 245-1345
1860
+ word jeunes 245-1345-234
1861
+ word jour 245-1235
1862
+ word jours 245-1235-234
1863
+ word journal 245-1235-123
1864
+ word journaux 245-1235-1346
1865
+ word joyeuse 245-234-15
1866
+ word joyeuses 245-234-156
1867
+ word joyeusement 245-234-134
1868
+ word joyeux 245-1346
1869
+ prfword juge 245-1245
1870
+ prfword juges 245-1245-234
1871
+ word jugement 245-1245-134
1872
+ word jugements 245-1245-134-234
1873
+ word jusque 245-12345
1874
+ prfword juste 245-2345
1875
+ prfword justes 245-2345-234
1876
+ prfword justement 245-2345-134
1877
+ prfword justice 245-14
1878
+ prfword justices 245-14-234
1879
+
1880
+ nofor word là 123-12356
1881
+ word laquelle 123-123-123
1882
+ prfword lecture 123-1235
1883
+ prfword lectures 123-1235-234
1884
+ word lequel 123-123
1885
+ word lesquelles 123-123-123-234
1886
+ word lesquels 123-123-234
1887
+ word lettre 123-356
1888
+ word lettres 123-356-234
1889
+ word libéral 123-12-123
1890
+ word libérale 123-12-123-15
1891
+ word libérales 123-12-123-156
1892
+ word libéralement 123-12-123-134
1893
+ word libéralité 123-12-123-2345
1894
+ word libéralités 123-12-123-2345-234
1895
+ word libérateur 123-12-46
1896
+ word libérateurs 123-12-46-234
1897
+ prfword libération 123-12-16
1898
+ prfword libérations 123-12-16-234
1899
+ word libéraux 123-12-1346
1900
+ word liberté 123-12-2345
1901
+ word libertés 123-12-2345-234
1902
+ word libre 123-12
1903
+ word libres 123-12-234
1904
+ word librement 123-12-134
1905
+ prfword ligne 123-2356
1906
+ nofor word aligne 1-123-2356
1907
+ prfword lignes 123-2356-234
1908
+ word livre 123-1236
1909
+ word livres 123-1236-234
1910
+ prfword logique 123-1245-12345
1911
+ prfword logiques 123-1245-12345-234
1912
+ prfword logiquement 123-1245-12345-134
1913
+ word loin 123-1345
1914
+ word loins 123-1345-234
1915
+ word lointain 123-1345-35
1916
+ word lointains 123-1345-35-234
1917
+ word lointaine 123-1345-1345
1918
+ word lointaines 123-1345-1345-234
1919
+ word lointainement 123-1345-134
1920
+ word longtemps 123-2345
1921
+ word lorsque 123-12345
1922
+ word lourd 123-145
1923
+ word ld 56-123-145
1924
+ word lourds 123-145-234
1925
+ word lourde 123-145-15
1926
+ word lourdes 123-145-156
1927
+ word lourdement 123-145-134
1928
+ word lourdeur 123-145-46
1929
+ word lourdeurs 123-145-46-234
1930
+ word lumière 123-134
1931
+ word lumières 123-134-234
1932
+ word lumineuse 123-134-234-15
1933
+ word lumineuses 123-134-234-156
1934
+ word lumineusement 123-134-234-134
1935
+ word lumineux 123-134-1346
1936
+ word luminosité 123-134-234-2345
1937
+ word luminosités 123-134-234-2345-234
1938
+
1939
+ word madame 134-145
1940
+ word mademoiselle 134-134
1941
+ contraction mm 134-134
1942
+ word magnificence 134-2356-14
1943
+ word magnificences 134-2356-14-234
1944
+ word magnifique 134-2356
1945
+ word magnifiques 134-2356-234
1946
+ word magnifiquement 134-2356-134
1947
+ word maintenant 134-2345
1948
+ word malgré 134-12456
1949
+ word malheur 134-125
1950
+ word malheurs 134-125-234
1951
+ word malheureuse 134-125-234-15
1952
+ word malheureuses 134-125-234-156
1953
+ word malheureusement 134-125-234-134
1954
+ word malheureux 134-125-1346
1955
+ word manière 134-1345
1956
+ word manières 134-1345-234
1957
+ nofor word massiau 134-1-2346-24-13
1958
+ word mauvais 134-1236
1959
+ word mauvaise 134-1236-15
1960
+ word mauvaises 134-1236-156
1961
+ word meilleur 134-123
1962
+ contraction ml 134-123
1963
+ word meilleurs 134-123-234
1964
+ word meilleure 134-123-15
1965
+ word meilleures 134-123-156
1966
+ word merci 134-14
1967
+ word mercis 134-14-234
1968
+ contraction mc 134-14
1969
+ word mère 134-2346
1970
+ word mères 134-2346-234
1971
+ word mes 134-234
1972
+ word mesdames 134-145-234
1973
+ word mesdemoiselles 134-134-234
1974
+ word messieurs 134-1235-234
1975
+ word mettre 134-356
1976
+ word commettre 36-134-356
1977
+ word démettre 145-123456-134-356
1978
+ word émettre 123456-134-356
1979
+ word omettre 135-134-356
1980
+ word promettre 235-134-356
1981
+ word remettre 3-134-356
1982
+ word soumettre 234-1256-134-356
1983
+ word retransmettre 3-356-134-356
1984
+ word transmettre 356-134-356
1985
+ word rem) 1235-15-134-356
1986
+ word mieux 134-1346
1987
+ word mission 134-3456
1988
+ word missions 134-3456-234
1989
+ word amission 1-134-3456
1990
+ word amissions 1-134-3456-234
1991
+ word admission 1-145-134-3456
1992
+ word admissions 1-145-134-3456-234
1993
+ word réadmission 1235-123456-1-145-134-3456
1994
+ word réadmissions 1235-123456-145-134-3456-234
1995
+ word commission 36-134-3456
1996
+ word commissions 36-134-3456-234
1997
+ word compromission 36-235-134-3456
1998
+ word compromissions 36-235-134-3456-234
1999
+ word démission 145-123456-134-3456
2000
+ word démissions 145-123456-134-3456-234
2001
+ word émission 123456-134-3456
2002
+ word émissions 123456-134-3456-234
2003
+ word expromission 1346-235-134-3456
2004
+ word expromissions 1346-235-134-3456-234
2005
+ word intermission 35-2345-236-134-3456
2006
+ word intermissions 35-2345-236-134-3456-234
2007
+ word intromission 35-356-135-134-3456
2008
+ word intromissions 35-356-135-134-3456-234
2009
+ word manumission 134-1-1345-136-134-3456
2010
+ word manumissions 134-1-1345-136-134-3456-234
2011
+ word omission 135-134-3456
2012
+ word omissions 135-134-3456-234
2013
+ word permission 1234-236-134-3456
2014
+ word permissions 1234-236-134-3456-234
2015
+ word rémission 1235-123456-134-3456
2016
+ word rémissions 1235-123456-134-3456-234
2017
+ word retransmission 3-356-134-3456
2018
+ word retransmissions 3-356-134-3456-234
2019
+ prfword transmission 356-134-3456
2020
+ prfword transmissions 356-134-3456-234
2021
+ prfword soumission 234-1256-134-3456
2022
+ prfword soumissions 324-1256-134-3456-234
2023
+ prfword missionnaire 134-3456-1235
2024
+ prfword missionnaires 134-3456-1235-234
2025
+ word mobile 134-12
2026
+ word mobiles 134-12-234
2027
+ word immobile 246-134-12
2028
+ word immobiles 246-134-12-234
2029
+ prfword mobilisation 134-12-16
2030
+ prfword mobilisations 134-12-16-234
2031
+ prfword mobilité 134-12-2345
2032
+ prfword mobilités 134-12-2345-234
2033
+ word moins 134-35
2034
+ word moment 134-26
2035
+ word moments 134-26-234
2036
+ word momentanément 134-26-134
2037
+ word monsieur 134-1235
2038
+ word multiple 134-1246
2039
+ word multiples 134-1246-234
2040
+ word multiplicateur 134-1246-46
2041
+ word démultiplicateur 145-123456-134-1246-46
2042
+ prfword multiplicateurs 134-1246-46-234
2043
+ prfword multiplication 134-1246-16
2044
+ prfword multiplications 134-1246-16-234
2045
+ word multiplicité 134-1246-2345
2046
+ word multiplicités 134-1246-2345-234
2047
+ word musique 134-12345
2048
+ word musiques 134-12345-234
2049
+ word mystère 134-13456
2050
+ word mystères 134-13456-234
2051
+ word mystérieuse 134-13456-234-15
2052
+ word mystérieuses 134-13456-234-156
2053
+ word mystérieusement 134-13456-234-134
2054
+ word mystérieux 134-13456-1346
2055
+
2056
+ word naguère 1345-1245
2057
+ word nation 1345-16
2058
+ word nations 1345-16-234
2059
+ word national 1345-16-123
2060
+ word nationale 1345-16-123-15
2061
+ word nationales 1345-16-123-156
2062
+ word nationalité 1345-16-123-2345
2063
+ word nationalités 1345-16-123-2345-234
2064
+ word nationaux 1345-16-1346
2065
+ word nature 1345-2345
2066
+ word natures 1345-2345-234
2067
+ word naturel 1345-2345-123
2068
+ word naturels 1345-2345-123-234
2069
+ word naturelle 1345-2345-123-123
2070
+ word naturelles 1345-2345-123-123-234
2071
+ word naturellement 1345-2345-123-134
2072
+ word ndlr 1345-145-123-1235
2073
+ word néanmoins 1345-134
2074
+ word nécessaire 1345-14
2075
+ word nécessaires 1345-14-234
2076
+ word nécessairement 1345-14-134
2077
+ word nécessité 1345-14-2345
2078
+ word nécessités 1345-14-2345-234
2079
+ word nécessiteuse 1345-14-2345-234-15
2080
+ word nécessiteuses 1345-14-2345-234-156
2081
+ word nécessiteux 1345-14-2345-1346
2082
+ word nb 56-1345-12
2083
+ prfword nombre 1345-12
2084
+ contraction nb
2085
+ word pnb 56-1234-1345-12
2086
+ prfword nombres 1345-12-234
2087
+ word nombreuse 1345-12-234-15
2088
+ word nombreuses 1345-12-234-156
2089
+ word nombreux 1345-12-1346
2090
+ word nos 1345-234
2091
+ word notre 1345-356
2092
+ word nôtre 1345-1456
2093
+ word nôtres 1345-1456-234
2094
+ word nô 56-1345-1456
2095
+ prfword nouveau 1345-1236
2096
+ prfword nouveaux 1345-1236-1346
2097
+ word nouveauté 1345-1236-2345
2098
+ word nouveautés 1345-1236-2345-234
2099
+ word nouvel 1345-123
2100
+ word nouvelle 1345-123-123
2101
+ word nouvelles 1345-123-123-234
2102
+ prfword nouvellement 1345-123-134
2103
+
2104
+ word objectif 135-245-124
2105
+ word objectifs 135-245-124-234
2106
+ word objection 135-245-3456
2107
+ word objections 135-245-3456-234
2108
+ word objective 135-245-1236
2109
+ word objectives 135-245-1236-234
2110
+ word objectivement 135-245-1236-134
2111
+ word objectivité 135-245-1236-2345
2112
+ word objectivités 135-245-1236-2345-234
2113
+ word objet 135-245
2114
+ word objets 135-245-234
2115
+ word observateur 135-12-46
2116
+ word observateurs 135-12-46-234
2117
+ word observation 135-12
2118
+ word observations 135-12-234
2119
+ word occasion 135-14
2120
+ word occasions 135-14-234
2121
+ contraction oc 135-14
2122
+ word occasionnel 135-14-123
2123
+ word occasionnels 135-14-123-234
2124
+ word occasionnelle 135-14-123-123
2125
+ word occasionnelles 135-14-123-123-234
2126
+ word occasionnellement 135-14-123-134
2127
+ noback word oeuvre 246-1236
2128
+ noback word oeuvres 246-1236-234
2129
+ word œuvre 246-1236
2130
+ word œuvres 246-1236-234
2131
+ word office 135-124
2132
+ word offices 135-124-234
2133
+ contraction of 135-124
2134
+ word officiel 135-124-123
2135
+ word officiels 135-124-123-234
2136
+ word officielle 135-124-123-123
2137
+ word officielles 135-124-123-123-234
2138
+ word officiellement 135-124-123-134
2139
+ word officieuse 135-124-234-15
2140
+ word officieuses 135-124-234-156
2141
+ word officieusement 135-124-234-134
2142
+ word officieux 135-124-1346
2143
+ word oms 135-134-234
2144
+ word opinion 135-1234
2145
+ word opinions 135-1234-234
2146
+ word op 56-135-1234
2147
+ word opcvm 56-135-1234-14-1236-134
2148
+ word öre 246-1235-15
2149
+ word øre 456-1235-15
2150
+ word originaire 135-1245-1235
2151
+ word originaires 135-1245-1235-234
2152
+ word originairement 135-1245-1235-134
2153
+ word original 135-1245-123
2154
+ word originale 135-1245-123-15
2155
+ word originales 135-1245-123-156
2156
+ word originalement 135-1245-123-134
2157
+ word originalité 135-1245-123-2345
2158
+ word originalités 135-1245-123-2345-234
2159
+ word originaux 135-1245-1346
2160
+ word origine 135-1245
2161
+ word origines 135-1245-234
2162
+ nofor word ou 1256
2163
+ word ou) 135-136-356
2164
+ nofor word où 135-23456
2165
+ word outrage 1256-356-1245
2166
+ word outrages 1256-356-1245-234
2167
+ word outrageuse 1256-356-1245-234-15
2168
+ word outrageuses 1256-356-1245-234-156
2169
+ word outrageusement 1256-356-1245-234-134
2170
+ word outrageux 1256-356-1245-1346
2171
+ word outre 1256-356
2172
+ word ouvrage 1256-1245
2173
+ word ouvrages 1256-1245-234
2174
+ word ouvrier 1256-1236
2175
+ word ouvriers 1256-1236-234
2176
+ word ouvrière 1256-2346
2177
+ word ouvrières 1256-2346-234
2178
+
2179
+ word parfois 1234-124
2180
+ word parmi 1234-134
2181
+ word pm 56-1234-134
2182
+ word parole 1234-1235
2183
+ word paroles 1234-1235-234
2184
+ contraction pr 1234-1235
2185
+ word particularité 1234-123-1235-2345
2186
+ word particularités 1234-123-1235-2345-234
2187
+ word particulier 1234-123
2188
+ word particuliers 1234-123-234
2189
+ word particulière 1234-123-1235
2190
+ word particulières 1234-123-1235-234
2191
+ word particulièrement 1234-123-1235-134
2192
+ word partout 1234-1
2193
+ contraction pa 1234-1
2194
+ word pas 1234-234
2195
+ contraction ps 1234-234
2196
+ word pauvre 1234-1236
2197
+ word pauvres 1234-1236-234
2198
+ word pauvrement 1234-1236-134
2199
+ word pauvreté 1234-1236-2345
2200
+ word pauvretés 1234-1236-2345-234
2201
+ word pendant 1234-145
2202
+ word pensée 1234-26
2203
+ word pensées 1234-26-234
2204
+ word pensif 1234-26-124
2205
+ word pensifs 1234-26-124-234
2206
+ word pensive 1234-26-1236
2207
+ word pensives 1234-26-1236-234
2208
+ word pensivement 1234-26-1236-134
2209
+ word père 1234-2346
2210
+ word pères 1234-2346-234
2211
+ word personnage 1234-1345-1245
2212
+ word personnages 1234-1345-1245-234
2213
+ word personnalité 1234-1345-123-2345
2214
+ word personnalités 1234-1345-123-2345-234
2215
+ word personne 1234-1345
2216
+ word personnes 1234-1345-234
2217
+ word personnel 1234-1345-123
2218
+ word personnels 1234-1345-123-234
2219
+ word personnelle 1234-1345-123-123
2220
+ word personnelles 1234-1345-123-123-234
2221
+ word personnellement 1234-1345-123-134
2222
+ word petit 1234-15
2223
+ word petits 1234-15-234
2224
+ word pe 56-1234-15
2225
+ word petite 1234-15-15
2226
+ word petites 1234-15-156
2227
+ word peuple 1234-1246
2228
+ word peuples 1234-1246-234
2229
+ prfword peuplement 1234-1246-134
2230
+ prfword peuplements 1234-1246-134-234
2231
+ prfword place 1246-14
2232
+ prfword places 1246-14-234
2233
+ prfword placement 1246-14-134
2234
+ prfword placements 1246-14-134-234
2235
+ prfword plaisir 1246-1235
2236
+ prfword plaisirs 1246-1235-234
2237
+ word plusieurs 1246-234
2238
+ word plutôt 1246-2345
2239
+ word point 1234-2345
2240
+ word points 1234-2345-234
2241
+ word pointe 1234-2345-15
2242
+ word pointes 1234-2345-15-234
2243
+ word populaire 1234-1234-1235
2244
+ word populaires 1234-1234-1235-234
2245
+ word populairement 1234-1234-1235-134
2246
+ word popularité 1234-1234-1235-2345
2247
+ word popularités 1234-1234-1235-2345-234
2248
+ noback prfword population 1234-1234
2249
+ prfword populations 1234-1234-234
2250
+ nofor word population 1234-1234
2251
+ nofor word dépopulation 145-123456-1234-1234
2252
+ nofor word repopulation 3-1234-1234
2253
+ nofor word surpopulation 234-136-1235-1234-1234
2254
+ word pp 56-1234-1234
2255
+ word populeuse 1234-1234-234-15
2256
+ word populeuses 1234-1234-234-156
2257
+ word populeux 1234-1234-1346
2258
+ prfword possibilité 1234-12-2345
2259
+ prfword possibilités 1234-12-2345-234
2260
+ prfword possible 1234-12
2261
+ prfword possibles 1234-12-234
2262
+ prfword possibilité 1234-12-2345
2263
+ prfword possibilités 1234-12-2345-234
2264
+ word pourquoi 1234-23456
2265
+ word pourtant 1234-135
2266
+ noback prfword praticable 235-2345-45
2267
+ noback prfword praticables 235-2345-45-234
2268
+ nofor word praticable 235-2345-45
2269
+ nofor word praticables 235-2345-45-234
2270
+ nofor word impraticable 246-235-2345-45
2271
+ nofor word impraticables 246-235-2345-45-234
2272
+ word pratique 235-2345
2273
+ word pratiques 235-2345-234
2274
+ word pratiquement 235-2345-134
2275
+ word premier 235-134
2276
+ word premiers 235-134-234
2277
+ word premier) 235-15-134-24-236-356
2278
+ word première 235-1235
2279
+ word premières 235-1235-234
2280
+ word premièrement 235-1235-134
2281
+ word près 235-234
2282
+ word prom 56-1234-1235-135-134
2283
+ word pros 235-135-234
2284
+ word presque 235-12345
2285
+ word preuve 235-1236
2286
+ word preuves 235-1236-234
2287
+ word primitif 235-134-124
2288
+ word primitifs 235-134-124-234
2289
+ word primitive 235-134-1236
2290
+ word primitives 235-134-1236-234
2291
+ word primitivement 235-134-1236-134
2292
+ word principal 235-14-123
2293
+ word principale 235-14-123-15
2294
+ word principales 235-14-123-156
2295
+ word principalement 235-14-123-134
2296
+ word principaux 235-14-1346
2297
+ word principe 235-14
2298
+ word principes 235-14-234
2299
+ word prix 235-1346
2300
+ prfword probabilité 235-12-2345
2301
+ prfword probabilités 235-12-2345-234
2302
+ prfword probable 235-12
2303
+ prfword probables 235-12-234
2304
+ prfword probablement 235-12-134
2305
+ nofor word improbabilité 246-235-12-2345
2306
+ nofor word improbabilités 246-235-12-2345-234
2307
+ nofor word improbable 246-235-12
2308
+ nofor word improbables 246-235-12-234
2309
+ nofor word improbablement 246-235-12-134
2310
+
2311
+ word prochain 235-12356
2312
+ word prochains 235-12356-234
2313
+ word prochaine 235-1345
2314
+ word prochaines 235-1345-234
2315
+ word prochainement 235-1345-134
2316
+ word producteur 235-145-46
2317
+ word producteurs 235-145-46-234
2318
+ prfword productif 235-145-124
2319
+ prfword productifs 235-145-124-234
2320
+ nofor word improductif 246-235-145-124
2321
+ nofor word improductifs 246-235-145-124-234
2322
+ prfword production 235-145-3456
2323
+ prfword productions 235-145-3456-234
2324
+ prfword productive 235-145-1236
2325
+ prfword productives 235-145-1236-234
2326
+ nofor word improductive 246-235-145-1236
2327
+ nofor word improductives 246-235-145-1236-234
2328
+ prfword productivement 235-145-1236-134
2329
+ prfword productivité 235-145-1236-2345
2330
+ prfword productivités 235-145-1236-2345-234
2331
+ nofor word improductivité 246-235-145-1236-2345
2332
+ nofor word improductivités 246-235-145-1236-2345-234
2333
+ word produit 235-145
2334
+ word produits 235-145-234
2335
+ word profit 235-124
2336
+ word profits 235-124-234
2337
+ word profitable 235-124-45
2338
+ word profitables 235-124-45-234
2339
+ word profitablement 235-124-45-134
2340
+ word profiteur 235-124-46
2341
+ word profiteurs 235-124-46-234
2342
+ word profiteuse 235-124-234-15
2343
+ word profiteuses 235-124-234-156
2344
+ word progrès 235-12456
2345
+ word progressif 235-12456-124
2346
+ word progressifs 235-12456-124-234
2347
+ word progression 235-12456-3456
2348
+ word progressions 235-12456-3456-234
2349
+ word progressive 235-12456-1236
2350
+ word progressives 235-12456-1236-234
2351
+ word progressivement 235-12456-1236-134
2352
+ word progressivité 235-12456-1236-2345
2353
+ word progressivités 235-12456-1236-2345-234
2354
+ word projecteur 235-245-46
2355
+ word projecteurs 235-245-46-234
2356
+ word projection 235-245-3456
2357
+ word projections 235-245-3456-234
2358
+ word projet 235-245
2359
+ word projets 235-245-234
2360
+ prfword proportion 235-1234
2361
+ prfword proportions 235-1234-234
2362
+ prfword proportionnalité 235-1234-123-2345
2363
+ prfword proportionnalités 235-1234-123-2345-234
2364
+ prfword proportionnel 235-1234-123
2365
+ prfword proportionnels 235-1234-123-234
2366
+ prfword proportionnelle 235-1234-123-123
2367
+ prfword proportionnelles 235-1234-123-123-234
2368
+ prfword proportionnellement 235-1234-123-134
2369
+ word proposition 235-246
2370
+ word propositions 235-246-234
2371
+ word puisque 1234-12345
2372
+ prfword puissance 1234-14
2373
+ contraction pc 1234-14
2374
+ word vpc 1236-1234-14
2375
+ prfword puissances 1234-14-234
2376
+ nofor word qu 12345-136
2377
+ word qualitatif 12345-123-2345-124
2378
+ word qualitatifs 12345-123-2345-124-234
2379
+ word qualitative 12345-123-2345-1236
2380
+ word qualitatives 12345-123-2345-1236-234
2381
+ word qualitativement 12345-123-2345-1236-134
2382
+ word qualité 12345-123-2345
2383
+ word qualités 12345-123-2345-234
2384
+ word quand 12345-145
2385
+ word quant 12345-2345
2386
+ word quantitatif 12345-2345-2345-124
2387
+ word quantitatifs 12345-2345-2345-124-234
2388
+ word quantitative 12345-2345-2345-1236
2389
+ word quantitatives 12345-2345-2345-1236-234
2390
+ word quantitativement 12345-2345-2345-1236-134
2391
+ word quantité 12345-2345-2345
2392
+ word quantités 12345-2345-2345-234
2393
+ word quel 12345-123
2394
+ word quels 12345-123-234
2395
+ word quelle 12345-123-123
2396
+ word quelles 12345-123-123-234
2397
+ word quelconque 12345-14
2398
+ word quelconques 12345-14-234
2399
+ word quelque 12345-12345
2400
+ word quelques 12345-12345-234
2401
+ before apost sufword quelqu 12345-12345
2402
+ word quelquefois 12345-124
2403
+ word question 12345-3456
2404
+ word questions 12345-3456-234
2405
+ word questionnaire 12345-3456-1235
2406
+ word questionnaires 12345-3456-1235-234
2407
+ word quiconque 12345-346
2408
+ word quoique 12345-15
2409
+
2410
+ word raison 1235-346
2411
+ word raisons 1235-346-234
2412
+ prfword raisonnable 1235-346-45
2413
+ prfword raisonnables 1235-346-45-234
2414
+ prfword raisonnablement 1235-346-45-134
2415
+ word raisonnement 1235-346-134
2416
+ word raisonnements 1235-346-134-234
2417
+ word rapport 1235-1234
2418
+ word rapports 1235-1234-234
2419
+ word rapporteur 1235-1234-46
2420
+ word rapporteurs 1235-1234-46-234
2421
+ word rapporteuse 1235-1234-234-15
2422
+ word rapporteuses 1235-1234-234-156
2423
+ word rare 1235-1235
2424
+ word rares 1235-1235-234
2425
+ word rarement 1235-1235-134
2426
+ word rareté 1235-1235-2345
2427
+ word raretés 1235-1235-2345-234
2428
+ prfword réalisable 1235-123-45
2429
+ prfword réalisables 1235-123-45-234
2430
+ word réalisateur 1235-123-46
2431
+ word réalisateurs 1235-123-46-234
2432
+ word réalisation 1235-123-16
2433
+ word réalisations 1235-123-16-234
2434
+ prfword réalité 1235-123-2345
2435
+ prfword réalités 1235-123-2345-234
2436
+ noback prfword réel 1235-123
2437
+ noback prfword réels 1235-123-234
2438
+ nofor word réel 1235-123
2439
+ nofor word réels 1235-123-234
2440
+ nofor word déréel 145-123456-1235-123
2441
+ nofor word déréels 145-123456-1235-123-234
2442
+ nofor word irréel 24-1235-1235-123
2443
+ nofor word irréels 24-1235-1235-123-234
2444
+ nofor word surréel 234-136-1235-1235-123
2445
+ nofor word surréels 234-136-1235-1235-123-234
2446
+ prfword réelle 1235-123-123
2447
+ prfword réelles 1235-123-123-234
2448
+ prfword réellement 1235-123-134
2449
+ noback prfword réflexion 1235-124
2450
+ noback prfword réflexions 1235-124-234
2451
+ contraction rf 1235-124
2452
+ nofor word réflexion 1235-124
2453
+ nofor word réflexions 1235-124-234
2454
+ nofor word irréflexion 24-1235-1235-124
2455
+ nofor word irréflexions 24-1235-1235-124-234
2456
+
2457
+ word regard 1235-1245
2458
+ word regards 1235-1245-234
2459
+ word regret 1235-12456
2460
+ word regrets 1235-12456-234
2461
+ word regrettable 1235-12456-45
2462
+ word regrettables 1235-12456-45-234
2463
+ word regrettablement 1235-12456-45-134
2464
+ word relatif 1235-2345-124
2465
+ word relatifs 1235-2345-124-234
2466
+ word relation 1235-2345
2467
+ word relations 1235-2345-234
2468
+ word relative 1235-2345-1236
2469
+ word relatives 1235-2345-1236-234
2470
+ word relativement 1235-2345-1236-134
2471
+ word relativité 1235-2345-1236-2345
2472
+ word relativités 1235-2345-1236-2345-234
2473
+ word remarquable 1235-12345-45
2474
+ word remarquables 1235-12345-45-234
2475
+ word remarquablement 1235-12345-45-134
2476
+ word remarque 1235-12345
2477
+ word remarques 1235-12345-234
2478
+ word remerciement 1235-134
2479
+ word remerciements 1235-134-234
2480
+ word renseignement 1235-26
2481
+ word renseignements 1235-26-234
2482
+ word rêve 1235-126
2483
+ word rêves 1235-126-234
2484
+ word rêveur 1235-126-46
2485
+ word rêveurs 1235-126-46-234
2486
+ word rêveuse 1235-126-234-15
2487
+ word rêveuses 1235-126-234-156
2488
+ word rêveusement 1235-126-234-134
2489
+ word riz 56-1235-24-1356
2490
+ word riez 1235-24-1356
2491
+ word rôle 1235-1456
2492
+ word rôles 1235-1456-234
2493
+ noback prfword route 1235-1256
2494
+ noback prfword routes 1235-1256-234
2495
+ nofor word route 1235-1256
2496
+ nofor word routes 1235-1256-234
2497
+ nofor word autoroute 13-2345-135-1235-1256
2498
+ nofor word autoroutes 13-2345-135-1235-1256-234
2499
+ nofor word banqueroute 12-2-12345-15-1235-1256
2500
+ nofor word banqueroutes 12-2-12345-15-1235-1256-234
2501
+ nofor word biroute 12-24-1235-1256
2502
+ nofor word biroutes 12-24-1235-1256-234
2503
+ nofor word déroute 145-123456-1235-1256
2504
+ nofor word déroutes 145-123456-1235-1256-234
2505
+ nofor word inforoute 35-124-135-1235-1256
2506
+ nofor word inforoutes 35-124-135-1235-1256-234
2507
+ nofor word maroute 134-1-1235-1256
2508
+ nofor word maroutes 134-1-1235-1256-234
2509
+ nofor word radioroute 1235-1-145-24-135-1235-1256
2510
+ nofor word radioroutes 1235-1-145-24-135-1235-1256-234
2511
+ nofor word restoroute 3-234-2345-135-1235-1256
2512
+ nofor word restoroutes 3-234-2345-135-1235-1256-234
2513
+ nofor word restauroute 3-234-2345-13-1235-1256
2514
+ nofor word restauroutes 3-234-2345-135-123-1256-234
2515
+
2516
+ word rythme 1235-13456
2517
+ word rythmes 1235-13456-234
2518
+ word rythmique 1235-13456-12345
2519
+ word rythmiques 1235-13456-12345-234
2520
+ word rythmiquement 1235-13456-12345-134
2521
+
2522
+ word séculaire 234-14-1235
2523
+ word séculaires 234-14-1235-234
2524
+ word séculairement 234-14-1235-134
2525
+ word seigneur 234-2356
2526
+ word seigneurs 234-2356-234
2527
+ prfword semblable 234-12
2528
+ prfword semblables 234-12-234
2529
+ word sb 56-234-12
2530
+ prfword semblablement 234-12-134
2531
+ noback prfword sentiment 234-2345-134
2532
+ noback prfword sentiments 234-2345-134-234
2533
+ nofor word sentiment 234-2345-134
2534
+ nofor word sentiments 234-2345-134-234
2535
+ nofor word dissentiment 256-234-2345-134
2536
+ nofor word dissentiments 256-234-2345-134-234
2537
+ nofor word pressentiment 235-15-234-234-2345-134
2538
+ nofor word pressentiments 235-15-234-234-2345-134-234
2539
+ nofor word ressentiment 1235-15-234-234-2345-134
2540
+ nofor word ressentiments 1235-15-234-234-2345-134-234
2541
+
2542
+ word sentimental 234-2345-134-123
2543
+ word sentimentale 234-2345-134-123-15
2544
+ word sentimentales 234-2345-134-123-156
2545
+ word sentimentalement 234-2345-134-123-134
2546
+ word sentimentalité 234-2345-134-123-2345
2547
+ word sentimentalités 234-2345-134-123-2345-234
2548
+ word sentimentaux 234-2345-134-1346
2549
+ word ses 234-234
2550
+ word seul 234-123
2551
+ word seuls 234-123-234
2552
+ word seule 234-123-15
2553
+ word seules 234-123-156
2554
+ word seulement 234-123-134
2555
+ word siècle 234-14
2556
+ word siècles 234-14-234
2557
+ word sc 56-234-14
2558
+ word simple 234-1246
2559
+ word simples 234-1246-234
2560
+ word simplement 234-1246-134
2561
+ word simplicité 234-1246-2345
2562
+ word simplicités 234-1246-2345-234
2563
+ word simplification 234-1246-16
2564
+ word simplifications 234-1246-16-234
2565
+ noback prfword soeur 234-1235
2566
+ noback prfword soeurs 234-1235-234
2567
+ prfword sœur 234-1235
2568
+ prfword sœurs 234-1235-234
2569
+ word sr 56-234-1235
2570
+ word soin 234-35
2571
+ word soins 234-35-234
2572
+ word solitaire 234-123-1235
2573
+ word solitaires 234-123-1235-234
2574
+ word solitairement 234-123-1235-134
2575
+ word solitude 234-123-145
2576
+ word solitudes 234-123-145-234
2577
+ word sommaire 234-2456-1235
2578
+ word sommaires 234-2456-1235-234
2579
+ word sommairement 234-2456-1235-134
2580
+ word somme 234-2456
2581
+ word sommes 234-2456-234
2582
+ word sont 246-2345
2583
+ word sorte 234-135
2584
+ word sortes 234-135-234
2585
+ word soudain 234-145
2586
+ word soudains 234-145-234
2587
+ word soudaine 234-1345
2588
+ word soudaines 234-1345-234
2589
+ word sn 56-234-1345
2590
+ word soudainement 234-1345-134
2591
+ word soudaineté 234-1345-2345
2592
+ word soudainetés 234-1345-2345-234
2593
+ word souffrance 234-124-14
2594
+ word souffrances 234-124-14-234
2595
+ word souffrant 234-124
2596
+ contraction sf 234-124
2597
+ word souffrants 234-124-234
2598
+ word souffrante 234-124-15
2599
+ word souffrantes 234-124-156
2600
+ word souvent 234-1236
2601
+ contraction sv 234-1236
2602
+ word subjectif 234-245-124
2603
+ word subjectifs 234-245-124-234
2604
+ word subjective 234-245-1236
2605
+ word subjectives 234-245-1236-234
2606
+ word subjectivement 234-245-1236-134
2607
+ word subjectivité 234-245-1236-2345
2608
+ word subjectivités 234-245-1236-2345-234
2609
+ word sujet 234-245
2610
+ word sujets 234-245-234
2611
+ word sujétion 234-245-3456
2612
+ word sujétions 234-245-3456-234
2613
+ word supérieur 234-1234
2614
+ word supérieurs 234-1234-234
2615
+ word supérieure 234-1234-15
2616
+ word supérieures 234-1234-156
2617
+ word supérieurement 234-1234-134
2618
+ word supériorité 234-1234-2345
2619
+ word supériorités 234-1234-2345-234
2620
+ word surtout 234-2345
2621
+ contraction st 234-2345
2622
+ word systématique 234-13456-12345
2623
+ word systématiques 234-13456-12345-234
2624
+ word systématiquement 234-13456-12345-134
2625
+ word système 234-13456
2626
+ word systèmes 234-13456-234
2627
+
2628
+ word tel 2345-123
2629
+ word tels 2345-123-234
2630
+ word telle 2345-123-123
2631
+ word telles 2345-123-123-234
2632
+ word tellement 2345-123-134
2633
+ word temporaire 2345-1234-1235
2634
+ word temporaires 2345-1234-1235-234
2635
+ word temporairement 2345-1234-1235-134
2636
+ prfword temporel 2345-1234-123
2637
+ prfword temporels 2345-1234-123-234
2638
+ prfword temporelle 2345-1234-123-123
2639
+ prfword temporelles 2345-1234-123-123-234
2640
+ noback prfword temps 2345-1234
2641
+ nofor word temps 2345-1234
2642
+ nofor word contretemps 25-356-15-2345-1234
2643
+ nofor word entretemps 26-356-15-2345-1234
2644
+ nofor word passetemps 1234-1-2346-15-2345-1234
2645
+ nofor word printemps 235-35-2345-1234
2646
+ prfword tenir 2345-1345
2647
+ word terre 2345-1235
2648
+ word terres 2345-1235-234
2649
+ contraction tr 2345-1235
2650
+ word tes 2345-234
2651
+ word tête 2345-126
2652
+ word têtes 2345-126-234
2653
+ word théorie 2345-125
2654
+ word théories 2345-125-234
2655
+ word théorique 2345-125-12345
2656
+ word théoriques 2345-125-12345-234
2657
+ word théoriquement 2345-125-12345-134
2658
+ word titre 2345-356
2659
+ word titres 2345-356-234
2660
+ word toujours 2345-245
2661
+ word toute 2345-2345
2662
+ word toutes 2345-2345-234
2663
+ word toutefois 2345-124
2664
+ word tragique 356-1245
2665
+ word tragiques 356-1245-234
2666
+ word tragiquement 356-1245-134
2667
+ word trajet 356-245
2668
+ word trajets 356-245-234
2669
+ prfword tranquille 356-12345
2670
+ prfword tranquilles 356-12345-234
2671
+ prfword tranquillement 356-12345-134
2672
+ prfword tranquillité 356-12345-2345
2673
+ prfword tranquillités 356-12345-2345-234
2674
+ word travail 356-123
2675
+ word travailleur 356-123-46
2676
+ word travailleurs 356-123-46-234
2677
+ word travailleuse 356-123-234-15
2678
+ word travailleuses 356-123-234-156
2679
+ word travaux 356-1346
2680
+ word travers 356-1236
2681
+ word très 356-234
2682
+ word trop 356-1234
2683
+ word type 2345-13456
2684
+ word types 2345-13456-234
2685
+ word typique 2345-13456-12345
2686
+ word typiques 2345-13456-12345-234
2687
+ word typiquement 2345-13456-12345-134
2688
+
2689
+ word ufo 136-124-135
2690
+ word ufr 136-124-1235
2691
+ word uht 136-125-2345
2692
+ word une 136-1345
2693
+ word unes 136-1345-234
2694
+ word unique 136-12345
2695
+ word uniques 136-12345-234
2696
+ word uniquement 136-12345-134
2697
+ word unitaire 136-1345-2345-1235
2698
+ word unitaires 136-1345-2345-1235-234
2699
+ word unité 136-1345-2345
2700
+ word unités 136-1345-2345-234
2701
+ word univers 136-1236
2702
+ contraction uv 136-1236
2703
+ word universalité 136-1236-123-2345
2704
+ word universalités 136-1236-123-2345-234
2705
+ word universel 136-1236-123
2706
+ word universels 136-1236-123-234
2707
+ word universelle 136-1236-123-123
2708
+ word universelles 136-1236-123-123-234
2709
+ word universellement 136-1236-123-134
2710
+ word universitaire 136-1236-2345-1235
2711
+ word universitaires 136-1236-2345-1235-234
2712
+ word université 136-1236-2345
2713
+ word universités 136-1236-2345-234
2714
+ contraction url 136-1235-123
2715
+ contraction us 136-234
2716
+ word usage 136-1245
2717
+ word usages 136-1245-234
2718
+ word usb 136-234-12
2719
+ word utile 136-123
2720
+ word utiles 136-123-234
2721
+ word utilement 136-123-134
2722
+ word inutile 35-136-123
2723
+ word inutiles 35-136-123-234
2724
+ word inutilement 35-136-123-134
2725
+ contraction ulm 136-123-134
2726
+ noback prfword utilisable 136-123-45
2727
+ noback prfword utilisables 136-123-45-234
2728
+ nofor word utilisable 136-123-45
2729
+ nofor word utilisables 136-123-45-234
2730
+ nofor word inutilisable 35-136-123-45
2731
+ nofor word inutilisables 35-136-123-45-234
2732
+ nofor word réutilisable 1235-123456-136-123-45
2733
+ nofor word réutilisables 1235-123456-136-123-45-234
2734
+
2735
+ word utilisateur 136-123-46
2736
+ word utilisateurs 136-123-46-234
2737
+ word utilisation 136-123-16
2738
+ word utilisations 136-123-16-234
2739
+ word inutilisation 35-136-123-16
2740
+ word inutilisations 35-136-123-16-234
2741
+ word utilitaire 136-123-2345-1235
2742
+ word utilitaires 136-123-2345-1235-234
2743
+ noback prfword utilité 136-123-2345
2744
+ noback prfword utilités 136-123-2345-234
2745
+ nofor word désutilité 145-123456-234-136-123-2345
2746
+ nofor word désutilités 145-123456-234-136-123-2345-234
2747
+ nofor word futilité 124-136-123-2345
2748
+ nofor word futilités 124-136-123-2345-234
2749
+ nofor word utilité 136-123-2345
2750
+ nofor word utilités 136-123-2345-234
2751
+ nofor word inutilité 35-136-123-2345
2752
+ nofor word inutilités 35-136-123-2345-234
2753
+
2754
+ word utm 56-136-2345-134
2755
+
2756
+ word valeur 1236-46
2757
+ word valeurs 1236-46-234
2758
+ word vau 1236-13
2759
+ nofor endword vau 1236-13
2760
+ prfword venir 1236-1345
2761
+ word véritable 1236-1235
2762
+ word véritables 1236-1235-234
2763
+ word véritablement 1236-1235-134
2764
+ word vérité 1236-123456
2765
+ word vérités 1236-123456-234
2766
+ contraction vé 1236-123456
2767
+ word vieux 1236-1346
2768
+ word vif 1236-124
2769
+ word vifs 1236-124-234
2770
+ contraction vf 1236-124
2771
+ word vive 1236-1236
2772
+ word vives 1236-1236-234
2773
+ word vivement 1236-1236-134
2774
+ word voici 1236-14
2775
+ word voilà 1236-123
2776
+ word revoilà 3-1236-123
2777
+ word volontaire 1236-135-1235
2778
+ word volontaires 1236-135-1235-234
2779
+ word volontairement 1236-135-1235-134
2780
+ word volonté 1236-135
2781
+ word volontés 1236-135-234
2782
+ contraction vo 1236-135
2783
+ word volontiers 1236-346
2784
+ word von 1236-135-1345
2785
+ word vos 1236-234
2786
+ contraction vs 1236-234
2787
+ word votre 1236-356
2788
+ word vôtre 1236-1456
2789
+ word vôtres 1236-1456-234
2790
+ word voyage 1236-1245
2791
+ word voyages 1236-1245-234
2792
+ word voyageur 1236-1245-46
2793
+ word voyageurs 1236-1245-46-234
2794
+ word voyageuse 1236-1245-234-15
2795
+ word voyageuses 1236-1245-234-156
2796
+ word vraiment 1236-134
2797
+ word xml 1346-134-123
2798
+ nofor word hymen 125-13456-134-26
2799
+
2800
+ ###
2801
+ ### 4. Locutions
2802
+ ###
2803
+
2804
+ word à\scause 12356-456-14
2805
+ word à\smesure 12356-456-134
2806
+ word à\speine 12356-456-1234
2807
+ word à\speu\sprès 12356-456-1234-456-235
2808
+ word à\sprésent 12356-456-235
2809
+ word à\stravers 12356-456-356
2810
+ word au\scontraire 13-456-14
2811
+ word au-dessous 13-36-1256
2812
+ word au-dessus 13-36-145
2813
+ word aujourd'hui 13-3-125
2814
+ word autant\sque 13-456-12345
2815
+ word autre\schose 13-456-12356
2816
+ word autre\spart 13-456-1234
2817
+ word c'est-à-dire 14-3-15-36-12356-36-145
2818
+ word d'abord 145-3-1
2819
+ word de\ssuite 145-456-234
2820
+ word en\smesure 26-456-134
2821
+ word en\sréalité 26-456-1235
2822
+ word et\scaetera 15-456-14
2823
+ word la\splupart 123-456-1246
2824
+ word non\sseulement 1345-456-234
2825
+ word parce\sque 1234-456-12345
2826
+ word par\sconséquent 1234-456-14
2827
+ word par-dessous 1234-36-1256
2828
+ word par-dessus 1234-36-145
2829
+ word par\sexemple 1234-456-15
2830
+ word par\ssuite 1234-456-234
2831
+ word peu\sà\speu 1234-456-12356-456-1234
2832
+ word peut-être 1234-36-126
2833
+ word plus\stard 1246-456-2345
2834
+ word plus\stôt 1246-456-1456
2835
+ word pour\sainsi\sdire 1234-456-1-456-145
2836
+ word quelque\schose 12345-456-12356
2837
+ word quelque\spart 12345-456-1234
2838
+ word quelque\stemps 12345-456-2345
2839
+ word sans\scesse 234-456-14
2840
+ word sans\sdoute 234-456-145
2841
+ word tandis\sque 2345-456-12345
2842
+ word tour\sà\stour 2345-456-12356-456-2345
2843
+ word tout\sà\scoup 16-456-12356-456-14
2844
+ word tout\sà\sfait 16-456-12356-456-124
2845
+ word très\sbien 356-456-12
2846
+ word vis-à-vis 1236-36-12356-36-1236
2847
+
2848
+ before apost sufword autant\squ 13-456-12345
2849
+ before apost sufword jusqu 245-12345
2850
+ before apost sufword lorsqu 123-12345
2851
+ before apost sufword parce\squ 1234-456-12345
2852
+ before apost sufword presqu 235-12345
2853
+ before apost sufword puisqu 1234-12345
2854
+ before apost sufword tandis\squ 2345-456-12345
2855
+
2856
+ #Lettres isolées
2857
+ contraction b
2858
+ contraction c
2859
+ contraction d
2860
+ contraction f
2861
+ contraction g
2862
+ contraction h
2863
+ contraction i
2864
+ contraction j
2865
+ contraction k
2866
+ contraction l
2867
+ contraction m
2868
+ contraction n
2869
+ contraction o
2870
+ contraction p
2871
+ contraction q
2872
+ contraction r
2873
+ contraction s
2874
+ contraction t
2875
+ contraction u
2876
+ contraction v
2877
+ contraction w
2878
+ contraction x
2879
+ contraction z
2880
+ endword 's 3-234
2881
+ endword \x2018s 3-234
2882
+ endword \x2019s 3-234
2883
+
2884
+ contraction B
2885
+ contraction C
2886
+ contraction D
2887
+ contraction F
2888
+ contraction G
2889
+ contraction H
2890
+ contraction I
2891
+ contraction J
2892
+ contraction K
2893
+ contraction L
2894
+ contraction M
2895
+ contraction N
2896
+ contraction O
2897
+ contraction P
2898
+ contraction Q
2899
+ contraction R
2900
+ contraction S
2901
+ contraction T
2902
+ contraction U
2903
+ contraction V
2904
+ contraction W
2905
+ contraction X
2906
+ contraction Z
2907
+
2908
+ contraction ab
2909
+ contraction abs
2910
+ contraction adn
2911
+ contraction tp
2912
+ contraction td
2913
+ contraction obs
2914
+
2915
+
2916
+ #Mots contenant un "æ" mal interprétés par les règles précédentes
2917
+ word althæa 1-123-2345-125-345-1
2918
+ nofor word æolidia 345-135-123-24-145-24-1
2919
+ nofor word æolis 345-135-123-24-234
2920
+ word archæocète 4-12356-345-135-14-2346-2345-15
2921
+ word balæniceps 12-1-123-453-1345-24-14-15-1234-234
2922
+ word chænichthys 1235-345-1345-24-1235-2345-125-13456-234
2923
+ word cuphæa 14-136-1234-125-345-1
2924
+ word élæagnacées 123456-123-345-1-2356-1-14-123456-156
2925
+ word elæagnus 15-123-345-1-2356-136-234
2926
+ word elæis 15-123-345-24-234
2927
+ word furcræa 124-136-25-345-1
2928
+ word linnæa 123-35-1345-345-1
2929
+ word lonchæa 123-346-12356-345-1
2930
+ word penæus 1234-15-1345-345-136-234
2931
+ word tæniasis 2345-345-1345-24-1-234-24-234
2932
+
2933
+ #Mots contenant un "ï" mal interprétés par les règles précédentes
2934
+ word anchoïade 2-1235-135-12456-1-145-15
2935
+ begword baïan 12-1-12456-1-1345
2936
+ word baïonnette 12-1-12456-346-1345-15-2456-15
2937
+ word baïonnettes 12-1-12456-346-1345-15-2456-156
2938
+ word catraïo 14-1-356-1-12456-135
2939
+ begword chaïot 12356-1-12456-135-2345
2940
+ begword chorïamb 12356-135-1235-12456-1-134-12
2941
+ begword cocaï 14-135-14-1-12456
2942
+ begword copaï 14-135-1234-1-12456
2943
+ begword élaïo 123456-123-1-12456-135
2944
+ word épiloïa 123456-1234-24-123-135-12456-1
2945
+ word féroïenne 124-123456-1235-135-12456-26-1345
2946
+ word féroïennes 124-123456-1235-135-12456-26-13456
2947
+ begword fusaïol 124-136-234-1-12456-135-123
2948
+ sufword gaïac 1245-1-12456-1-14
2949
+ word haïk 125-1-12456-13
2950
+ begword haïss 125-1-12456-2346
2951
+ begword héraï 125-123456-1235-1-12456
2952
+ begword ïamb 12456-1-134-12
2953
+ word oudrir 1256-1456-24-1235
2954
+
2955
+ begword ouï 1256-12456
2956
+ begmidword ouï- 1256-12456-36
2957
+ begword ouïm 1256-12456-134
2958
+ sufword ouïr 1256-12456-1235
2959
+ sufword ouïs 1256-12456-234
2960
+ word ouïr 1256-12456-1235
2961
+ begword ouït 1256-12456-2345
2962
+ word inouïe 35-1256-12456-15
2963
+ word inouïes 35-1256-12456-156
2964
+
2965
+ word krishnaïsme 13-1235-24-234-125-1345-1-12456-234-134-15
2966
+ word laïc 123-1-12456-14
2967
+ word laïcs 123-1-12456-14-234
2968
+ begword laïu 123-1-12456-136
2969
+ sufword maïa 134-1-12456-1
2970
+ word maïeur 134-1-12456-46
2971
+ word maïeurs 134-1-12456-46-234
2972
+ nofor word aïoli 1-12456-135-123-24
2973
+ partword aïoli 1-12456-135-123-24
2974
+ sufword maïor 134-1-12456-135-1235
2975
+ word maïzena 134-1-12456-1356-15-1345-1
2976
+ begword naïad 1345-1-12456-1-145
2977
+ sufword paranoï 1234-1-1235-1-1345-135-12456
2978
+ nofor partword oïev 135-12456-15-1236
2979
+ word tsaï 2345-234-1-12456
2980
+ sufword qaraï 12345-1-1235-1-12456
2981
+ word raïa 1235-1-12456-1
2982
+ word raïon 1235-1-12456-346
2983
+ word taïaut 3245-1-12456-13-2345
2984
+ sufword thaï 3245-125-1-12456
2985
+ word tupaïa 2345-136-1234-1-12456-1
2986
+ word zaouïa 1356-1-1256-12456-1
2987
+
2988
+ #Mots contenant un "ü" mal interprétés par les règles précédentes
2989
+ word alaüs 1-123-1-1256-234
2990
+ begword argü 4-1245-136-236
2991
+ prfword thioüracile 2345-125-24-135-1256-1235-4-14-24-123-15
2992
+ word bürger 12-1256-1235-1245-236
2993
+ word müller 134-1256-456-236
2994
+ word capharnaüm 14-1-1234-125-4-1345-1-1256-134
2995
+ endword stück 234-2345-1256-14-13
2996
+ begword contigü 25-2345-1245-1256
2997
+ begword désambigü 145-123456-234-1-134-12-24-1245-1256
2998
+ begword exigü 15-1345-24-1245-1256
2999
+ word führer 124-1256-125-1235-236
3000
+ word haüyne 125-1-1256-13456-1345-15
3001
+ word höyük 125-246-13456-1256-13
3002
+ word hübnérite 125-1256-1345-123456-1235-24-2345-15
3003
+ word krümper 13-1235-1256-134-1234-236
3004
+ word külliye 13-1256-456-24-13456-15
3005
+ word schüller 234-12356-1256-456-236
3006
+ word dülmen 145-1256-123-134-26
3007
+ word Kümmel 13-1256-134-134-15-123
3008
+ word türbe 2345-1256-1235-12-15
3009
+ begword würm 2456-1256-1235-134
3010
+
3011
+ #mots finissant par "ek"
3012
+ word chebek 12356-15-12-15-13
3013
+ endword eek 15-15-13
3014
+ endword eeks 15-15-13-234
3015
+ word kriek 13-1235-24-15-13
3016
+ word lek 123-15-13
3017
+ word ouzbek 1256-1356-12-15-13
3018
+ word ouzbeks 1256-1356-12-15-13-234
3019
+ word tek 2345-15-13
3020
+ word teks 2345-15-13-234
3021
+ begmidword tekn 3245-15-13-1345
3022
+ word trek 356-15-13
3023
+ word treks 356-15-13-234
3024
+ word uzbek 136-1356-12-15-13
3025
+ word uzbeks 136-1356-12-15-13-234
3026
+ word zek 1356-15-13
3027
+ word zondek 1356-346-145-15-13
3028
+
3029
+ #Mots comprenant un "W" entre deux voyelles
3030
+ always arawak 1-1235-1-2456-1-13
3031
+ word Tawara 2345-1-2456-1-1235-1
3032
+ word awacs 1-2456-1-14-234
3033
+ word awalé 1-2456-1-123-123456
3034
+ word biwa 12-24-2456-1
3035
+ word bowal 12-135-2456-1-123
3036
+ sufword bowen 12-135-2456-15-1345
3037
+ word bowette 12-135-2456-15-2456-15
3038
+ word bowettes 12-135-2456-15-2456-156
3039
+ word bywater 12-1456-2456-1-2345-236
3040
+ word chawan 12356-1-2456-1-1345
3041
+ word chewing 12356-15-2456-35-1245
3042
+ word culilawan 14-136-123-24-123-1-2456-1-1345
3043
+ word dewar 145-15-2456-4
3044
+ begword déwatt 145-123456-2456-1-2456
3045
+ word diwan 145-24-2456-1-1345
3046
+ prfword wall 2456-1-123-123
3047
+ prfword walls 2456-1-123-123-234
3048
+ begword gewurz 1245-15-2456-136-1235-1356
3049
+ word grauwacke 12456-13-2456-1-14-13-15
3050
+ word grewia 12456-15-2456-24-1
3051
+ word halloween 125-1-456-135-2456-15-26
3052
+ word haniwa 125-1-1345-24-2456-1
3053
+ partword hawai 125-1-2456-1-24
3054
+ partword hawaï 125-1-2456-1-12456
3055
+ word hawaïen 125-1-2456-1-12456-26
3056
+ word hawaïens 125-1-2456-1-12456-26-234
3057
+ always wood 2456-135-135-145
3058
+ word power 1234-135-2456-236
3059
+ word howardie 125-135-2456-4-145-24-15
3060
+ always interview 35-2345-236-1236-24-15-2456
3061
+ word iwans 24-2456-1-2-234
3062
+ word iwan 24-2456-1-1345
3063
+ nofor after voy midendword watt 2456-1-2345-2345
3064
+ word kiwi 13-24-2456-24
3065
+ word kiwis 13-24-2456-24-234
3066
+ word rapakiwi 1235-1-1234-1-13-24-2456-24
3067
+ word rapakiwis 1235-1-1234-1-13-24-2456-24-234
3068
+ begword koweï 13-135-2456-15-12456
3069
+ word kwa 13-2456-1
3070
+ begword kwa 13-2456-1
3071
+ word lewandowsky 123-15-2456-2-145-135-2456-234-13-13456
3072
+ sufword lewis 123-15-2456-24-234
3073
+ word louwite 123-1256-2456-24-2345-15
3074
+ word malawite 134-1-123-1-2456-24-2345-15
3075
+ word owénisme 135-2456-123456-1345-24-234-134-15
3076
+ word penghawar 123-26-1245-125-1-2456-4
3077
+ word powellite 1234-135-2456-15-456-24-2345-15
3078
+ always wolf 2456-135-123-124
3079
+ word redowa 3-145-135-2456-1
3080
+ word grower 12456-135-2456-236
3081
+ word rowing 135-2456-35-1245
3082
+ word ewing 15-2456-35-1245
3083
+ word sawah 234-1-2456-1-125
3084
+ word sewamono 234-15-2456-1-134-135-1345-135
3085
+ word stawug 234-2345-1-2456-136-1245
3086
+ begword stewar 234-2345-15-2456-4
3087
+ word swastika 234-2456-1-234-2345-24-13-1
3088
+ word swastikas 234-2456-1-234-2345-24-13-1-234
3089
+ word taekwondo 2345-1-15-13-2456-346-145-135
3090
+ begword taïw 2345-1-12456-2456
3091
+ after voy midendword way 2456-1-13456
3092
+ always hawk 125-1-2456-13
3093
+ word tomawak 2345-135-134-1-2456-1-13
3094
+ word wb 2456-12
3095
+ begword whewell 2456-125-15-2456-15-456
3096
+ partword work 2456-56-13
3097
+ word work 2456-56-13
3098
+ word würm 2456-1256-1235-134
3099
+ endword wyg 2456-13456-1245
3100
+ word zawiya 1356-1-2456-24-13456-1
3101
+ word zelkowa 1356-15-123-13-135-2456-1
3102
+
3103
+ #Mots finissant par "z"
3104
+ word barometz 56-12-1-1235-135-134-15-2345-1356
3105
+ word benz 12-26-1356
3106
+ word berlioz 12-236-123-24-135-1356
3107
+ word biarritz 12-24-4-1235-24-2345-1356
3108
+ word binz 12-35-1356
3109
+ word biz 12-24-1356
3110
+ word bletz 45-15-2345-1356
3111
+ word blitz 45-24-2345-1356
3112
+ word breitschwanz 23-15-24-2345-234-12356-2456-2-1356
3113
+ word buchholz 12-136-12356-125-135-123-1356
3114
+ nofor word buzz 12-136-1356-1356
3115
+ word chintz 12356-35-2345-1356
3116
+ word cruz 25-136-1356
3117
+ word cz 56-14-1356
3118
+ word ersatz 15-1235-234-1-2345-1356
3119
+ nofor word fizz 124-24-1356-1356
3120
+ word franz 16-2-1356
3121
+ word fritz 56-124-1235-24-2345-1356
3122
+ word graetz 12456-1-15-2345-1356
3123
+ word grosz 12456-234-1356
3124
+ word günz 1245-1256-1345-1356
3125
+ word hafiz 125-1-124-24-1356
3126
+ prfword hertz 125-236-2345-1356
3127
+ word hz 56-125-1356
3128
+ nofor word jazz 245-1-1356-1356
3129
+ endword khoz 13-125-135-1356
3130
+ word kibboutz 13-24-12-12-1256-2345-1356
3131
+ word kirghiz 13-24-1235-1245-125-24-1356
3132
+ word kronprinz 13-1235-346-235-35-1356
3133
+ word leibniz 123-15-24-12-1345-24-1356
3134
+ word lenz 56-123-15-1345-1356
3135
+ word lorentz 123-135-1235-15-1345-2345-1356
3136
+ word lodz 56-123-135-145-1356
3137
+ word lutz 56-123-136-2345-1356
3138
+ word metz 56-134-15-2345-1356
3139
+ word moritz 134-135-1235-24-2345-1356
3140
+ word neiertz 1345-15-24-236-2345-1356
3141
+ word noz 1345-135-1356
3142
+ word oghouz 135-1245-125-135-136-1356
3143
+ endword onetz 135-1345-15-2345-1356
3144
+ word oz 56-135-1356
3145
+ prfword quartz 12345-4-2345-1356
3146
+ word quiz 12345-24-1356
3147
+ word ranz 1235-2-1356
3148
+ word rémiz 1235-123456-134-24-1356
3149
+ word rez 1235-1356
3150
+ word ruolz 1235-136-135-123-1356
3151
+ word ruz 56-1235-136-1356
3152
+ word saghyz 234-1-1245-125-13456-1356
3153
+ word sbrinz 234-23-35-1356
3154
+ word schwarz 234-14-125-2456-1-1235-1356
3155
+ word schwyz 234-14-125-2456-13456-1356
3156
+ word seltz 234-15-123-2345-1356
3157
+ word slivovitz 234-123-24-1236-135-1236-24-2345-1356
3158
+ word solonetz 234-135-123-135-1345-15-2345-1356
3159
+ word spitz 234-1234-24-2345-1356
3160
+ begword taiw 2345-34-2456
3161
+ word trez 356-1356
3162
+ prfword witz 2456-24-2345-1356
3163
+
3164
+ #Mots finissant par "en"
3165
+ prfword abdomen 1-12-145-135-134-26
3166
+ word achéen 1-12356-123456-26
3167
+ word acheuléen 1-12356-5-123-123456-26
3168
+ word achilléen 1-12356-24-456-123456-26
3169
+ word agen 1-1245-26
3170
+ word albumen 1-123-12-136-134-26
3171
+ word alizéen 1-123-24-1356-123456-26
3172
+ word allen 1-456-26
3173
+ word amen 1-134-15-1345
3174
+ endword ansen 2-234-26
3175
+ word appaméen 1-1234-1234-1-134-123456-26
3176
+ word arachnéen 1-1235-1-12356-1345-123456-26
3177
+ word araméen 1-1235-1-134-123456-26
3178
+ word archéen 4-12356-123456-26
3179
+ word aryen 1-1235-13456-26
3180
+ word ascolichen 1-234-14-135-123-24-12356-26
3181
+ word assen 1-2346-26
3182
+ word assidéen 1-2346-24-145-123456-26
3183
+ word aven 1-1236-15-1345
3184
+ word azuréen 1-1356-136-1235-123456-26
3185
+ word baboen 12-1-12-135-26
3186
+ word baden 12-1-145-26
3187
+ word Hagen 125-1-1245-26
3188
+ nofor word been 12-15-26
3189
+ word bigouden 12-24-1245-1256-145-26
3190
+ word biscaïen 12-24-234-14-1-12456-26
3191
+ word biscayen 12-24-234-14-1-13456-26
3192
+ word booléen 12-135-135-123-123456-26
3193
+ word Boyden 12-135-13456-145-26
3194
+ word bren 12-1235-26
3195
+ word bunsen 12-136-1345-234-26
3196
+ word businessmen 12-136-234-24-1345-15-2346-134-26
3197
+ word cadméen 14-1-145-134-123456-26
3198
+ word caen 14-1-15-1345
3199
+ word calcanéen 12-1-123-14-1-1345-123456-26
3200
+ word cananéen 14-1-1345-1-1345-123456-26
3201
+ word caribéen 14-1-1235-24-12-123456-26
3202
+ word carragheen 14-4-1235-1-1245-125-15-26
3203
+ word céruléen 14-123456-1235-136-123-123456-26
3204
+ word cérumen 14-123456-1235-136-134-26
3205
+ word chaldéen 12356-1-123-145-123456-26
3206
+ word chasséen 12356-1-2346-123456-26
3207
+ prfword chelléen 12356-15-456-123456-26
3208
+ word chen 12356-26
3209
+ word chondrichtyen 12356-346-1456-24-12356-2345-13456-26
3210
+ word chondrostéen 12356-346-1456-135-234-2345-123456-26
3211
+ word chörten 12356-246-1235-2345-26
3212
+ word chouchen 12356-1256-12356-26
3213
+ word citizen 14-24-2345-24-1356-26
3214
+ word citoyen 14-24-2345-135-13456-26
3215
+ word clinamen 146-24-1345-1-134-26
3216
+ word cognomen 14-135-2356-135-134-26
3217
+ word cohen 14-135-125-26
3218
+ word collinéen 14-135-456-24-1345-123456-26
3219
+ word concitoyen 25-14-24-2345-135-13456-26
3220
+ word confucéen 25-124-136-14-123456-26
3221
+ word coréen 14-135-1235-123456-26
3222
+ word cornéen 14-56-1345-123456-26
3223
+ word crossmen 25-135-234-234-134-26
3224
+ word crosswomen 25-135-234-234-2456-135-134-26
3225
+ word doyen 145-135-13456-26
3226
+ word cyclamen 14-13456-146-1-134-26
3227
+ word cyclopéen 14-13456-135-1234-123456-26
3228
+ word cyrénéen 14-13456-1235-123456-1345-123456-26
3229
+ word dahoméen 145-1-125-135-134-123456-26
3230
+ word deben 145-15-12-26
3231
+ word dédaléen 145-123456-145-1-123-123456-26
3232
+ word dolmen 145-135-123-134-26
3233
+ word drachen 1456-1-12356-26
3234
+ word dupuytren 145-136-1234-136-13456-356-26
3235
+ word duramen 145-136-1235-1-134-26
3236
+ word éburnéen 123456-12-136-1235-1345-123456-26
3237
+ word échiquéen 123456-12356-24-12345-123456-26
3238
+ word écocitoyen 123456-14-135-14-24-2345-135-13456-26
3239
+ word éden 123456-145-26
3240
+ word égéen 123456-1245-123456-26
3241
+ word éléen 123456-123-123456-26
3242
+ word élyséen 123456-123-13456-234-123456-26
3243
+ word épitrochléen 123456-1234-24-356-12356-123-123456-26
3244
+ word érythréen 123456-1235-24-2345-125-1235-123456-26
3245
+ word européen 5-1235-135-1234-123456-26
3246
+ word examen 15-1346-1-134-26
3247
+ word félibréen 124-123456-123-24-23-123456-26
3248
+ word féroïen 124-123456-1235-135-12456-26
3249
+ word foramen 124-135-1235-1-134-26
3250
+ word galiléen 1245-1-123-24-123-123456-26
3251
+ word garden 1245-4-145-26
3252
+ word germen 1245-236-134-26
3253
+ word gerzéen 1245-236-1356-123456-26
3254
+ word ghanéen 1245-125-1-1345-123456-26
3255
+ word gluten 345-136-2345-26
3256
+ word golden 1245-135-123-145-26
3257
+ word gomorrhéen 1245-135-134-56-1235-125-123456-26
3258
+ word gouren 1245-1256-1235-26
3259
+ word graben 12456-1-12-26
3260
+ word green 12456-15-26
3261
+ word greisen 12456-15-24-234-26
3262
+ word gretchen 12456-15-2345-12356-26
3263
+ word groschen 12456-135-234-12356-26
3264
+ word guadeloupéen 1245-136-1-145-15-123-1256-1234-123456-26
3265
+ word guinéen 1245-23-1345-123456-26
3266
+ word gulden 1245-136-123-145-26
3267
+ word harappéen 125-1-1235-1-1234-123456-26
3268
+ word henequen 125-15-1345-15-12345-26
3269
+ word herculéen 125-236-14-136-123-123456-26
3270
+ word himalayen 125-24-134-1-123-1-13456-26
3271
+ word holostéen 125-135-123-135-234-2345-123456-26
3272
+ word hymen 125-13456-134-26
3273
+ word hyperboréen 125-13456-1234-236-12-135-1235-123456-26
3274
+ word judéen 245-136-145-123456-26
3275
+ word kafkaïen 13-1-124-13-1-12456-26
3276
+ word kyogen 13-13456-135-1245-26
3277
+ word larsen 123-4-234-26
3278
+ word leben 123-15-12-26
3279
+ word libyen 123-24-12-13456-26
3280
+ word lichen 123-24-12356-26
3281
+ word linnéen 123-35-1345-123456-26
3282
+ word loden 123-135-145-26
3283
+ word lumen 123-136-134-26
3284
+ word lumpen 123-136-134-1234-26
3285
+ word lycéen 123-13456-14-123456-26
3286
+ word macanéen 134-1-14-1-1345-123456-26
3287
+ word maghzen 134-1-1245-125-1356-26
3288
+ word makhzen 134-1-13-125-1356-26
3289
+ word mandéen 134-2-145-123456-26
3290
+ word manichéen 134-1-1345-24-12356-123456-26
3291
+ word marmoréen 134-4-134-135-1235-123456-26
3292
+ word mayen 134-1-13456-26
3293
+ word mazdéen 134-1-1356-145-123456-26
3294
+ word méditerranéen 134-123456-145-24-2345-236-1235-1-1345-123456-26
3295
+ word men 134-15-1345
3296
+ word menhaden 134-26-125-1-145-26
3297
+ word mens 134-15-1345-234
3298
+ word mésogéen 134-123456-234-135-1245-123456-26
3299
+ word minoen 134-24-1345-135-26
3300
+ word mitoyen 134-24-2345-135-13456-26
3301
+ word moyen 134-135-13456-26
3302
+ word Münchhausen 134-1256-1345-12356-125-13-324-26
3303
+ word nabatéen 1345-1-12-1-2345-123456-26
3304
+ word nazaréen 1345-1-1356-1-1235-123456-26
3305
+ word naziréen 1345-1-1356-24-1235-123456-26
3306
+ word nicaraguayen 1345-24-14-1-1235-1-1245-136-1-13456-26
3307
+ word nietzschéen 1345-24-15-2345-1356-12356-123456-26
3308
+ word numen 1345-136-134-26
3309
+ word open 135-1234-15-1345
3310
+ word ostéichtyen 135-234-2345-123456-24-12356-2345-13456-26
3311
+ word ourartéen 1256-1235-4-2345-123456-26
3312
+ word païen 1234-1-12456-26
3313
+ prfword paludéen 1234-1-123-136-145-123456-26
3314
+ word panaméen 1234-1-1345-1-134-123456-26
3315
+ word paraguayen 1234-1-1235-1-1245-136-1-13456-26
3316
+ word pecten 1234-15-14-2345-26
3317
+ word peléen 1234-15-123-123456-26
3318
+ word péléen 1234-123456-123-123456-26
3319
+ word peulven 1234-5-123-1236-26
3320
+ word phocéen 1234-125-135-14-123456-26
3321
+ word pollen 1234-135-456-26
3322
+ word prométhéen 325-134-123456-2345-125-123456-26
3323
+ word putamen 1234-136-2345-1-134-26
3324
+ word pyrénéen 1234-13456-1235-123456-1345-123456-26
3325
+ word Recklinghausen 3-14-13-123-35-1245-125-13-234-26
3326
+ word redhaven 3-145-125-1-1236-26
3327
+ word réexamen 1235-123456-15-1346-1-134-26
3328
+ word cameramen 14-1-134-15-1235-1-134-26
3329
+ word rœntgen 1235-26-2345-1245-26
3330
+ word röntgen 1235-246-1345-2345-1245-26
3331
+ endword tgen 2345-1245-26
3332
+ word rumen 1235-136-134-26
3333
+ word saanen 234-1-1-1345-26
3334
+ word sabéen 234-1-12-123456-26
3335
+ word sadducéen 234-1-145-145-136-14-123456-26
3336
+ word saducéen 234-1-145-136-14-123456-26
3337
+ word schlieren 234-12356-123-24-15-1235-26
3338
+ word sen 234-15-1345
3339
+ word shamisen 234-125-1-134-24-234-26
3340
+ word sidéen 234-24-145-123456-26
3341
+ word solen 234-135-123-26
3342
+ word solutréen 234-135-123-136-356-123456-26
3343
+ word spécimen 234-1234-123456-14-24-134-26
3344
+ word spleen 234-1246-15-26
3345
+ word taximen 2345-1-1346-24-134-26
3346
+ word tegmen 2345-15-1245-134-26
3347
+ word téléostéen 2345-123456-123-123456-135-234-2345-123456-26
3348
+ word tervueren 2345-236-1236-136-15-1235-26
3349
+ word thamoudéen 2345-125-1-134-1256-145-123456-26
3350
+ word thuléen 2345-125-136-123-123456-26
3351
+ word trachéen 356-1-12356-123456-26
3352
+ word transpyrénéen 356-1234-13456-1235-123456-1345-123456-26
3353
+ word trochléen 356-135-12356-123-123456-26
3354
+ word troyen 356-135-13456-26
3355
+ word uruguayen 136-1235-136-1245-136-1-13456-26
3356
+ word vendéen 1236-26-145-123456-26
3357
+ word viséen 1236-24-234-123456-26
3358
+ word volumen 1236-135-123-136-134-26
3359
+ word wadden 2456-1-145-145-26
3360
+ word wattmen 2456-1-2345-2345-134-26
3361
+ word wintergreen 2456-35-2345-236-12456-15-26
3362
+ word yachtmen 13456-1-2345-12356-134-26
3363
+ word yachtsmen 13456-1-2345-12356-234-134-26
3364
+ word yémen 13456-123456-134-26
3365
+ word yeomen 13456-15-135-134-26
3366
+ word yen 13456-26
3367
+ word yens 13456-26-234
3368
+ word zazen 1356-1-1356-26
3369
+ word zen 1356-15-1345
3370
+ word zéen 1356-123456-26
3371
+ word zimbabwéen 1356-24-134-12-1-12-1256-123456-26
3372
+
3373
+ #Différencier au mieux "k" et "au" en désabréviation
3374
+ word (au) 236-1-136-356
3375
+ word (k) 56-236-13-356
3376
+ nofor partword bok 12-135-13
3377
+ nofor partword bouk 12-1256-13
3378
+ nofor partword souk 234-1256-13
3379
+ nofor word cheik 12356-15-24-13
3380
+ nofor word cheiks 12356-15-24-13-234
3381
+ nofor partword drink 1456-35-13
3382
+ word elektron 15-123-15-13-2345-1235-135-1345
3383
+ nofor begword farkl 124-4-13-123
3384
+ nofor word folk 124-135-123-13
3385
+ nofor partword folkl 124-135-123-13-123
3386
+ nofor begword frankl 16-2-13-123
3387
+ nofor begword ginkg 1245-35-13-1245
3388
+ nofor begword inuk 35-136-13
3389
+ nofor before con begword jack 245-1-14-13
3390
+ nofor partword jik 245-24-13
3391
+ nofor partword jork 245-56-13
3392
+ word kekchi 13-15-13-12356-24
3393
+ word ken 13-26
3394
+ nofor word kf 56-13-124
3395
+ nofor word kg 13-1245
3396
+ nofor begword kirksit 13-24-1235-13-234-24-2345
3397
+ word kjelke 13-245-15-123-13-15
3398
+ word kjökkenmödding 13-245-243-13-13-26-134-246-145-145-35-1245
3399
+ begword Kjel 13-245-15-123
3400
+ nofor word klaft 13-123-1-124-2345
3401
+ nofor word klavais 13-123-1-1236-34-234
3402
+ nofor word klebsiella 13-123-15-12-234-24-15-456-1
3403
+ nofor word kline 13-123-24-1345-15
3404
+ nofor begword klei 13-123-15-24
3405
+ nofor begword klinef 13-123-24-1345-15-124
3406
+ word klong 13-123-346-1245
3407
+ nofor begword klep 13-123-15-1234
3408
+ nofor word kleenex 13-123-15-15-1345-15-1346
3409
+ nofor begword klip 13-123-24-1234
3410
+ nofor begword klystr 13-123-13456-324-356
3411
+ nofor begword kylstr 13-123-24-234-356
3412
+ nofor word km 13-134
3413
+ nofor before conabr partword kom 13-2456
3414
+ nofor before conabr partword kour 13-12346
3415
+ nofor begword knei 13-1345-15-24
3416
+ nofor begword knick 13-1345-24-14-13
3417
+ nofor word knit 13-1345-24-2345
3418
+ nofor word deknit 145-15-13-1345-24-2345
3419
+ word knödel 13-1345-246-145-15-123
3420
+ nofor word knout 13-1345-1256-2345
3421
+ nofor word kraal 13-1235-1-1-123
3422
+ nofor word kraals 13-1235-1-1-123-234
3423
+ nofor word kraaux 13-1235-1-13-1346
3424
+ nofor word krach 13-1235-1-12356
3425
+ nofor word krachs 13-1235-1-12356-234
3426
+ nofor word krak 13-1235-1-13
3427
+ nofor word kraks 13-1235-1-13-234
3428
+ nofor word kraken 13-1235-1-13-26
3429
+ nofor word kraton 13-1235-1-2345-346
3430
+ prfword kraft 13-1235-1-124-2345
3431
+ nofor before conabr begword krem 13-1235-345
3432
+ nofor begword krenné 13-1235-26-1345-123456
3433
+ nofor word krépis 13-1235-123456-1234-24-234
3434
+ nofor word kreuzer 13-1235-5-1356-236
3435
+ nofor word kreutzer 13-1235-5-2345-1356-236
3436
+ nofor partword krieg 13-1235-24-15-1245
3437
+ nofor begword krigeag 13-1235-24-1245-15-1-1245
3438
+ nofor word krill 13-1235-24-123-123
3439
+ nofor word kriss 13-1235-24-234-234
3440
+ nofor word kroll 13-1235-135-123-123
3441
+ nofor begword kröhn 13-1235-246-125-1345
3442
+ nofor word krona 13-1235-135-1345-1
3443
+ word krone 56-13-1235-135-1345-15
3444
+ nofor word kroon 13-1235-135-346
3445
+ nofor word kroumir 13-1235-1256-134-24-1235
3446
+ nofor word kroumirs 13-1235-1256-134-24-1235-234
3447
+ nofor begword krug 13-1235-136-1245
3448
+ nofor begword ksatr 13-234-1-356
3449
+ nofor begword kshatr 13-234-125-1-356
3450
+ word ksour 13-234-12346
3451
+ word kvas 56-13-1236-1-234
3452
+ nofor word krypton 13-1235-13456-1234-2345-346
3453
+ nofor word ksar 13-234-4
3454
+ nofor word kva 13-1236-1
3455
+ nofor word kw 13-2456
3456
+ nofor word kwh 13-2456-125
3457
+ nofor word mektoub 134-15-13-2345-1256-12
3458
+ nofor begword milk 134-24-123-13
3459
+ nofor begword nomenk 1345-135-134-26-13
3460
+ nofor begword pack 1234-1-14-13
3461
+ nofor begword pipkr 1234-24-1234-13-1235
3462
+ nofor endword politik 1234-135-123-24-2345-24-13
3463
+ nofor begword ricks 1235-24-14-13-234
3464
+ nofor partword riks 1235-24-13-234
3465
+ nofor word rock 1235-135-14-13
3466
+ nofor word rocks 1235-135-14-13-234
3467
+ word rösti 123-46-234-2345-24
3468
+ nofor begword sanskri 234-2-234-13-1235-24
3469
+ nofor begword sebk 234-15-12-13
3470
+ nofor begword skin 234-13-35
3471
+ nofor word skin 234-13-35
3472
+ nofor word skunk 234-13-136-1345-13
3473
+ nofor word skunks 234-13-136-1345-13-234
3474
+ nofor begword speck 234-1234-15-14-13
3475
+ nofor begword sprink 234-235-35-13
3476
+ nofor word svastika 234-1236-1-234-2345-24-13-1
3477
+ nofor word svastikas 234-1236-1-234-2345-24-13-1-234
3478
+ nofor word tank 2345-2-13
3479
+ nofor begword tank 2345-2-13
3480
+ nofor partword tchouk 2345-12356-1256-13
3481
+ nofor begword thanks 2345-125-2-13-234
3482
+ word traken 356-1-13-26
3483
+ begword trick 356-24-14-13
3484
+ word trick 356-24-14-13
3485
+ begword turkm 2345-136-1235-13-134
3486
+
3487
+ nofor begword bau 12-13
3488
+ nofor endword bau 12-13
3489
+ nofor before bvoy begmidword hau 125-13
3490
+ nofor before conabr partword bau 12-13
3491
+ word bk 56-12-13
3492
+ nofor word boucau 12-1256-14-13
3493
+ nofor word boucaux 12-1256-14-13-1346
3494
+ nofor word burgau 12-136-1235-1245-13
3495
+ nofor word burgaux 12-136-1235-1245-13-1346
3496
+ nofor sufword chateau 12356-1-2345-15-13
3497
+ nofor sufword château 12356-16-2345-15-13
3498
+ nofor partword quau 12345-13
3499
+ nofor word laue 123-13-15
3500
+ nofor word donau 145-135-1345-13
3501
+ nofor word fau 124-13
3502
+ nofor word gau 1245-13
3503
+ nofor before bvoy begword glott 345-135-2456
3504
+ nofor word gluau 345-136-13
3505
+ nofor word gruau 12456-136-13
3506
+ nofor word grau 12456-13
3507
+ nofor word huau 125-136-13
3508
+ nofor word kaunakês 13-13-1345-1-13-126-234
3509
+ nofor word knautia 13-1345-13-2345-24-1
3510
+ nofor word kraurosis 13-1235-13-1235-135-234-24-234
3511
+ nofor word landau 123-2-145-13
3512
+ nofor endword ernau 236-1345-13
3513
+ nofor word lauan 123-13-1-1345
3514
+ nofor partword orvandiau 56-1236-2-145-24-31
3515
+ nofor endword arrau 4-1235-13
3516
+ nofor partword eauist 15-13-24-234-2345
3517
+ nofor midendword ériau 123456-1235-24-13
3518
+ nofor word huhau 125-136-125-13
3519
+ nofor partword lopiau 123-135-1234-24-13
3520
+ nofor partword paui 1234-13-24
3521
+ nofor word pilau 1234-24-123-13
3522
+ nofor word senau 234-15-1345-13
3523
+ nofor partword shké 234-125-13-123456
3524
+ nofor word tau 2345-13
3525
+ nofor word tauon 2345-13-346
3526
+ nofor partword illau 24-456-13
3527
+ nofor word touchau 2345-1256-12356-13
3528
+ nofor partword ussau 136-2346-13
3529
+ nofor word unau 136-1345-13
3530
+ nofor word vindau 1236-35-145-13
3531
+ nofor partword okm 135-13-134
3532
+ nofor always clark 146-4-13
3533
+ nofor word desk 145-15-234-13
3534
+ nofor begword desk 145-15-234-13
3535
+ nofor word diktat 145-24-13-2345-1-2345
3536
+ nofor word diktats 145-24-13-2345-1-2345-234
3537
+ nofor partword uiker 23-13-236
3538
+ nofor begword ekta 15-13-2345-1
3539
+
3540
+ #mots finissant par "ê"
3541
+ word boulê 56-12-135-136-123-126
3542
+ word épistémê 123456-1234-24-234-2345-123456-134-126
3543
+ word épochê 123456-1234-135-12356-126
3544
+ word gê 56-1245-126
3545
+ word korê 13-135-1235-126
3546
+
3547
+ #mots finissant par "ien"
3548
+ word acadien 1-14-1-145-256
3549
+ word acanthodien 1-14-2-2345-125-135-145-256
3550
+ always acarien 1-14-1-1235-256
3551
+ endword achidien 1-12356-24-145-256
3552
+ always acridien 1-25-24-145-256
3553
+ word adonien 1-145-135-1345-256
3554
+ word aéraulicien 1-123456-1235-13-123-24-14-256
3555
+ word agrarien 1-12456-1-1235-256
3556
+ word akkadien 1-13-13-1-145-256
3557
+ word alaskien 1-123-1-234-13-256
3558
+ word albien 1-123-12-256
3559
+ word alcyonien 1-123-14-13456-135-1345-256
3560
+ word algonkien 1-123-1245-346-13-256
3561
+ word algonquien 1-123-1245-346-12345-256
3562
+ word alpien 1-123-1234-256
3563
+ word alsacien 1-123-234-1-14-256
3564
+ word amarnien 1-134-4-1345-256
3565
+ word amazonien 1-134-1-1356-135-1345-256
3566
+ word ambrosien 1-134-23-135-234-256
3567
+ word amérasien 1-134-123456-1235-1-234-256
3568
+ endword amibien 1-134-24-12-256
3569
+ endword amicien 1-134-24-14-256
3570
+ word amphibien 1-134-1234-125-24-12-256
3571
+ word amphiscien 1-134-1234-125-24-234-14-256
3572
+ word amratien 1-134-1235-1-2345-256
3573
+ word amygdalien 1-134-13456-1245-145-1-123-256
3574
+ word anatolien 1-1345-1-2345-135-123-256
3575
+ word ancien 2-14-256
3576
+ word angkorien 2-1245-13-135-1235-256
3577
+ word antiscien 2-2345-24-234-14-256
3578
+ always stalinien 234-2345-1-123-24-1345-256
3579
+ word apéxien 1-1234-123456-1346-256
3580
+ word aphidien 1-1234-125-24-145-256
3581
+ word apollinien 1-1234-135-456-24-1345-256
3582
+ word appalachien 1-1234-1234-1-123-1-12356-256
3583
+ word apulien 1-1234-136-123-256
3584
+ word aquitanien 1-12345-24-2345-1-1345-256
3585
+ word arcadien 4-14-1-145-256
3586
+ word arénigien 1-1235-123456-1345-24-1245-256
3587
+ word argien 4-1245-256
3588
+ word aristotélicien 1-1235-24-234-2345-135-2345-123456-123-24-14-256
3589
+ word arlésien 4-123-123456-234-256
3590
+ word arminien 4-134-24-1345-256
3591
+ word artésien 4-2345-123456-234-256
3592
+ word artinien 4-2345-24-1345-256
3593
+ word asinien 1-234-24-1345-256
3594
+ word assyntien 1-2346-13456-1345-2345-256
3595
+ always assyrien 1-2346-13456-1235-256
3596
+ word astien 1-234-2345-256
3597
+ word asturien 1-234-2345-136-1235-256
3598
+ endword aticien 1-2345-24-14-256
3599
+ word audonien 13-145-135-1345-256
3600
+ word austronésien 13-234-356-135-1345-123456-234-256
3601
+ word autrichien 13-356-24-12356-256
3602
+ word autunien 13-2345-136-1345-256
3603
+ word avipelvien 1-1236-24-1234-15-123-1236-256
3604
+ word azilien 1-1356-24-123-256
3605
+ always babylonien 12-1-12-13456-123-135-1345-256
3606
+ word badarien 12-1-145-1-1235-256
3607
+ word badegoulien 12-1-145-15-1245-1256-123-256
3608
+ word bajocien 12-1-245-135-14-256
3609
+ word balanchinien 12-1-123-2-12356-24-1345-256
3610
+ sufword basedowien 12-1-234-15-145-135-2456-256
3611
+ word basilien 12-1-234-24-123-256
3612
+ word basochien 12-1-234-135-12356-256
3613
+ word batésien 12-1-2345-123456-234-256
3614
+ word bathonien 12-1-2345-125-135-1345-256
3615
+ word batracien 12-1-356-1-14-256
3616
+ word baudelairien 12-13-145-15-123-34-1235-256
3617
+ word bayésien 12-1-13456-123456-234-256
3618
+ word béjartien 12-123456-245-4-2345-256
3619
+ word bellétrien 12-15-456-123456-356-256
3620
+ word béotien 12-123456-135-2345-256
3621
+ word bermudien 12-236-134-136-145-256
3622
+ word berriasien 12-236-1235-24-1-234-256
3623
+ always quotidien 12345-135-2345-24-145-256
3624
+ word bisancien 12-24-234-2-14-256
3625
+ word bolivien 12-135-123-24-1236-256
3626
+ word bosnien 12-135-234-1345-256
3627
+ word burdigalien 12-136-1235-145-24-1245-1-123-256
3628
+ word bureauticien 12-136-1235-15-13-2345-24-14-256
3629
+ word cadomien 14-1-145-135-134-256
3630
+ word cadurcien 14-1-145-136-1235-14-256
3631
+ word calabrien 14-1-123-1-23-256
3632
+ always calédonien 14-1-123-123456-145-135-1345-256
3633
+ word calicien 14-1-123-24-14-256
3634
+ word californien 14-1-123-24-124-56-1345-256
3635
+ word callovien 14-1-456-135-1236-256
3636
+ word cambodgien 14-1-134-12-135-145-1245-256
3637
+ word cambrésien 14-1-134-23-123456-234-256
3638
+ always cambrien 14-1-134-23-256
3639
+ word campanien 14-1-134-1234-1-1345-256
3640
+ word campignien 14-1-134-1234-24-2356-256
3641
+ always canadien 14-1-1345-1-145-256
3642
+ word capésien 14-1-1234-123456-234-256
3643
+ word cappadocien 14-1-1234-1234-1-145-135-14-256
3644
+ word capverdien 14-1-1234-1236-236-145-256
3645
+ word caradocien 14-1-1235-1-145-135-14-256
3646
+ word carnien 14-4-1345-256
3647
+ always carolingien 14-1-1235-135-123-35-1245-256
3648
+ word carotidien 14-1-1235-135-2345-24-145-256
3649
+ always carpien 14-4-1234-256
3650
+ word cartésien 14-4-2345-123456-234-256
3651
+ word cartusien 14-4-2345-136-234-256
3652
+ word cassien 14-1-2346-256
3653
+ word castelnovien 14-1-234-2345-15-123-1345-135-1236-256
3654
+ word castelperronien 14-1-234-2345-15-123-1234-236-1235-135-1345-256
3655
+ word catarhinien 14-1-2345-4-125-24-1345-256
3656
+ always caucasien 14-13-14-1-234-256
3657
+ word cégépien 14-123456-1245-123456-1234-256
3658
+ word cénomanien 14-123456-1345-135-134-1-1345-256
3659
+ word cératopsien 14-123456-1235-1-2345-135-1234-234-256
3660
+ word céraunien 14-123456-1235-13-1345-256
3661
+ word cézannien 14-123456-1356-2-1345-256
3662
+ word chalcidien 12356-1-123-14-24-145-256
3663
+ word charmouthien 12356-4-134-1256-2345-125-256
3664
+ word châtelperronien 12356-16-2345-15-123-1234-236-1235-135-1345-256
3665
+ word chattien 12356-1-2456-256
3666
+ word chélonien 12356-123456-123-135-1345-256
3667
+ word chien 12356-256
3668
+ word chilien 12356-24-123-256
3669
+ word chiridien 12356-24-1235-24-145-256
3670
+ word chromatinien 12356-1235-135-134-1-2345-24-1345-256
3671
+ word chthonien 12356-2345-125-135-1345-256
3672
+ word chtonien 12356-2345-135-1345-256
3673
+ word circadien 14-24-1235-14-1-145-256
3674
+ word circassien 14-24-1235-14-1-2346-256
3675
+ word cistercien 14-24-234-2345-236-14-256
3676
+ word clactonien 146-1-14-2345-135-1345-256
3677
+ word claudien 146-13-145-256
3678
+ word clinicien 146-24-1345-24-14-256
3679
+ word clitoridien 146-24-2345-135-1235-24-145-256
3680
+ word clunisien 146-136-1345-24-234-256
3681
+ word cœlosomien 14-246-123-135-234-135-134-256
3682
+ always coccidien 14-135-14-14-24-145-256
3683
+ always colombien 14-135-123-2456-12-256
3684
+ word comblanchien 36-45-2-12356-256
3685
+ word comorien 14-135-134-135-1235-256
3686
+ word conchylien 25-12356-13456-123-256
3687
+ word condylien 25-145-13456-123-256
3688
+ word coniacien 14-135-1345-24-1-14-256
3689
+ word corallien 14-135-1235-1-456-256
3690
+ word corinthien 14-135-1235-35-2345-125-256
3691
+ word coronarien 14-135-1235-135-1345-1-1235-256
3692
+ word corticosurrénalien 14-56-2345-24-14-135-234-136-1235-1235-123456-1345-1-123-256
3693
+ always crânien 25-16-1345-256
3694
+ word creswellien 25-15-234-2456-15-456-256
3695
+ word cristallinien 25-24-234-2345-1-456-24-1345-256
3696
+ word crocodilien 25-135-14-135-145-24-123-256
3697
+ endword cticien 14-2345-24-14-256
3698
+ word cyclophyllidien 14-13456-146-135-1234-125-13456-456-24-145-256
3699
+ word dalmatien 145-1-123-134-1-2345-256
3700
+ word daltonien 145-1-123-2345-135-1345-256
3701
+ word dangeardien 145-2-1245-15-4-145-256
3702
+ word danubien 145-1-1345-136-12-256
3703
+ word deutérostomien 145-5-2345-123456-1235-135-234-2345-135-134-256
3704
+ word dévonien 145-123456-1236-135-1345-256
3705
+ always diluvien 145-24-123-136-1236-256
3706
+ word dinantien 145-24-1345-2-2345-256
3707
+ word dionysien 145-24-135-1345-13456-234-256
3708
+ word diploglossien 145-24-1246-135-345-135-2346-256
3709
+ word djiboutien 145-245-24-12-1256-2345-256
3710
+ word domien 145-135-134-256
3711
+ word dorien 145-135-1235-256
3712
+ word draconien 1456-1-14-135-1345-256
3713
+ word dravidien 1456-1-1236-24-145-256
3714
+ word dunkerquien 145-136-1345-13-236-12345-256
3715
+ word échiurien 123456-12356-24-136-1235-256
3716
+ endword édien 123456-145-256
3717
+ endword égien 123456-1245-256
3718
+ word égyptien 123456-1245-13456-1234-2345-256
3719
+ word électronicien 123456-123-15-14-356-135-1345-24-14-256
3720
+ endword élien 123456-123-256
3721
+ word elzévirien 15-123-1356-123456-1236-24-1235-256
3722
+ endword émicien 123456-134-24-14-256
3723
+ endword émien 123456-134-256
3724
+ word émilien 123456-134-24-123-256
3725
+ word emsien 345-234-256
3726
+ word endocrinien 26-145-135-25-24-1345-256
3727
+ endword énien 123456-1345-256
3728
+ word entretien 26-356-15-2345-256
3729
+ word éolien 123456-135-123-256
3730
+ word éosuchien 123456-135-234-136-12356-256
3731
+ word éphésien 123456-1234-125-123456-234-256
3732
+ word épicondylien 123456-1234-24-25-145-13456-123-256
3733
+ word épicurien 123456-1234-24-14-136-1235-256
3734
+ word équatorien 123456-12345-1-2345-135-1235-256
3735
+ word érasmien 123456-1235-1-234-134-256
3736
+ endword éridien 123456-1235-24-145-256
3737
+ endword érien 123456-1235-256
3738
+ word erteböllien 15-1235-2345-15-12-246-123-123-256
3739
+ word estonien 156-2345-135-1345-256
3740
+ word estuarien 156-2345-136-1-1235-256
3741
+ word états-unien 123456-2345-1-2345-234-36-136-1345-256
3742
+ word étésien 123456-2345-123456-234-256
3743
+ word éthiopien 123456-2345-125-24-135-1234-256
3744
+ endword éticien 123456-2345-24-14-256
3745
+ after con endword étien 123456-2345-256
3746
+ word étolien 123456-2345-135-123-256
3747
+ word euclidien 5-146-24-145-256
3748
+ word eurasien 5-1235-1-234-256
3749
+ word euskarien 5-234-13-1-1235-256
3750
+ word eusuchien 5-234-136-12356-256
3751
+ word fabricien 124-1-23-24-14-256
3752
+ word famennien 124-1-134-26-1345-256
3753
+ word faustien 124-13-234-2345-256
3754
+ word fébronien 124-123456-23-135-1345-256
3755
+ word fellinien 124-15-456-24-1345-256
3756
+ word féringien 124-123456-1235-35-1245-256
3757
+ word ferromagnésien 124-236-1235-135-134-1-2356-123456-234-256
3758
+ word fidjien 124-24-145-245-256
3759
+ word filarien 124-24-123-1-1235-256
3760
+ word filonien 124-24-123-135-1345-256
3761
+ word flandrien 126-2-1456-256
3762
+ word francilien 16-2-14-24-123-256
3763
+ word franconien 16-2-14-135-1345-256
3764
+ word frasnien 16-1-234-1345-256
3765
+ word frœbelien 16-246-12-15-123-256
3766
+ word fuchsien 124-136-12356-234-256
3767
+ word fumerollien 124-136-134-15-1235-135-456-256
3768
+ word galicien 1245-1-123-24-14-256
3769
+ word galtonien 1245-1-123-2345-135-1345-256
3770
+ word gardien 1245-4-145-256
3771
+ word gargasien 1245-4-1245-1-234-256
3772
+ word garibaldien 1245-1-1235-24-12-1-123-145-256
3773
+ always oesophagien 135-15-234-135-1234-125-1-1245-256
3774
+ word gaullien 1245-13-456-256
3775
+ word gaussien 1245-13-2346-256
3776
+ word gédinnien 1245-123456-145-35-1345-256
3777
+ word géodésien 1245-123456-135-145-123456-234-256
3778
+ word géorgien 1245-123456-56-1245-256
3779
+ word georgien 1245-15-56-1245-256
3780
+ word géphyrien 1245-123456-1234-125-13456-1235-256
3781
+ word giscardien 1245-24-234-14-4-145-256
3782
+ word glyconien 345-13456-14-135-1345-256
3783
+ always grammairien 12456-1-134-134-34-1235-256
3784
+ word graphicien 12456-1-1234-125-24-14-256
3785
+ word gravettien 12456-1-1236-15-2456-256
3786
+ word grégorien 12456-123456-1245-135-1235-256
3787
+ word gymnamœbien 1245-13456-134-1345-1-134-246-12-256
3788
+ word haïtien 125-1-12456-2345-256
3789
+ word hallstattien 125-1-123-123-234-2345-1-2456-256
3790
+ word hamiltonien 125-1-134-24-123-2345-135-1345-256
3791
+ word hanovrien 125-1-1345-135-1236-1235-256
3792
+ word haussmannien 125-13-234-234-134-2-1345-256
3793
+ word hauterivien 125-13-2345-15-1235-24-1236-256
3794
+ word hawaiien 125-1-2456-34-256
3795
+ word hénophidien 125-123456-1345-135-1234-125-24-145-256
3796
+ word hercynien 125-236-14-13456-1345-256
3797
+ always hermitien 125-236-134-24-2345-256
3798
+ word hettangien 125-15-2456-2-1245-256
3799
+ word hiéronymien 125-24-123456-1235-135-1345-13456-134-256
3800
+ word hilbertien 125-24-123-12-236-2345-256
3801
+ always historien 125-24-234-2345-135-1235-256
3802
+ word hollywoodien 125-135-456-13456-2456-135-135-145-256
3803
+ always hominien 125-135-134-24-1345-256
3804
+ word hondurien 125-346-145-136-1235-256
3805
+ word huronien 125-136-1235-135-1345-256
3806
+ word hydraulicien 125-13456-1456-13-123-24-14-256
3807
+ word hyperlien 125-13456-1234-236-123-256
3808
+ word ibéromaurusien 24-12-123456-1235-135-134-13-1235-136-234-256
3809
+ word icarien 24-14-1-1235-256
3810
+ word icartien 24-14-4-2345-256
3811
+ word ichtyostégalien 24-12356-2345-13456-135-234-2345-123456-1245-1-123-256
3812
+ endword ïcien 12456-14-256
3813
+ endword ïdien 12456-145-256
3814
+ word ignacien 24-2356-1-14-256
3815
+ word ilerdien 24-123-236-145-256
3816
+ word illyrien 24-456-13456-1235-256
3817
+ word indien 35-145-256
3818
+ partword indien 35-145-256
3819
+ word indo-iranien 35-145-135-36-24-1235-1-1345-256
3820
+ word indonésien 35-145-135-1345-123456-234-256
3821
+ word infradien 35-16-1-145-256
3822
+ word irien 24-1235-256
3823
+ word iroquoien 24-1235-135-12345-23456-26
3824
+ word irvingien 24-1235-1236-35-1245-256
3825
+ word ismaïlien 24-234-134-1-12456-123-256
3826
+ word italien 24-2345-1-123-256
3827
+ endword iticien 24-2345-24-14-256
3828
+ word ivoirien 24-1236-23456-1235-256
3829
+ word jdanovien 245-145-1-1345-135-1236-256
3830
+ word jordanien 245-56-145-1-1345-256
3831
+ word jovien 245-135-1236-256
3832
+ word julien 245-136-123-256
3833
+ word jungien 245-136-1345-1245-256
3834
+ word junonien 245-136-1345-135-1345-256
3835
+ word jurassien 245-136-1235-1-2346-256
3836
+ word kantien 13-2-2345-256
3837
+ word keynésien 13-15-13456-1345-123456-234-256
3838
+ word néokeynésien 1345-123456-135-13-15-13456-1345-123456-234-256
3839
+ word kievien 13-24-15-1236-256
3840
+ word kimméridgien 13-24-134-134-123456-1235-24-145-1245-256
3841
+ word kolarien 13-135-123-1-1235-256
3842
+ word koweïtien 13-135-2456-15-12456-2345-256
3843
+ word lacanien 123-1-14-1-1345-256
3844
+ word lacédémonien 123-1-14-123456-145-123456-134-135-1345-256
3845
+ word lacertilien 123-1-14-236-2345-24-123-256
3846
+ word laconien 123-1-14-135-1345-256
3847
+ word ladinien 123-1-145-24-1345-256
3848
+ word lagrangien 123-1-12456-2-1245-256
3849
+ word lamarckien 123-1-134-4-14-13-256
3850
+ word lancastrien 123-2-14-1-234-356-256
3851
+ word laotien 123-1-135-2345-256
3852
+ word laplacien 123-1-1246-1-14-256
3853
+ word laramien 123-1-1235-1-134-256
3854
+ word laurentien 123-13-1235-26-2345-256
3855
+ word lédonien 123-123456-145-135-1345-256
3856
+ word leibnizien 123-15-24-12-1345-24-1356-256
3857
+ word lémurien 123-123456-134-136-1235-256
3858
+ word leptorhinien 123-15-1234-2345-56-125-24-1345-256
3859
+ word lesbien 123-15-234-12-256
3860
+ word levalloisien 123-15-1236-1-456-23456-234-256
3861
+ word lezguien 123-15-1356-1245-136-256
3862
+ after space word lien 123-256
3863
+ word ligurien 123-24-1245-136-1235-256
3864
+ word lilliputien 123-24-456-24-1234-136-2345-256
3865
+ word liquidien 123-24-12345-24-145-256
3866
+ word lituanien 123-24-2345-136-1-1345-256
3867
+ word llandeilien 123-123-2-145-15-24-123-256
3868
+ word llanvirnien 123-123-2-1236-24-1235-1345-256
3869
+ word logicien 123-135-1245-24-14-256
3870
+ word logoudorien 123-135-1245-1256-145-135-1235-256
3871
+ word londonien 123-346-145-135-1345-256
3872
+ word longovicien 123-346-1245-135-1236-24-14-256
3873
+ word lophophorien 123-135-1234-125-135-1234-125-135-1235-256
3874
+ word louisquatorzien 123-1256-24-234-12345-1-2345-56-1356-256
3875
+ word lucanien 123-136-14-1-1345-256
3876
+ word ludien 123-136-145-256
3877
+ word ludlowien 123-136-145-123-135-2456-256
3878
+ word lusitanien 123-136-234-24-2345-1-1345-256
3879
+ word lycien 123-13456-14-256
3880
+ word lydien 123-13456-145-256
3881
+ word macédonien 134-1-14-123456-145-135-1345-256
3882
+ word macroscien 134-1-25-135-234-14-256
3883
+ word maëstrichtien 134-1-1246-234-356-24-12356-2345-256
3884
+ word magicien 134-1-1245-24-14-256
3885
+ word maglemosien 134-1-345-15-134-135-234-256
3886
+ word magnésien 134-1-2356-123456-234-256
3887
+ word magnien 134-1-2356-256
3888
+ word malarien 134-1-123-1-1235-256
3889
+ word maldivien 134-1-123-145-24-1236-256
3890
+ word malpighien 134-1-123-1234-24-1245-125-256
3891
+ word malthusien 134-1-123-2345-125-136-234-256
3892
+ word mammalien 134-1-134-134-1-123-256
3893
+ endword mancien 134-2-14-256
3894
+ word manganésien 134-2-1245-1-1345-123456-234-256
3895
+ word marollien 134-1-1235-135-456-256
3896
+ word martien 134-4-2345-256
3897
+ word mauricien 134-13-1235-24-14-256
3898
+ word mauritanien 134-13-1235-24-2345-1-1345-256
3899
+ always mécanicien 134-123456-14-1-1345-24-14-256
3900
+ word mélanésien 134-123456-123-1-1345-123456-234-256
3901
+ word mérovingien 134-123456-1235-135-1236-35-1245-256
3902
+ word mésaxonien 134-123456-234-1-1346-135-1345-256
3903
+ word mésopotamien 134-123456-234-135-1234-135-2345-1-134-256
3904
+ word mésosuchien 134-123456-234-135-234-136-12356-256
3905
+ word messalien 134-15-2346-1-123-256
3906
+ word messinien 134-15-2346-24-1345-256
3907
+ word phalangien 1234-125-1-123-2-1245-256
3908
+ word métatarsien 134-123456-2345-1-2345-4-234-256
3909
+ word micoquien 134-24-14-135-12345-256
3910
+ always microbien 134-24-25-135-12-256
3911
+ word micronésien 134-24-25-135-1345-123456-234-256
3912
+ word mien 134-256
3913
+ word milicien 134-24-123-24-14-256
3914
+ word monarchien 134-135-1345-4-12356-256
3915
+ word monosomien 134-135-1345-135-234-135-134-256
3916
+ word montessorien 134-346-2345-15-2346-135-1235-256
3917
+ word muscarinien 134-136-234-14-1-1235-24-1345-256
3918
+ word musicien 134-136-234-24-14-256
3919
+ word mycorhizien 134-13456-14-56-125-24-1356-256
3920
+ word namurien 1345-1-134-136-1235-256
3921
+ word nancéien 1345-2-14-123456-256
3922
+ word natoufien 1345-1-2345-1256-124-256
3923
+ word némertien 1345-123456-134-236-2345-256
3924
+ word néocomien 1345-123456-135-14-135-134-256
3925
+ word néodarwinien 1345-123456-135-145-4-2456-24-1345-256
3926
+ word néokantien 1345-123456-135-13-2-2345-256
3927
+ word néphridien 1345-123456-1234-125-1235-24-145-256
3928
+ word néronien 1345-123456-1235-135-1345-256
3929
+ word nestorien 1345-15-234-2345-135-1235-256
3930
+ endword neurien 1345-5-1235-256
3931
+ word neuroendocrinien 1345-5-1235-135-26-145-135-25-24-1345-256
3932
+ word neutronicien 1345-5-356-135-1345-24-14-256
3933
+ word newtonien 1345-15-2456-2345-135-1345-256
3934
+ word nidorien 1345-24-145-135-1235-256
3935
+ word norien 1345-135-1235-256
3936
+ word nousantarien 1345-1256-234-2-2345-1-1235-256
3937
+ word novatien 1345-135-1236-1-2345-256
3938
+ word nubien 1345-136-12-256
3939
+ word oasien 135-1-234-256
3940
+ always œdipien 246-145-24-1234-256
3941
+ word œsophagien 246-234-135-1234-125-1-1245-256
3942
+ word olécranien 135-123-123456-25-1-1345-256
3943
+ word olympien 135-123-13456-134-1234-256
3944
+ word ombrien 2456-23-256
3945
+ word onusien 135-1345-136-234-256
3946
+ word ophidien 135-1234-125-24-145-256
3947
+ word opticien 135-1234-2345-24-14-256
3948
+ word oratorien 135-1235-1-2345-135-1235-256
3949
+ word ordovicien 135-1235-145-135-1236-24-14-256
3950
+ word organicien 135-1235-1245-1-1345-24-14-256
3951
+ word organolithien 135-1235-1245-1-1345-135-123-24-2345-125-256
3952
+ word organomagnésien 135-1235-1245-1-1345-135-134-1-2356-123456-234-256
3953
+ word ornithischien 135-1235-1345-24-2345-125-24-234-12356-256
3954
+ word ottonien 135-2456-135-1345-256
3955
+ nofor begmidword ougrien 1256-12456-256
3956
+ nofor word ougrien 1256-12456-24-26
3957
+ word oulipien 1256-123-24-1234-256
3958
+ word ourlien 12346-123-256
3959
+ word ovarien 135-1236-1-1235-256
3960
+ word paléotéthysien 1234-1-123-123456-135-2345-123456-2345-125-13456-234-256
3961
+ word palestinien 1234-1-123-15-234-2345-24-1345-256
3962
+ word palladien 1234-1-456-1-145-256
3963
+ word pannonien 1234-2-1345-135-1345-256
3964
+ word paraxonien 1234-1-1235-1-1346-135-1345-256
3965
+ word parkinsonien 1234-4-13-35-234-135-1345-256
3966
+ word parnassien 1234-4-1345-1-2346-256
3967
+ word paroissien 1234-1-1235-23456-2346-256
3968
+ word parotidien 1234-1-1235-135-2345-24-145-256
3969
+ word pastorien 1234-1-234-2345-135-1235-256
3970
+ word paulicien 1234-13-123-24-14-256
3971
+ word paulinien 1234-13-123-24-1345-256
3972
+ word pavlovien 1234-1-1236-123-135-1236-256
3973
+ word peckhamien 1234-15-14-13-125-1-134-256
3974
+ word pélagien 1234-123456-123-1-1245-256
3975
+ word péloponnésien 1234-123456-123-135-1234-346-1345-123456-234-256
3976
+ word pelvien 1234-15-123-1236-256
3977
+ word pennsylvanien 1234-26-1345-234-13456-123-1236-1-1345-256
3978
+ word pentévrien 1234-26-2345-123456-1236-1235-256
3979
+ word péridinien 1234-123456-1235-24-145-24-1345-256
3980
+ word périgordien 1234-123456-1235-24-1245-56-145-256
3981
+ word permien 1234-236-134-256
3982
+ word péruvien 1234-123456-1235-136-1236-256
3983
+ word phalangien 1234-125-1-123-2-1245-256
3984
+ word pharisien 1234-125-1-1235-24-234-256
3985
+ always pharmacien 1234-125-4-134-1-14-256
3986
+ word phénicien 1234-125-123456-1345-24-14-256
3987
+ word philadelphien 1234-125-24-123-1-145-15-123-1234-125-256
3988
+ word phocidien 1234-125-135-14-24-145-256
3989
+ always physicien 1234-125-13456-234-24-14-256
3990
+ word plaisancien 1246-34-234-2-14-256
3991
+ always platonicien 1246-1-2345-135-1345-24-14-256
3992
+ word platyrhinien 1246-1-2345-13456-1235-125-24-1345-256
3993
+ word plébéien 1246-123456-12-123456-256
3994
+ word pliensbachien 1246-256-234-12-1-12356-256
3995
+ word polynésien 1234-135-123-13456-1345-123456-234-256
3996
+ word poméranien 1234-135-134-123456-1235-1-1345-256
3997
+ word pompéien 1234-2456-1234-123456-256
3998
+ word potsdamien 1234-135-2345-234-145-1-134-256
3999
+ word prénéandertalien 235-123456-1345-123456-2-145-236-2345-1-123-256
4000
+ word prétorien 235-123456-2345-135-1235-256
4001
+ word priabonien 235-24-1-12-135-1345-256
4002
+ word priapulien 235-24-1-1234-136-123-256
4003
+ word proboscidien 235-12-135-234-14-24-145-256
4004
+ word proculien 235-14-136-123-256
4005
+ word prolétarien 235-123-123456-2345-1-1235-256
4006
+ word prosimien 235-234-24-134-256
4007
+ word protostomien 235-2345-135-234-2345-135-134-256
4008
+ word proudhonien 235-1256-145-125-135-1345-256
4009
+ word proustien 235-1256-234-2345-256
4010
+ word prussien 235-136-2346-256
4011
+ word pyrrhonien 1234-13456-1235-1235-125-135-1345-256
4012
+ word pythagoricien 1234-13456-2345-125-1-1245-135-1235-24-14-256
4013
+ word pythien 1234-13456-2345-125-256
4014
+ word rabelaisien 1235-1-12-15-123-34-234-256
4015
+ word racinien 1235-1-14-24-1345-256
4016
+ word reaganien 1235-15-1-1245-1-1345-256
4017
+ word relien 3-123-256
4018
+ word reptilien 3-1234-2345-24-123-256
4019
+ word rétinien 1235-123456-2345-24-1345-256
4020
+ word reuchlinien 1235-5-12356-123-24-1345-256
4021
+ word rhétoricien 1235-125-123456-2345-135-1235-24-14-256
4022
+ word rhipidistien 1235-125-24-1234-24-145-24-234-2345-256
4023
+ word rhodanien 1235-125-135-145-1-1345-256
4024
+ word rhodésien 1235-125-135-145-123456-234-256
4025
+ word rhodien 1235-125-135-145-256
4026
+ word riemannien 1235-24-15-134-2-1345-256
4027
+ word rimbaldien 1235-24-134-12-1-123-145-256
4028
+ word roboticien 1235-135-12-135-2345-24-14-256
4029
+ word romanellien 1235-135-134-1-1345-15-456-256
4030
+ word rosicrucien 1235-135-234-24-25-136-14-256
4031
+ word rotarien 1235-135-2345-1-1235-256
4032
+ always rotulien 1235-135-2345-136-123-256
4033
+ endword rurgien 1235-136-1235-1245-256
4034
+ word russien 1235-136-2346-256
4035
+ word rythmicien 1235-13456-2345-125-134-24-14-256
4036
+ word saalien 234-1-1-123-256
4037
+ word sabellien 234-1-12-15-456-256
4038
+ word sabinien 234-1-12-24-1345-256
4039
+ always saharien 234-1-125-1-1235-256
4040
+ word cyrien 14-13456-1235-256
4041
+ word sulpicien 234-136-123-1234-24-14-256
4042
+ word sakmarien 234-1-13-134-1-1235-256
4043
+ word salésien 234-1-123-123456-234-256
4044
+ word salpingien 234-1-123-1234-35-1245-256
4045
+ word santonien 234-2-2345-135-1345-256
4046
+ word saoudien 234-1-1256-145-256
4047
+ word saturnien 234-1-2345-136-1235-1345-256
4048
+ endword saurien 234-13-1235-256
4049
+ word saurischien 234-13-1235-24-234-12356-256
4050
+ word saurophidien 234-13-1235-135-1234-125-24-145-256
4051
+ word sauroptégyrien 234-13-1235-135-1234-2345-123456-1245-13456-1235-256
4052
+ word saussurien 234-13-2346-136-1235-256
4053
+ word savoisien 234-1-1236-23456-234-256
4054
+ word saxonien 234-1-1346-135-1345-256
4055
+ word scaldien 234-14-1-123-145-256
4056
+ word sélacien 234-123456-123-1-14-256
4057
+ word sémanticien 234-123456-134-2-2345-24-14-256
4058
+ word sémioticien 234-123456-134-24-135-2345-24-14-256
4059
+ word sénégambien 234-123456-1345-123456-1245-1-134-12-256
4060
+ word sénonien 234-123456-1345-135-1345-256
4061
+ word shakespearien 234-125-1-13-15-234-1234-15-1-1235-256
4062
+ word sicilien 234-24-14-24-123-256
4063
+ word sien 234-256
4064
+ word silésien 234-24-123-123456-234-256
4065
+ word silurien 234-24-123-136-1235-256
4066
+ word simien 234-24-134-256
4067
+ word sinémurien 234-24-1345-123456-134-136-1235-256
4068
+ word singapourien 234-35-1245-1-1234-1256-1235-256
4069
+ word sinusien 234-24-1345-136-234-24-26
4070
+ word sipunculien 234-24-1234-136-1345-14-136-123-256
4071
+ word socinien 234-135-14-24-1345-256
4072
+ word sogdien 234-135-1245-145-256
4073
+ word somalien 234-135-134-1-123-256
4074
+ word sonvien 234-346-1236-256
4075
+ word soutien 234-1256-2345-256
4076
+ word sparnacien 234-1234-4-1345-1-14-256
4077
+ word stalinien 234-2345-1-123-24-1345-256
4078
+ word stampien 234-2345-1-134-1234-256
4079
+ word stendhalien 234-2345-26-145-125-1-123-256
4080
+ word stéphanien 234-2345-123456-1234-125-1-1345-256
4081
+ word strombolien 234-356-2456-12-135-123-256
4082
+ word stylicien 234-2345-13456-123-24-14-256
4083
+ word surrénalien 234-136-1235-1235-123456-1345-1-123-256
4084
+ word sylvien 234-13456-123-1236-256
4085
+ word syrien 234-13456-1235-256
4086
+ word tahitien 2345-1-125-24-2345-256
4087
+ word tanzanien 2345-2-1356-1-1345-256
4088
+ word tardenoisien 2345-4-145-15-1345-23456-234-256
4089
+ word tarsien 2345-4-234-256
4090
+ word tasmanien 2345-1-234-134-1-1345-256
4091
+ word tatarien 2345-1-2345-1-1235-256
4092
+ word tayacien 2345-1-13456-1-14-256
4093
+ always technicien 2345-15-12356-1345-24-14-256
4094
+ word tellien 2345-15-456-256
4095
+ word tellurien 2345-15-456-136-1235-256
4096
+ word terre-neuvien 2345-1235-36-1345-5-1236-256
4097
+ word terrien 2345-236-1235-256
4098
+ word thécamœbien 2345-125-123456-14-1-134-246-12-256
4099
+ word théodosien 2345-125-123456-135-145-135-234-256
4100
+ word théologien 2345-125-123456-135-123-135-1245-256
4101
+ word théoricien 2345-125-123456-135-1235-24-14-256
4102
+ word thermicien 2345-125-236-134-24-14-256
4103
+ word thermidorien 2345-125-236-134-24-145-135-1235-256
4104
+ word thessalien 2345-125-15-2346-1-123-256
4105
+ endword thropien 2345-125-1235-135-1234-256
4106
+ word thuringien 2345-125-136-1235-35-1245-256
4107
+ word tien 2345-256
4108
+ word tironien 2345-24-1235-135-1345-256
4109
+ word toarcien 2345-135-4-14-256
4110
+ word tokharien 2345-135-13-125-1-1235-256
4111
+ word tomien 2345-135-134-256
4112
+ word tortonien 2345-56-2345-135-1345-256
4113
+ word touranien 2345-1256-1235-1-1345-256
4114
+ word tragien 356-1-1245-256
4115
+ word Transilien 46-356-2-234-24-123-256
4116
+ word transneptunien 356-1345-15-1234-2345-136-1345-256
4117
+ word transuranien 356-2-234-136-1235-1-1345-256
4118
+ word transylvanien 356-2-234-13456-123-1236-1-1345-256
4119
+ word tribunitien 356-24-12-136-1345-24-2345-256
4120
+ endword atricien 1-356-24-14-256
4121
+ endword ctricien 14-356-24-14-256
4122
+ endword otricien 135-356-24-14-256
4123
+ word trinidadien 356-24-1345-24-145-1-145-256
4124
+ always trinitarien 356-24-1345-24-2345-1-1235-256
4125
+ word tsaconien 2345-234-1-14-135-1345-256
4126
+ word turonien 2345-136-1235-135-1345-256
4127
+ word tyrien 2345-13456-1235-256
4128
+ word ukrainien 136-13-1235-34-1345-256
4129
+ word urgonien 136-1235-1245-135-1345-256
4130
+ word urticarien 136-1235-2345-24-14-1-1235-256
4131
+ word valanginien 1236-1-123-2-1245-24-1345-256
4132
+ word valoisien 1236-1-123-23456-234-256
4133
+ word varsovien 1236-4-234-135-1236-256
4134
+ word vauclusien 1236-13-146-136-234-256
4135
+ word vaurien 1236-13-1235-256
4136
+ word végétarien 1236-123456-1245-123456-2345-1-1235-256
4137
+ word vénitien 1236-123456-1345-24-2345-256
4138
+ word vermidien 1236-236-134-24-145-256
4139
+ word vidien 1236-24-145-256
4140
+ word villafranchien 1236-24-456-1-16-2-12356-256
4141
+ word villanovien 1236-24-456-1-1345-135-1236-256
4142
+ word vindobonien 1236-35-145-135-12-135-1345-256
4143
+ word virginien 1236-24-1235-1245-24-1345-256
4144
+ word voltairien 1236-135-123-2345-34-1235-256
4145
+ word vosgien 1236-135-234-1245-256
4146
+ word vulcanien 1236-136-123-14-1-1345-256
4147
+ word wallisien 2456-1-456-24-234-256
4148
+ word wealdien 2456-15-1-123-145-256
4149
+ word wenlockien 2456-26-123-135-14-13-256
4150
+ word westphalien 2456-15-234-2345-1234-125-1-123-256
4151
+ word wormien 2456-56-134-256
4152
+ word würmien 2456-1256-1235-134-256
4153
+ endword ygien 13456-1245-256
4154
+ endword yngien 13456-1345-1245-256
4155
+ word yprésien 13456-235-123456-234-256
4156
+ word zambien 1356-1-134-12-256
4157
+ word zéphyrien 1356-123456-1234-125-13456-1235-256
4158
+ word zoroastrien 1356-135-1235-135-1-234-356-256
4159
+ word zwinglien 1356-2456-35-345-256
4160
+
4161
+ #Mots comportant un "q" non suivi de "u"
4162
+ nofor midword qch 12345-12356
4163
+ word bicocq 56-12-24-14-135-14-12345
4164
+ word bicoq 56-12-24-14-135-12345
4165
+ word bicoqs 56-12-24-14-135-12345-234
4166
+ word bq 12-12345
4167
+ word burqa 12-136-1235-12345-1
4168
+ word cinq 14-35-12345
4169
+ word coq 56-14-135-12345
4170
+ word coqs 56-14-135-12345-234
4171
+ nofor word eurêka 5-1235-126-13-1
4172
+ word faq 124-1-12345
4173
+ word fiqh 124-24-12345-125
4174
+ word iraq 24-1235-1-12345
4175
+ nofor prfword mark 134-4-13
4176
+ nofor prfword marks 134-4-13-234
4177
+ nofor word maqam 134-1-12345-1-134
4178
+ nofor word maqsura 134-1-12345-234-136-1235-1
4179
+ nofor word muallaqa 134-136-1-456-1-12345-1
4180
+ nofor word muqarnas 134-136-12345-4-1345-1-234
4181
+ nofor begword naqch 1345-1-12345-12356
4182
+ word nasdaq 1345-1-234-145-1-12345
4183
+ word nastaliq 1345-1-234-2345-1-123-24-12345
4184
+ nofor begword qadar 12345-1-145-1-1235
4185
+ nofor begword qadd 12345-1-145-145
4186
+ nofor begword qadir 12345-1-145-24-1235
4187
+ nofor word qalandari 12345-1-123-2-145-1-1235-24
4188
+ nofor word qanat 12345-1-1345-1-2345
4189
+ nofor word qanun 12345-1-1345-136-1345
4190
+ nofor word qarmate 12345-4-134-1-2345-15
4191
+ nofor word qasida 12345-1-234-24-145-1
4192
+ nofor word qasidas 12345-1-234-24-145-1-234
4193
+ nofor word qasr 12345-1-234-1235
4194
+ word qat 12345-1-2345
4195
+ word qats 12345-1-2345-234
4196
+ word qi 12345-24
4197
+ begword qibl 12345-24-45
4198
+ word qin 12345-35
4199
+ word qinghao 12345-35-1245-125-1-135
4200
+ nofor begword qatar 12345-1-2345-1-1235
4201
+ word romestecq 1235-135-134-15-234-2345-15-14-12345
4202
+ word tamacheq 2345-1-134-1-12356-15-12345
4203
+ word tariqa 2345-1-1235-24-12345-1
4204
+ word videcoq 56-1236-24-145-15-14-135-12345
4205
+ word videcoqs 56-1236-24-145-15-14-135-12345-234
4206
+ word weiqi 2456-15-2-12345-24
4207
+
4208
+
4209
+ #Quelques mots ou suites de caractères difficiles à intégrer dans les règles ci-dessus"
4210
+ word allô 56-1-123-123-1456
4211
+ word auer 1-136-15-1235
4212
+ word à-peu-près 12356-36-1234-5-36-235-234
4213
+ word bau 12-13
4214
+ begword bickf 12-24-14-13-124
4215
+ word bottom 12-135-2345-2345-2456
4216
+ nofor before con begword buck 12-136-14-13
4217
+ nofor word çà 12346-12356
4218
+ word cañon 14-1-12456-346
4219
+ word cañons 14-1-12456-346-234
4220
+ nofor word crône 25-1456-1345-15
4221
+ nofor word crônes 25-1456-1345-156
4222
+ before conabr begmidword coex 14-135-15-1346
4223
+ word décemvir 145-123456-14-345-1236-24-1235
4224
+ partword décemvir 145-123456-14-345-1236-24-1235
4225
+ word diêu 56-145-24-126-136
4226
+ word doña 145-135-12456-1
4227
+ nofor before con begword draw 1456-1-2456
4228
+ word fagoue 124-1-1245-1256-15
4229
+ word fagoues 124-1-1245-1256-156
4230
+ nofor begword folk 124-135-123-13
4231
+ nofor begword fox 124-135-1346
4232
+ nofor begword frœ 16-246
4233
+ nofor before con begword from 16-2456
4234
+ word guèze 1245-136-2346-1356-15
4235
+ nofor begword hack 125-1-14-13
4236
+ nofor begmidword indemn 35-145-345-1345
4237
+ nofor midword kilo 13-24-123-135
4238
+ word landsmål 123-2-145-234-134-2-123
4239
+ sufword lemna 123-345-1345-1
4240
+ word link 123-53-13
4241
+ word links 123-53-13-234
4242
+ word maestà 134-1-15-234-2345-12356
4243
+ word moeurs 134-135-46-234
4244
+ nofor before con begword new 1345-15-2456
4245
+ nofor begword pellagreu 1234-15-456-1-12456-5
4246
+ word pelles 123-15-456-156
4247
+ nofor before con begword pick 1234-24-14-13
4248
+ partword qur 12345-136-1235
4249
+ word pop3 1234-135-1234-6-146
4250
+ word prof 235-135-124
4251
+ word profs 235-135-124-234
4252
+ word riksmål 1235-24-13-234-134-2-123
4253
+ nofor begword wh 2456-125
4254
+ nofor begword semnop 234-345-1345-135-1234
4255
+ nofor begword semsey 234-345-234-15-13456
4256
+ nofor begword señ 234-15-12456
4257
+ word sertao 234-236-2345-1-135
4258
+ word sertão 234-236-2345-5-26-16-135
4259
+ word sos 56-234-135-234
4260
+ nofor partword stock 234-2345-135-14-13
4261
+ nofor begword temno 2345-345-1345-135
4262
+ sufword york 13456-56-13
4263
+ word www 56-2456-2456-2456
4264
+ nofor word zyklon 1356-13456-13-123-346
4265
+ nofor word € 45-15
4266
+ always (o) 236-135-356
4267
+
4268
+ #Ponctuations suivies d'un signe
4269
+ nofor postpunc ." 256-2356
4270
+ nofor postpunc .) 256-356
4271
+ nofor postpunc .] 256-356-12
4272
+ nofor postpunc .} 256-356-3-3
4273
+ nofor postpunc ;" 23-2356
4274
+ nofor postpunc ;) 23-356
4275
+ nofor postpunc ;] 23-356-12
4276
+ nofor postpunc ;} 23-356-3-3
4277
+ nofor postpunc ," 2-2356
4278
+ nofor postpunc ,) 2-356
4279
+ nofor postpunc ,] 2-356-12
4280
+ nofor postpunc ,} 2-356-3-3
4281
+ nofor postpunc ?" 26-2356
4282
+ nofor postpunc ?) 26-356
4283
+ nofor postpunc ?] 26-356-12
4284
+ nofor postpunc ?} 26-356-3-3
4285
+ nofor postpunc !" 235-2356
4286
+ nofor postpunc !) 235-356
4287
+ nofor postpunc !] 235-356-12
4288
+ nofor postpunc !} 235-356-3-3
4289
+
4290
+ #Signes suivis d'une ponctuation
4291
+ nofor postpunc ), 356-2
4292
+ nofor postpunc ); 356-23
4293
+ nofor postpunc ): 356-25
4294
+ nofor postpunc ). 356-256
4295
+ nofor postpunc )? 356-26
4296
+ nofor postpunc )! 356-235
4297
+ nofor postpunc ", 2356-2
4298
+ nofor postpunc "; 2356-23
4299
+ nofor postpunc ". 2356-235
4300
+ nofor postpunc "? 2356-26
4301
+ nofor postpunc "! 2356-235
4302
+ nofor postpunc ] 356-12
4303
+ midword / 6-34
4304
+
4305
+ word " 56-2356
4306
+ word \x00ab 56-2356
4307
+ word \x00bb 56-2356
4308
+
4309
+ word / 6-34
4310
+ word * 6-35
4311
+ noback always -\s 56-36-0
4312
+ word - 56-36
4313
+ word ? 56-26
4314
+ word ! 56-235
4315
+ word ( 56-236
4316
+ word ) 56-356
4317
+
4318
+
4319
+ #Quelques corrections après traitement
4320
+ nofor pass3 [@36-134-356] @14-135-134-134-15-2345-2345-1235-15
4321
+ nofor correct "q"["u"]"."$l ?
4322
+ nofor correct "Q"["u"]"."$l ?
4323
+ nofor correct ".q"["u"]"." ?
4324
+ nofor correct ".Q"["u"]"." ?
4325
+ nofor correct "qu"["u"] ?
4326
+ nofor correct "QU"["U"] ?
4327
+ #gestion du tiret en début de mot
4328
+ noback correct `"-"$l "`"*
4329
+ noback correct $s["-"]$l "`-"
4330
+
4331
+ #Parenthèse dans un mot
4332
+ noback correct $l["("] "\x201E("
4333
+ nofor correct $l["„"]"(" ?
4334
+
4335
+ #Minuscule suivie d'une majuscule
4336
+ noback correct $l$u[]$U$l "\xfffb"
4337
+ noback pass2 @256b ?
4338
+
4339
+ #opérations mathématiques
4340
+
4341
+ #éliminer les chaînes n'étant pas des expressions mathématiques
4342
+ nofor pass4 @6-36%frmath.$s @12345678*
4343
+ nofor pass4 @6-36%frmath.~ @12345678*
4344
+
4345
+ nofor pass3 `[@6-36]!$s @13678
4346
+ nofor pass3 $s[@6-36]!$s @13678
4347
+ nofor pass3 $l[@6-36]$d @36-6
4348
+ nofor pass3 @12345678 ?
4349
+
4350
+ #Traitement des accolades"
4351
+ nofor pass4 @6-6-236[]%frmath.$s @6
4352
+ nofor pass4 @6-6-236%frmath.~ #4=1*
4353
+ nofor pass4 #4=0@6-6-236[] @0-8-0
4354
+ nofor pass4 !@0[]@356-3-3 @0-8-0
4355
+
4356
+ #Une expression commençant par un point 6 est maintenant forcément une expression mathématique
4357
+ #Elle se termine par un espace, un letsign ou une fin de chaîne.
4358
+ nofor pass2 `@6 #1=1*
4359
+ nofor pass2 $s@6 #1=1*
4360
+ nofor pass2 `!@6 #1=0*
4361
+ nofor pass2 $s!@6 #1=0*
4362
+ nofor pass2 @56 #1=0*
4363
+ nofor pass2 $s@6-6-236!%frmath #1=0*
4364
+
4365
+ #Cas particulier des mots finissant par "lieues"
4366
+ nofor pass3 @123-6-156~ #1=0*
4367
+ nofor pass3 @123-6-156$s #1=0*
4368
+ nofor pass3 @123-6-156!$l #1=0*
4369
+
4370
+ #Traitement des opérateurs
4371
+ nofor pass2 #1=1[@235] @2358 plus
4372
+ nofor pass2 #1=1[@36] @368 moins
4373
+ nofor pass2 #1=1[@35] @358 multiplié
4374
+ nofor pass2 #1=1[@34] @348 divisé
4375
+ nofor pass2 #1=1[@4] @47 puissance
4376
+
4377
+ nofor pass2 #1=1[@2356] @23568 égal
4378
+ nofor pass2 #1=1[@5-126] @238 inférieur à
4379
+ nofor pass2 #1=1[@5-345] @756 supérieur à
4380
+
4381
+ nofor pass2 #1=1[@236] @2368 parenthèse gauche
4382
+
4383
+ nofor pass2 #1=1[@45-236] @12356a crochet gauche
4384
+ nofor pass2 #1=1[@12356] @12356a crochet gauche
4385
+ nofor pass2 #1=1[@356-12] @23456a crochet droit
4386
+ nofor pass2 #1=1[@23456] @23456a crochet droit
4387
+
4388
+ nofor pass2 #1=1[@6-6-236] @2378 accolade gauche
4389
+ nofor pass2 #1=1[@356-3-3] @3568 accolade droite
4390
+
4391
+ nofor pass2 #1=0[@356-12]$sp @234568 crochet droit littéraire
4392
+ nofor pass2 #1=0[@356-12]~ @234568
4393
+
4394
+ #Les chiffres
4395
+ nofor pass2 #1=1[@16] @168
4396
+ nofor pass2 #1=1[@126] @1268
4397
+ nofor pass2 #1=1[@146] @1468
4398
+ nofor pass2 #1=1[@1456] @14568
4399
+ nofor pass2 #1=1[@156] @1568
4400
+ nofor pass2 #1=1[@1246] @12468
4401
+ nofor pass2 #1=1[@12456] @124568
4402
+ nofor pass2 #1=1[@1256] @12568
4403
+ nofor pass2 #1=1[@246] @2468
4404
+ nofor pass2 #1=1[@3456] @34568
4405
+ nofor context @168 "1"
4406
+ nofor context @1268 "2"
4407
+ nofor context @1468 "3"
4408
+ nofor context @14568 "4"
4409
+ nofor context @1568 "5"
4410
+ nofor context @12468 "6"
4411
+ nofor context @124568 "7"
4412
+ nofor context @12568 "8"
4413
+ nofor context @2468 "9"
4414
+ nofor context @34568 "0"
4415
+ nofor context @2358 "+"
4416
+ nofor context @368 "-"
4417
+ nofor context @13678 "-"
4418
+ nofor context @358 "*"
4419
+ nofor context @348 "/"
4420
+ nofor context @47 "^"
4421
+
4422
+ nofor context @23568 "="
4423
+ nofor context @238 "<"
4424
+ nofor context @756 ">"
4425
+
4426
+ nofor context @2368 "("
4427
+ nofor context @234568 "]"
4428
+
4429
+ nofor context @6-2368-6 "{"
4430
+ nofor context @6-6-2368 "{"
4431
+ nofor context @2378 "{"
4432
+ nofor context @3568 "}"
4433
+ nofor context @6-2368-6-6-2368 "({"
4434
+ nofor context @6-6-2368-6-2368 "{("
4435
+
4436
+ #Crochets mathématiques en forward
4437
+ noback correct `["["]$dmp "`\xfffd"
4438
+ noback correct $s["["]$dmp "`\xfffd"
4439
+ noback correct ["["]$dmp "\xfffd"
4440
+ noback correct $dm2["]"] "\xfffe"
4441
+
4442
+ noback pass2 @12356[@6]$dm ?
4443
+ noback pass2 @23456[@6]$dm ?
4444
+ noback pass2 $d[@6]$d ?
4445
+ #Fin opérations mathématiques
4446
+
4447
+ #Sigles contenants des points ou des tirets
4448
+ noback compbrl \xfff9
4449
+ noback correct $l.["."]$l "\xfff9"#2=1
4450
+ noback correct #2=1$pl[]$d "`"
4451
+
4452
+ noback correct `$l"-"[]$l"-"$l "\xfff9"
4453
+ noback correct $s$l"-"[]$l"-"$l "\xfff9"
4454
+ noback context $l"-"["\xfff9"]$l"-"$l2 ?
4455
+
4456
+ noback pass2 @36[@256a] ?
4457
+ noback pass2 @256a @256
4458
+
4459
+ noback pass3 $s@56 #3=1*
4460
+ noback pass3 `@56 #3=1*
4461
+ noback pass3 %apost@56 #3=1*
4462
+ noback pass3 $s!@56 #3=0*
4463
+ noback pass3 `!@56 #3=0*
4464
+ noback pass3 %apost!@56 #3=0*
4465
+
4466
+ noback pass3 #3=1@36[@56] ?
4467
+ noback pass3 #3=1@6-256 @256-6
4468
+
4469
+ nofor pass4 `@56!$s #2=1*
4470
+ nofor pass4 $s@56!$s #2=1*
4471
+ nofor pass4 %apost@56!$s #2=1*
4472
+ nofor pass4 [@256-56]!$s @256b#2=1
4473
+ nofor pass4 $s #2=0*
4474
+
4475
+ nofor pass4 @25-34-34 @25a-34a-34a
4476
+ nofor pass4 #2=1[@256] @256b
4477
+ nofor pass4 #2=1$lmp[@36] @36a-36a
4478
+ nofor pass3 @56-46-46 @46-46-56
4479
+ nofor pass3 @56-46 @46-56
4480
+ nofor pass2 $l@256b[@46] @0-256b-256b-0-46-56
4481
+
4482
+ nofor correct "\xfffb" "."
4483
+ nofor context @25a-34a-34a "://"
4484
+ nofor context @36a-36a "-"
4485
+ nofor correct "\s\xfffb\xfffb\s" ?
4486
+ #Fin sigles
4487
+
4488
+ nofor pass2 $a[@36-3-36]$a @36-123-1-36
4489
+ nofor correct "grèo" "ïsso"
4490
+ nofor correct $l["-te-"]"il" "-t-"
4491
+ nofor correct $l["-te-"]"el" "-t-"
4492
+ nofor correct $l["-te-"]"en" "-t-"
4493
+ nofor correct $l["-te-"]"on" "-t-"
4494
+ nofor correct $l["-te-"]"y" "-t-"
4495
+
4496
+ # lettres suivi nombre
4497
+ nofor pass3 $l[]@6$d @6a
4498
+ nofor pass3 $d[]@56-46$l @6a
4499
+ nofor correct "\xfffa" ?
4500
+ nofor correct "\s\\8/\s" ?
4501
+
4502
+ # nombre suivi lettres sans pts 56
4503
+ nofor pass3 @6$d[]@1 @56
4504
+ nofor pass3 @6$d[]@15 @56
4505
+ nofor pass3 $d@0[]$d @0-8-0
4506
+
4507
+ # quelques suppressions de pts 56 ou 6 en forward
4508
+ noback pass2 @6$d[@56]$l ?
4509
+ noback pass2 [@56]@1$s ?
4510
+ noback pass2 [@56]@15$s ?
4511
+ noback pass2 `[@56]@1-36 ?
4512
+ noback pass2 [@6]@6-45-236 ?
4513
+ noback pass2 @5-126[@6]$dm ?
4514
+ noback pass2 @5-345[@6]$dm ?
4515
+ noback pass2 @6-6-236[@6] ?
4516
+ noback pass2 [@56]@56$l ?
4517
+ noback pass2 $l[@6]@45 ?
4518
+ noback pass2 $l[@6]@6$d ?
4519
+ noback correct $l["-"]$s "\xfffc"
4520
+ noback pass2 @12345678a @36
4521
+
4522
+ nofor word alvaralhão 1-123-1236-1-1235-1-123-125-1-135
4523
+ word bmw 12-134-2456
4524
+ word cant 56-14-1456
4525
+ word chs 56-14-125-234
4526
+ noback word cs 56-14-234
4527
+ noback word der 56-145-15-1235
4528
+ word mn 56-134-1345
4529
+ word ln 56-123-1345
4530
+ word lr 56-123-1235
4531
+ word lw 56-123-2456
4532
+ word jt 56-245-2345
4533
+ word ksi 56-13-234-24
4534
+ word lm 56-123-134
4535
+ word md 56-134-145
4536
+ word min 56-134-24-1345
4537
+ word mjc 134-245-14
4538
+ word mms 56-134-134-234
4539
+ noback word mr 56-134-1235
4540
+ noback word mrs 56-134-1235-234
4541
+ word mt 56-134-2345
4542
+ word mtm 56-134-2345-134
4543
+ word ns 56-1345-234
4544
+ word pb 56-1234-12
4545
+ word pc 56-1234-14
4546
+ word pd 56-1234-145
4547
+ word po 56-1234-135
4548
+ word ppb 56-1234-1234-12
4549
+ word pt 56-1234-2345
4550
+ noback word sin 234-24-1345
4551
+ word ssbs 56-234-234-12-234
4552
+ word systems 234-13456-234-2345-15-134-234
4553
+ word ten 2345-15-1345
4554
+ word th 56-2345-125
4555
+ word ths 56-2345-125-234
4556
+ word tl 56-2345-123
4557
+ word xhosa 1346-125-135-234-1
4558
+ word XV 1346-1236
4559
+ nofor prfword dieu 145-6
4560
+ nofor prfword lieu 123-6
4561
+ nofor prfword pieu 1234-6
4562
+ nofor prfword sieu 234-6
4563
+
4564
+ nofor correct "angström" "angstrœm"
4565
+ nofor correct "Chrd\sRai" "Árd\sRí"
4566
+ nofor correct "compoly" "-poly"
4567
+ nofor correct "b.a.comba" "b.a.-ba"
4568
+ nofor correct "b.a.comba" "b.a.-ba"
4569
+ nofor correct "bokmanorl" "bokmål"
4570
+ nofor correct "D-ROM" "D-Rom"
4571
+ nofor correct "Neels?" "Neelsen"
4572
+ nofor correct "eTtire" "eWire"
4573
+ noback pass2 @26[@56]@36 ?
4574
+
4575
+ nofor pass4 @6-6-236[]%frmath.$s @6
4576
+ nofor pass4 @6-6-236%frmath.~ #4=1*
4577
+ nofor pass4 #4=0@6-6-236[] @0-8-0
4578
+ nofor pass4 !@0[]@356-3-3 @0-8-0
4579
+
4580
+ word ce) 14-15-356
4581
+ word le) 123-15-356
4582
+ word me) 134-15-356
4583
+ word ne) 1345-15-356
4584
+ word te) 2345-15-356
4585
+ word le. 123-15-256
4586
+ word me. 134-15-256
4587
+ word se. 234-15-256
4588
+ word te. 2345-15-256
4589
+
4590
+ word cor) 14-135-1235-356
4591
+
4592
+ # Séquences de caractères particulières
4593
+ compbrl :// URLs
4594
+ compbrl ()
4595
+ compbrl mailto:
4596
+ compbrl www.
4597
+ compbrl .be
4598
+ compbrl .com
4599
+ compbrl .edu
4600
+ compbrl .fr
4601
+ compbrl .gov
4602
+ compbrl .mil
4603
+ compbrl .net
4604
+ compbrl .org
4605
+ compbrl .uk
4606
+
4607
+ compbrl .bat
4608
+ compbrl .cfg
4609
+ compbrl .dll
4610
+ compbrl .doc
4611
+ compbrl .docx
4612
+ compbrl .exe
4613
+ compbrl .htm
4614
+ compbrl .html
4615
+ compbrl .ini
4616
+ compbrl .log
4617
+ compbrl .msi
4618
+ compbrl .odt
4619
+ compbrl .tex
4620
+ compbrl .txt
4621
+ compbrl .xls
4622
+ compbrl .xlsx
4623
+ compbrl .xml
4624
+ compbrl .xsl
4625
+
4626
+ compbrl .gif
4627
+ compbrl .jpg
4628
+ compbrl .ico
4629
+ compbrl .png
4630
+
4631
+ compbrl .avi
4632
+ compbrl .ogg
4633
+ compbrl .mkv
4634
+ compbrl .mp3
4635
+ compbrl .mp4
4636
+ compbrl .wav
4637
+ compbrl .wmv
4638
+
4639
+ compbrl .7z
4640
+ compbrl .gz
4641
+ compbrl .gz2
4642
+ compbrl .rar
4643
+ compbrl .tar
4644
+ compbrl .zip