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,1019 @@
1
+ # liblouis: Slovak (grade 1) text braille translation table
2
+ #
3
+ #-index-name: Slovak
4
+ #-display-name: Slovak braille
5
+ #
6
+ #+language: sk
7
+ #+type: literary
8
+ #+dots: 6
9
+ #+contraction: no
10
+ #+direction: both
11
+ #
12
+ # Copyright (C) 2014,2016,2021-2022,2025 the Braille Authority of Slovakia <https://www.skn.sk/en/slovak-authority-for-the-braille-code>
13
+ #
14
+ # This file is part of liblouis.
15
+ #
16
+ # liblouis is free software: you can redistribute it and/or modify it
17
+ # under the terms of the GNU Lesser General Public License as
18
+ # published by the Free Software Foundation, either version 2.1 of the
19
+ # License, or (at your option) any later version.
20
+ #
21
+ # liblouis is distributed in the hope that it will be useful, but
22
+ # WITHOUT ANY WARRANTY; without even the implied warranty of
23
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24
+ # Lesser General Public License for more details.
25
+ #
26
+ # You should have received a copy of the GNU Lesser General Public
27
+ # License along with liblouis. If not, see
28
+ # <http://www.gnu.org/licenses/>.
29
+ #
30
+ # Based on "Pravidlá písania a používania Braillovho písma
31
+ # v Slovenskej republike" (Braille writing and usage guidelines
32
+ # in Slovak republic)
33
+ # <http://liblouis.io/braille-specs/slovak/>.
34
+
35
+ space \x0009 9 <control> HORIZONTAL TABULATION
36
+ space \x001B 1b <control> ESCAPE
37
+ space \x00A0 a   NO-BREAK SPACE
38
+ include spaces.uti
39
+
40
+ # ==============================================================================================
41
+ # SINGLE-CELL
42
+ # ==============================================================================================
43
+
44
+ lowercase \x0061 1 a LATIN SMALL LETTER A
45
+ lowercase \x0062 12 b LATIN SMALL LETTER B
46
+ lowercase \x0063 14 c LATIN SMALL LETTER C
47
+ lowercase \x0064 145 d LATIN SMALL LETTER D
48
+ lowercase \x0065 15 e LATIN SMALL LETTER E
49
+ lowercase \x0066 124 f LATIN SMALL LETTER F
50
+ lowercase \x0067 1245 g LATIN SMALL LETTER G
51
+ lowercase \x0068 125 h LATIN SMALL LETTER H
52
+ lowercase \x0069 24 i LATIN SMALL LETTER I
53
+ lowercase \x006A 245 j LATIN SMALL LETTER J
54
+ lowercase \x006B 13 k LATIN SMALL LETTER K
55
+ lowercase \x006C 123 l LATIN SMALL LETTER L
56
+ lowercase \x006D 134 m LATIN SMALL LETTER M
57
+ lowercase \x006E 1345 n LATIN SMALL LETTER N
58
+ lowercase \x006F 135 o LATIN SMALL LETTER O
59
+ lowercase \x0070 1234 p LATIN SMALL LETTER P
60
+ lowercase \x0071 12345 q LATIN SMALL LETTER Q
61
+ lowercase \x0072 1235 r LATIN SMALL LETTER R
62
+ lowercase \x0073 234 s LATIN SMALL LETTER S
63
+ lowercase \x0074 2345 t LATIN SMALL LETTER T
64
+ lowercase \x0075 136 u LATIN SMALL LETTER U
65
+ lowercase \x0076 1236 v LATIN SMALL LETTER V
66
+ lowercase \x0077 2456 w LATIN SMALL LETTER W
67
+ lowercase \x0078 1346 x LATIN SMALL LETTER X
68
+ lowercase \x0079 13456 y LATIN SMALL LETTER Y
69
+ lowercase \x007A 1356 z LATIN SMALL LETTER Z
70
+ lowercase \x00E1 16 á LATIN SMALL LETTER A WITH ACUTE
71
+ lowercase \x00E4 4 ä LATIN SMALL LETTER A WITH DIARESIS
72
+ lowercase \x00E9 345 é LATIN SMALL LETTER E WITH ACUTE
73
+ lowercase \x00ED 34 í LATIN SMALL LETTER I WITH ACUTE
74
+ lowercase \x00F3 246 ó LATIN SMALL LETTER O WITH ACUTE
75
+ lowercase \x00FA 346 ú LATIN SMALL LETTER U WITH ACUTE
76
+ lowercase \x00FD 12346 ý LATIN SMALL LETTER Y WITH ACUTE
77
+ lowercase \x010D 146 č LATIN SMALL LETTER C WITH CARON
78
+ lowercase \x010F 1456 ď LATIN SMALL LETTER D WITH CARON
79
+ lowercase \x013E 456 ľ LATIN SMALL LETTER L WITH CARON
80
+ lowercase \x013A 46 ĺ LATIN SMALL LETTER L WITH Acute
81
+ lowercase \x0148 1246 ň LATIN SMALL LETTER N WITH CARON
82
+ lowercase \x00F4 23456 ô LATIN SMALL LETTER O WITH CARET
83
+ lowercase \x0155 12356 ŕ LATIN SMALL LETTER R WITH ACUTE
84
+ lowercase \x0161 156 š LATIN SMALL LETTER S WITH CARON
85
+ lowercase \x0165 1256 ť LATIN SMALL LETTER T WITH CARON
86
+ lowercase \x017E 2346 ž LATIN SMALL LETTER Z WITH CARON
87
+
88
+ base uppercase \x0041 \x0061 Aa LATIN CAPITAL LETTER A - LATIN SMALL LETTER A
89
+ base uppercase \x0042 \x0062 Bb LATIN CAPITAL LETTER B - LATIN SMALL LETTER B
90
+ base uppercase \x0043 \x0063 Cc LATIN CAPITAL LETTER C - LATIN SMALL LETTER C
91
+ base uppercase \x0044 \x0064 Dd LATIN CAPITAL LETTER D - LATIN SMALL LETTER D
92
+ base uppercase \x0045 \x0065 Ee LATIN CAPITAL LETTER E - LATIN SMALL LETTER E
93
+ base uppercase \x0046 \x0066 Ff LATIN CAPITAL LETTER F - LATIN SMALL LETTER F
94
+ base uppercase \x0047 \x0067 Gg LATIN CAPITAL LETTER G - LATIN SMALL LETTER G
95
+ base uppercase \x0048 \x0068 Hh LATIN CAPITAL LETTER H - LATIN SMALL LETTER H
96
+ base uppercase \x0049 \x0069 Ii LATIN CAPITAL LETTER I - LATIN SMALL LETTER I
97
+ base uppercase \x004A \x006A Jj LATIN CAPITAL LETTER J - LATIN SMALL LETTER J
98
+ base uppercase \x004B \x006B Kk LATIN CAPITAL LETTER K - LATIN SMALL LETTER K
99
+ base uppercase \x004C \x006C Ll LATIN CAPITAL LETTER L - LATIN SMALL LETTER L
100
+ base uppercase \x004D \x006D Mm LATIN CAPITAL LETTER M - LATIN SMALL LETTER M
101
+ base uppercase \x004E \x006E Nn LATIN CAPITAL LETTER N - LATIN SMALL LETTER N
102
+ base uppercase \x004F \x006F Oo LATIN CAPITAL LETTER O - LATIN SMALL LETTER O
103
+ base uppercase \x0050 \x0070 Pp LATIN CAPITAL LETTER P - LATIN SMALL LETTER P
104
+ base uppercase \x0051 \x0071 Qq LATIN CAPITAL LETTER Q - LATIN SMALL LETTER Q
105
+ base uppercase \x0052 \x0072 Rr LATIN CAPITAL LETTER R - LATIN SMALL LETTER R
106
+ base uppercase \x0053 \x0073 Ss LATIN CAPITAL LETTER S - LATIN SMALL LETTER S
107
+ base uppercase \x0054 \x0074 Tt LATIN CAPITAL LETTER T - LATIN SMALL LETTER T
108
+ base uppercase \x0055 \x0075 Uu LATIN CAPITAL LETTER U - LATIN SMALL LETTER U
109
+ base uppercase \x0056 \x0076 Vv LATIN CAPITAL LETTER V - LATIN SMALL LETTER V
110
+ base uppercase \x0057 \x0077 Ww LATIN CAPITAL LETTER W - LATIN SMALL LETTER W
111
+ base uppercase \x0058 \x0078 Xx LATIN CAPITAL LETTER X - LATIN SMALL LETTER X
112
+ base uppercase \x0059 \x0079 Yy LATIN CAPITAL LETTER Y - LATIN SMALL LETTER Y
113
+ base uppercase \x005A \x007A Zz LATIN CAPITAL LETTER Z - LATIN SMALL LETTER Z
114
+ base uppercase \x00C1 \x00E1 Áá LATIN CAPITAL LETTER A WITH ACUTE - LATIN SMALL LETTER A WITH ACUTE
115
+ base uppercase \x00C4 \x00E4 Ää LATIN CAPITAL LETTER A WITH DIARESIS - LATIN SMALL LETTER A WITH DIARESIS
116
+ base uppercase \x00C9 \x00E9 Éé LATIN CAPITAL LETTER E WITH ACUTE - LATIN SMALL LETTER E WITH ACUTE
117
+ base uppercase \x00CD \x00ED Íí LATIN CAPITAL LETTER I WITH ACUTE - LATIN SMALL LETTER I WITH ACUTE
118
+ base uppercase \x00D3 \x00F3 Óó LATIN CAPITAL LETTER O WITH ACUTE - LATIN SMALL LETTER O WITH ACUTE
119
+ base uppercase \x00DA \x00FA Úú LATIN CAPITAL LETTER U WITH ACUTE - LATIN SMALL LETTER U WITH ACUTE
120
+ base uppercase \x00DD \x00FD Ýý LATIN CAPITAL LETTER Y WITH ACUTE - LATIN SMALL LETTER Y WITH ACUTE
121
+ base uppercase \x010C \x010D Čč LATIN CAPITAL LETTER C WITH CARON - LATIN SMALL LETTER C WITH CARON
122
+ base uppercase \x010E \x010F Ďď LATIN CAPITAL LETTER D WITH CARON - LATIN SMALL LETTER D WITH CARON
123
+ base uppercase \x013D \x013E Ľľ LATIN CAPITAL LETTER L WITH CARON - LATIN SMALL LETTER L WITH CARON
124
+ base uppercase \x0139 \x013A Ĺĺ LATIN CAPITAL LETTER L WITH Acute - LATIN SMALL LETTER L WITH Acute
125
+ base uppercase \x0147 \x0148 Ňň LATIN CAPITAL LETTER N WITH CARON - LATIN SMALL LETTER N WITH CARON
126
+ base uppercase \x00D4 \x00F4 Ôô LATIN CAPITAL LETTER O WITH CARET - LATIN SMALL LETTER O WITH CARET
127
+ base uppercase \x0154 \x0155 Ŕŕ LATIN CAPITAL LETTER R WITH ACUTE - LATIN SMALL LETTER R WITH ACUTE
128
+ base uppercase \x0160 \x0161 Šš LATIN CAPITAL LETTER S WITH CARON - LATIN SMALL LETTER S WITH CARON
129
+ base uppercase \x0164 \x0165 Ťť LATIN CAPITAL LETTER T WITH CARON - LATIN SMALL LETTER T WITH CARON
130
+ base uppercase \x017D \x017E Žž LATIN CAPITAL LETTER Z WITH CARON - LATIN SMALL LETTER Z WITH CARON
131
+
132
+ # ----------------------------------------------------------------------------------------------
133
+ # Unicode 0000..007F C0 Controls and Basic Latin
134
+ # ----------------------------------------------------------------------------------------------
135
+
136
+ punctuation \x0021 235 ! EXCLAMATION MARK
137
+ punctuation \x0022 2356 "
138
+ #noback sign \x0023 3456 #
139
+ noback sign \x0023 46-3456 #
140
+ punctuation \x0027 3 '
141
+ punctuation \x0028 236 (
142
+ punctuation \x0029 356 )
143
+ sign \x002A 35 *
144
+ noback math \x002B 235 +
145
+ math \x002B 56-235 +
146
+ punctuation \x002C 2 ,
147
+ punctuation \x002D 36 -
148
+ punctuation \x002E 256 .
149
+ math \x002F 12456 /
150
+ include digits6Dots.uti
151
+ punctuation \x003A 25 :
152
+ punctuation \x003B 23 ;
153
+ math \x003C 126 <
154
+ math \x003C 56-126 <
155
+ noback math \x003D 2356 =
156
+ math \x003D 56-2356 =
157
+ noback math \x003E 345 >
158
+ math \x003E 56-345 >
159
+ punctuation \x003F 26 ?
160
+ noback sign \x005F 46-36 _
161
+ noback punctuation \x0060 6 `
162
+ #noback punctuation \x0060 46-6 `
163
+
164
+
165
+ # ----------------------------------------------------------------------------------------------
166
+ # Unicode 0080..00FF C1 Controls and Latin-1 Supplement
167
+ # ----------------------------------------------------------------------------------------------
168
+
169
+ noback punctuation \x00A1 46-235 ¡ INVERTED EXCLAIM
170
+ noback sign \x00A2 4-14 ¢ CENT SIGN
171
+ noback sign \x00A3 4-123 £ POUND SIGN
172
+ noback sign \x00A4 4-136 ¤ CURRENCY SIGN
173
+ noback sign \x00A5 4-13456 ¥ yen SIGN
174
+ noback sign \x00A6 46-46 ¦ BROKEN VERTICAL LINE
175
+ noback punctuation \x00A7 46-346 § SECTION
176
+ noback sign \x00A9 46-14 © COPIRIGHT
177
+ noback math \x00AB 46-236 « LEFT DOUBLE ANGLE BRACKET
178
+ punctuation \x00AD 36 ­ SOFT HYPHEN
179
+ noback sign \x00AE 46-1235 ® REGISTERED
180
+ noback math \x00B2 34-3456-12-156 ² SUPERSCRIPT 2
181
+ noback math \x00B3 34-3456-14-156 ³ SUPERSCRIPT 3
182
+ noback sign \x00B4 45 ´ ACUTE ACCENT
183
+ noback sign \x00B8 3456 ¸ CEDILLA
184
+ noback math \x00D7 346 × MULTIPLICATION SIGN
185
+ math \x00D7 56-346 × MULTIPLICATION SIGN
186
+ noback math \x00F7 25 ÷ DIVISION SIGN
187
+ math \x00F7 56-25 ÷ DIVISION SIGN
188
+
189
+
190
+ # ----------------------------------------------------------------------------------------------
191
+ # Unicode 2000..206F General Punctuation
192
+ # ----------------------------------------------------------------------------------------------
193
+
194
+ punctuation \x2010 36 ‐ HYPHEN
195
+ punctuation \x2011 36 ‑ NON-BREAKING HYPHEN
196
+ punctuation \x2012 36 ‒ FIGURE DASH
197
+ punctuation \x2013 36 – EN DASH
198
+ punctuation \x2014 36 — EM DASH
199
+ punctuation \x2015 36 ― HORIZONTAL BAR
200
+ punctuation \x2018 3 ‘ LEFT SINGLE QUOTATION MARK
201
+ punctuation \x2019 3 ’ RIGHT SINGLE QUOTATION MARK
202
+ punctuation \x201A 3 ‚ SINGLE LOW-9 QUOTATION MARK
203
+ punctuation \x201B 3 ‛ SINGLE HIGH-REVERSED-9 QUOTATION MARK
204
+ punctuation \x201C 2356 “ LEFT DOUBLE QUOTATION MARK
205
+ punctuation \x201D 2356 ” RIGHT DOUBLE QUOTATION MARK
206
+ punctuation \x201E 2356 „ DOUBLE LOW-9 QUOTATION MARK
207
+ punctuation \x201F 2356 ‟ DOUBLE HIGH-REVERSED-9 QUOTATION MARK
208
+ noback sign \x2020 46-6-3456 † DAGGER
209
+ noback sign \x2021 46-6-3456-23 ‡ DOUBLE DAGGER
210
+ noback punctuation \x2022 46-2356 • BULLET
211
+ punctuation \x2026 256-256-256 … HORIZONTAL ELLIPSIS
212
+ noback sign \x20A0 4-136-4-15 ₠ EURO CURRENCY SIGN
213
+ noback sign \x20A3 4-124 ₣ FRANC SIGN
214
+ noback sign \x20A4 4-123-1235 ₤ LIRA SIGN
215
+ noback sign \x20AC 4-15 € EURO SIGN
216
+ noback sign \x20B4 4-125 ₴ HRIVNA SIGN
217
+ noback sign \x20BD 4-1235 ₽ RUBLE SIGN
218
+ noback sign \x20BF 4-12 ₿ BITCOIN SIGN
219
+
220
+
221
+ # ==============================================================================================
222
+ # MULTI-CELL
223
+ # ==============================================================================================
224
+
225
+ # ----------------------------------------------------------------------------------------------
226
+ # Unicode 0000..007F C0 Controls and Basic Latin
227
+ # ----------------------------------------------------------------------------------------------
228
+
229
+ noback sign \x0024 4-234 $ DOLLAR SIGN
230
+ math \x0025 3456-1234 % PERCENT SIGN
231
+ sign \x0026 3456-12346 & AMPERSAND
232
+ sign \x0040 3456-12456 @ COMMERCIAL AT
233
+ punctuation \x005B 6-236 [ LEFT SQUARE BRACKET
234
+ sign \x005C 3456-1256 \ REVERSE SOLIDUS
235
+ punctuation \x005D 6-356 ] RIGHT SQUARE BRACKET
236
+ noback sign \x005E 46-45 ^ CIRCUMFLEX ACCENT
237
+ noback math \x007B 5-236 { LEFT CURLY BRACKET
238
+ noback sign \x007C 46-456 | VERTICAL LINE
239
+ noback math \x007D 5-356 } RIGHT CURLY BRACKET
240
+ noback math \x007E 46-26 ~ TILDE
241
+
242
+
243
+ # ----------------------------------------------------------------------------------------------
244
+ # Unicode 0080..00FF C1 Controls and Latin-1 Supplement
245
+ # ----------------------------------------------------------------------------------------------
246
+
247
+ sign \x00B0 3456-234 ° DEGREE SIGN
248
+ math \x00B1 235-36 ± PLUS-MINUS SIGN
249
+ noback sign \x00B5 45-134 µ MICRO SIGN
250
+ noback sign \x00B6 46-345 ¶ PARAGRAPH MARKER
251
+ noback punctuation \x00B7 46-256 · MIDDLE DOT
252
+ noback math \x00B9 34-3456-1-156 ¹ SUPERSCRIPT ONE
253
+ noback math \x00BB 46-356 » RIGHT DOUBLE ANGLE BRACKET
254
+ noback math \x00BC 3456-1-256 ¼ ONE QUARTER
255
+ noback math \x00BD 3456-1-23 ½ ONE HALF
256
+ noback math \x00BE 3456-14-256 ¾ THREE QUARTERS
257
+ noback sign \x00BF 46-35 ¿ INVERTED QUESTION
258
+
259
+
260
+ # ----------------------------------------------------------------------------------------------
261
+ # Unicode 0370..03FF Greek and Coptic
262
+ # ----------------------------------------------------------------------------------------------
263
+
264
+ noback lowercase \x03b1 1 α
265
+ noback lowercase \x03b2 12 β
266
+ noback lowercase \x03b3 1245 γ
267
+ noback lowercase \x03b4 145 δ
268
+ noback lowercase \x03b5 15 ε
269
+ noback lowercase \x03b6 1356 ζ
270
+ noback lowercase \x03b7 156 η
271
+ noback lowercase \x03b8 1456 θ
272
+ noback lowercase \x03b9 24 ι
273
+ noback lowercase \x03ba 13 κ
274
+ noback lowercase \x03bb 123 λ
275
+ noback lowercase \x03bc 134 μ
276
+ noback lowercase \x03bd 1345 ν
277
+ noback lowercase \x03be 1346 ξ
278
+ noback lowercase \x03bf 135 ο
279
+ noback lowercase \x03c0 1234 π
280
+ noback lowercase \x03c1 1235 ρ
281
+ noback lowercase \x03c3 234 σ
282
+ noback lowercase \x03c2 234 ς
283
+ noback lowercase \x03c4 2345 τ
284
+ noback lowercase \x03c5 136 υ
285
+ noback lowercase \x03c6 124 φ
286
+ noback lowercase \x03c7 12346 χ
287
+ noback lowercase \x03c8 13456 ψ
288
+ noback lowercase \x03c9 2456 ω
289
+ noback lowercase \x03ac 345 ά
290
+ noback lowercase \x1fb6 16 ᾶ
291
+ noback lowercase \x1f70 12356 ὰ
292
+ noback lowercase \x03ad 1246 έ
293
+ noback lowercase \x1f72 14 ὲ
294
+ noback lowercase \x03ae 123456 ή
295
+ noback lowercase \x1fc6 126 ῆ
296
+ noback lowercase \x1f74 2346 ὴ
297
+ noback lowercase \x03af 12456 ί
298
+ noback lowercase \x1fd6 146 ῖ
299
+ noback lowercase \x1f76 34 ὶ
300
+ noback lowercase \x03cc 246 ό
301
+ noback lowercase \x1f78 346 ὸ
302
+ noback lowercase \x03cd 1256 ύ
303
+ noback lowercase \x1fe6 1236 ῦ
304
+ noback lowercase \x1f7a 23456 ὺ
305
+ noback lowercase \x03ce 245 ώ
306
+ noback lowercase \x1ff6 3456 ῶ
307
+ noback lowercase \x1f7c 12345 ὼ
308
+ noback lowercase \x03dd 1236 ϝ
309
+ noback lowercase \x03df 12345 ϟ
310
+ noback lowercase \x03e1 2346 ϡ
311
+
312
+ noback letter \x0391 1 Α
313
+ noback letter \x0392 12 Β
314
+ noback letter \x0393 1245 Γ
315
+ noback letter \x0394 145 Δ
316
+ noback letter \x0395 15 Ε
317
+ noback letter \x0396 1356 Ζ
318
+ noback letter \x0397 156 Η
319
+ noback letter \x0398 1456 Θ
320
+ noback letter \x0399 24 Ι
321
+ noback letter \x039a 13 Κ
322
+ noback letter \x039b 123 Λ
323
+ noback letter \x039c 134 Μ
324
+ noback letter \x039d 1345 Ν
325
+ noback letter \x039e 1346 Ξ
326
+ noback letter \x039f 135 Ο
327
+ noback letter \x03a0 1234 Π
328
+ noback letter \x03a1 1235 Ρ
329
+ noback letter \x03a3 234 Σ
330
+ noback letter \x03a3 234 Σ
331
+ noback letter \x03a4 2345 Τ
332
+ noback letter \x03a5 136 Υ
333
+ noback letter \x03a6 124 Φ
334
+ noback letter \x03a7 12346 Χ
335
+ noback letter \x03a8 13456 Ψ
336
+ noback letter \x03a9 2456 Ω
337
+ noback letter \x0386 345 Ά
338
+ noback letter \x1fba 12356 Ὰ
339
+ noback letter \x0388 1246 Έ
340
+ noback letter \x1fc8 14 Ὲ
341
+ noback letter \x0389 123456 Ή
342
+ noback letter \x1fca 2346 Ὴ
343
+ noback letter \x038a 12456 Ί
344
+ noback letter \x1fda 34 Ὶ
345
+ noback letter \x038c 246 Ό
346
+ noback letter \x1ff8 346 Ὸ
347
+ noback letter \x038e 1256 Ύ
348
+ noback letter \x1fea 23456 Ὺ
349
+ noback letter \x038f 245 Ώ
350
+ noback letter \x1ffa 12345 Ὼ
351
+ noback letter \x03dc 1236 Ϝ
352
+ noback letter \x03de 12345 Ϟ
353
+ noback letter \x03e0 2346 Ϡ
354
+
355
+
356
+ # ----------------------------------------------------------------------------------------------
357
+ # Other Unicode characters
358
+ # ----------------------------------------------------------------------------------------------
359
+
360
+ noback math \x00AC 1345-135-1345 ¬ LOGICAL NOT
361
+ noback sign \x02C7 56 ˇ CARON
362
+ noback sign \x02D9 5 ˙ DOT ABOVE
363
+ noback sign \x02DD 123456 ˝ DOUBLE ACUTE
364
+ noback math \x0609 3456-134 ؉ ARABIC-INDIC PER MILLE SIGN
365
+ math \x2030 3456-1235 ‰ PER MILLE SIGN
366
+ noback math \x2032 34-2 ′ PRIME SIGN
367
+ noback math \x2033 34-2-2 ″ DOUBLE PRIME SIGN
368
+ noback math \x2034 34-2-2-2 ‴ TRIPLE PRIME SIGN
369
+ noback math \x203E 156 ‾
370
+ noback math \x2070 34-3456-245-156 ⁰ SUPERSCRIPT 0
371
+ noback math \x2074 34-3456-145-156 ⁴ SUPERSCRIPT 4
372
+ noback math \x2075 34-3456-15-156 ⁵ SUPERSCRIPT 5
373
+ noback math \x2076 34-3456-124-156 ⁶ SUPERSCRIPT 6
374
+ noback math \x2077 34-3456-1245-156 ⁷ SUPERSCRIPT 7
375
+ noback math \x2078 34-3456-125-156 ⁸ SUPERSCRIPT 8
376
+ noback math \x2079 34-3456-24-156 ⁹ SUPERSCRIPT 9
377
+ noback math \x207A 34-235-156 ⁺ SUPERSCRIPT PLUS
378
+ noback math \x207B 34-36-156 ⁻ SUPERSCRIPT MINUS
379
+ noback math \x207C 34-2356-156 ⁼ SUPERSCRIPT EQUALS
380
+ noback math \x207D 34-236-156 ⁽ SUPERSCRIPT LEFT PAREN
381
+ noback math \x207E 34-356-156 ⁾ SUPERSCRIPT RIGHT PAREN
382
+ noback math \x207F 34-1345-156 ⁿ SUPERSCRIPT N
383
+ noback math \x2080 16-3456-245-156 ₀ SUBSCRIPT 0
384
+ noback math \x2081 16-3456-1-156 ₁ SUBSCRIPT 1
385
+ noback math \x2082 16-3456-12-156 ₂ SUBSCRIPT 2
386
+ noback math \x2083 16-3456-14-156 ₃ SUBSCRIPT 3
387
+ noback math \x2084 16-3456-145-156 ₄ SUBSCRIPT 4
388
+ noback math \x2085 16-3456-15-156 ₅ SUBSCRIPT 5
389
+ noback math \x2086 16-3456-124-156 ₆ SUBSCRIPT 6
390
+ noback math \x2087 16-3456-1245-156 ₇ SUBSCRIPT 7
391
+ noback math \x2088 16-3456-125-156 ₈ SUBSCRIPT 8
392
+ noback math \x2089 16-3456-24-156 ₉ SUBSCRIPT 9
393
+ noback math \x208A 16-235-156 ₊ SUBSCRIPT PLUS
394
+ noback math \x208B 16-36-156 ₋ SUBSCRIPT MINUS
395
+ noback math \x208C 16-2356-156 ₌ SUBSCRIPT EQUALS
396
+ noback math \x208D 16-236-156 ₍ SUBSCRIPT LEFT PAREN
397
+ noback math \x208E 16-356-156 ₎ SUBSCRIPT RIGHT PAREN
398
+ noback math \x2099 16-1345-156 ₙ SUBSCRIPT N
399
+ sign \x2103 3456-234-6-14 ℃ degrees celsius
400
+ sign \x2109 3456-234-6-124 ℉ degrees fahrenhei
401
+ noback sign \x2122 46-2345 ™ TRADEMARK
402
+ noback math \x2150 3456-1-2356 ⅐ ONE SEVENTH
403
+ noback math \x2151 3456-1-35 ⅑ ONE nineth
404
+ noback math \x2152 3456-1-2-356 ⅒ ONE TENTH
405
+ noback math \x2153 3456-1-25 ⅓ ONE THIRD
406
+ noback math \x2154 3456-12-25 ⅔ TWO THIRDS
407
+ noback math \x2155 3456-1-26 ⅕ ONE fifth
408
+ noback math \x2159 3456-1-235 ⅙ ONE SIXTH
409
+ noback math \x215B 3456-1-236 ⅛ ONE EIGHTH
410
+ noback math \x2190 1256-246 ← left arrow
411
+ noback math \x2191 1256-346 ↑ up arrow
412
+ noback math \x2192 1256-135 → right arrow
413
+ noback math \x2193 1256-146 ↓ down down arrow
414
+ noback math \x2194 1256-2456-1235-135 ↔ left right arrow
415
+ noback math \x2195 1256-2456-1235-346 ↕ up down arrow
416
+ noback math \x2196 1256-156 ↖ left up arrow
417
+ noback math \x2197 1256-234 ↗ right up arrow
418
+ noback math \x2198 1256-126 ↘ right down arrow
419
+ noback math \x2199 1256-345 ↙ left down arrow
420
+ noback math \x219A 1256-246-4-156 ↚ left checkmarked arrow
421
+ noback math \x219B 1256-135-4-156 ↛ right checkmarked arrow
422
+ noback math \x219C 1256-35-26-246 ↜
423
+ noback math \x219D 1256-26-35-135 ↝
424
+ noback math \x219E 1256-25-1235-1235-136 ↞
425
+ noback math \x219F 1256-25-1235-1235-346 ↟
426
+ noback math \x21A0 1256-25-1235-1235-135 ↠
427
+ noback math \x21A1 1256-25-1235-1235-146 ↡
428
+ noback math \x21A2 1256-1235-1235-246 ↢
429
+ noback math \x21A3 1256-1235-1235-135 ↣
430
+ noback math \x21A4 1256-1256-1235-246 ↤
431
+ noback math \x21A5 1256-1256-1235-346 ↥
432
+ noback math \x21A6 1256-1256-1235-135 ↦
433
+ noback math \x21A7 1256-1256-1235-146 ↦
434
+ noback math \x21AD 1256-2456-35-26-1235-135 ↭
435
+ noback math \x21AE 1256-2456-1235-135-4-156 ↮
436
+ noback math \x21B0 1256-356-346 ↰
437
+ noback math \x21B1 1256-256-346 ↱
438
+ noback math \x21B2 1256-256-146 ↲
439
+ noback math \x21B3 1256-356-146 ↳
440
+ noback math \x21B6 1256-35-35-246 ↶
441
+ noback math \x21B7 1256-26-26-135 ↷
442
+ noback math \x21BC 1256-4-1235-246 ↼
443
+ noback math \x21BD 1256-6-1235-246 ↽
444
+ noback math \x21BE 1256-6-1235-346 ↾
445
+ noback math \x21BF 1256-4-1235-346 ↿
446
+ noback math \x21C0 1256-4-1235-135 ⇀
447
+ noback math \x21C1 1256-6-1235-135 ⇁
448
+ noback math \x21C2 1256-4-1235-146 ⇂
449
+ noback math \x21C3 1256-6-1235-146 ⇃
450
+ noback math \x21C4 1256-135-12456-1256-246 ⇄
451
+ noback math \x21C5 1256-346-123456-1256-146 ⇄
452
+ noback math \x21CC 45-456-2356 ⇌
453
+ noback math \x21D0 1256-2356-246 ⇐
454
+ noback math \x21D1 1256-2356-346 ⇑
455
+ noback math \x21D2 1256-2356-135 ⇒
456
+ noback math \x21D3 1256-2356-146 ⇓
457
+ noback math \x21D4 1256-2456-2356-1235-135 ⇔
458
+ noback math \x21D4 1256-2456-2356-1235-135 ⇔
459
+ noback math \x21D5 1256-2456-2356-1235-346 ⇕
460
+ noback math \x21E0 1256-2-246 ⇠
461
+ noback math \x21E1 1256-2-346 ⇡
462
+ noback math \x21E2 1256-2-135 ⇢
463
+ noback math \x21E3 1256-2-146 ⇣
464
+ noback math \x21E3 1256-2-146 ⇣
465
+ math \x2200 3456-1236 ∀ FOR ALL
466
+ noback math \x2202 34-2 ∂ PARTIAL DIFFERENTIAL
467
+ math \x2203 3456-134 ∃ THERE EXISTS
468
+ math \x2205 3456-13456 ∅ EMPTY SET
469
+ noback math \x2208 45-15 ∈ ELEMENT OF
470
+ noback math \x2209 4-45-15 ∉ NOT AN ELEMENT OF
471
+ noback math \x220B 45-45-15 ∋ CONTAINS AS MEMBER
472
+ noback math \x220F 46-1234 ∏ TIMES
473
+ noback math \x2211 46-234 ∑ SUM
474
+ noback math \x2212 36 − MINUS
475
+ math \x2213 36-235 ∓ MINUS OR PLUS
476
+ math \x2212 56-36 − MINUS
477
+ noback math \x2215 12456 ∕ DIVIDED BY
478
+ math \x2215 56-12456 ∕ DIVIDED BY
479
+ noback math \x2216 45-36 ∖ SET MINUS
480
+ math \x2217 35 ∗ ASTERISK OPERATOR
481
+ noback math \x2218 5-135 ∘ RING OPERATOR
482
+ noback math \x2219 3 ∙ DOT OPERATOR
483
+ noback math \x221A 146 √ SQUARE ROOT
484
+ math \x221E 3456-1345 ∞ INFINITY
485
+ noback math \x2220 456-246 ∠ ANGLE
486
+ noback math \x2221 46-456-246 ∡ MEASURED ANGLE
487
+ noback math \x2223 456 ∣ DIVIDES
488
+ math \x2223 56-456 ∣ DIVIDES
489
+ noback math \x2224 4-456 ∤ DOES NOT DIVIDE
490
+ noback math \x2225 3456-123 ∥∥ PARALEL TO
491
+ noback math \x2226 4-3456-123 ∥∦ NOT PARALEL TO
492
+ noback math \x2227 15-2345 ∧ LOGICAL AND
493
+ noback math \x22BF 1246-3456-3456-14 ⊿ TRIANGLE
494
+ noback math \x22C0 15-2345 ∧ LOGICAL AND
495
+ noback math \x2228 145-24-234 ⋁ LOGICAL OR
496
+ noback math \x22C1 145-24-234 ⋁ LOGICAL OR
497
+ noback math \x2229 45-156 ∩ INTERSECTION
498
+ noback math \x222A 45-3456 ∪ UNION
499
+ noback math \x222B 2346 ∫ INTEGRAL
500
+ noback math \x2236 25 ∶ RATIO
501
+ noback math \x2245 45-2356 ≅ APROXIMATELLY EQUAL TO
502
+ noback math \x2248 5-2356 ≈ ALMOST EQUAL TO
503
+ noback math \x2249 4-5-2356 ≉ ALMOST NOT EQUAL TO
504
+ noback math \x224A 5-2356-2356 ≊ ALMOST OR EQUAL TO
505
+ noback math \x2251 46-5-2356 ≑ GEOMETRICALLY EQUAL TO
506
+ noback math \x2261 456-2356 ≡ IDENTICAL TO
507
+ noback math \x2262 4-456-2356 ≢ NOT IDENTICAL TO
508
+ noback math \x2260 4-2356 ≠ NOT EQUAL TO
509
+ noback math \x2250 5-2356 ≐ APPROACHES THE LIMIT
510
+ math \x2264 126-2356 ≤ LESS-THAN OR EQUAL TO
511
+ math \x2265 345-2356 ≥ GREATER-THAN OR EQUAL TO
512
+ noback math \x226A 46-126 ≪ MUCH SMALLER THAN
513
+ noback math \x226B 46-345 ≫ MUCH GREATER THAN
514
+ noback math \x226E 4-126 ≮ NOT LESS than
515
+ noback math \x226F 4-345 ≯ NOT GREATER than
516
+ math \x2276 126-345 ≶ LESS-THAN OR GREATER-THAN
517
+ math \x2277 345-126 ≷ GREATER-THAN OR LESS-THAN
518
+ noback math \x2282 45-12346 ⊂ SUBSET OF
519
+ noback math \x2283 45-13456 ⊃ SUPERSET OF
520
+ noback math \x2284 4-45-12346 ⊄ NOT A SUBSET OF
521
+ noback math \x2285 4-45-13456 ⊅ NOT A SUPERSET OF
522
+ noback math \x2286 45-12346-2356 ⊆ SUBSET OF OR EQUAL TO
523
+ noback math \x2287 45-13456-2356 ⊇ SUPERSET OR EQUAL TO
524
+ noback math \x2288 4-45-12346-4-2356 ⊈ NEITHER A SUBSET OF NOR EQUAL TO
525
+ noback math \x2289 4-45-13456-4-2356 ⊉ NEITHER A SUPERSET OF NOR EQUAL TO
526
+ noback math \x228A 45-12346-4-2356 ⊊ SUBSET OF AND DOES NOT EQUAL TO
527
+ noback math \x228B 45-13456-4-2356 ⊋ SUPERSET OF AND DOES NOT EQUAL TO
528
+ noback math \x22A5 3456-36 ⊥ PERPENDICULAR TO
529
+ noback math \x22C5 3 ⋅ DOT OPERATOR
530
+ noback math \x2312 35-26 ⌒
531
+ noback math \x25A0 1246-3456-145 ■ BLACK SQUARE
532
+ noback math \x25A1 1246-3456-145 □ WHITE SQUARE
533
+ noback math \x25A4 46-1246-3456-145 ▤
534
+ noback math \x25AA 456-1246-3456-145 ▪ SQUARE
535
+ noback math \x25AD 1246-3456-3456-145 ▭ RECTANGLE
536
+ noback math \x25B2 456-1246-3456-14 ▲ FULL TRIANGLE
537
+ noback math \x25B3 1246-3456-14 △ TRIANGLE
538
+ noback math \x25D9 456-1246-3456-145-246-1246-123456 ◙
539
+ noback math \x25E6 46-2356 ◦ WHITE BULLET
540
+ noback math \x25CA 1246-4-3456-145 ◊ LOZENGE
541
+ noback math \x25CF 456-1246-123456 ● BLACK CIRCLE
542
+ noback math \x25AC 456-1246-3456-3456-145 ▬ FILLED RECTANGLE
543
+ noback math \x2640 46-1346 ♀ FEMININE SYMBOL
544
+ noback math \x2642 46-13456 ♂ MARS SYMBOL
545
+ noback sign \x2713 4-146 ✓ CHECKMARK SIGN
546
+ noback math \x27E8 5-126 ⟨ MATHEMATICAL LEFT ANGLE BRACKET
547
+ noback math \x27E9 5-345 ⟩ MATHEMATICAL RIGHT ANGLE BRACKET
548
+ noback math \x27EA 46-236 ⟪ MATHEMATICAL DOUBLE LEFT ANGLE BRACKET
549
+ noback math \x27EB 46-356 ⟫ MATHEMATICAL DOUBLE RIGHT ANGLE BRACKET
550
+ noback math \x27F5 1256-25-25-25-246 ⟵
551
+ noback math \x27F6 1256-25-25-25-135 ⟶
552
+ sign \x283F 123456 ⠿ FULL BRAILLE SIGN
553
+ noback math \x2942 5-456-2356 ⥂
554
+ noback math \x2944 4-456-2356 ⥄
555
+ noback math \x2991 256-236 ⦑ MATHEMATICAL LEFT ANGLE BRACKET WITH DOT
556
+ noback math \x2992 256-356 ⦒ MATHEMATICAL RIGHT ANGLE BRACKET WITH DOT
557
+ noback math \x299C 3456-456-246 ⦜ RIGHT ANGLE
558
+ noback math \x299D 46-3456-456-246 ⦜ MEASURED RIGHT ANGLE
559
+ noback math \x2B20 1246-3456-15 ⬠
560
+ noback math \x2B22 1246-3456-124 ⬢
561
+ noback math \x2BC3 1246-3456-125 ⯃
562
+ noback sign \x2E4B 46-6-3456-25 ⹋ TRIPLE DAGGER
563
+ noback math \x3008 5-126 〈 MATHEMATICAL LEFT ANGLE BRACKET
564
+ noback math \x3009 5-345 〉 MATHEMATICAL RIGHT ANGLE BRACKET
565
+ noback always \xD83C\xDF11 2456-1235 🌑 NEW MOON
566
+ noback always \xD83C\xDF13 135-135 🌓 FIRST QUARTER OF A MOON
567
+ noback always \xD83C\xDF15 246-135 🌕 FULL MOON
568
+ noback always \xD83C\xDF17 246-246 🌗 LAST QUARTER OF A MOON
569
+ #noback sign \y1F311 2456-1235 🌑 NEW MOON
570
+ #noback sign \y1F313 135-135 🌓 FIRST QUARTER OF A MOON
571
+ #noback sign \y1F315 246-135 🌕 FULL MOON
572
+ #noback sign \y1F317 246-246 🌗 LAST QUARTER OF A MOON
573
+ noback lowercase \x00F0 5-145 ð
574
+ base uppercase \x00D0 \x00F0 Ðð
575
+
576
+
577
+ # ----------------------------------------------------------------------------------------------
578
+ # Foreign latin characters
579
+ # ----------------------------------------------------------------------------------------------
580
+
581
+ noback lowercase \x00e0 12356 à
582
+ noback lowercase \x00e2 16 â
583
+ noback lowercase \x0105 156 ą
584
+ noback lowercase \x00e5 1 å
585
+ noback lowercase \x0101 2 ā
586
+ noback lowercase \x0103 4 ă
587
+ noback lowercase \x0107 146 ć
588
+ noback lowercase \x00e7 12346 ç
589
+ noback lowercase \x010b 14 ċ
590
+ noback lowercase \x0111 1456 đ
591
+ noback lowercase \x00e6 345 æ
592
+ noback lowercase \x00e8 1246 è
593
+ noback lowercase \x011b 126 ě
594
+ noback lowercase \x0119 1256 ę
595
+ noback lowercase \x00eb 15 ë
596
+ noback lowercase \x00ea 26 ê
597
+ noback lowercase \x0113 256 ē
598
+ noback lowercase \x0123 1245 ģ
599
+ noback lowercase \x0121 2356 ġ
600
+ noback lowercase \x0127 125 ħ
601
+ noback lowercase \x00ef 24 ï
602
+ noback lowercase \x012b 35 ī
603
+ noback lowercase \x00ee 124 î
604
+ noback lowercase \x00ec 34 ì
605
+ noback lowercase \x0135 245 ĵ
606
+ noback lowercase \x0137 13 ķ
607
+ noback lowercase \x0138 1235 ĸ
608
+ noback lowercase \x0142 123 ł
609
+ noback lowercase \x013c 1236 ļ
610
+ noback lowercase \x0144 1345 ń
611
+ noback lowercase \x00f1 12456 ñ
612
+ noback lowercase \x0146 23 ņ
613
+ noback lowercase \x014b 134 ŋ
614
+ noback lowercase \x00f6 135 ö
615
+ noback lowercase \x00f8 246 ø
616
+ noback lowercase \x0153 135-15 œ
617
+ noback lowercase \x00f2 356 ò
618
+ noback lowercase \x014d 236 ō
619
+ noback lowercase \x0151 12345 ő
620
+ noback lowercase \x0159 2456 ř
621
+ noback lowercase \x015b 234 ś
622
+ noback lowercase \x0219 1234 ș
623
+ noback lowercase \x00df 2346 ß
624
+ noback lowercase \x021b 2345 ț
625
+ noback lowercase \x0167 46 ŧ
626
+ noback lowercase \x00fe 235 þ
627
+ noback lowercase \x016f 23456 ů
628
+ noback lowercase \x00fc 136 ü
629
+ noback lowercase \x00f9 346 ù
630
+ noback lowercase \x00fb 3456 û
631
+ noback lowercase \x0171 123456 ű
632
+ noback lowercase \x016b 36 ū
633
+ noback lowercase \x017c 13456 ż
634
+ noback lowercase \x017a 1356 ź
635
+
636
+
637
+ noback letter \x00c0 12356 À
638
+ noback letter \x00c2 16 Â
639
+ noback letter \x0104 156 Ą
640
+ noback letter \x00c5 1 Å
641
+ noback letter \x0100 2 Ā
642
+ noback letter \x0102 4 Ă
643
+ noback letter \x0106 146 Ć
644
+ noback letter \x00c7 12346 Ç
645
+ noback letter \x010a 14 Ċ
646
+ noback letter \x0110 1456 Đ
647
+ noback letter \x00c6 345 Æ
648
+ noback letter \x00c8 1246 È
649
+ noback letter \x011a 126 Ě
650
+ noback letter \x0118 1256 Ę
651
+ noback letter \x00cb 15 Ë
652
+ noback letter \x00ca 26 Ê
653
+ noback letter \x0112 256 Ē
654
+ noback letter \x0122 1245 Ģ
655
+ noback letter \x0120 2356 Ġ
656
+ noback letter \x0126 125 Ħ
657
+ noback letter \x00cf 24 Ï
658
+ noback letter \x012a 35 Ī
659
+ noback letter \x00ce 124 Î
660
+ noback letter \x00cc 34 Ì
661
+ noback letter \x0134 245 Ĵ
662
+ noback letter \x0136 13 Ķ
663
+ noback letter \x0141 123 Ł
664
+ noback letter \x013b 1236 Ļ
665
+ noback letter \x0143 1345 Ń
666
+ noback letter \x00d1 12456 Ñ
667
+ noback letter \x0145 23 Ņ
668
+ noback letter \x014a 134 Ŋ
669
+ noback letter \x00d6 135 Ö
670
+ noback letter \x00d8 246 Ø
671
+ noback letter \x0152 135-15 Œ
672
+ noback letter \x00d2 356 Ò
673
+ noback letter \x014c 236 Ō
674
+ noback letter \x0150 12345 Ő
675
+ noback letter \x0158 2456 Ř
676
+ noback letter \x015a 234 Ś
677
+ noback letter \x0218 1234 Ș
678
+ noback letter \x1e9e 2346 ẞ
679
+ noback letter \x021a 2345 Ț
680
+ noback letter \x0166 46 Ŧ
681
+ noback letter \x00de 235 Þ
682
+ noback letter \x016e 23456 Ů
683
+ noback letter \x00dc 136 Ü
684
+ noback letter \x00d9 346 Ù
685
+ noback letter \x00db 3456 Û
686
+ noback letter \x0170 123456 Ű
687
+ noback letter \x016a 36 Ū
688
+ noback letter \x017b 13456 Ż
689
+ noback letter \x0179 1356 Ź
690
+
691
+
692
+ # ----------------------------------------------------------------------------------------------
693
+ # Braille indicator opcodes
694
+ # ----------------------------------------------------------------------------------------------
695
+
696
+ numsign 3456
697
+ midendnumericmodechars ,.-':/()
698
+ capsletter 6
699
+ begcapsword 6-6
700
+ endcapsword 56
701
+
702
+ # ----------------------------------------------------------------------------------------------
703
+ # Braille emphasis
704
+ # ----------------------------------------------------------------------------------------------
705
+
706
+ emphclass italic
707
+ emphclass underline
708
+ emphclass bold
709
+ begemph italic 126-35
710
+ endemph italic 126-35-345
711
+ begemph bold 126-23
712
+ endemph bold 126-23-345
713
+ begemph underline 126-36
714
+ endemph underline 126-36-345
715
+
716
+ # ----------------------------------------------------------------------------------------------
717
+ # Literary digits
718
+ # ----------------------------------------------------------------------------------------------
719
+
720
+ include litdigits6Dots.uti
721
+
722
+ # ----------------------------------------------------------------------------------------------
723
+ # Decimal points, hyphens
724
+ # ----------------------------------------------------------------------------------------------
725
+
726
+ decpoint \x002C 2
727
+ #decpoint \x002E 3
728
+ noback hyphen \x002D 36
729
+
730
+ # ----------------------------------------------------------------------------------------------
731
+ # Letter prefix in numbers
732
+ # ----------------------------------------------------------------------------------------------
733
+
734
+ attribute digitletter abcdefghij
735
+ noback context $d[]%digitletter @56
736
+ noback context $d"."[]%digitletter @56
737
+ noback context $d","[]%digitletter @56
738
+ noback context $d"-"[]%digitletter @56
739
+ noback context $d"\x0027"[]%digitletter @56 # apostrophe
740
+ noback context $d":"[]%digitletter @56
741
+ noback context $d"\x002F"[]%digitletter @56 # slash
742
+ noback context $d"\x0028"[]%digitletter @56 # left paren
743
+ noback context $d"\x0029"[]%digitletter @56 # right paren
744
+
745
+
746
+ nofor context [@5] #1=1 # Input some slovak special characters
747
+
748
+ nofor context #1=1@236 "\x007B"#1=0 # LEFT CURLY BRACKET
749
+ nofor context #1=1@356 "\x007D"#1=0 # RIGHT CURLY BRACKET
750
+ nofor context #1=1@145 "\x00F0"#1=0 # ð
751
+ nofor context #1=1@235 "\x00FE"#1=0 # THORN
752
+
753
+ nofor context [@5-5] "\x2810"#2=0 # ⠐
754
+ nofor context [@5-45] "\x2818"#2=0 # ⠘
755
+ nofor context [@5-6] "\x2820"#2=0 # ⠠
756
+ nofor context [@5-56] "\x2830"#2=0 # ⠰
757
+
758
+ nofor context [@5-46-3456] "\x0023"#2=0 # NUMBER SIGN
759
+
760
+ nofor context [@5-46] #2=2 # Input some slovak special characters
761
+
762
+ nofor context #2=2@36 "\x005F"#2=0 # LOW LINE
763
+ nofor context #2=2@6 "\x0060"#2=0 # GRAVE ACCENT
764
+ nofor context #2=2@235 "\x00A1"#2=0 # INVERTED EXCLAIM
765
+ nofor context #2=2@46 "\x00A6"#2=0 # BROKEN VERTICAL BAR
766
+ nofor context #2=2@346 "\x00A7"#2=0 # SECTION
767
+ nofor context #2=2@14 "\x00A9"#2=0 # COPIRIGHT
768
+ nofor context #2=2@236 "\x00AB"#2=0 # LEFT DOUBLE ANGLE BRACKET
769
+ nofor context #2=2@1235 "\x00AE"#2=0 # REGISTERED
770
+ nofor context #2=2@45 "\x005E"#2=0 # CIRCUMFLEX
771
+ nofor context #2=2@456 "\x007C"#2=0 # VERTICAL LINE
772
+ nofor context #2=2@26 "\x007E"#2=0 # TILDE
773
+ nofor context #2=2@345 "\x00B6"#2=0 # PARAGRAPH MARKER
774
+ nofor context #2=2@256 "\x00B7"#2=0 # MIDDLE DOT
775
+ nofor context #2=2@356 "\x00BB"#2=0 # RIGHT DOUBLE ANGLE BRACKET
776
+ nofor context #2=2@35 "\x00BF"#2=0 # INVERTED QUESTION
777
+ nofor context #2=2@2356 "\x2022"#2=0 # BULLET
778
+ nofor context #2=2@2345 "\x2122"#2=0 # TRADEMARK
779
+ nofor context #2=2@1234 "\x220F"#2=0 # TIMES
780
+ nofor context #2=2@234 "\x2211"#2=0 # SUM
781
+ nofor context #2=2@1346 "\x2640"#2=0 # FEMININE SYMBOL
782
+ nofor context #2=2@13456 "\x2642"#2=0 # MARS SYMBOL
783
+
784
+ nofor context [@5-4] #3=2 # Input some slovak special characters
785
+
786
+ nofor context #3=2@14 "\x00A2"#3=0 # CENT SIGN
787
+ nofor context #3=2@123 "\x00A3"#3=0 # POUND SIGN
788
+ nofor context #3=2@136 "\x00A4"#3=0 # CURRENCY SIGN
789
+ nofor context #3=2@13456 "\x00A5"#3=0 # YEN SIGN
790
+ nofor context #3=2@124 "\x20A3"#3=0 # FRANC SIGN
791
+ nofor context #3=2@15 "\x20AC"#3=0 # EURO SIGN
792
+ nofor context #3=2@125 "\x20B4"#3=0 # HRIVNA SIGN
793
+ nofor context #3=2@1235 "\x20BD"#3=0 # RUBLE SIGN
794
+ nofor context #3=2@12 "\x20BF"#3=0 # BITCOIN SIGN
795
+ nofor context #3=2@234 "\x0024"#3=0 # DOLLAR SIGN
796
+ nofor context #3=2@456 "\x2224"#3=0 # DOES NOT DIVIDE
797
+ nofor context #3=2@2356 "\x2260"#3=0 # NOT EQUALS TO
798
+ nofor context #3=2@146 "\x2713"#3=0 # CHECKMARK SIGN
799
+
800
+ nofor context #1=1@12356 "\x00e0"#1=0 # à
801
+ nofor context #1=1@16 "\x00e2"#1=0 # â
802
+ nofor context #1=1@156 "\x0105"#1=0 # ą
803
+ nofor context #1=1@1 "\x00e5"#1=0 # å
804
+ nofor context #1=1@2 "\x0101"#1=0 # ā
805
+ nofor context #1=1@146 "\x0107"#1=0 # ć
806
+ nofor context #1=1@12346 "\x00e7"#1=0 # ç
807
+ nofor context #1=1@14 "\x010b"#1=0 # ċ
808
+ nofor context #1=1@1456 "\x0111"#1=0 # đ
809
+ nofor context #1=1@345 "\x00e6"#1=0 # æ
810
+ nofor context #1=1@1246 "\x00e8"#1=0 # è
811
+ nofor context #1=1@126 "\x011b"#1=0 # ě
812
+ nofor context #1=1@1256 "\x0119"#1=0 # ę
813
+ nofor context #1=1@15 "\x00eb"#1=0 # ë
814
+ nofor context #1=1@26 "\x00ea"#1=0 # ê
815
+ nofor context #1=1@256 "\x0113"#1=0 # ē
816
+ nofor context #1=1@1245 "\x0123"#1=0 # ģ
817
+ nofor context #1=1@2356 "\x0121"#1=0 # ġ
818
+ nofor context #1=1@125 "\x0127"#1=0 # ħ
819
+ nofor context #1=1@24 "\x00ef"#1=0 # ï
820
+ nofor context #1=1@35 "\x012b"#1=0 # ī
821
+ nofor context #1=1@124 "\x00ee"#1=0 # î
822
+ nofor context #1=1@34 "\x00ec"#1=0 # ì
823
+ nofor context #1=1@245 "\x0135"#1=0 # ĵ
824
+ nofor context #1=1@13 "\x0137"#1=0 # ķ
825
+ nofor context #1=1@1235 "\x0138"#1=0 # ĸ
826
+ nofor context #1=1@123 "\x0142"#1=0 # ł
827
+ nofor context #1=1@1236 "\x013c"#1=0 # ļ
828
+ nofor context #1=1@1345 "\x0144"#1=0 # ń
829
+ nofor context #1=1@12456 "\x00f1"#1=0 # ñ
830
+ nofor context #1=1@23 "\x0146"#1=0 # ņ
831
+ nofor context #1=1@134 "\x014b"#1=0 # ŋ
832
+ nofor context #1=1@135 "\x00f6"#1=0 # ö
833
+ nofor context #1=1@246 "\x00f8"#1=0 # ø
834
+ nofor context #1=1@135-15 "\x0153"#1=0 # œ
835
+ #nofor context #1=1@356 "\x00f2"#1=0 # ò
836
+ #nofor context #1=1@236 "\x014d"#1=0 # ō
837
+ nofor context #1=1@12345 "\x0151"#1=0 # ő
838
+ nofor context #1=1@2456 "\x0159"#1=0 # ř
839
+ nofor context #1=1@234 "\x015b"#1=0 # ś
840
+ nofor context #1=1@1234 "\x0219"#1=0 # ș
841
+ nofor context #1=1@2346 "\x00df"#1=0 # ß
842
+ nofor context #1=1@2345 "\x021b"#1=0 # ț
843
+ nofor context #1=1@235 "\x00fe"#1=0 # þ
844
+ nofor context #1=1@23456 "\x016f"#1=0 # ů
845
+ nofor context #1=1@136 "\x00fc"#1=0 # ü
846
+ nofor context #1=1@346 "\x00f9"#1=0 # ù
847
+ nofor context #1=1@3456 "\x00fb"#1=0 # û
848
+ nofor context #1=1@123456 "\x0171"#1=0 # ű
849
+ nofor context #1=1@36 "\x016b"#1=0 # ū
850
+ nofor context #1=1@13456 "\x017c"#1=0 # ż
851
+ nofor context #1=1@1356 "\x017a"#1=0 # ź
852
+
853
+ nofor context [@6-5] #4=2 # Input some latin foreign uppercase characters
854
+
855
+ nofor context #4=2@12356 "\x00c0"#4=0 # À
856
+ nofor context #4=2@16 "\x00c2"#4=0 # Â
857
+ nofor context #4=2@156 "\x0104"#4=0 # Ą
858
+ nofor context #4=2@1 "\x00c5"#4=0 # Å
859
+ nofor context #4=2@2 "\x0100"#4=0 # Ā
860
+ nofor context #4=2@146 "\x0106"#4=0 # Ć
861
+ nofor context #4=2@12346 "\x00c7"#4=0 # Ç
862
+ nofor context #4=2@14 "\x010a"#4=0 # Ċ
863
+ nofor context #4=2@1456 "\x0110"#4=0 # Đ
864
+ nofor context #4=2@345 "\x00c6"#4=0 # Æ
865
+ nofor context #4=2@1246 "\x00c8"#4=0 # È
866
+ nofor context #4=2@126 "\x011a"#4=0 # Ě
867
+ nofor context #4=2@1256 "\x0118"#4=0 # Ę
868
+ nofor context #4=2@15 "\x00cb"#4=0 # Ë
869
+ nofor context #4=2@26 "\x00ca"#4=0 # Ê
870
+ nofor context #4=2@256 "\x0112"#4=0 # Ē
871
+ nofor context #4=2@1245 "\x0122"#4=0 # Ģ
872
+ nofor context #4=2@2356 "\x0120"#4=0 # Ġ
873
+ nofor context #4=2@125 "\x0126"#4=0 # Ħ
874
+ nofor context #4=2@24 "\x00cf"#4=0 # Ï
875
+ nofor context #4=2@35 "\x012a"#4=0 # Ī
876
+ nofor context #4=2@124 "\x00ce"#4=0 # Î
877
+ nofor context #4=2@34 "\x00cc"#4=0 # Ì
878
+ nofor context #4=2@245 "\x0134"#4=0 # Ĵ
879
+ nofor context #4=2@13 "\x0136"#4=0 # Ķ
880
+ nofor context #4=2@123 "\x0141"#4=0 # Ł
881
+ nofor context #4=2@1236 "\x013b"#4=0 # Ļ
882
+ nofor context #4=2@1345 "\x0143"#4=0 # Ń
883
+ nofor context #4=2@12456 "\x00d1"#4=0 # Ñ
884
+ nofor context #4=2@23 "\x0145"#4=0 # Ņ
885
+ nofor context #4=2@134 "\x014a"#4=0 # Ŋ
886
+ nofor context #4=2@135 "\x00d6"#4=0 # Ö
887
+ nofor context #4=2@246 "\x00d8"#4=0 # Ø
888
+ nofor context #4=2@135-15 "\x0152"#4=0 # Œ
889
+ #nofor context #4=2@356 "\x00d2"#4=0 # Ò
890
+ #nofor context #4=2@236 "\x014c"#4=0 # Ō
891
+ nofor context #4=2@12345 "\x0150"#4=0 # Ő
892
+ nofor context #4=2@2456 "\x0158"#4=0 # Ř
893
+ nofor context #4=2@234 "\x015a"#4=0 # Ś
894
+ nofor context #4=2@1234 "\x0218"#4=0 # Ș
895
+ nofor context #4=2@2346 "\x1e9e"#4=0 # ẞ
896
+ nofor context #4=2@2345 "\x021a"#4=0 # Ț
897
+ nofor context #4=2@235 "\x00de"#4=0 # Þ
898
+ nofor context #4=2@23456 "\x016e"#4=0 # Ů
899
+ nofor context #4=2@136 "\x00dc"#4=0 # Ü
900
+ nofor context #4=2@346 "\x00d9"#4=0 # Ù
901
+ nofor context #4=2@3456 "\x00db"#4=0 # Û
902
+ nofor context #4=2@123456 "\x0170"#4=0 # Ű
903
+ nofor context #4=2@36 "\x016a"#4=0 # Ū
904
+ nofor context #4=2@13456 "\x017b"#4=0 # Ż
905
+ nofor context #4=2@1356 "\x0179"#4=0 # Ź
906
+
907
+ attribute upperforeign \x00c0\x00c2\x0104\x00c5\x0100\x0102\x0106\x00c7\x010a\x0110\x00c6\x00c8\x011a\x0118\x00cb\x00ca\x0112\x0122\x0120\x0126\x00cf\x012a\x00ce\x00cc\x0134\x0136\x0141\x013b\x0143\x00d1\x0145\x014a\x00d6\x00d8\x0152\x00d2\x014c\x0150\x0158\x015a\x0218\x1e9e\x021a\x00df\x00de\x016e\x00dc\x00d9\x00db\x0170\x016a\x017b\x0179
908
+ attribute lowerforeign \x00e0\x00e2\x0105\x00e5\x0101\x0103\x0107\x00e7\x010b\x0111\x00e6\x00e8\x011b\x0119\x00eb\x00ea\x0113\x0123\x0121\x0127\x00ef\x012b\x00ee\x00ec\x0135\x0137\x0138\x0142\x013c\x0144\x00f1\x0146\x014b\x00f6\x00f8\x0153\x00f2\x014d\x0151\x0159\x015b\x0219\x00df\x021b\x0167\x00fe\x016f\x00fc\x00f9\x00fb\x0171\x016b\x017c\x017a
909
+
910
+ noback context !#1=1[]%lowerforeign @5#1=5#2=0 # prefix latin foreign letters with dot 5
911
+ noback context !#1=4[]%upperforeign @6-5#2=4#3=0 # prefix foreign latin letters with dot 5
912
+
913
+ attribute uppergreek \x0391\x0392\x0393\x0394\x0395\x0396\x0397\x0398\x0399\x039a\x039b\x039c\x039d\x039e\x039f\x03a0\x03a1\x03a3\x03a3\x03a4\x03a5\x03a6\x03a7\x03a8\x03a9\x0386\x1fba\x0388\x1fc8\x0389\x1fca\x038a\x1fda\x038c\x1ff8\x038e\x1fea\x038f\x1ffa\x03dc\x03de\x03e0
914
+ attribute lowergreek \x03b1\x03b2\x03b3\x03b4\x03b5\x03b6\x03b7\x03b8\x03b9\x03ba\x03bb\x03bc\x03bd\x03be\x03bf\x03c0\x03c1\x03c3\x03c2\x03c4\x03c5\x03c6\x03c7\x03c8\x03c9\x03ac\x1fb6\x1f70\x03ad\x1f72\x03ae\x1fc6\x1f74\x03af\x1fd6\x1f76\x03cc\x1f78\x03cd\x1fe6\x1f7a\x03ce\x1ff6\x1f7c\x03dd\x03df\x03e1
915
+
916
+ nofor context [@45] #5=1 # Input small greek characters
917
+
918
+ nofor context #5=1@1 "\x03b1"#5=0 # α
919
+ nofor context #5=1@12 "\x03b2"#5=0 # β
920
+ nofor context #5=1@1245 "\x03b3"#5=0 # γ
921
+ nofor context #5=1@145 "\x03b4"#5=0 # δ
922
+ nofor context #5=1@15 "\x03b5"#5=0 # ε
923
+ nofor context #5=1@1356 "\x03b6"#5=0 # ζ
924
+ nofor context #5=1@156 "\x03b7"#5=0 # η
925
+ nofor context #5=1@1456 "\x03b8"#5=0 # θ
926
+ nofor context #5=1@24 "\x03b9"#5=0 # ι
927
+ nofor context #5=1@13 "\x03ba"#5=0 # κ
928
+ nofor context #5=1@123 "\x03bb"#5=0 # λ
929
+ nofor context #5=1@134 "\x03bc"#5=0 # μ
930
+ nofor context #5=1@1345 "\x03bd"#5=0 # ν
931
+ nofor context #5=1@1346 "\x03be"#5=0 # ξ
932
+ nofor context #5=1@135 "\x03bf"#5=0 # ο
933
+ nofor context #5=1@1234 "\x03c0"#5=0 # π
934
+ nofor context #5=1@1235 "\x03c1"#5=0 # ρ
935
+ nofor context #5=1@234 "\x03c3"#5=0 # σ
936
+ nofor context #5=1@234 "\x03c2"#5=0 # ς
937
+ nofor context #5=1@2345 "\x03c4"#5=0 # τ
938
+ nofor context #5=1@136 "\x03c5"#5=0 # υ
939
+ nofor context #5=1@124 "\x03c6"#5=0 # φ
940
+ nofor context #5=1@12346 "\x03c7"#5=0 # χ
941
+ nofor context #5=1@13456 "\x03c8"#5=0 # ψ
942
+ nofor context #5=1@2456 "\x03c9"#5=0 # ω
943
+ nofor context #5=1@345 "\x03ac"#5=0 # ά
944
+ nofor context #5=1@16 "\x1fb6"#5=0 # ᾶ
945
+ nofor context #5=1@12356 "\x1f70"#5=0 # ὰ
946
+ nofor context #5=1@1246 "\x03ad"#5=0 # έ
947
+ nofor context #5=1@14 "\x1f72"#5=0 # ὲ
948
+ nofor context #5=1@123456 "\x03ae"#5=0 # ή
949
+ nofor context #5=1@126 "\x1fc6"#5=0 # ῆ
950
+ nofor context #5=1@2346 "\x1f74"#5=0 # ὴ
951
+ nofor context #5=1@12456 "\x03af"#5=0 # ί
952
+ nofor context #5=1@146 "\x1fd6"#5=0 # ῖ
953
+ nofor context #5=1@34 "\x1f76"#5=0 # ὶ
954
+ nofor context #5=1@246 "\x03cc"#5=0 # ό
955
+ nofor context #5=1@346 "\x1f78"#5=0 # ὸ
956
+ nofor context #5=1@1256 "\x03cd"#5=0 # ύ
957
+ nofor context #5=1@1236 "\x1fe6"#5=0 # ῦ
958
+ nofor context #5=1@23456 "\x1f7a"#5=0 # ὺ
959
+ nofor context #5=1@245 "\x03ce"#5=0 # ώ
960
+ nofor context #5=1@3456 "\x1ff6"#5=0 # ῶ
961
+ nofor context #5=1@12345 "\x1f7c"#5=0 # ὼ
962
+ nofor context #5=1@1236 "\x03dd"#5=0 # ϝ
963
+ nofor context #5=1@12345 "\x03df"#5=0 # ϟ
964
+ nofor context #5=1@2346 "\x03e1"#5=0 # ϡ
965
+
966
+ nofor context [@6-45] #6=2 # Input some greek uppercase characters
967
+
968
+ nofor context #6=2@1 "\x0391"#6=0 # Α
969
+ nofor context #6=2@12 "\x0392"#6=0 # Β
970
+ nofor context #6=2@1245 "\x0393"#6=0 # Γ
971
+ nofor context #6=2@145 "\x0394"#6=0 # Δ
972
+ nofor context #6=2@15 "\x0395"#6=0 # Ε
973
+ nofor context #6=2@1356 "\x0396"#6=0 # Ζ
974
+ nofor context #6=2@156 "\x0397"#6=0 # Η
975
+ nofor context #6=2@1456 "\x0398"#6=0 # Θ
976
+ nofor context #6=2@24 "\x0399"#6=0 # Ι
977
+ nofor context #6=2@13 "\x039a"#6=0 # Κ
978
+ nofor context #6=2@123 "\x039b"#6=0 # Λ
979
+ nofor context #6=2@134 "\x039c"#6=0 # Μ
980
+ nofor context #6=2@1345 "\x039d"#6=0 # Ν
981
+ nofor context #6=2@1346 "\x039e"#6=0 # Ξ
982
+ nofor context #6=2@135 "\x039f"#6=0 # Ο
983
+ nofor context #6=2@1234 "\x03a0"#6=0 # Π
984
+ nofor context #6=2@1235 "\x03a1"#6=0 # Ρ
985
+ nofor context #6=2@234 "\x03a3"#6=0 # Σ
986
+ nofor context #6=2@234 "\x03a3"#6=0 # Σ
987
+ nofor context #6=2@2345 "\x03a4"#6=0 # Τ
988
+ nofor context #6=2@136 "\x03a5"#6=0 # Υ
989
+ nofor context #6=2@124 "\x03a6"#6=0 # Φ
990
+ nofor context #6=2@12346 "\x03a7"#6=0 # Χ
991
+ nofor context #6=2@13456 "\x03a8"#6=0 # Ψ
992
+ nofor context #6=2@2456 "\x03a9"#6=0 # Ω
993
+ nofor context #6=2@345 "\x0386"#6=0 # Ά
994
+ nofor context #6=2@12356 "\x1fba"#6=0 # Ὰ
995
+ nofor context #6=2@1246 "\x0388"#6=0 # Έ
996
+ nofor context #6=2@14 "\x1fc8"#6=0 # Ὲ
997
+ nofor context #6=2@123456 "\x0389"#6=0 # Ή
998
+ nofor context #6=2@2346 "\x1fca"#6=0 # Ὴ
999
+ nofor context #6=2@12456 "\x038a"#6=0 # Ί
1000
+ nofor context #6=2@34 "\x1fda"#6=0 # Ὶ
1001
+ nofor context #6=2@246 "\x038c"#6=0 # Ό
1002
+ nofor context #6=2@346 "\x1ff8"#6=0 # Ὸ
1003
+ nofor context #6=2@1256 "\x038e"#6=0 # Ύ
1004
+ nofor context #6=2@23456 "\x1fea"#6=0 # Ὺ
1005
+ nofor context #6=2@245 "\x038f"#6=0 # Ώ
1006
+ nofor context #6=2@12345 "\x1ffa"#6=0 # Ὼ
1007
+ nofor context #6=2@1236 "\x03dc"#6=0 # Ϝ
1008
+ nofor context #6=2@12345 "\x03de"#6=0 # Ϟ
1009
+ nofor context #6=2@2346 "\x03e0"#6=0 # Ϡ
1010
+
1011
+ noback context !#1=6[]%uppergreek @6-45#1=6#2=0 # prefix capital greek letters with dot 45
1012
+ noback context !#1=5[]%lowergreek!%lowergreek @45#1=5#2=0 # prefix greek letters with dot 45
1013
+ noback context !#1=5[]%lowergreek~ @45#1=5#2=0 # prefix greek letters with dot 45
1014
+ noback context !#1=5[]%lowergreek @45-45#1=5#2=0 # prefix greek letters with dot 45
1015
+ noback context %lowergreek[]!%lowergreek @56#1=5#2=0 # prefix latin letters after greek letter with dot 56
1016
+
1017
+ include braille-patterns.cti
1018
+
1019
+ # ----------------------------------------------------------------------------------------------