├── .github └── workflows │ └── c-cpp.yml ├── .gitignore ├── LICENSE ├── README.md ├── base.c ├── bin ├── Darwin │ └── .gitkeep ├── FreeBSD │ └── .gitkeep ├── Generic │ └── .gitkeep ├── Haiku │ └── .gitkeep ├── Linux │ └── .gitkeep ├── OpenBSD │ └── .gitkeep ├── Win32 │ └── .gitkeep └── Win64 │ └── .gitkeep ├── citrine.c ├── citrine.h ├── collections.c ├── file.c ├── i18n ├── af │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── am │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── ar │ ├── dictionary.h │ ├── extra.dict │ ├── extra2.dict │ ├── extra_reverse.dict │ └── msg.h ├── az │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── be │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── bg │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── bn │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── bs │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── ca │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── ceb │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── co │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── cs │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── cy │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── da │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── de │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── el │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── en │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── es │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── et │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── eu │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── fa │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── fi │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── fr │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── fy │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── ga │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── gd │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── gl │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── gu │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── ha │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── haw │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── he │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── hi │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── hmn │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── hr │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── ht │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── hu │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── hy │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── id │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── ig │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── is │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── it │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── ja │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── jv │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── ka │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── kk │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── km │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── kn │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── ko │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── ku │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── ky │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── lb │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── lo │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── lt │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── lv │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── mg │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── mi │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── mk │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── ml │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── mn │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── mo │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── mr │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── ms │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── mt │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── my │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── ne │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── nl │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── nl2 │ └── dictionary.h ├── no │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── ny │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── om │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── or │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── pa │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── pap │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── pl │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── ps │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── pt │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── pt_br │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── qu │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── ro │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── ru │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── rw │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── sd │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── si │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── sk │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── sl │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── sm │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── sn │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── so │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── sq │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── sr │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── st │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── su │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── sv │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── sw │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── ta │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── te │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── tg │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── th │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── tk │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── tl │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── tr │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── tt │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── ug │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── uk │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── ur │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── uz │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── vi │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── wo │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── x3 │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── x4 │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── xh │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── xx │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── yak │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── yi │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── yo │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── zh1 │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── zh2 │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ ├── msg (1).h │ └── msg.h └── zu │ ├── dictionary.h │ ├── extra.dict │ ├── extra_reverse.dict │ └── msg.h ├── i18nsel ├── lexer.c ├── makefile ├── makefile.bsd ├── makefile.haiku ├── makefile.mac ├── makefile.wasm ├── makefile.win32 ├── makefile.win64 ├── memory.c ├── misc ├── distrib.sh ├── distrib │ └── assets │ │ ├── demo1.ctr │ │ ├── demo10.ctr │ │ ├── demo11.ctr │ │ ├── demo2.ctr │ │ ├── demo3.ctr │ │ ├── demo4.ctr │ │ ├── demo5.ctr │ │ ├── demo6.ctr │ │ ├── demo7.ctr │ │ ├── demo8.ctr │ │ ├── demo9.ctr │ │ ├── export.bat │ │ ├── export.desktop │ │ ├── export.sh │ │ ├── nl │ │ ├── Shortcake.ttf │ │ ├── astronauten.ctr │ │ ├── geluidje.wav │ │ ├── ruimte.jpg │ │ ├── voorbeeld_bal.ctr │ │ ├── voorbeeld_ballon.ctr │ │ ├── voorbeeld_boot.ctr │ │ ├── voorbeeld_cirkel.ctr │ │ ├── voorbeeld_eerste.ctr │ │ ├── voorbeeld_ffi.ctr │ │ ├── voorbeeld_http.ctr │ │ ├── voorbeeld_logboek.ctr │ │ ├── voorbeeld_muis.ctr │ │ ├── voorbeeld_schieten.ctr │ │ ├── voorbeeld_tekst.ctr │ │ ├── voorbeeld_vis.ctr │ │ └── voorbeeld_wandelaar.ctr │ │ └── pak-o-mat.ctr ├── distrib_osx.sh ├── docs │ ├── docgen2.ctr │ ├── example.tpl.html │ └── handleiding_citrine_nl.odt ├── export │ ├── android │ │ ├── Android.mk │ │ ├── AndroidManifest.xml │ │ ├── Application.mk │ │ ├── MainActivity.java │ │ ├── MediaHelperAndroid.java │ │ ├── README.txt │ │ └── citrine.c │ ├── assets │ │ ├── Citrine.app │ │ │ └── Contents │ │ │ │ └── Info.plist │ │ ├── icon.png │ │ └── stream_wrapper.sh │ ├── mac │ │ └── export_mac_generic.sh │ ├── pc │ │ └── export.sh │ └── steamdeck │ │ ├── export.sh │ │ ├── org.citrinelang.yml │ │ └── steamtrine.desktop ├── opt │ └── preface.h ├── supplement │ ├── en │ ├── es │ ├── nl │ ├── pt │ └── ru └── translator │ ├── README.txt │ ├── dictionary.h │ ├── media.h │ └── msg.h ├── mk.sh ├── mods ├── jsmn │ └── .gitkeep ├── json │ └── .gitkeep ├── jsonhy │ └── .gitkeep ├── jsonnl │ └── .gitkeep ├── koffiezetter │ └── .gitkeep ├── media │ └── .gitkeep ├── password │ └── .gitkeep ├── percolator │ └── README.md ├── request │ └── .gitkeep └── verzoek │ └── .gitkeep ├── parser.c ├── plugins ├── jsmn │ ├── i18n │ │ ├── en │ │ │ └── dictionary.h │ │ ├── hy │ │ │ └── dictionary.h │ │ └── nl │ │ │ └── dictionary.h │ ├── jsmn.c │ ├── jsmn │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── example │ │ │ ├── jsondump.c │ │ │ └── simple.c │ │ ├── jsmn.c │ │ ├── jsmn.h │ │ ├── libjsmn.a │ │ ├── library.json │ │ └── test │ │ │ ├── test.h │ │ │ ├── tests.c │ │ │ └── testutil.h │ └── makefile ├── media │ ├── 3RDPARTY_LICENSE │ ├── assets │ │ ├── citrine.rc │ │ ├── citrine.res │ │ ├── citrine.sh │ │ ├── control │ │ └── license.txt │ ├── citrine.iss │ ├── citrine.rc │ ├── dicts.sh │ ├── examples │ │ ├── demo1.ctr │ │ ├── demo10.ctr │ │ ├── demo11.ctr │ │ ├── demo2.ctr │ │ ├── demo3.ctr │ │ ├── demo4.ctr │ │ ├── demo5.ctr │ │ ├── demo6.ctr │ │ ├── demo7.ctr │ │ ├── demo8.ctr │ │ ├── demo9.ctr │ │ └── demos.ctr │ ├── i18n │ │ ├── cs │ │ │ ├── extra.dict │ │ │ └── media.h │ │ ├── de │ │ │ ├── extra.dict │ │ │ └── media.h │ │ ├── en │ │ │ ├── extra.dict │ │ │ ├── media.h │ │ │ └── translation_kit_media.txt │ │ ├── es │ │ │ ├── extra.dict │ │ │ └── media.h │ │ ├── fa │ │ │ ├── extra.dict │ │ │ └── media.h │ │ ├── fr │ │ │ ├── extra.dict │ │ │ └── media.h │ │ ├── fy │ │ │ ├── extra.dict │ │ │ └── media.h │ │ ├── hi │ │ │ ├── extra.dict │ │ │ └── media.h │ │ ├── id │ │ │ ├── extra.dict │ │ │ └── media.h │ │ ├── it │ │ │ ├── extra.dict │ │ │ └── media.h │ │ ├── nl │ │ │ ├── extra.dict │ │ │ ├── extra.txt │ │ │ ├── media.h │ │ │ └── media.txt │ │ ├── no │ │ │ ├── extra.dict │ │ │ └── media.h │ │ ├── pl │ │ │ ├── extra.dict │ │ │ └── media.h │ │ ├── pt_br │ │ │ ├── extra.dict │ │ │ └── media.h │ │ ├── ru │ │ │ ├── extra.dict │ │ │ ├── media.h │ │ │ └── media.txt │ │ ├── uz │ │ │ ├── extra.dict │ │ │ └── media.h │ │ └── zh2 │ │ │ ├── Chinese.isl │ │ │ ├── extra.dict │ │ │ └── media.h │ ├── jsmn.c │ ├── jsmn.h │ ├── makefile │ ├── makefile.bsd │ ├── makefile.haiku │ ├── makefile.mac │ ├── makefile.test │ ├── makefile.testwin64 │ ├── makefile.win32 │ ├── makefile.win64 │ ├── media.c │ ├── mock.h │ └── passw.c ├── mock │ └── percolator │ │ ├── dictionary.h │ │ ├── makefile │ │ ├── makefile.mac │ │ ├── makefile.win64 │ │ ├── msg.h │ │ └── percolator.c └── request │ ├── ccgi-1.2 │ ├── CHANGES │ ├── COPYING │ ├── Makefile │ ├── README │ ├── ccgi.c │ ├── ccgi.h │ ├── crypt.c │ ├── doc.html │ ├── examples │ │ ├── Makefile │ │ ├── README │ │ ├── dump.cgi.c │ │ └── dump.html │ ├── libccgi.a │ ├── prefork.c │ └── t │ │ ├── Makefile │ │ ├── test.c │ │ └── test.sh │ ├── i18n │ ├── nl │ │ ├── dictionary.h │ │ └── msg.h │ └── us │ │ ├── dictionary.h │ │ └── msg.h │ ├── makefile │ ├── makefile.server │ └── request.c ├── portability.c ├── runtests.sh ├── siphash.c ├── siphash.h ├── system.c ├── test.c ├── tests ├── assets │ ├── asset_mod_for_ast.ctr │ ├── includetesten.ctr │ ├── includetestnl.ctr │ ├── nullbyte.txt │ ├── scrambler.ctr │ └── stdin_test.ctr └── en │ ├── exp │ ├── test0001en.exp │ ├── test0002en.exp │ ├── test0003en.exp │ ├── test0004en.exp │ ├── test0005en.exp │ ├── test0006en.exp │ ├── test0007en.exp │ ├── test0008en.exp │ ├── test0009en.exp │ ├── test0010en.exp │ ├── test0011en.exp │ ├── test0012en.exp │ ├── test0013en.exp │ ├── test0014en.exp │ ├── test0015en.exp │ ├── test0016en.exp │ ├── test0017en.exp │ ├── test0018en.exp │ ├── test0019en.exp │ ├── test0020en.exp │ ├── test0021en.exp │ ├── test0022en.exp │ ├── test0023en.exp │ ├── test0024en.exp │ ├── test0025en.exp │ ├── test0026en.exp │ ├── test0027en.exp │ ├── test0028en.exp │ ├── test0029en.exp │ ├── test0030en.exp │ ├── test0031en.exp │ ├── test0032en.exp │ ├── test0033en.exp │ ├── test0034en.exp │ ├── test0035en.exp │ ├── test0036en.exp │ ├── test0037en.exp │ ├── test0038en.exp │ ├── test0039en.exp │ ├── test0040en.exp │ ├── test0041en.exp │ ├── test0042en.exp │ ├── test0043en.exp │ ├── test0044en.exp │ ├── test0045en.exp │ ├── test0046en.exp │ ├── test0047en.exp │ ├── test0048en.exp │ ├── test0049en.exp │ ├── test0050en.exp │ ├── test0051en.exp │ ├── test0052en.exp │ ├── test0053en.exp │ ├── test0054en.exp │ ├── test0055en.exp │ ├── test0056en.exp │ ├── test0057en.exp │ ├── test0058en.exp │ ├── test0059en.exp │ ├── test0060en.exp │ ├── test0061en.exp │ ├── test0062en.exp │ ├── test0063en.exp │ ├── test0064en.exp │ ├── test0065en.exp │ ├── test0066en.exp │ ├── test0067en.exp │ ├── test0068en.exp │ ├── test0069en.exp │ ├── test0070en.exp │ ├── test0071en.exp │ ├── test0072en.exp │ ├── test0073en.exp │ ├── test0074en.exp │ ├── test0075en.exp │ ├── test0076en.exp │ ├── test0077en.exp │ ├── test0078en.exp │ ├── test0079en.exp │ ├── test0080en.exp │ ├── test0081en.exp │ ├── test0082en.exp │ ├── test0083en.exp │ ├── test0084en.exp │ ├── test0085en.exp │ ├── test0086en.exp │ ├── test0087en.exp │ ├── test0088en.exp │ ├── test0089en.exp │ ├── test0090en.exp │ ├── test0091en.exp │ ├── test0092en.exp │ ├── test0093en.exp │ ├── test0094en.exp │ ├── test0095en.exp │ ├── test0096en.exp │ ├── test0097en.exp │ ├── test0098en.exp │ ├── test0099en.exp │ ├── test0100en.exp │ ├── test0101en.exp │ ├── test0102en.exp │ ├── test0103en.exp │ ├── test0104en.exp │ ├── test0105en.exp │ ├── test0106en.exp │ ├── test0107en.exp │ ├── test0108en.exp │ ├── test0109en.exp │ ├── test0110en.exp │ ├── test0111en.exp │ ├── test0112en.exp │ ├── test0113en.exp │ ├── test0114en.exp │ ├── test0115en.exp │ ├── test0116en.exp │ ├── test0117en.exp │ ├── test0118en.exp │ ├── test0119en.exp │ ├── test0120en.exp │ ├── test0121en.exp │ ├── test0122en.exp │ ├── test0123en.exp │ ├── test0124en.exp │ ├── test0125en.exp │ ├── test0126en.exp │ ├── test0127en.exp │ ├── test0128en.exp │ ├── test0129en.exp │ ├── test0130en.exp │ ├── test0131en.exp │ ├── test0132en.exp │ ├── test0133en.exp │ ├── test0134en.exp │ ├── test0135en.exp │ ├── test0136en.exp │ ├── test0137en.exp │ ├── test0138en.exp │ ├── test0139en.exp │ ├── test0140en.exp │ ├── test0141en.exp │ ├── test0142en.exp │ ├── test0143en.exp │ ├── test0144en.exp │ ├── test0145en.exp │ ├── test0146en.exp │ ├── test0147en.exp │ ├── test0148en.exp │ ├── test0149en.exp │ ├── test0150en.exp │ ├── test0151en.exp │ ├── test0152en.exp │ ├── test0153en.exp │ ├── test0154en.exp │ ├── test0155en.exp │ ├── test0156en.exp │ ├── test0157en.exp │ ├── test0158en.exp │ ├── test0159en.exp │ ├── test0160en.exp │ ├── test0161en.exp │ ├── test0162en.exp │ ├── test0163en.exp │ ├── test0164en.exp │ ├── test0165en.exp │ ├── test0166en.exp │ ├── test0167en.exp │ ├── test0168en.exp │ ├── test0169en.exp │ ├── test0170en.exp │ ├── test0171en.exp │ ├── test0172en.exp │ ├── test0173en.exp │ ├── test0174en.exp │ ├── test0175en.exp │ ├── test0176en.exp │ ├── test0177en.exp │ ├── test0178en.exp │ ├── test0179en.exp │ ├── test0180en.exp │ ├── test0181en.exp │ ├── test0182en.exp │ ├── test0183en.exp │ ├── test0184en.exp │ ├── test0185en.exp │ ├── test0186en.exp │ ├── test0187en.exp │ ├── test0188en.exp │ ├── test0189en.exp │ ├── test0190en.exp │ ├── test0191en.exp │ ├── test0192en.exp │ ├── test0193en.exp │ ├── test0194en.exp │ ├── test0195en.exp │ ├── test0196en.exp │ ├── test0197en.exp │ ├── test0198en.exp │ ├── test0199en.exp │ ├── test0200en.exp │ ├── test0201en.exp │ ├── test0202en.exp │ ├── test0203en.exp │ ├── test0204en.exp │ ├── test0205en.exp │ ├── test0206en.exp │ ├── test0207en.exp │ ├── test0208en.exp │ ├── test0209en.exp │ ├── test0210en.exp │ ├── test0211en.exp │ ├── test0212en.exp │ ├── test0213en.exp │ ├── test0214en.exp │ ├── test0215en.exp │ ├── test0216en.exp │ ├── test0217en.exp │ ├── test0218en.exp │ ├── test0219en.exp │ ├── test0220en.exp │ ├── test0221en.exp │ ├── test0222en.exp │ ├── test0223en.exp │ ├── test0224en.exp │ ├── test0225en.exp │ ├── test0226en.exp │ ├── test0227en.exp │ ├── test0228en.exp │ ├── test0229en.exp │ ├── test0230en.exp │ ├── test0231en.exp │ ├── test0232en.exp │ ├── test0233en.exp │ ├── test0234en.exp │ ├── test0235en.exp │ ├── test0236en.exp │ ├── test0237en.exp │ ├── test0238en.exp │ ├── test0239en.exp │ ├── test0240en.exp │ ├── test0241en.exp │ ├── test0242en.exp │ ├── test0243en.exp │ ├── test0244en.exp │ ├── test0245en.exp │ ├── test0246en.exp │ ├── test0247en.exp │ ├── test0248en.exp │ ├── test0249en.exp │ ├── test0250en.exp │ ├── test0251en.exp │ ├── test0252en.exp │ ├── test0253en.exp │ ├── test0254en.exp │ ├── test0255en.exp │ ├── test0256en.exp │ ├── test0257en.exp │ ├── test0258en.exp │ ├── test0259.exp │ ├── test0259en.exp │ ├── test0260en.exp │ ├── test0261en.exp │ ├── test0262en.exp │ ├── test0263en.exp │ ├── test0264en.exp │ ├── test0265en.exp │ ├── test0266en.exp │ ├── test0267en.exp │ ├── test0268en.exp │ ├── test0269en.exp │ ├── test0270en.exp │ ├── test0271en.exp │ ├── test0272en.exp │ ├── test0273en.exp │ ├── test0274en.exp │ ├── test0275en.exp │ ├── test0276en.exp │ ├── test0277en.exp │ ├── test0278en.exp │ ├── test0279en.exp │ ├── test0280en.exp │ ├── test0281en.exp │ ├── test0282en.exp │ ├── test0283en.exp │ ├── test0284en.exp │ ├── test0285en.exp │ ├── test0286en.exp │ ├── test0287en.exp │ ├── test0288en.exp │ ├── test0289en.exp │ ├── test0290en.exp │ ├── test0291en.exp │ ├── test0292en.exp │ ├── test0293en.exp │ ├── test0294en.exp │ ├── test0295en.exp │ ├── test0296en.exp │ ├── test0297en.exp │ ├── test0298en.exp │ ├── test0299en.exp │ ├── test0300en.exp │ ├── test0301en.exp │ ├── test0302en.exp │ ├── test0303en.exp │ ├── test0304en.exp │ ├── test0305en.exp │ ├── test0306en.exp │ ├── test0307en.exp │ ├── test0308en.exp │ ├── test0309en.exp │ ├── test0310en.exp │ ├── test0311en.exp │ ├── test0312en.exp │ ├── test0313en.exp │ ├── test0314en.exp │ ├── test0315en.exp │ ├── test0316en.exp │ ├── test0317en.exp │ ├── test0318en.exp │ ├── test0319en.exp │ ├── test0320en.exp │ ├── test0321en.exp │ ├── test0322en.exp │ ├── test0323en.exp │ ├── test0324en.exp │ ├── test0325en.exp │ ├── test0326en.exp │ ├── test0327en.exp │ ├── test0328en.exp │ ├── test0329en.exp │ ├── test0330en.exp │ ├── test0331en.exp │ ├── test0332en.exp │ ├── test0333en.exp │ ├── test0334en.exp │ ├── test0335en.exp │ ├── test0336en.exp │ ├── test0337en.exp │ ├── test0338en.exp │ ├── test0339en.exp │ ├── test0340en.exp │ ├── test0341en.exp │ ├── test0342en.exp │ ├── test0343en.exp │ ├── test0344en.exp │ ├── test0345en.exp │ ├── test0346en.exp │ ├── test0347en.exp │ ├── test0348en.exp │ ├── test0349en.exp │ ├── test0350en.exp │ ├── test0351en.exp │ ├── test0352en.exp │ ├── test0353en.exp │ ├── test0354en.exp │ ├── test0355en.exp │ ├── test0356en.exp │ ├── test0357en.exp │ ├── test0358en.exp │ ├── test0359en.exp │ ├── test0360en.exp │ ├── test0361en.exp │ ├── test0362en.exp │ ├── test0363en.exp │ ├── test0364en.exp │ ├── test0365en.exp │ ├── test0366en.exp │ ├── test0367en.exp │ ├── test0368en.exp │ ├── test0369en.exp │ ├── test0370en.exp │ ├── test0371en.exp │ ├── test0372en.exp │ ├── test0373en.exp │ ├── test0374en.exp │ ├── test0375en.exp │ ├── test0376en.exp │ ├── test0377en.exp │ ├── test0378en.exp │ ├── test0379en.exp │ ├── test0380en.exp │ ├── test0381en.exp │ ├── test0382en.exp │ ├── test0383en.exp │ ├── test0384en.exp │ ├── test0385en.exp │ ├── test0386en.exp │ ├── test0387en.exp │ ├── test0388en.exp │ ├── test0389en.exp │ ├── test0390en.exp │ ├── test0391en.exp │ ├── test0392en.exp │ ├── test0393en.exp │ ├── test0394en.exp │ ├── test0395en.exp │ ├── test0396en.exp │ ├── test0397en.exp │ ├── test0398en.exp │ ├── test0399en.exp │ ├── test0400en.exp │ ├── test0401en.exp │ ├── test0402en.exp │ ├── test0403en.exp │ ├── test0404en.exp │ ├── test0405en.exp │ ├── test0406en.exp │ ├── test0407en.exp │ ├── test0408en.exp │ ├── test0409en.exp │ ├── test0410en.exp │ ├── test0411en.exp │ ├── test0412en.exp │ ├── test0413en.exp │ ├── test0414en.exp │ ├── test0415en.exp │ ├── test0416en.exp │ ├── test0417en.exp │ ├── test0418en.exp │ ├── test0419en.exp │ ├── test0420en.exp │ ├── test0421en.exp │ ├── test0422en.exp │ ├── test0423en.exp │ ├── test0424en.exp │ ├── test0425en.exp │ ├── test0426en.exp │ ├── test0427en.exp │ ├── test0428en.exp │ ├── test0429en.exp │ ├── test0430en.exp │ ├── test0431en.exp │ ├── test0432en.exp │ ├── test0433en.exp │ ├── test0434en.exp │ ├── test0435en.exp │ ├── test0436en.exp │ ├── test0437en.exp │ ├── test0438en.exp │ ├── test0439en.exp │ ├── test0440en.exp │ ├── test0441en.exp │ ├── test0442en.exp │ ├── test0443en.exp │ ├── test0444en.exp │ ├── test0445en.exp │ ├── test0446en.exp │ ├── test0447en.exp │ ├── test0448en.exp │ ├── test0449en.exp │ ├── test0450en.exp │ ├── test0451en.exp │ ├── test0452en.exp │ ├── test0453en.exp │ ├── test0454en.exp │ ├── test0455en.exp │ ├── test0456en.exp │ ├── test0457en.exp │ ├── test0458en.exp │ ├── test0459en.exp │ ├── test0460en.exp │ ├── test0461en.exp │ ├── test0462en.exp │ ├── test0463en.exp │ ├── test0464en.exp │ ├── test0465en.exp │ ├── test0466en.exp │ ├── test0467en.exp │ ├── test0468en.exp │ ├── test0469en.exp │ ├── test0470en.exp │ ├── test0471en.exp │ ├── test0472en.exp │ ├── test0473en.exp │ ├── test0474en.exp │ ├── test0475en.exp │ ├── test0476en.exp │ ├── test0477en.exp │ ├── test0478en.exp │ ├── test0479en.exp │ ├── test0480en.exp │ ├── test0481en.exp │ ├── test0482en.exp │ ├── test0483en.exp │ ├── test0484en.exp │ ├── test0485en.exp │ ├── test0486en.exp │ ├── test0487en.exp │ ├── test0488en.exp │ ├── test0489en.exp │ ├── test0490en.exp │ ├── test0491en.exp │ ├── test0492en.exp │ ├── test0493en.exp │ ├── test0494en.exp │ ├── test0495en.exp │ ├── test0496en.exp │ ├── test0497en.exp │ ├── test0498en.exp │ ├── test0499en.exp │ ├── test0500en.exp │ ├── test0501en.exp │ ├── test0502en.exp │ ├── test0503en.exp │ ├── test0504en.exp │ ├── test0505en.exp │ ├── test0506en.exp │ ├── test0507en.exp │ ├── test0508en.exp │ ├── test0509en.exp │ ├── test0510en.exp │ ├── test0511en.exp │ ├── test0512en.exp │ ├── test0513en.exp │ ├── test0514en.exp │ ├── test0515en.exp │ ├── test0516en.exp │ ├── test0517en.exp │ ├── test0518en.exp │ ├── test0519en.exp │ ├── test0520en.exp │ ├── test0521en.exp │ ├── test0522en.exp │ ├── test0523en.exp │ ├── test0524en.exp │ ├── test0525en.exp │ ├── test0526en.exp │ ├── test0527en.exp │ ├── test0528en.exp │ ├── test0529en.exp │ ├── test0530en.exp │ ├── test0531en.exp │ ├── test0532en.exp │ ├── test0533en.exp │ ├── test0534en.exp │ ├── test0535en.exp │ ├── test0536en.exp │ ├── test0537en.exp │ ├── test0538en.exp │ ├── test0539en.exp │ ├── test0540en.exp │ ├── test0541en.exp │ ├── test0542en.exp │ ├── test0543en.exp │ ├── test0544en.exp │ ├── test0545en.exp │ ├── test0546en.exp │ ├── test0547en.exp │ ├── test0548en.exp │ ├── test0549en.exp │ ├── test0550en.exp │ ├── test0551en.exp │ ├── test0552en.exp │ ├── test0553en.exp │ ├── test0554en.exp │ ├── test0555en.exp │ ├── test0556en.exp │ ├── test0557en.exp │ ├── test0558en.exp │ ├── test0559en.exp │ ├── test0560en.exp │ ├── test0561en.exp │ ├── test0562en.exp │ ├── test0563en.exp │ ├── test0564en.exp │ ├── test0565en.exp │ ├── test0566en.exp │ ├── test0567en.exp │ ├── test0568en.exp │ ├── test0569en.exp │ ├── test0570en.exp │ ├── test0571en.exp │ ├── test0572en.exp │ ├── test0573en.exp │ ├── test0574en.exp │ ├── test0575en.exp │ ├── test0576en.exp │ ├── test0577en.exp │ ├── test0578en.exp │ ├── test0579en.exp │ ├── test0580en.exp │ ├── test0581en.exp │ ├── test0582en.exp │ ├── test0583en.exp │ ├── test0584en.exp │ ├── test0585en.exp │ ├── test0586en.exp │ ├── test0587en.exp │ ├── test0588en.exp │ ├── test0589en.exp │ ├── test0590en.exp │ ├── test0591en.exp │ ├── test0592en.exp │ ├── test0593en.exp │ ├── test0594en.exp │ ├── test0595en.exp │ ├── test0596en.exp │ ├── test0597en.exp │ ├── test0598en.exp │ ├── test0599en.exp │ ├── test0600en.exp │ ├── test0601en.exp │ ├── test0602en.exp │ ├── test0603en.exp │ ├── test0604en.exp │ ├── test0605en.exp │ ├── test0606en.exp │ ├── test0607en.exp │ ├── test0608en.exp │ ├── test0609en.exp │ ├── test0610en.exp │ ├── test0611en.exp │ ├── test0612en.exp │ ├── test0613en.exp │ ├── test0614en.exp │ ├── test0615en.exp │ ├── test0616en.exp │ ├── test0617en.exp │ ├── test0618en.exp │ ├── test0619en.exp │ ├── test0620en.exp │ ├── test0621en.exp │ ├── test0622en.exp │ ├── test0623en.exp │ ├── test0624en.exp │ ├── test0625en.exp │ ├── test0626en.exp │ ├── test0627en.exp │ ├── test0628en.exp │ ├── test0629en.exp │ ├── test0630en.exp │ ├── test0631en.exp │ ├── test0632en.exp │ ├── test0633en.exp │ ├── test0634en.exp │ ├── test0635en.exp │ ├── test0636en.exp │ ├── test0637en.exp │ ├── test0638en.exp │ ├── test0639en.exp │ ├── test0640en.exp │ ├── test0641en.exp │ ├── test0642en.exp │ └── test0643en.exp │ ├── t-0001.ctr │ ├── t-0002.ctr │ ├── t-0003.ctr │ ├── t-0004.ctr │ ├── t-0005.ctr │ ├── t-0006.ctr │ ├── t-0007.ctr │ ├── t-0008.ctr │ ├── t-0009.ctr │ ├── t-0010.ctr │ ├── t-0011.ctr │ ├── t-0012.ctr │ ├── t-0013.ctr │ ├── t-0014.ctr │ ├── t-0015.ctr │ ├── t-0016.ctr │ ├── t-0017.ctr │ ├── t-0018.ctr │ ├── t-0019.ctr │ ├── t-0020.ctr │ ├── t-0021.ctr │ ├── t-0022.ctr │ ├── t-0023.ctr │ ├── t-0024.ctr │ ├── t-0025.ctr │ ├── t-0026.ctr │ ├── t-0027.ctr │ ├── t-0028.ctr │ ├── t-0029.ctr │ ├── t-0030.ctr │ ├── t-0031.ctr │ ├── t-0032.ctr │ ├── t-0033.ctr │ ├── t-0034.ctr │ ├── t-0035.ctr │ ├── t-0036.ctr │ ├── t-0037.ctr │ ├── t-0038.ctr │ ├── t-0039.ctr │ ├── t-0040.ctr │ ├── t-0041.ctr │ ├── t-0042.ctr │ ├── t-0043.ctr │ ├── t-0044.ctr │ ├── t-0045.ctr │ ├── t-0046.ctr │ ├── t-0047.ctr │ ├── t-0048.ctr │ ├── t-0049.ctr │ ├── t-0050.ctr │ ├── t-0051.ctr │ ├── t-0052.ctr │ ├── t-0053.ctr │ ├── t-0054.ctr │ ├── t-0055.ctr │ ├── t-0056.ctr │ ├── t-0057.ctr │ ├── t-0058.ctr │ ├── t-0059.ctr │ ├── t-0060.ctr │ ├── t-0061.ctr │ ├── t-0062.ctr │ ├── t-0063.ctr │ ├── t-0064.ctr │ ├── t-0065.ctr │ ├── t-0066.ctr │ ├── t-0067.ctr │ ├── t-0068.ctr │ ├── t-0069.ctr │ ├── t-0070.ctr │ ├── t-0071.ctr │ ├── t-0072.ctr │ ├── t-0073.ctr │ ├── t-0074.ctr │ ├── t-0075.ctr │ ├── t-0076.ctr │ ├── t-0077.ctr │ ├── t-0078.ctr │ ├── t-0079.ctr │ ├── t-0080.ctr │ ├── t-0081.ctr │ ├── t-0082.ctr │ ├── t-0083.ctr │ ├── t-0084.ctr │ ├── t-0085.ctr │ ├── t-0086.ctr │ ├── t-0087.ctr │ ├── t-0088.ctr │ ├── t-0089.ctr │ ├── t-0090.ctr │ ├── t-0091.ctr │ ├── t-0092.ctr │ ├── t-0093.ctr │ ├── t-0094.ctr │ ├── t-0095.ctr │ ├── t-0096.ctr │ ├── t-0097.ctr │ ├── t-0098.ctr │ ├── t-0099.ctr │ ├── t-0100.ctr │ ├── t-0101.ctr │ ├── t-0102.ctr │ ├── t-0103.ctr │ ├── t-0104.ctr │ ├── t-0105.ctr │ ├── t-0106.ctr │ ├── t-0107.ctr │ ├── t-0108.ctr │ ├── t-0109.ctr │ ├── t-0110.ctr │ ├── t-0111.ctr │ ├── t-0112.ctr │ ├── t-0113.ctr │ ├── t-0114.ctr │ ├── t-0115.ctr │ ├── t-0116.ctr │ ├── t-0117.ctr │ ├── t-0118.ctr │ ├── t-0119.ctr │ ├── t-0120.ctr │ ├── t-0121.ctr │ ├── t-0122.ctr │ ├── t-0123.ctr │ ├── t-0124.ctr │ ├── t-0125.ctr │ ├── t-0126.ctr │ ├── t-0127.ctr │ ├── t-0128.ctr │ ├── t-0129.ctr │ ├── t-0130.ctr │ ├── t-0131.ctr │ ├── t-0132.ctr │ ├── t-0133.ctr │ ├── t-0134.ctr │ ├── t-0135.ctr │ ├── t-0136.ctr │ ├── t-0137.ctr │ ├── t-0138.ctr │ ├── t-0139.ctr │ ├── t-0140.ctr │ ├── t-0141.ctr │ ├── t-0142.ctr │ ├── t-0143.ctr │ ├── t-0144.ctr │ ├── t-0145.ctr │ ├── t-0146.ctr │ ├── t-0147.ctr │ ├── t-0148.ctr │ ├── t-0149.ctr │ ├── t-0150.ctr │ ├── t-0151.ctr │ ├── t-0152.ctr │ ├── t-0153.ctr │ ├── t-0154.ctr │ ├── t-0155.ctr │ ├── t-0156.ctr │ ├── t-0157.ctr │ ├── t-0158.ctr │ ├── t-0159.ctr │ ├── t-0160.ctr │ ├── t-0161.ctr │ ├── t-0162.ctr │ ├── t-0163.ctr │ ├── t-0164.ctr │ ├── t-0165.ctr │ ├── t-0166.ctr │ ├── t-0167.ctr │ ├── t-0168.ctr │ ├── t-0169.ctr │ ├── t-0170.ctr │ ├── t-0171.ctr │ ├── t-0172.ctr │ ├── t-0173.ctr │ ├── t-0174.ctr │ ├── t-0175.ctr │ ├── t-0176.ctr │ ├── t-0177.ctr │ ├── t-0178.ctr │ ├── t-0179.ctr │ ├── t-0180.ctr │ ├── t-0181.ctr │ ├── t-0182.ctr │ ├── t-0183.ctr │ ├── t-0184.ctr │ ├── t-0185.ctr │ ├── t-0186.ctr │ ├── t-0187.ctr │ ├── t-0188.ctr │ ├── t-0189.ctr │ ├── t-0190.ctr │ ├── t-0191.ctr │ ├── t-0192.ctr │ ├── t-0193.ctr │ ├── t-0194.ctr │ ├── t-0195.ctr │ ├── t-0196.ctr │ ├── t-0197.ctr │ ├── t-0198.ctr │ ├── t-0199.ctr │ ├── t-0200.ctr │ ├── t-0201.ctr │ ├── t-0202.ctr │ ├── t-0203.ctr │ ├── t-0204.ctr │ ├── t-0205.ctr │ ├── t-0206.ctr │ ├── t-0207.ctr │ ├── t-0208.ctr │ ├── t-0209.ctr │ ├── t-0210.ctr │ ├── t-0211.ctr │ ├── t-0212.ctr │ ├── t-0213.ctr │ ├── t-0214.ctr │ ├── t-0215.ctr │ ├── t-0216.ctr │ ├── t-0217.ctr │ ├── t-0218.ctr │ ├── t-0219.ctr │ ├── t-0220.ctr │ ├── t-0221.ctr │ ├── t-0222.ctr │ ├── t-0223.ctr │ ├── t-0224.ctr │ ├── t-0225.ctr │ ├── t-0226.ctr │ ├── t-0227.ctr │ ├── t-0228.ctr │ ├── t-0229.ctr │ ├── t-0230.ctr │ ├── t-0231.ctr │ ├── t-0232.ctr │ ├── t-0233.ctr │ ├── t-0234.ctr │ ├── t-0235.ctr │ ├── t-0236.ctr │ ├── t-0237.ctr │ ├── t-0238.ctr │ ├── t-0239.ctr │ ├── t-0240.ctr │ ├── t-0241.ctr │ ├── t-0242.ctr │ ├── t-0243.ctr │ ├── t-0244.ctr │ ├── t-0245.ctr │ ├── t-0246.ctr │ ├── t-0247.ctr │ ├── t-0248.ctr │ ├── t-0249.ctr │ ├── t-0250.ctr │ ├── t-0251.ctr │ ├── t-0252.ctr │ ├── t-0253.ctr │ ├── t-0254.ctr │ ├── t-0255.ctr │ ├── t-0256.ctr │ ├── t-0257.ctr │ ├── t-0258.ctr │ ├── t-0259.ctr │ ├── t-0260.ctr │ ├── t-0261.ctr │ ├── t-0262.ctr │ ├── t-0263.ctr │ ├── t-0264.ctr │ ├── t-0265.ctr │ ├── t-0266.ctr │ ├── t-0267.ctr │ ├── t-0268.ctr │ ├── t-0269.ctr │ ├── t-0270.ctr │ ├── t-0271.ctr │ ├── t-0272.ctr │ ├── t-0273.ctr │ ├── t-0274.ctr │ ├── t-0275.ctr │ ├── t-0276.ctr │ ├── t-0277.ctr │ ├── t-0278.ctr │ ├── t-0279.ctr │ ├── t-0280.ctr │ ├── t-0281.ctr │ ├── t-0282.ctr │ ├── t-0283.ctr │ ├── t-0284.ctr │ ├── t-0285.ctr │ ├── t-0286.ctr │ ├── t-0287.ctr │ ├── t-0288.ctr │ ├── t-0289.ctr │ ├── t-0290.ctr │ ├── t-0291.ctr │ ├── t-0292.ctr │ ├── t-0293.ctr │ ├── t-0294.ctr │ ├── t-0295.ctr │ ├── t-0296.ctr │ ├── t-0297.ctr │ ├── t-0298.ctr │ ├── t-0299.ctr │ ├── t-0300.ctr │ ├── t-0301.ctr │ ├── t-0302.ctr │ ├── t-0303.ctr │ ├── t-0304.ctr │ ├── t-0305.ctr │ ├── t-0306.ctr │ ├── t-0307.ctr │ ├── t-0308.ctr │ ├── t-0309.ctr │ ├── t-0310.ctr │ ├── t-0311.ctr │ ├── t-0312.ctr │ ├── t-0313.ctr │ ├── t-0314.ctr │ ├── t-0315.ctr │ ├── t-0316.ctr │ ├── t-0317.ctr │ ├── t-0318.ctr │ ├── t-0319.ctr │ ├── t-0320.ctr │ ├── t-0321.ctr │ ├── t-0322.ctr │ ├── t-0323.ctr │ ├── t-0324.ctr │ ├── t-0325.ctr │ ├── t-0326.ctr │ ├── t-0327.ctr │ ├── t-0328.ctr │ ├── t-0329.ctr │ ├── t-0330.ctr │ ├── t-0331.ctr │ ├── t-0332.ctr │ ├── t-0333.ctr │ ├── t-0334.ctr │ ├── t-0335.ctr │ ├── t-0336.ctr │ ├── t-0337.ctr │ ├── t-0338.ctr │ ├── t-0339.ctr │ ├── t-0340.ctr │ ├── t-0341.ctr │ ├── t-0342.ctr │ ├── t-0343.ctr │ ├── t-0344.ctr │ ├── t-0345.ctr │ ├── t-0346.ctr │ ├── t-0347.ctr │ ├── t-0348.ctr │ ├── t-0349.ctr │ ├── t-0350.ctr │ ├── t-0351.ctr │ ├── t-0352.ctr │ ├── t-0353.ctr │ ├── t-0354.ctr │ ├── t-0355.ctr │ ├── t-0356.ctr │ ├── t-0357.ctr │ ├── t-0358.ctr │ ├── t-0359.ctr │ ├── t-0360.ctr │ ├── t-0361.ctr │ ├── t-0362.ctr │ ├── t-0363.ctr │ ├── t-0364.ctr │ ├── t-0365.ctr │ ├── t-0366.ctr │ ├── t-0367.ctr │ ├── t-0368.ctr │ ├── t-0369.ctr │ ├── t-0370.ctr │ ├── t-0371.ctr │ ├── t-0372.ctr │ ├── t-0373.ctr │ ├── t-0374.ctr │ ├── t-0375.ctr │ ├── t-0376.ctr │ ├── t-0377.ctr │ ├── t-0378.ctr │ ├── t-0379.ctr │ ├── t-0380.ctr │ ├── t-0381.ctr │ ├── t-0382.ctr │ ├── t-0383.ctr │ ├── t-0384.ctr │ ├── t-0385.ctr │ ├── t-0386.ctr │ ├── t-0387.ctr │ ├── t-0388.ctr │ ├── t-0389.ctr │ ├── t-0390.ctr │ ├── t-0391.ctr │ ├── t-0392.ctr │ ├── t-0393.ctr │ ├── t-0394.ctr │ ├── t-0395.ctr │ ├── t-0396.ctr │ ├── t-0397.ctr │ ├── t-0398.ctr │ ├── t-0399.ctr │ ├── t-0400.ctr │ ├── t-0401.ctr │ ├── t-0402.ctr │ ├── t-0403.ctr │ ├── t-0404.ctr │ ├── t-0405.ctr │ ├── t-0406.ctr │ ├── t-0407.ctr │ ├── t-0408.ctr │ ├── t-0409.ctr │ ├── t-0410.ctr │ ├── t-0411.ctr │ ├── t-0412.ctr │ ├── t-0413.ctr │ ├── t-0414.ctr │ ├── t-0415.ctr │ ├── t-0416.ctr │ ├── t-0417.ctr │ ├── t-0418.ctr │ ├── t-0419.ctr │ ├── t-0420.ctr │ ├── t-0421.ctr │ ├── t-0422.ctr │ ├── t-0423.ctr │ ├── t-0424.ctr │ ├── t-0425.ctr │ ├── t-0426.ctr │ ├── t-0427.ctr │ ├── t-0428.ctr │ ├── t-0429.ctr │ ├── t-0430.ctr │ ├── t-0431.ctr │ ├── t-0432.ctr │ ├── t-0433.ctr │ ├── t-0434.ctr │ ├── t-0435.ctr │ ├── t-0436.ctr │ ├── t-0437.ctr │ ├── t-0438.ctr │ ├── t-0439.ctr │ ├── t-0440.ctr │ ├── t-0441.ctr │ ├── t-0442.ctr │ ├── t-0443.ctr │ ├── t-0444.ctr │ ├── t-0445.ctr │ ├── t-0446.ctr │ ├── t-0447.ctr │ ├── t-0448.ctr │ ├── t-0449.ctr │ ├── t-0450.ctr │ ├── t-0451.ctr │ ├── t-0452.ctr │ ├── t-0453.ctr │ ├── t-0454.ctr │ ├── t-0455.ctr │ ├── t-0456.ctr │ ├── t-0457.ctr │ ├── t-0458.ctr │ ├── t-0459.ctr │ ├── t-0460.ctr │ ├── t-0461.ctr │ ├── t-0462.ctr │ ├── t-0463.ctr │ ├── t-0464.ctr │ ├── t-0465.ctr │ ├── t-0466.ctr │ ├── t-0467.ctr │ ├── t-0468.ctr │ ├── t-0469.ctr │ ├── t-0470.ctr │ ├── t-0471.ctr │ ├── t-0472.ctr │ ├── t-0473.ctr │ ├── t-0474.ctr │ ├── t-0475.ctr │ ├── t-0476.ctr │ ├── t-0477.ctr │ ├── t-0478.ctr │ ├── t-0479.ctr │ ├── t-0480.ctr │ ├── t-0481.ctr │ ├── t-0482.ctr │ ├── t-0483.ctr │ ├── t-0484.ctr │ ├── t-0485.ctr │ ├── t-0486.ctr │ ├── t-0487.ctr │ ├── t-0488.ctr │ ├── t-0489.ctr │ ├── t-0490.ctr │ ├── t-0491.ctr │ ├── t-0492.ctr │ ├── t-0493.ctr │ ├── t-0494.ctr │ ├── t-0495.ctr │ ├── t-0496.ctr │ ├── t-0497.ctr │ ├── t-0498.ctr │ ├── t-0499.ctr │ ├── t-0500.ctr │ ├── t-0501.ctr │ ├── t-0502.ctr │ ├── t-0503.ctr │ ├── t-0504.ctr │ ├── t-0505.ctr │ ├── t-0506.ctr │ ├── t-0507.ctr │ ├── t-0508.ctr │ ├── t-0509.ctr │ ├── t-0510.ctr │ ├── t-0511.ctr │ ├── t-0512.ctr │ ├── t-0513.ctr │ ├── t-0514.ctr │ ├── t-0515.ctr │ ├── t-0516.ctr │ ├── t-0517.ctr │ ├── t-0518.ctr │ ├── t-0519.ctr │ ├── t-0520.ctr │ ├── t-0521.ctr │ ├── t-0522.ctr │ ├── t-0523.ctr │ ├── t-0524.ctr │ ├── t-0525.ctr │ ├── t-0526.ctr │ ├── t-0527.ctr │ ├── t-0528.ctr │ ├── t-0529.ctr │ ├── t-0530.ctr │ ├── t-0531.ctr │ ├── t-0532.ctr │ ├── t-0533.ctr │ ├── t-0534.ctr │ ├── t-0535.ctr │ ├── t-0536.ctr │ ├── t-0537.ctr │ ├── t-0538.ctr │ ├── t-0539.ctr │ ├── t-0540.ctr │ ├── t-0541.ctr │ ├── t-0542.ctr │ ├── t-0543.ctr │ ├── t-0544.ctr │ ├── t-0545.ctr │ ├── t-0546.ctr │ ├── t-0547.ctr │ ├── t-0548.ctr │ ├── t-0549.ctr │ ├── t-0550.ctr │ ├── t-0551.ctr │ ├── t-0552.ctr │ ├── t-0553.ctr │ ├── t-0554.ctr │ ├── t-0555.ctr │ ├── t-0556.ctr │ ├── t-0557.ctr │ ├── t-0558.ctr │ ├── t-0559.ctr │ ├── t-0560.ctr │ ├── t-0561.ctr │ ├── t-0562.ctr │ ├── t-0563.ctr │ ├── t-0564.ctr │ ├── t-0565.ctr │ ├── t-0566.ctr │ ├── t-0567.ctr │ ├── t-0568.ctr │ ├── t-0569.ctr │ ├── t-0570.ctr │ ├── t-0571.ctr │ ├── t-0572.ctr │ ├── t-0573.ctr │ ├── t-0574.ctr │ ├── t-0575.ctr │ ├── t-0576.ctr │ ├── t-0577.ctr │ ├── t-0578.ctr │ ├── t-0579.ctr │ ├── t-0580.ctr │ ├── t-0581.ctr │ ├── t-0582.ctr │ ├── t-0583.ctr │ ├── t-0584.ctr │ ├── t-0585.ctr │ ├── t-0586.ctr │ ├── t-0587.ctr │ ├── t-0588.ctr │ ├── t-0589.ctr │ ├── t-0590.ctr │ ├── t-0591.ctr │ ├── t-0592.ctr │ ├── t-0593.ctr │ ├── t-0594.ctr │ ├── t-0595.ctr │ ├── t-0596.ctr │ ├── t-0597.ctr │ ├── t-0598.ctr │ ├── t-0599.ctr │ ├── t-0600.ctr │ ├── t-0601.ctr │ ├── t-0602.ctr │ ├── t-0603.ctr │ ├── t-0604.ctr │ ├── t-0605.ctr │ ├── t-0606.ctr │ ├── t-0607.ctr │ ├── t-0608.ctr │ ├── t-0609.ctr │ ├── t-0610.ctr │ ├── t-0611.ctr │ ├── t-0612.ctr │ ├── t-0613.ctr │ ├── t-0614.ctr │ ├── t-0615.ctr │ ├── t-0616.ctr │ ├── t-0617.ctr │ ├── t-0618.ctr │ ├── t-0619.ctr │ ├── t-0620.ctr │ ├── t-0621.ctr │ ├── t-0622.ctr │ ├── t-0623.ctr │ ├── t-0624.ctr │ ├── t-0625.ctr │ ├── t-0626.ctr │ ├── t-0627.ctr │ ├── t-0628.ctr │ ├── t-0629.ctr │ ├── t-0630.ctr │ ├── t-0631.ctr │ ├── t-0632.ctr │ ├── t-0633.ctr │ ├── t-0634.ctr │ ├── t-0635.ctr │ ├── t-0636.ctr │ ├── t-0637.ctr │ ├── t-0638.ctr │ ├── t-0639.ctr │ ├── t-0640.ctr │ ├── t-0641.ctr │ ├── t-0642.ctr │ └── t-0643.ctr ├── translator.c ├── utf8.c ├── util.c ├── walker.c └── world.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/README.md -------------------------------------------------------------------------------- /base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/base.c -------------------------------------------------------------------------------- /bin/Darwin/.gitkeep: -------------------------------------------------------------------------------- 1 | Used to store binaries 2 | -------------------------------------------------------------------------------- /bin/FreeBSD/.gitkeep: -------------------------------------------------------------------------------- 1 | Used to store binaries 2 | -------------------------------------------------------------------------------- /bin/Generic/.gitkeep: -------------------------------------------------------------------------------- 1 | Used to store binaries 2 | -------------------------------------------------------------------------------- /bin/Haiku/.gitkeep: -------------------------------------------------------------------------------- 1 | Used to store binaries 2 | -------------------------------------------------------------------------------- /bin/Linux/.gitkeep: -------------------------------------------------------------------------------- 1 | Used to store binaries 2 | -------------------------------------------------------------------------------- /bin/OpenBSD/.gitkeep: -------------------------------------------------------------------------------- 1 | Used to store binaries 2 | -------------------------------------------------------------------------------- /bin/Win32/.gitkeep: -------------------------------------------------------------------------------- 1 | Used to store binaries 2 | -------------------------------------------------------------------------------- /bin/Win64/.gitkeep: -------------------------------------------------------------------------------- 1 | Used to store binaries 2 | -------------------------------------------------------------------------------- /citrine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/citrine.c -------------------------------------------------------------------------------- /citrine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/citrine.h -------------------------------------------------------------------------------- /collections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/collections.c -------------------------------------------------------------------------------- /file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/file.c -------------------------------------------------------------------------------- /i18n/af/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/af/dictionary.h -------------------------------------------------------------------------------- /i18n/af/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/af/extra.dict -------------------------------------------------------------------------------- /i18n/af/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/af/msg.h -------------------------------------------------------------------------------- /i18n/am/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/am/dictionary.h -------------------------------------------------------------------------------- /i18n/am/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/am/extra.dict -------------------------------------------------------------------------------- /i18n/am/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/am/msg.h -------------------------------------------------------------------------------- /i18n/ar/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ar/dictionary.h -------------------------------------------------------------------------------- /i18n/ar/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ar/extra.dict -------------------------------------------------------------------------------- /i18n/ar/extra2.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ar/extra2.dict -------------------------------------------------------------------------------- /i18n/ar/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ar/msg.h -------------------------------------------------------------------------------- /i18n/az/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/az/dictionary.h -------------------------------------------------------------------------------- /i18n/az/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/az/extra.dict -------------------------------------------------------------------------------- /i18n/az/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/az/msg.h -------------------------------------------------------------------------------- /i18n/be/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/be/dictionary.h -------------------------------------------------------------------------------- /i18n/be/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/be/extra.dict -------------------------------------------------------------------------------- /i18n/be/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/be/msg.h -------------------------------------------------------------------------------- /i18n/bg/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/bg/dictionary.h -------------------------------------------------------------------------------- /i18n/bg/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/bg/extra.dict -------------------------------------------------------------------------------- /i18n/bg/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/bg/msg.h -------------------------------------------------------------------------------- /i18n/bn/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/bn/dictionary.h -------------------------------------------------------------------------------- /i18n/bn/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/bn/extra.dict -------------------------------------------------------------------------------- /i18n/bn/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/bn/msg.h -------------------------------------------------------------------------------- /i18n/bs/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/bs/dictionary.h -------------------------------------------------------------------------------- /i18n/bs/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/bs/extra.dict -------------------------------------------------------------------------------- /i18n/bs/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/bs/msg.h -------------------------------------------------------------------------------- /i18n/ca/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ca/dictionary.h -------------------------------------------------------------------------------- /i18n/ca/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ca/extra.dict -------------------------------------------------------------------------------- /i18n/ca/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ca/msg.h -------------------------------------------------------------------------------- /i18n/ceb/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ceb/dictionary.h -------------------------------------------------------------------------------- /i18n/ceb/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ceb/extra.dict -------------------------------------------------------------------------------- /i18n/ceb/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ceb/msg.h -------------------------------------------------------------------------------- /i18n/co/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/co/dictionary.h -------------------------------------------------------------------------------- /i18n/co/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/co/extra.dict -------------------------------------------------------------------------------- /i18n/co/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/co/msg.h -------------------------------------------------------------------------------- /i18n/cs/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/cs/dictionary.h -------------------------------------------------------------------------------- /i18n/cs/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/cs/extra.dict -------------------------------------------------------------------------------- /i18n/cs/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/cs/msg.h -------------------------------------------------------------------------------- /i18n/cy/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/cy/dictionary.h -------------------------------------------------------------------------------- /i18n/cy/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/cy/extra.dict -------------------------------------------------------------------------------- /i18n/cy/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/cy/msg.h -------------------------------------------------------------------------------- /i18n/da/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/da/dictionary.h -------------------------------------------------------------------------------- /i18n/da/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/da/extra.dict -------------------------------------------------------------------------------- /i18n/da/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/da/msg.h -------------------------------------------------------------------------------- /i18n/de/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/de/dictionary.h -------------------------------------------------------------------------------- /i18n/de/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/de/extra.dict -------------------------------------------------------------------------------- /i18n/de/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/de/msg.h -------------------------------------------------------------------------------- /i18n/el/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/el/dictionary.h -------------------------------------------------------------------------------- /i18n/el/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/el/extra.dict -------------------------------------------------------------------------------- /i18n/el/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/el/msg.h -------------------------------------------------------------------------------- /i18n/en/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/en/dictionary.h -------------------------------------------------------------------------------- /i18n/en/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/en/extra.dict -------------------------------------------------------------------------------- /i18n/en/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/en/msg.h -------------------------------------------------------------------------------- /i18n/es/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/es/dictionary.h -------------------------------------------------------------------------------- /i18n/es/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/es/extra.dict -------------------------------------------------------------------------------- /i18n/es/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/es/msg.h -------------------------------------------------------------------------------- /i18n/et/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/et/dictionary.h -------------------------------------------------------------------------------- /i18n/et/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/et/extra.dict -------------------------------------------------------------------------------- /i18n/et/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/et/msg.h -------------------------------------------------------------------------------- /i18n/eu/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/eu/dictionary.h -------------------------------------------------------------------------------- /i18n/eu/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/eu/extra.dict -------------------------------------------------------------------------------- /i18n/eu/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/eu/msg.h -------------------------------------------------------------------------------- /i18n/fa/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/fa/dictionary.h -------------------------------------------------------------------------------- /i18n/fa/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/fa/extra.dict -------------------------------------------------------------------------------- /i18n/fa/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/fa/msg.h -------------------------------------------------------------------------------- /i18n/fi/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/fi/dictionary.h -------------------------------------------------------------------------------- /i18n/fi/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/fi/extra.dict -------------------------------------------------------------------------------- /i18n/fi/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/fi/msg.h -------------------------------------------------------------------------------- /i18n/fr/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/fr/dictionary.h -------------------------------------------------------------------------------- /i18n/fr/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/fr/extra.dict -------------------------------------------------------------------------------- /i18n/fr/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/fr/msg.h -------------------------------------------------------------------------------- /i18n/fy/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/fy/dictionary.h -------------------------------------------------------------------------------- /i18n/fy/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/fy/extra.dict -------------------------------------------------------------------------------- /i18n/fy/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/fy/msg.h -------------------------------------------------------------------------------- /i18n/ga/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ga/dictionary.h -------------------------------------------------------------------------------- /i18n/ga/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ga/extra.dict -------------------------------------------------------------------------------- /i18n/ga/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ga/msg.h -------------------------------------------------------------------------------- /i18n/gd/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/gd/dictionary.h -------------------------------------------------------------------------------- /i18n/gd/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/gd/extra.dict -------------------------------------------------------------------------------- /i18n/gd/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/gd/msg.h -------------------------------------------------------------------------------- /i18n/gl/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/gl/dictionary.h -------------------------------------------------------------------------------- /i18n/gl/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/gl/extra.dict -------------------------------------------------------------------------------- /i18n/gl/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/gl/msg.h -------------------------------------------------------------------------------- /i18n/gu/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/gu/dictionary.h -------------------------------------------------------------------------------- /i18n/gu/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/gu/extra.dict -------------------------------------------------------------------------------- /i18n/gu/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/gu/msg.h -------------------------------------------------------------------------------- /i18n/ha/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ha/dictionary.h -------------------------------------------------------------------------------- /i18n/ha/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ha/extra.dict -------------------------------------------------------------------------------- /i18n/ha/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ha/msg.h -------------------------------------------------------------------------------- /i18n/haw/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/haw/dictionary.h -------------------------------------------------------------------------------- /i18n/haw/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/haw/extra.dict -------------------------------------------------------------------------------- /i18n/haw/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/haw/msg.h -------------------------------------------------------------------------------- /i18n/he/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/he/dictionary.h -------------------------------------------------------------------------------- /i18n/he/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/he/extra.dict -------------------------------------------------------------------------------- /i18n/he/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/he/msg.h -------------------------------------------------------------------------------- /i18n/hi/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/hi/dictionary.h -------------------------------------------------------------------------------- /i18n/hi/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/hi/extra.dict -------------------------------------------------------------------------------- /i18n/hi/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/hi/msg.h -------------------------------------------------------------------------------- /i18n/hmn/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/hmn/dictionary.h -------------------------------------------------------------------------------- /i18n/hmn/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/hmn/extra.dict -------------------------------------------------------------------------------- /i18n/hmn/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/hmn/msg.h -------------------------------------------------------------------------------- /i18n/hr/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/hr/dictionary.h -------------------------------------------------------------------------------- /i18n/hr/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/hr/extra.dict -------------------------------------------------------------------------------- /i18n/hr/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/hr/msg.h -------------------------------------------------------------------------------- /i18n/ht/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ht/dictionary.h -------------------------------------------------------------------------------- /i18n/ht/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ht/extra.dict -------------------------------------------------------------------------------- /i18n/ht/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ht/msg.h -------------------------------------------------------------------------------- /i18n/hu/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/hu/dictionary.h -------------------------------------------------------------------------------- /i18n/hu/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/hu/extra.dict -------------------------------------------------------------------------------- /i18n/hu/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/hu/msg.h -------------------------------------------------------------------------------- /i18n/hy/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/hy/dictionary.h -------------------------------------------------------------------------------- /i18n/hy/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/hy/extra.dict -------------------------------------------------------------------------------- /i18n/hy/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/hy/msg.h -------------------------------------------------------------------------------- /i18n/id/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/id/dictionary.h -------------------------------------------------------------------------------- /i18n/id/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/id/extra.dict -------------------------------------------------------------------------------- /i18n/id/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/id/msg.h -------------------------------------------------------------------------------- /i18n/ig/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ig/dictionary.h -------------------------------------------------------------------------------- /i18n/ig/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ig/extra.dict -------------------------------------------------------------------------------- /i18n/ig/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ig/msg.h -------------------------------------------------------------------------------- /i18n/is/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/is/dictionary.h -------------------------------------------------------------------------------- /i18n/is/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/is/extra.dict -------------------------------------------------------------------------------- /i18n/is/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/is/msg.h -------------------------------------------------------------------------------- /i18n/it/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/it/dictionary.h -------------------------------------------------------------------------------- /i18n/it/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/it/extra.dict -------------------------------------------------------------------------------- /i18n/it/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/it/msg.h -------------------------------------------------------------------------------- /i18n/ja/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ja/dictionary.h -------------------------------------------------------------------------------- /i18n/ja/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ja/extra.dict -------------------------------------------------------------------------------- /i18n/ja/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ja/msg.h -------------------------------------------------------------------------------- /i18n/jv/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/jv/dictionary.h -------------------------------------------------------------------------------- /i18n/jv/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/jv/extra.dict -------------------------------------------------------------------------------- /i18n/jv/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/jv/msg.h -------------------------------------------------------------------------------- /i18n/ka/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ka/dictionary.h -------------------------------------------------------------------------------- /i18n/ka/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ka/extra.dict -------------------------------------------------------------------------------- /i18n/ka/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ka/msg.h -------------------------------------------------------------------------------- /i18n/kk/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/kk/dictionary.h -------------------------------------------------------------------------------- /i18n/kk/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/kk/extra.dict -------------------------------------------------------------------------------- /i18n/kk/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/kk/msg.h -------------------------------------------------------------------------------- /i18n/km/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/km/dictionary.h -------------------------------------------------------------------------------- /i18n/km/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/km/extra.dict -------------------------------------------------------------------------------- /i18n/km/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/km/msg.h -------------------------------------------------------------------------------- /i18n/kn/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/kn/dictionary.h -------------------------------------------------------------------------------- /i18n/kn/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/kn/extra.dict -------------------------------------------------------------------------------- /i18n/kn/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/kn/msg.h -------------------------------------------------------------------------------- /i18n/ko/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ko/dictionary.h -------------------------------------------------------------------------------- /i18n/ko/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ko/extra.dict -------------------------------------------------------------------------------- /i18n/ko/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ko/msg.h -------------------------------------------------------------------------------- /i18n/ku/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ku/dictionary.h -------------------------------------------------------------------------------- /i18n/ku/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ku/extra.dict -------------------------------------------------------------------------------- /i18n/ku/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ku/msg.h -------------------------------------------------------------------------------- /i18n/ky/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ky/dictionary.h -------------------------------------------------------------------------------- /i18n/ky/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ky/extra.dict -------------------------------------------------------------------------------- /i18n/ky/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ky/msg.h -------------------------------------------------------------------------------- /i18n/lb/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/lb/dictionary.h -------------------------------------------------------------------------------- /i18n/lb/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/lb/extra.dict -------------------------------------------------------------------------------- /i18n/lb/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/lb/msg.h -------------------------------------------------------------------------------- /i18n/lo/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/lo/dictionary.h -------------------------------------------------------------------------------- /i18n/lo/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/lo/extra.dict -------------------------------------------------------------------------------- /i18n/lo/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/lo/msg.h -------------------------------------------------------------------------------- /i18n/lt/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/lt/dictionary.h -------------------------------------------------------------------------------- /i18n/lt/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/lt/extra.dict -------------------------------------------------------------------------------- /i18n/lt/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/lt/msg.h -------------------------------------------------------------------------------- /i18n/lv/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/lv/dictionary.h -------------------------------------------------------------------------------- /i18n/lv/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/lv/extra.dict -------------------------------------------------------------------------------- /i18n/lv/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/lv/msg.h -------------------------------------------------------------------------------- /i18n/mg/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/mg/dictionary.h -------------------------------------------------------------------------------- /i18n/mg/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/mg/extra.dict -------------------------------------------------------------------------------- /i18n/mg/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/mg/msg.h -------------------------------------------------------------------------------- /i18n/mi/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/mi/dictionary.h -------------------------------------------------------------------------------- /i18n/mi/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/mi/extra.dict -------------------------------------------------------------------------------- /i18n/mi/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/mi/msg.h -------------------------------------------------------------------------------- /i18n/mk/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/mk/dictionary.h -------------------------------------------------------------------------------- /i18n/mk/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/mk/extra.dict -------------------------------------------------------------------------------- /i18n/mk/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/mk/msg.h -------------------------------------------------------------------------------- /i18n/ml/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ml/dictionary.h -------------------------------------------------------------------------------- /i18n/ml/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ml/extra.dict -------------------------------------------------------------------------------- /i18n/ml/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ml/msg.h -------------------------------------------------------------------------------- /i18n/mn/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/mn/dictionary.h -------------------------------------------------------------------------------- /i18n/mn/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/mn/extra.dict -------------------------------------------------------------------------------- /i18n/mn/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/mn/msg.h -------------------------------------------------------------------------------- /i18n/mo/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/mo/dictionary.h -------------------------------------------------------------------------------- /i18n/mo/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/mo/extra.dict -------------------------------------------------------------------------------- /i18n/mo/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/mo/msg.h -------------------------------------------------------------------------------- /i18n/mr/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/mr/dictionary.h -------------------------------------------------------------------------------- /i18n/mr/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/mr/extra.dict -------------------------------------------------------------------------------- /i18n/mr/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/mr/msg.h -------------------------------------------------------------------------------- /i18n/ms/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ms/dictionary.h -------------------------------------------------------------------------------- /i18n/ms/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ms/extra.dict -------------------------------------------------------------------------------- /i18n/ms/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ms/msg.h -------------------------------------------------------------------------------- /i18n/mt/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/mt/dictionary.h -------------------------------------------------------------------------------- /i18n/mt/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/mt/extra.dict -------------------------------------------------------------------------------- /i18n/mt/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/mt/msg.h -------------------------------------------------------------------------------- /i18n/my/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/my/dictionary.h -------------------------------------------------------------------------------- /i18n/my/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/my/extra.dict -------------------------------------------------------------------------------- /i18n/my/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/my/msg.h -------------------------------------------------------------------------------- /i18n/ne/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ne/dictionary.h -------------------------------------------------------------------------------- /i18n/ne/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ne/extra.dict -------------------------------------------------------------------------------- /i18n/ne/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ne/msg.h -------------------------------------------------------------------------------- /i18n/nl/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/nl/dictionary.h -------------------------------------------------------------------------------- /i18n/nl/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/nl/extra.dict -------------------------------------------------------------------------------- /i18n/nl/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/nl/msg.h -------------------------------------------------------------------------------- /i18n/nl2/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/nl2/dictionary.h -------------------------------------------------------------------------------- /i18n/no/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/no/dictionary.h -------------------------------------------------------------------------------- /i18n/no/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/no/extra.dict -------------------------------------------------------------------------------- /i18n/no/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/no/msg.h -------------------------------------------------------------------------------- /i18n/ny/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ny/dictionary.h -------------------------------------------------------------------------------- /i18n/ny/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ny/extra.dict -------------------------------------------------------------------------------- /i18n/ny/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ny/msg.h -------------------------------------------------------------------------------- /i18n/om/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/om/dictionary.h -------------------------------------------------------------------------------- /i18n/om/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/om/extra.dict -------------------------------------------------------------------------------- /i18n/om/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/om/msg.h -------------------------------------------------------------------------------- /i18n/or/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/or/dictionary.h -------------------------------------------------------------------------------- /i18n/or/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/or/extra.dict -------------------------------------------------------------------------------- /i18n/or/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/or/msg.h -------------------------------------------------------------------------------- /i18n/pa/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/pa/dictionary.h -------------------------------------------------------------------------------- /i18n/pa/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/pa/extra.dict -------------------------------------------------------------------------------- /i18n/pa/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/pa/msg.h -------------------------------------------------------------------------------- /i18n/pap/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/pap/dictionary.h -------------------------------------------------------------------------------- /i18n/pap/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/pap/extra.dict -------------------------------------------------------------------------------- /i18n/pap/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/pap/msg.h -------------------------------------------------------------------------------- /i18n/pl/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/pl/dictionary.h -------------------------------------------------------------------------------- /i18n/pl/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/pl/extra.dict -------------------------------------------------------------------------------- /i18n/pl/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/pl/msg.h -------------------------------------------------------------------------------- /i18n/ps/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ps/dictionary.h -------------------------------------------------------------------------------- /i18n/ps/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ps/extra.dict -------------------------------------------------------------------------------- /i18n/ps/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ps/msg.h -------------------------------------------------------------------------------- /i18n/pt/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/pt/dictionary.h -------------------------------------------------------------------------------- /i18n/pt/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/pt/extra.dict -------------------------------------------------------------------------------- /i18n/pt/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/pt/msg.h -------------------------------------------------------------------------------- /i18n/pt_br/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/pt_br/extra.dict -------------------------------------------------------------------------------- /i18n/pt_br/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/pt_br/msg.h -------------------------------------------------------------------------------- /i18n/qu/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/qu/dictionary.h -------------------------------------------------------------------------------- /i18n/qu/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/qu/extra.dict -------------------------------------------------------------------------------- /i18n/qu/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/qu/msg.h -------------------------------------------------------------------------------- /i18n/ro/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ro/dictionary.h -------------------------------------------------------------------------------- /i18n/ro/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ro/extra.dict -------------------------------------------------------------------------------- /i18n/ro/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ro/msg.h -------------------------------------------------------------------------------- /i18n/ru/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ru/dictionary.h -------------------------------------------------------------------------------- /i18n/ru/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ru/extra.dict -------------------------------------------------------------------------------- /i18n/ru/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ru/msg.h -------------------------------------------------------------------------------- /i18n/rw/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/rw/dictionary.h -------------------------------------------------------------------------------- /i18n/rw/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/rw/extra.dict -------------------------------------------------------------------------------- /i18n/rw/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/rw/msg.h -------------------------------------------------------------------------------- /i18n/sd/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sd/dictionary.h -------------------------------------------------------------------------------- /i18n/sd/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sd/extra.dict -------------------------------------------------------------------------------- /i18n/sd/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sd/msg.h -------------------------------------------------------------------------------- /i18n/si/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/si/dictionary.h -------------------------------------------------------------------------------- /i18n/si/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/si/extra.dict -------------------------------------------------------------------------------- /i18n/si/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/si/msg.h -------------------------------------------------------------------------------- /i18n/sk/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sk/dictionary.h -------------------------------------------------------------------------------- /i18n/sk/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sk/extra.dict -------------------------------------------------------------------------------- /i18n/sk/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sk/msg.h -------------------------------------------------------------------------------- /i18n/sl/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sl/dictionary.h -------------------------------------------------------------------------------- /i18n/sl/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sl/extra.dict -------------------------------------------------------------------------------- /i18n/sl/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sl/msg.h -------------------------------------------------------------------------------- /i18n/sm/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sm/dictionary.h -------------------------------------------------------------------------------- /i18n/sm/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sm/extra.dict -------------------------------------------------------------------------------- /i18n/sm/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sm/msg.h -------------------------------------------------------------------------------- /i18n/sn/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sn/dictionary.h -------------------------------------------------------------------------------- /i18n/sn/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sn/extra.dict -------------------------------------------------------------------------------- /i18n/sn/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sn/msg.h -------------------------------------------------------------------------------- /i18n/so/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/so/dictionary.h -------------------------------------------------------------------------------- /i18n/so/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/so/extra.dict -------------------------------------------------------------------------------- /i18n/so/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/so/msg.h -------------------------------------------------------------------------------- /i18n/sq/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sq/dictionary.h -------------------------------------------------------------------------------- /i18n/sq/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sq/extra.dict -------------------------------------------------------------------------------- /i18n/sq/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sq/msg.h -------------------------------------------------------------------------------- /i18n/sr/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sr/dictionary.h -------------------------------------------------------------------------------- /i18n/sr/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sr/extra.dict -------------------------------------------------------------------------------- /i18n/sr/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sr/msg.h -------------------------------------------------------------------------------- /i18n/st/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/st/dictionary.h -------------------------------------------------------------------------------- /i18n/st/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/st/extra.dict -------------------------------------------------------------------------------- /i18n/st/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/st/msg.h -------------------------------------------------------------------------------- /i18n/su/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/su/dictionary.h -------------------------------------------------------------------------------- /i18n/su/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/su/extra.dict -------------------------------------------------------------------------------- /i18n/su/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/su/msg.h -------------------------------------------------------------------------------- /i18n/sv/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sv/dictionary.h -------------------------------------------------------------------------------- /i18n/sv/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sv/extra.dict -------------------------------------------------------------------------------- /i18n/sv/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sv/msg.h -------------------------------------------------------------------------------- /i18n/sw/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sw/dictionary.h -------------------------------------------------------------------------------- /i18n/sw/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sw/extra.dict -------------------------------------------------------------------------------- /i18n/sw/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/sw/msg.h -------------------------------------------------------------------------------- /i18n/ta/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ta/dictionary.h -------------------------------------------------------------------------------- /i18n/ta/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ta/extra.dict -------------------------------------------------------------------------------- /i18n/ta/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ta/msg.h -------------------------------------------------------------------------------- /i18n/te/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/te/dictionary.h -------------------------------------------------------------------------------- /i18n/te/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/te/extra.dict -------------------------------------------------------------------------------- /i18n/te/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/te/msg.h -------------------------------------------------------------------------------- /i18n/tg/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/tg/dictionary.h -------------------------------------------------------------------------------- /i18n/tg/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/tg/extra.dict -------------------------------------------------------------------------------- /i18n/tg/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/tg/msg.h -------------------------------------------------------------------------------- /i18n/th/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/th/dictionary.h -------------------------------------------------------------------------------- /i18n/th/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/th/extra.dict -------------------------------------------------------------------------------- /i18n/th/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/th/msg.h -------------------------------------------------------------------------------- /i18n/tk/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/tk/dictionary.h -------------------------------------------------------------------------------- /i18n/tk/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/tk/extra.dict -------------------------------------------------------------------------------- /i18n/tk/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/tk/msg.h -------------------------------------------------------------------------------- /i18n/tl/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/tl/dictionary.h -------------------------------------------------------------------------------- /i18n/tl/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/tl/extra.dict -------------------------------------------------------------------------------- /i18n/tl/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/tl/msg.h -------------------------------------------------------------------------------- /i18n/tr/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/tr/dictionary.h -------------------------------------------------------------------------------- /i18n/tr/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/tr/extra.dict -------------------------------------------------------------------------------- /i18n/tr/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/tr/msg.h -------------------------------------------------------------------------------- /i18n/tt/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/tt/dictionary.h -------------------------------------------------------------------------------- /i18n/tt/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/tt/extra.dict -------------------------------------------------------------------------------- /i18n/tt/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/tt/msg.h -------------------------------------------------------------------------------- /i18n/ug/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ug/dictionary.h -------------------------------------------------------------------------------- /i18n/ug/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ug/extra.dict -------------------------------------------------------------------------------- /i18n/ug/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ug/msg.h -------------------------------------------------------------------------------- /i18n/uk/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/uk/dictionary.h -------------------------------------------------------------------------------- /i18n/uk/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/uk/extra.dict -------------------------------------------------------------------------------- /i18n/uk/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/uk/msg.h -------------------------------------------------------------------------------- /i18n/ur/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ur/dictionary.h -------------------------------------------------------------------------------- /i18n/ur/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ur/extra.dict -------------------------------------------------------------------------------- /i18n/ur/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/ur/msg.h -------------------------------------------------------------------------------- /i18n/uz/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/uz/dictionary.h -------------------------------------------------------------------------------- /i18n/uz/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/uz/extra.dict -------------------------------------------------------------------------------- /i18n/uz/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/uz/msg.h -------------------------------------------------------------------------------- /i18n/vi/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/vi/dictionary.h -------------------------------------------------------------------------------- /i18n/vi/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/vi/extra.dict -------------------------------------------------------------------------------- /i18n/vi/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/vi/msg.h -------------------------------------------------------------------------------- /i18n/wo/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/wo/dictionary.h -------------------------------------------------------------------------------- /i18n/wo/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/wo/extra.dict -------------------------------------------------------------------------------- /i18n/wo/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/wo/msg.h -------------------------------------------------------------------------------- /i18n/x3/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/x3/dictionary.h -------------------------------------------------------------------------------- /i18n/x3/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/x3/extra.dict -------------------------------------------------------------------------------- /i18n/x3/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/x3/msg.h -------------------------------------------------------------------------------- /i18n/x4/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/x4/dictionary.h -------------------------------------------------------------------------------- /i18n/x4/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/x4/extra.dict -------------------------------------------------------------------------------- /i18n/x4/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/x4/msg.h -------------------------------------------------------------------------------- /i18n/xh/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/xh/dictionary.h -------------------------------------------------------------------------------- /i18n/xh/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/xh/extra.dict -------------------------------------------------------------------------------- /i18n/xh/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/xh/msg.h -------------------------------------------------------------------------------- /i18n/xx/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/xx/dictionary.h -------------------------------------------------------------------------------- /i18n/xx/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/xx/extra.dict -------------------------------------------------------------------------------- /i18n/xx/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/xx/msg.h -------------------------------------------------------------------------------- /i18n/yak/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/yak/dictionary.h -------------------------------------------------------------------------------- /i18n/yak/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/yak/extra.dict -------------------------------------------------------------------------------- /i18n/yak/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/yak/msg.h -------------------------------------------------------------------------------- /i18n/yi/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/yi/dictionary.h -------------------------------------------------------------------------------- /i18n/yi/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/yi/extra.dict -------------------------------------------------------------------------------- /i18n/yi/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/yi/msg.h -------------------------------------------------------------------------------- /i18n/yo/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/yo/dictionary.h -------------------------------------------------------------------------------- /i18n/yo/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/yo/extra.dict -------------------------------------------------------------------------------- /i18n/yo/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/yo/msg.h -------------------------------------------------------------------------------- /i18n/zh1/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/zh1/dictionary.h -------------------------------------------------------------------------------- /i18n/zh1/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/zh1/extra.dict -------------------------------------------------------------------------------- /i18n/zh1/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/zh1/msg.h -------------------------------------------------------------------------------- /i18n/zh2/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/zh2/dictionary.h -------------------------------------------------------------------------------- /i18n/zh2/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/zh2/extra.dict -------------------------------------------------------------------------------- /i18n/zh2/msg (1).h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/zh2/msg (1).h -------------------------------------------------------------------------------- /i18n/zh2/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/zh2/msg.h -------------------------------------------------------------------------------- /i18n/zu/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/zu/dictionary.h -------------------------------------------------------------------------------- /i18n/zu/extra.dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/zu/extra.dict -------------------------------------------------------------------------------- /i18n/zu/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/i18n/zu/msg.h -------------------------------------------------------------------------------- /i18nsel: -------------------------------------------------------------------------------- 1 | i18n_test -------------------------------------------------------------------------------- /lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/lexer.c -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/makefile -------------------------------------------------------------------------------- /makefile.bsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/makefile.bsd -------------------------------------------------------------------------------- /makefile.haiku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/makefile.haiku -------------------------------------------------------------------------------- /makefile.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/makefile.mac -------------------------------------------------------------------------------- /makefile.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/makefile.wasm -------------------------------------------------------------------------------- /makefile.win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/makefile.win32 -------------------------------------------------------------------------------- /makefile.win64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/makefile.win64 -------------------------------------------------------------------------------- /memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/memory.c -------------------------------------------------------------------------------- /misc/distrib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/misc/distrib.sh -------------------------------------------------------------------------------- /misc/distrib/assets/nl/voorbeeld_eerste.ctr: -------------------------------------------------------------------------------- 1 | 2 | Media toon: ['hallo wereld']. 3 | -------------------------------------------------------------------------------- /misc/distrib/assets/nl/voorbeeld_logboek.ctr: -------------------------------------------------------------------------------- 1 | 2 | Uit schrijf: ['hallo logboek'], stop. 3 | -------------------------------------------------------------------------------- /misc/distrib_osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/misc/distrib_osx.sh -------------------------------------------------------------------------------- /misc/docs/docgen2.ctr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/misc/docs/docgen2.ctr -------------------------------------------------------------------------------- /misc/export/android/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := arm64-v8a 2 | APP_PLATFORM=android-16 -------------------------------------------------------------------------------- /misc/opt/preface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/misc/opt/preface.h -------------------------------------------------------------------------------- /misc/supplement/en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/misc/supplement/en -------------------------------------------------------------------------------- /misc/supplement/es: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/misc/supplement/es -------------------------------------------------------------------------------- /misc/supplement/nl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/misc/supplement/nl -------------------------------------------------------------------------------- /misc/supplement/pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/misc/supplement/pt -------------------------------------------------------------------------------- /misc/supplement/ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/misc/supplement/ru -------------------------------------------------------------------------------- /misc/translator/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/misc/translator/msg.h -------------------------------------------------------------------------------- /mk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/mk.sh -------------------------------------------------------------------------------- /mods/jsmn/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mods/json/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mods/jsonhy/.gitkeep: -------------------------------------------------------------------------------- 1 | placeholder 2 | -------------------------------------------------------------------------------- /mods/jsonnl/.gitkeep: -------------------------------------------------------------------------------- 1 | placeholder 2 | -------------------------------------------------------------------------------- /mods/koffiezetter/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mods/media/.gitkeep: -------------------------------------------------------------------------------- 1 | keep 2 | -------------------------------------------------------------------------------- /mods/password/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mods/request/.gitkeep: -------------------------------------------------------------------------------- 1 | placeholder for request.so 2 | -------------------------------------------------------------------------------- /mods/verzoek/.gitkeep: -------------------------------------------------------------------------------- 1 | placeholder for verzoek.so 2 | -------------------------------------------------------------------------------- /parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/parser.c -------------------------------------------------------------------------------- /plugins/jsmn/jsmn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/plugins/jsmn/jsmn.c -------------------------------------------------------------------------------- /plugins/jsmn/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/plugins/jsmn/makefile -------------------------------------------------------------------------------- /plugins/media/assets/citrine.rc: -------------------------------------------------------------------------------- 1 | id PICTOGRAM "picto.ico" -------------------------------------------------------------------------------- /plugins/media/assets/citrine.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ./ctrnl __7__ -------------------------------------------------------------------------------- /plugins/media/assets/control: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/media/citrine.rc: -------------------------------------------------------------------------------- 1 | id PICTOGRAM "picto.ico" -------------------------------------------------------------------------------- /plugins/media/jsmn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/plugins/media/jsmn.c -------------------------------------------------------------------------------- /plugins/media/jsmn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/plugins/media/jsmn.h -------------------------------------------------------------------------------- /plugins/media/makefile.bsd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/media/media.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/plugins/media/media.c -------------------------------------------------------------------------------- /plugins/media/mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/plugins/media/mock.h -------------------------------------------------------------------------------- /plugins/media/passw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/plugins/media/passw.c -------------------------------------------------------------------------------- /plugins/mock/percolator/dictionary.h: -------------------------------------------------------------------------------- 1 | #define CTR_PERCOLATOR "Percolator" 2 | -------------------------------------------------------------------------------- /plugins/mock/percolator/msg.h: -------------------------------------------------------------------------------- 1 | #define CTR_PERCOLATOR_PLUGIN "Percolator" 2 | -------------------------------------------------------------------------------- /plugins/request/i18n/nl/msg.h: -------------------------------------------------------------------------------- 1 | #define CTR_PLUGIN_NAME "Verzoek" 2 | -------------------------------------------------------------------------------- /plugins/request/i18n/us/msg.h: -------------------------------------------------------------------------------- 1 | #define CTR_PLUGIN_NAME "Request" 2 | -------------------------------------------------------------------------------- /portability.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/portability.c -------------------------------------------------------------------------------- /runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/runtests.sh -------------------------------------------------------------------------------- /siphash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/siphash.c -------------------------------------------------------------------------------- /siphash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/siphash.h -------------------------------------------------------------------------------- /system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/system.c -------------------------------------------------------------------------------- /test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gabordemooij/citrine/HEAD/test.c -------------------------------------------------------------------------------- /tests/assets/nullbyte.txt: -------------------------------------------------------------------------------- 1 | hello world -------------------------------------------------------------------------------- /tests/assets/stdin_test.ctr: -------------------------------------------------------------------------------- 1 | Out write: ['% characters.\n'] % (Program input length). 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0001en.exp: -------------------------------------------------------------------------------- 1 | Hello World 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0002en.exp: -------------------------------------------------------------------------------- 1 | HelloWorld! 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0003en.exp: -------------------------------------------------------------------------------- 1 | Hello World 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0005en.exp: -------------------------------------------------------------------------------- 1 | 12345 -------------------------------------------------------------------------------- /tests/en/exp/test0006en.exp: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0007en.exp: -------------------------------------------------------------------------------- 1 | meow! 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0008en.exp: -------------------------------------------------------------------------------- 1 | setting a nameHellosunshine! 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0009en.exp: -------------------------------------------------------------------------------- 1 | setting a nameHellosunshine! 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0010en.exp: -------------------------------------------------------------------------------- 1 | meow! 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0011en.exp: -------------------------------------------------------------------------------- 1 | meow! 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0012en.exp: -------------------------------------------------------------------------------- 1 | meow!? 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0013en.exp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/en/exp/test0015en.exp: -------------------------------------------------------------------------------- 1 | Hi!Hi! 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0016en.exp: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0017en.exp: -------------------------------------------------------------------------------- 1 | 132223 -------------------------------------------------------------------------------- /tests/en/exp/test0018en.exp: -------------------------------------------------------------------------------- 1 | MEOW! 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0019en.exp: -------------------------------------------------------------------------------- 1 | HelloWorld 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0021en.exp: -------------------------------------------------------------------------------- 1 | Yes, nine is less than ten.403Not true!Yep 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0023en.exp: -------------------------------------------------------------------------------- 1 | 2901.59030 -------------------------------------------------------------------------------- /tests/en/exp/test0024en.exp: -------------------------------------------------------------------------------- 1 | Yes. 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0025en.exp: -------------------------------------------------------------------------------- 1 | Yes. 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0026en.exp: -------------------------------------------------------------------------------- 1 | 2Helellell声字形63OrganWorks -------------------------------------------------------------------------------- /tests/en/exp/test0028en.exp: -------------------------------------------------------------------------------- 1 | yesa1x3.5yTruezFalseNone2 -------------------------------------------------------------------------------- /tests/en/exp/test0029en.exp: -------------------------------------------------------------------------------- 1 | firstsecond0053.5 -------------------------------------------------------------------------------- /tests/en/exp/test0033en.exp: -------------------------------------------------------------------------------- 1 | 123666 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0034en.exp: -------------------------------------------------------------------------------- 1 | 123123 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0035en.exp: -------------------------------------------------------------------------------- 1 | Can we escape a string with ‘quotes’ ? 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0038en.exp: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0039en.exp: -------------------------------------------------------------------------------- 1 | 2 | multi 3 | line 4 | string 5 | -------------------------------------------------------------------------------- /tests/en/exp/test0040en.exp: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0041en.exp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0044en.exp: -------------------------------------------------------------------------------- 1 | 12world12hellothere2merryxmas 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0045en.exp: -------------------------------------------------------------------------------- 1 | hi there!got ya!oops 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0046en.exp: -------------------------------------------------------------------------------- 1 | Cats have personel for that! 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0047en.exp: -------------------------------------------------------------------------------- 1 | Uncatched error has occurred. 2 | Cats have personel for that! 3 | -------------------------------------------------------------------------------- /tests/en/exp/test0048en.exp: -------------------------------------------------------------------------------- 1 | Uncatched error has occurred. 2 | Cats have personel for that! 3 | -------------------------------------------------------------------------------- /tests/en/exp/test0049en.exp: -------------------------------------------------------------------------------- 1 | /tmp/test.txtHello!World!!1200 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0050en.exp: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0051en.exp: -------------------------------------------------------------------------------- 1 | 121 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0053en.exp: -------------------------------------------------------------------------------- 1 | DONE 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0054en.exp: -------------------------------------------------------------------------------- 1 | Found argument file.None -------------------------------------------------------------------------------- /tests/en/exp/test0055en.exp: -------------------------------------------------------------------------------- 1 | These tests are silent. 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0056en.exp: -------------------------------------------------------------------------------- 1 | 22None2hello5True -------------------------------------------------------------------------------- /tests/en/exp/test0061en.exp: -------------------------------------------------------------------------------- 1 | Y1Y4Y5Y6Y7 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0066en.exp: -------------------------------------------------------------------------------- 1 | Cl30patra 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0067en.exp: -------------------------------------------------------------------------------- 1 | 3314004C -------------------------------------------------------------------------------- /tests/en/exp/test0071en.exp: -------------------------------------------------------------------------------- 1 | 1|2|3 2 | Hello,World,123,Object,None -------------------------------------------------------------------------------- /tests/en/exp/test0079en.exp: -------------------------------------------------------------------------------- 1 | T1 < T2 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0082en.exp: -------------------------------------------------------------------------------- 1 | Welcome visitor 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0084en.exp: -------------------------------------------------------------------------------- 1 | 101 2 | 102 3 | 103 4 | -------------------------------------------------------------------------------- /tests/en/exp/test0085en.exp: -------------------------------------------------------------------------------- 1 | 9 2 | 36 3 | 7 4 | 8 5 | -------------------------------------------------------------------------------- /tests/en/exp/test0087en.exp: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0088en.exp: -------------------------------------------------------------------------------- 1 | hohoho 2 | True 3 | 9 -------------------------------------------------------------------------------- /tests/en/exp/test0089en.exp: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0092en.exp: -------------------------------------------------------------------------------- 1 | local 2 | global 3 | Hello World 4 | Bye 5 | -------------------------------------------------------------------------------- /tests/en/exp/test0093en.exp: -------------------------------------------------------------------------------- 1 | 3332 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0094en.exp: -------------------------------------------------------------------------------- 1 | 24 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0098en.exp: -------------------------------------------------------------------------------- 1 | ab 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0099en.exp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0101en.exp: -------------------------------------------------------------------------------- 1 | value = Hello World! 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0106en.exp: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /tests/en/exp/test0109en.exp: -------------------------------------------------------------------------------- 1 | I am myself. 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0110en.exp: -------------------------------------------------------------------------------- 1 | Test the exit message 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0112en.exp: -------------------------------------------------------------------------------- 1 | Block 1. 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0114en.exp: -------------------------------------------------------------------------------- 1 | 1:Hello 2 | 2:World 3 | 3:Welcome 4 | 4:To 5 | 5:Citrine 6 | -------------------------------------------------------------------------------- /tests/en/exp/test0116en.exp: -------------------------------------------------------------------------------- 1 | I can handle out-of-bound Command arguments. 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0117en.exp: -------------------------------------------------------------------------------- 1 | T|F|F|T|T 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0119en.exp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/en/exp/test0121en.exp: -------------------------------------------------------------------------------- 1 | Append this to a String 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0122en.exp: -------------------------------------------------------------------------------- 1 | 10 / 2 = 5 2 | * 2 makes... 10 3 | -------------------------------------------------------------------------------- /tests/en/exp/test0124en.exp: -------------------------------------------------------------------------------- 1 | True -------------------------------------------------------------------------------- /tests/en/exp/test0125en.exp: -------------------------------------------------------------------------------- 1 | file contains: hello 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0128en.exp: -------------------------------------------------------------------------------- 1 | 24 2 | 10 3 | 2 4 | 0 5 | -------------------------------------------------------------------------------- /tests/en/exp/test0129en.exp: -------------------------------------------------------------------------------- 1 | 6 2 | 64 3 | -20 4 | -1 5 | -------------------------------------------------------------------------------- /tests/en/exp/test0130en.exp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0132en.exp: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | -------------------------------------------------------------------------------- /tests/en/exp/test0134en.exp: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | -------------------------------------------------------------------------------- /tests/en/exp/test0135en.exp: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | -------------------------------------------------------------------------------- /tests/en/exp/test0136en.exp: -------------------------------------------------------------------------------- 1 | True 2 | 0 -------------------------------------------------------------------------------- /tests/en/exp/test0137en.exp: -------------------------------------------------------------------------------- 1 | Memory usage remains stable. 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0138en.exp: -------------------------------------------------------------------------------- 1 | Memory usage remains stable. 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0139en.exp: -------------------------------------------------------------------------------- 1 | Out of memory. Failed to allocate 56 bytes. -------------------------------------------------------------------------------- /tests/en/exp/test0150en.exp: -------------------------------------------------------------------------------- 1 | Parse error, unexpected } ( tests/en/t-0150.ctr: 3 ) 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0153en.exp: -------------------------------------------------------------------------------- 1 | Token Buffer Exausted. Tokens may not exceed 255 bytes on line: 2. -------------------------------------------------------------------------------- /tests/en/exp/test0155en.exp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/en/exp/test0157en.exp: -------------------------------------------------------------------------------- 1 | No memory leaks here 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0159en.exp: -------------------------------------------------------------------------------- 1 | No memory leaks here 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0160en.exp: -------------------------------------------------------------------------------- 1 | No memory leaks here 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0161en.exp: -------------------------------------------------------------------------------- 1 | No memory leaks here 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0162en.exp: -------------------------------------------------------------------------------- 1 | No memory leaks here 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0163en.exp: -------------------------------------------------------------------------------- 1 | No memory leaks here 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0164en.exp: -------------------------------------------------------------------------------- 1 | No memory leaks here 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0168en.exp: -------------------------------------------------------------------------------- 1 | No memory leaks here 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0170en.exp: -------------------------------------------------------------------------------- 1 | No memory leaks here 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0185en.exp: -------------------------------------------------------------------------------- 1 | No memory leaks here 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0189en.exp: -------------------------------------------------------------------------------- 1 | No memory leaks here -------------------------------------------------------------------------------- /tests/en/exp/test0191en.exp: -------------------------------------------------------------------------------- 1 | START 2 | END 3 | -------------------------------------------------------------------------------- /tests/en/exp/test0197en.exp: -------------------------------------------------------------------------------- 1 | hi there!got ya!oops 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0198en.exp: -------------------------------------------------------------------------------- 1 | Uncatched error has occurred. 2 | Cats have personel for that! 3 | -------------------------------------------------------------------------------- /tests/en/exp/test0199en.exp: -------------------------------------------------------------------------------- 1 | meow! 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0200en.exp: -------------------------------------------------------------------------------- 1 | meow! 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0201en.exp: -------------------------------------------------------------------------------- 1 | meow!? 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0204en.exp: -------------------------------------------------------------------------------- 1 | 3 2 | 2 3 | 2 4 | 3 5 | 1 6 | None 7 | -------------------------------------------------------------------------------- /tests/en/exp/test0206en.exp: -------------------------------------------------------------------------------- 1 | hello -------------------------------------------------------------------------------- /tests/en/exp/test0210en.exp: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0211en.exp: -------------------------------------------------------------------------------- 1 | glenfarclas,springbank,talisker 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0212en.exp: -------------------------------------------------------------------------------- 1 | No infinite recursion in GC. 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0213en.exp: -------------------------------------------------------------------------------- 1 | No infinite recursion in GC. 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0214en.exp: -------------------------------------------------------------------------------- 1 | No memory leaks here 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0215en.exp: -------------------------------------------------------------------------------- 1 | No memory leaks here 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0216en.exp: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0218en.exp: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0219en.exp: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0222en.exp: -------------------------------------------------------------------------------- 1 | h***o wo**d 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0228en.exp: -------------------------------------------------------------------------------- 1 | Hello World 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0230en.exp: -------------------------------------------------------------------------------- 1 | The cat goes meow 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0231en.exp: -------------------------------------------------------------------------------- 1 | hello world 2 | 3 | 4 | hi there 5 | -------------------------------------------------------------------------------- /tests/en/exp/test0232en.exp: -------------------------------------------------------------------------------- 1 | + 3 2 | echo Hello world 3 | -------------------------------------------------------------------------------- /tests/en/exp/test0233en.exp: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0234en.exp: -------------------------------------------------------------------------------- 1 | List 2 | Dict -------------------------------------------------------------------------------- /tests/en/exp/test0235en.exp: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0236en.exp: -------------------------------------------------------------------------------- 1 | select * from users where id = 2 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0237en.exp: -------------------------------------------------------------------------------- 1 | helloworldtreasure9 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0242en.exp: -------------------------------------------------------------------------------- 1 | 123 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0243en.exp: -------------------------------------------------------------------------------- 1 | True 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0244en.exp: -------------------------------------------------------------------------------- 1 | Blaaaa 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0245en.exp: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0249en.exp: -------------------------------------------------------------------------------- 1 | Uncatched error has occurred. 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0250en.exp: -------------------------------------------------------------------------------- 1 | List ← 1 ; 2 ; 3 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0251en.exp: -------------------------------------------------------------------------------- 1 | zeroone 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0257en.exp: -------------------------------------------------------------------------------- 1 | hello1 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0258en.exp: -------------------------------------------------------------------------------- 1 | Uncatched error has occurred. 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0259.exp: -------------------------------------------------------------------------------- 1 | aaa 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0260en.exp: -------------------------------------------------------------------------------- 1 | Bool -------------------------------------------------------------------------------- /tests/en/exp/test0266en.exp: -------------------------------------------------------------------------------- 1 | True 2 | False -------------------------------------------------------------------------------- /tests/en/exp/test0267en.exp: -------------------------------------------------------------------------------- 1 | aHello World How 2 | AreYa?\n 3 | -------------------------------------------------------------------------------- /tests/en/exp/test0269en.exp: -------------------------------------------------------------------------------- 1 | OK 2 | OK 3 | -------------------------------------------------------------------------------- /tests/en/exp/test0270en.exp: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0271en.exp: -------------------------------------------------------------------------------- 1 | OK -------------------------------------------------------------------------------- /tests/en/exp/test0272en.exp: -------------------------------------------------------------------------------- 1 | True 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0276en.exp: -------------------------------------------------------------------------------- 1 | 5 2 | 5 3 | -------------------------------------------------------------------------------- /tests/en/exp/test0277en.exp: -------------------------------------------------------------------------------- 1 | meow! 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0278en.exp: -------------------------------------------------------------------------------- 1 | You have 2 tasks to do 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0283en.exp: -------------------------------------------------------------------------------- 1 | 4 characters. -------------------------------------------------------------------------------- /tests/en/exp/test0284en.exp: -------------------------------------------------------------------------------- 1 | 11 characters. 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0287en.exp: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0289en.exp: -------------------------------------------------------------------------------- 1 | 5,000 characters. 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0293en.exp: -------------------------------------------------------------------------------- 1 | Berlin,London,Paris 2 | 16,15,15 3 | -------------------------------------------------------------------------------- /tests/en/exp/test0294en.exp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0297en.exp: -------------------------------------------------------------------------------- 1 | 2 2 | 3 3 | 1 4 | 4 5 | 5 6 | 6 7 | 7 8 | None 9 | -------------------------------------------------------------------------------- /tests/en/exp/test0299en.exp: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0301en.exp: -------------------------------------------------------------------------------- 1 | it's a Merlot! 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0302en.exp: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0304en.exp: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0305en.exp: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0306en.exp: -------------------------------------------------------------------------------- 1 | hamburger|pizza|haggis 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0309en.exp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/en/exp/test0310en.exp: -------------------------------------------------------------------------------- 1 | Can we convert the broom object to a string? 2 | 4 -------------------------------------------------------------------------------- /tests/en/exp/test0311en.exp: -------------------------------------------------------------------------------- 1 | Can we convert the broom object to a number? 2 | 4 -------------------------------------------------------------------------------- /tests/en/exp/test0317en.exp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0318en.exp: -------------------------------------------------------------------------------- 1 | I did not crash! 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0319en.exp: -------------------------------------------------------------------------------- 1 | Parse error, unexpected } ( tests/en/t-0319.ctr: 2 ) 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0322en.exp: -------------------------------------------------------------------------------- 1 | 2 | False 2 | Object 3 | -------------------------------------------------------------------------------- /tests/en/exp/test0323en.exp: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0326en.exp: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0327en.exp: -------------------------------------------------------------------------------- 1 | HALLO 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0328en.exp: -------------------------------------------------------------------------------- 1 | 144 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0334en.exp: -------------------------------------------------------------------------------- 1 | make:with:and:coffeesugarmilk 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0335en.exp: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0337en.exp: -------------------------------------------------------------------------------- 1 | Division by zero. 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0338en.exp: -------------------------------------------------------------------------------- 1 | error! 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0340en.exp: -------------------------------------------------------------------------------- 1 | List ← (q) 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0341en.exp: -------------------------------------------------------------------------------- 1 | List ← True 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0342en.exp: -------------------------------------------------------------------------------- 1 | three 2 | -------------------------------------------------------------------------------- /tests/en/exp/test0343en.exp: -------------------------------------------------------------------------------- 1 | 10,003Citrine Programming Language EN (English) 2 | 3 | -------------------------------------------------------------------------------- /tests/en/exp/test0344en.exp: -------------------------------------------------------------------------------- 1 |