esruby 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/README.md +22 -0
- data/bin/esruby +34 -0
- data/lib/esruby.rb +26 -0
- data/lib/esruby/build.rb +140 -0
- data/lib/esruby/build/configuration.rb +77 -0
- data/lib/esruby/gem.rb +5 -0
- data/lib/esruby/gem/specification.rb +35 -0
- data/resources/build_config.eruby +53 -0
- data/resources/cpp/esruby.cpp +64 -0
- data/resources/cpp/esruby.hpp +42 -0
- data/resources/cpp/main.cpp +9 -0
- data/resources/js/esruby.js +45 -0
- data/resources/mruby/AUTHORS +40 -0
- data/resources/mruby/CONTRIBUTING.md +68 -0
- data/resources/mruby/LEGAL +6 -0
- data/resources/mruby/MITL +20 -0
- data/resources/mruby/Makefile +17 -0
- data/resources/mruby/NEWS +13 -0
- data/resources/mruby/README.md +92 -0
- data/resources/mruby/Rakefile +152 -0
- data/resources/mruby/TODO +10 -0
- data/resources/mruby/appveyor.yml +38 -0
- data/resources/mruby/appveyor_config.rb +50 -0
- data/resources/mruby/benchmark/bm_ao_render.rb +314 -0
- data/resources/mruby/benchmark/bm_app_lc_fizzbuzz.rb +52 -0
- data/resources/mruby/benchmark/bm_fib.rb +7 -0
- data/resources/mruby/benchmark/bm_so_lists.rb +47 -0
- data/resources/mruby/benchmark/build_config_boxing.rb +28 -0
- data/resources/mruby/benchmark/build_config_cc.rb +13 -0
- data/resources/mruby/benchmark/plot.gpl +5 -0
- data/resources/mruby/bin/mirb +0 -0
- data/resources/mruby/bin/mrbc +0 -0
- data/resources/mruby/bin/mruby +0 -0
- data/resources/mruby/bin/mruby-strip +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/README.md +82 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/mrbgem.rake +63 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/mrblib/regexp_pcre.rb +232 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/mrblib/string_pcre.rb +333 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/132html +313 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/AUTHORS +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/CMakeLists.txt +959 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/COPYING +5 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/ChangeLog +4981 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/CheckMan +67 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/CleanTxt +113 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/Detrail +35 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/HACKING +473 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/INSTALL +370 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/LICENCE +92 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/Makefile.am +877 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/Makefile.in +2917 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/NEWS +611 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/NON-AUTOTOOLS-BUILD +639 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/NON-UNIX-USE +7 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/PrepareRelease +253 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/README +935 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/RunGrepTest +551 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/RunTest +1015 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/RunTest.bat +616 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/aclocal.m4 +1230 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/autom4te.cache/output.0 +21280 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/autom4te.cache/output.1 +21280 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/autom4te.cache/requests +273 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/autom4te.cache/traces.0 +2421 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/autom4te.cache/traces.1 +1144 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/cmake/COPYING-CMAKE-SCRIPTS +22 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/cmake/FindEditline.cmake +17 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/cmake/FindPackageHandleStandardArgs.cmake +58 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/cmake/FindReadline.cmake +29 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/compile +343 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/config-cmake.h.in +54 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/config.guess +1552 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/config.h +392 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/config.h.generic +392 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/config.h.in +343 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/config.sub +1804 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/configure +21280 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/configure.ac +1082 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/depcomp +708 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/dftables.c +212 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/index.html +180 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre-config.html +109 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre.html +204 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre16.html +383 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_assign_jit_stack.html +76 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_compile.html +108 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_compile2.html +112 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_config.html +91 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_copy_named_substring.html +65 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_copy_substring.html +61 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_dfa_exec.html +128 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_exec.html +110 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_free_study.html +46 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_free_substring.html +46 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_free_substring_list.html +46 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_fullinfo.html +108 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_get_named_substring.html +68 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_get_stringnumber.html +57 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_get_stringtable_entries.html +60 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_get_substring.html +64 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_get_substring_list.html +61 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_jit_exec.html +108 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_jit_stack_alloc.html +55 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_jit_stack_free.html +48 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_maketables.html +48 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_pattern_to_host_byte_order.html +58 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_refcount.html +51 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_study.html +68 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_utf16_to_host_byte_order.html +57 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcre_version.html +46 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcreapi.html +2786 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcrebuild.html +517 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcrecallout.html +243 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcrecompat.html +216 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcrecpp.html +368 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcredemo.html +426 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcregrep.html +757 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcrejit.html +458 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcrelimits.html +86 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcrematching.html +233 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcrepartial.html +474 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcrepattern.html +2953 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcreperform.html +195 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcreposix.html +292 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcreprecompile.html +158 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcresample.html +110 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcrestack.html +225 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcresyntax.html +521 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcretest.html +1082 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/html/pcreunicode.html +270 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/index.html.src +180 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre-config.1 +92 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre-config.txt +86 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre.3 +202 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre.txt +9909 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre16.3 +390 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre32.3 +389 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_assign_jit_stack.3 +61 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_compile.3 +98 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_compile2.3 +106 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_config.3 +76 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_copy_named_substring.3 +59 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_copy_substring.3 +52 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_dfa_exec.3 +125 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_exec.3 +103 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_free_study.3 +31 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_free_substring.3 +31 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_free_substring_list.3 +31 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_fullinfo.3 +95 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_get_named_substring.3 +62 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_get_stringnumber.3 +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_get_stringtable_entries.3 +48 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_get_substring.3 +55 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_get_substring_list.3 +49 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_jit_exec.3 +104 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_jit_stack_alloc.3 +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_jit_stack_free.3 +35 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_maketables.3 +33 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_pattern_to_host_byte_order.3 +46 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_refcount.3 +36 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_study.3 +56 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_utf16_to_host_byte_order.3 +46 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_utf32_to_host_byte_order.3 +46 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcre_version.3 +31 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcreapi.3 +2823 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcrebuild.3 +520 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcrecallout.3 +214 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcrecompat.3 +185 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcrecpp.3 +348 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcregrep.1 +679 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcregrep.txt +740 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcrejit.3 +437 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcrelimits.3 +67 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcrematching.3 +206 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcrepartial.3 +445 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcrepattern.3 +2983 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcreperform.3 +177 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcreposix.3 +270 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcreprecompile.3 +151 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcresample.3 +99 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcrestack.3 +215 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcresyntax.3 +496 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcretest.1 +1079 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcretest.txt +1012 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/pcreunicode.3 +255 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/doc/perltest.txt +42 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/install-sh +527 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/libpcre.pc.in +12 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/libpcre16.pc.in +12 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/libpcre32.pc.in +12 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/libpcrecpp.pc.in +12 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/libpcreposix.pc.in +13 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/ltmain.sh +9636 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/m4/ax_pthread.m4 +309 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/m4/libtool.m4 +7844 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/m4/ltoptions.m4 +369 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/m4/ltsugar.m4 +123 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/m4/ltversion.m4 +23 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/m4/lt~obsolete.m4 +98 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/m4/pcre_visibility.m4 +89 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/makevp.bat +66 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/makevp_c.txt +20 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/makevp_l.txt +20 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/missing +331 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre-config.in +133 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre.h +653 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre.h.generic +653 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre.h.in +653 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_byte_order.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_chartables.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_compile.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_config.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_dfa_exec.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_exec.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_fullinfo.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_get.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_globals.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_jit_compile.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_maketables.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_newline.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_ord2utf16.c +90 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_printint.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_refcount.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_string_utils.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_study.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_tables.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_ucd.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_utf16_utils.c +130 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_valid_utf16.c +156 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_version.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre16_xclass.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_byte_order.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_chartables.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_compile.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_config.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_dfa_exec.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_exec.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_fullinfo.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_get.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_globals.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_jit_compile.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_maketables.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_newline.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_ord2utf32.c +82 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_printint.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_refcount.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_string_utils.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_study.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_tables.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_ucd.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_utf32_utils.c +141 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_valid_utf32.c +131 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_version.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre32_xclass.c +45 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_byte_order.c +318 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_chartables.c +198 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_chartables.c.dist +198 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_compile.c +8386 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_config.c +186 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_dfa_exec.c +3582 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_exec.c +7049 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_fullinfo.c +231 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_get.c +662 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_globals.c +84 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_internal.h +2744 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_jit_compile.c +8560 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_jit_test.c +1614 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_maketables.c +151 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_newline.c +210 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_ord2utf8.c +94 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_printint.c +766 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_refcount.c +92 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_scanner.cc +199 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_scanner.h +172 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_scanner_unittest.cc +159 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_string_utils.c +211 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_stringpiece.cc +43 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_stringpiece.h.in +179 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_stringpiece_unittest.cc +150 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_study.c +1562 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_tables.c +655 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_ucd.c +3298 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_valid_utf8.c +312 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_version.c +98 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcre_xclass.c +198 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcrecpp.cc +922 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcrecpp.h +710 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcrecpp_internal.h +71 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcrecpp_unittest.cc +1291 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcrecpparg.h.in +174 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcredemo.c +406 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcregexp.pas +845 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcregrep.c +3180 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcreposix.c +419 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcreposix.h +146 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/pcretest.c +5488 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/perltest.pl +237 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitConfig.h +110 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitConfigInternal.h +484 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitExecAllocator.c +289 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitLir.c +1766 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitLir.h +985 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativeARM_Thumb2.c +2008 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativeARM_v5.c +2515 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativeMIPS_32.c +404 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativeMIPS_common.c +1881 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativePPC_32.c +269 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativePPC_64.c +421 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativePPC_common.c +2014 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativeSPARC_32.c +164 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativeSPARC_common.c +1348 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativeX86_32.c +547 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativeX86_64.c +810 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitNativeX86_common.c +2836 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/sljit/sljitUtils.c +332 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/grepbinary +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/grepfilelist +3 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/grepinput +611 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/grepinput3 +15 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/grepinput8 +11 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/grepinputv +4 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/grepinputx +43 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/greplist +7 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/grepoutput +707 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/grepoutput8 +12 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/grepoutputN +16 -1
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/greppatN4 +2 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/saved16 +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/saved16BE-1 +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/saved16BE-2 +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/saved16LE-1 +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/saved16LE-2 +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/saved32 +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/saved32BE-1 +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/saved32BE-2 +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/saved32LE-1 +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/saved32LE-2 +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/saved8 +0 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput1 +5306 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput10 +1337 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput11 +135 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput12 +89 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput13 +9 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput14 +329 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput15 +430 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput16 +35 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput17 +296 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput18 +296 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput19 +22 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput2 +3813 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput20 +19 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput21 +16 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput22 +13 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput23 +16 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput24 +77 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput25 +32 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput26 +80 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput3 +95 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput4 +624 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput5 +772 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput6 +1319 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput7 +672 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput8 +4801 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinput9 +717 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testinputEBC +121 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput1 +8798 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput10 +2726 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput11-16 +713 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput11-32 +713 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput11-8 +713 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput12 +181 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput13 +21 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput14 +476 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput15 +1269 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput16 +121 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput17 +505 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput18-16 +1022 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput18-32 +1019 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput19 +88 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput2 +12484 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput20 +27 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput21-16 +90 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput21-32 +90 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput22-16 +71 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput22-32 +71 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput23 +42 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput24 +145 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput25 +79 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput26 +148 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput3 +169 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput4 +1094 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput5 +1849 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput6 +2137 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput7 +1473 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput8 +8019 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutput9 +1371 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/testoutputEBC +182 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/wintestinput3 +91 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/testdata/wintestoutput3 +166 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/pcre/ucp.h +197 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/run_test.rb +23 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/src/mruby_regexp_pcre.c +364 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/test/matchdata.rb +94 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/test/regexp.rb +264 -0
- data/resources/mruby/build/mrbgems/mruby-regexp-pcre/test/string.rb +201 -0
- data/resources/mruby/build_config.rb +152 -0
- data/resources/mruby/doc/guides/compile.md +488 -0
- data/resources/mruby/doc/guides/debugger.md +370 -0
- data/resources/mruby/doc/guides/gc-arena-howto.md +177 -0
- data/resources/mruby/doc/guides/mrbconf.md +146 -0
- data/resources/mruby/doc/guides/mrbgems.md +340 -0
- data/resources/mruby/doc/limitations.md +187 -0
- data/resources/mruby/examples/mrbgems/c_and_ruby_extension_example/README.md +4 -0
- data/resources/mruby/examples/mrbgems/c_and_ruby_extension_example/mrbgem.rake +23 -0
- data/resources/mruby/examples/mrbgems/c_and_ruby_extension_example/mrblib/example.rb +5 -0
- data/resources/mruby/examples/mrbgems/c_and_ruby_extension_example/src/example.c +20 -0
- data/resources/mruby/examples/mrbgems/c_and_ruby_extension_example/test/example.rb +7 -0
- data/resources/mruby/examples/mrbgems/c_extension_example/README.md +4 -0
- data/resources/mruby/examples/mrbgems/c_extension_example/mrbgem.rake +23 -0
- data/resources/mruby/examples/mrbgems/c_extension_example/src/example.c +20 -0
- data/resources/mruby/examples/mrbgems/c_extension_example/test/example.c +7 -0
- data/resources/mruby/examples/mrbgems/c_extension_example/test/example.rb +3 -0
- data/resources/mruby/examples/mrbgems/ruby_extension_example/README.md +4 -0
- data/resources/mruby/examples/mrbgems/ruby_extension_example/mrbgem.rake +25 -0
- data/resources/mruby/examples/mrbgems/ruby_extension_example/mrblib/example.rb +5 -0
- data/resources/mruby/examples/mrbgems/ruby_extension_example/test/example.rb +3 -0
- data/resources/mruby/examples/targets/build_config_ArduinoDue.rb +90 -0
- data/resources/mruby/examples/targets/build_config_IntelEdison.rb +69 -0
- data/resources/mruby/examples/targets/build_config_IntelGalileo.rb +106 -0
- data/resources/mruby/examples/targets/build_config_RX630.rb +81 -0
- data/resources/mruby/examples/targets/build_config_android_arm64-v8a.rb +26 -0
- data/resources/mruby/examples/targets/build_config_android_armeabi.rb +26 -0
- data/resources/mruby/examples/targets/build_config_android_armeabi_v7a_neon_hard.rb +28 -0
- data/resources/mruby/examples/targets/build_config_chipKITMax32.rb +86 -0
- data/resources/mruby/include/mrbconf.h +145 -0
- data/resources/mruby/include/mruby.h +1280 -0
- data/resources/mruby/include/mruby/array.h +279 -0
- data/resources/mruby/include/mruby/boxing_nan.h +102 -0
- data/resources/mruby/include/mruby/boxing_no.h +56 -0
- data/resources/mruby/include/mruby/boxing_word.h +136 -0
- data/resources/mruby/include/mruby/class.h +94 -0
- data/resources/mruby/include/mruby/common.h +72 -0
- data/resources/mruby/include/mruby/compile.h +194 -0
- data/resources/mruby/include/mruby/data.h +75 -0
- data/resources/mruby/include/mruby/debug.h +66 -0
- data/resources/mruby/include/mruby/dump.h +196 -0
- data/resources/mruby/include/mruby/error.h +75 -0
- data/resources/mruby/include/mruby/gc.h +91 -0
- data/resources/mruby/include/mruby/hash.h +182 -0
- data/resources/mruby/include/mruby/irep.h +62 -0
- data/resources/mruby/include/mruby/istruct.h +47 -0
- data/resources/mruby/include/mruby/khash.h +274 -0
- data/resources/mruby/include/mruby/numeric.h +161 -0
- data/resources/mruby/include/mruby/object.h +45 -0
- data/resources/mruby/include/mruby/opcode.h +161 -0
- data/resources/mruby/include/mruby/proc.h +131 -0
- data/resources/mruby/include/mruby/range.h +49 -0
- data/resources/mruby/include/mruby/re.h +16 -0
- data/resources/mruby/include/mruby/string.h +440 -0
- data/resources/mruby/include/mruby/throw.h +55 -0
- data/resources/mruby/include/mruby/value.h +309 -0
- data/resources/mruby/include/mruby/variable.h +138 -0
- data/resources/mruby/include/mruby/version.h +110 -0
- data/resources/mruby/lib/mruby-core-ext.rb +79 -0
- data/resources/mruby/lib/mruby/build.rb +355 -0
- data/resources/mruby/lib/mruby/build/command.rb +324 -0
- data/resources/mruby/lib/mruby/build/load_gems.rb +122 -0
- data/resources/mruby/lib/mruby/gem.rb +459 -0
- data/resources/mruby/lib/mruby/source.rb +30 -0
- data/resources/mruby/minirake +484 -0
- data/resources/mruby/mrbgems/default.gembox +82 -0
- data/resources/mruby/mrbgems/full-core.gembox +9 -0
- data/resources/mruby/mrbgems/mruby-array-ext/mrbgem.rake +6 -0
- data/resources/mruby/mrbgems/mruby-array-ext/mrblib/array.rb +935 -0
- data/resources/mruby/mrbgems/mruby-array-ext/src/array.c +246 -0
- data/resources/mruby/mrbgems/mruby-array-ext/test/array.rb +422 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/bintest/mrdb.rb +286 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/bintest/print.rb +701 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/mrbgem.rake +9 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.c +505 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.h +26 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apilist.c +240 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apilist.h +14 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apiprint.c +78 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apiprint.h +13 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c +436 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c +502 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdprint.c +58 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdrun.c +64 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.c +759 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h +165 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdbconf.h +16 -0
- data/resources/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdberror.h +20 -0
- data/resources/mruby/mrbgems/mruby-bin-mirb/bintest/mirb.rb +12 -0
- data/resources/mruby/mrbgems/mruby-bin-mirb/mrbgem.rake +33 -0
- data/resources/mruby/mrbgems/mruby-bin-mirb/tools/mirb/mirb.c +611 -0
- data/resources/mruby/mrbgems/mruby-bin-mrbc/mrbgem.rake +16 -0
- data/resources/mruby/mrbgems/mruby-bin-mrbc/tools/mrbc/mrbc.c +336 -0
- data/resources/mruby/mrbgems/mruby-bin-mruby-config/mrbgem.rake +30 -0
- data/resources/mruby/mrbgems/mruby-bin-mruby-config/mruby-config +20 -0
- data/resources/mruby/mrbgems/mruby-bin-mruby-config/mruby-config.bat +42 -0
- data/resources/mruby/mrbgems/mruby-bin-mruby/bintest/mruby.rb +60 -0
- data/resources/mruby/mrbgems/mruby-bin-mruby/mrbgem.rake +12 -0
- data/resources/mruby/mrbgems/mruby-bin-mruby/tools/mruby/mruby.c +254 -0
- data/resources/mruby/mrbgems/mruby-bin-strip/bintest/mruby-strip.rb +73 -0
- data/resources/mruby/mrbgems/mruby-bin-strip/mrbgem.rake +6 -0
- data/resources/mruby/mrbgems/mruby-bin-strip/tools/mruby-strip/mruby-strip.c +155 -0
- data/resources/mruby/mrbgems/mruby-class-ext/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-class-ext/src/class.c +68 -0
- data/resources/mruby/mrbgems/mruby-class-ext/test/module.rb +55 -0
- data/resources/mruby/mrbgems/mruby-compar-ext/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-compar-ext/mrblib/compar.rb +31 -0
- data/resources/mruby/mrbgems/mruby-compiler/bintest/mrbc.rb +30 -0
- data/resources/mruby/mrbgems/mruby-compiler/core/codegen.c +3083 -0
- data/resources/mruby/mrbgems/mruby-compiler/core/keywords +50 -0
- data/resources/mruby/mrbgems/mruby-compiler/core/lex.def +211 -0
- data/resources/mruby/mrbgems/mruby-compiler/core/node.h +118 -0
- data/resources/mruby/mrbgems/mruby-compiler/core/parse.y +6661 -0
- data/resources/mruby/mrbgems/mruby-compiler/mrbgem.rake +40 -0
- data/resources/mruby/mrbgems/mruby-enum-ext/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-enum-ext/mrblib/enum.rb +813 -0
- data/resources/mruby/mrbgems/mruby-enum-ext/test/enum.rb +185 -0
- data/resources/mruby/mrbgems/mruby-enum-lazy/mrbgem.rake +7 -0
- data/resources/mruby/mrbgems/mruby-enum-lazy/mrblib/lazy.rb +178 -0
- data/resources/mruby/mrbgems/mruby-enum-lazy/test/lazy.rb +53 -0
- data/resources/mruby/mrbgems/mruby-enumerator/mrbgem.rake +7 -0
- data/resources/mruby/mrbgems/mruby-enumerator/mrblib/enumerator.rb +645 -0
- data/resources/mruby/mrbgems/mruby-enumerator/test/enumerator.rb +546 -0
- data/resources/mruby/mrbgems/mruby-error/mrbgem.rake +10 -0
- data/resources/mruby/mrbgems/mruby-error/src/exception.c +100 -0
- data/resources/mruby/mrbgems/mruby-error/test/exception.c +59 -0
- data/resources/mruby/mrbgems/mruby-error/test/exception.rb +55 -0
- data/resources/mruby/mrbgems/mruby-eval/mrbgem.rake +7 -0
- data/resources/mruby/mrbgems/mruby-eval/src/eval.c +346 -0
- data/resources/mruby/mrbgems/mruby-eval/test/eval.rb +101 -0
- data/resources/mruby/mrbgems/mruby-exit/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-exit/src/mruby-exit.c +24 -0
- data/resources/mruby/mrbgems/mruby-fiber/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-fiber/src/fiber.c +420 -0
- data/resources/mruby/mrbgems/mruby-fiber/test/fiber.rb +208 -0
- data/resources/mruby/mrbgems/mruby-hash-ext/mrbgem.rake +8 -0
- data/resources/mruby/mrbgems/mruby-hash-ext/mrblib/hash.rb +502 -0
- data/resources/mruby/mrbgems/mruby-hash-ext/src/hash-ext.c +128 -0
- data/resources/mruby/mrbgems/mruby-hash-ext/test/hash.rb +300 -0
- data/resources/mruby/mrbgems/mruby-inline-struct/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-inline-struct/test/inline.c +83 -0
- data/resources/mruby/mrbgems/mruby-inline-struct/test/inline.rb +151 -0
- data/resources/mruby/mrbgems/mruby-io/README.md +193 -0
- data/resources/mruby/mrbgems/mruby-io/include/mruby/ext/io.h +38 -0
- data/resources/mruby/mrbgems/mruby-io/mrbgem.rake +17 -0
- data/resources/mruby/mrbgems/mruby-io/mrblib/file.rb +208 -0
- data/resources/mruby/mrbgems/mruby-io/mrblib/file_constants.rb +29 -0
- data/resources/mruby/mrbgems/mruby-io/mrblib/io.rb +387 -0
- data/resources/mruby/mrbgems/mruby-io/mrblib/kernel.rb +15 -0
- data/resources/mruby/mrbgems/mruby-io/run_test.rb +26 -0
- data/resources/mruby/mrbgems/mruby-io/src/file.c +489 -0
- data/resources/mruby/mrbgems/mruby-io/src/file_test.c +381 -0
- data/resources/mruby/mrbgems/mruby-io/src/io.c +1320 -0
- data/resources/mruby/mrbgems/mruby-io/src/mruby_io_gem.c +20 -0
- data/resources/mruby/mrbgems/mruby-io/test/file.rb +197 -0
- data/resources/mruby/mrbgems/mruby-io/test/file_test.rb +117 -0
- data/resources/mruby/mrbgems/mruby-io/test/gc_filedes.sh +4 -0
- data/resources/mruby/mrbgems/mruby-io/test/io.rb +642 -0
- data/resources/mruby/mrbgems/mruby-io/test/mruby_io_test.c +256 -0
- data/resources/mruby/mrbgems/mruby-kernel-ext/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-kernel-ext/mrblib/kernel.rb +13 -0
- data/resources/mruby/mrbgems/mruby-kernel-ext/src/kernel.c +264 -0
- data/resources/mruby/mrbgems/mruby-kernel-ext/test/kernel.rb +86 -0
- data/resources/mruby/mrbgems/mruby-math/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-math/src/math.c +783 -0
- data/resources/mruby/mrbgems/mruby-math/test/math.rb +152 -0
- data/resources/mruby/mrbgems/mruby-method/README.md +59 -0
- data/resources/mruby/mrbgems/mruby-method/mrbgem.rake +7 -0
- data/resources/mruby/mrbgems/mruby-method/mrblib/kernel.rb +9 -0
- data/resources/mruby/mrbgems/mruby-method/mrblib/method.rb +20 -0
- data/resources/mruby/mrbgems/mruby-method/mrblib/unbound_method.rb +9 -0
- data/resources/mruby/mrbgems/mruby-method/src/method.c +418 -0
- data/resources/mruby/mrbgems/mruby-method/test/method.rb +425 -0
- data/resources/mruby/mrbgems/mruby-numeric-ext/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-numeric-ext/mrblib/numeric_ext.rb +25 -0
- data/resources/mruby/mrbgems/mruby-numeric-ext/src/numeric_ext.c +102 -0
- data/resources/mruby/mrbgems/mruby-numeric-ext/test/numeric.rb +28 -0
- data/resources/mruby/mrbgems/mruby-object-ext/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-object-ext/mrblib/object.rb +19 -0
- data/resources/mruby/mrbgems/mruby-object-ext/src/object.c +112 -0
- data/resources/mruby/mrbgems/mruby-object-ext/test/nil.rb +11 -0
- data/resources/mruby/mrbgems/mruby-object-ext/test/object.rb +53 -0
- data/resources/mruby/mrbgems/mruby-objectspace/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-objectspace/src/mruby_objectspace.c +187 -0
- data/resources/mruby/mrbgems/mruby-objectspace/test/objectspace.rb +60 -0
- data/resources/mruby/mrbgems/mruby-pack/README.md +70 -0
- data/resources/mruby/mrbgems/mruby-pack/mrbgem.rake +7 -0
- data/resources/mruby/mrbgems/mruby-pack/packtest.rb +157 -0
- data/resources/mruby/mrbgems/mruby-pack/run_test.rb +26 -0
- data/resources/mruby/mrbgems/mruby-pack/src/pack.c +1281 -0
- data/resources/mruby/mrbgems/mruby-pack/test/pack.rb +165 -0
- data/resources/mruby/mrbgems/mruby-print/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-print/mrblib/print.rb +64 -0
- data/resources/mruby/mrbgems/mruby-print/src/print.c +64 -0
- data/resources/mruby/mrbgems/mruby-proc-ext/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-proc-ext/mrblib/proc.rb +42 -0
- data/resources/mruby/mrbgems/mruby-proc-ext/src/proc.c +173 -0
- data/resources/mruby/mrbgems/mruby-proc-ext/test/proc.c +62 -0
- data/resources/mruby/mrbgems/mruby-proc-ext/test/proc.rb +96 -0
- data/resources/mruby/mrbgems/mruby-random/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-random/src/mt19937ar.c +224 -0
- data/resources/mruby/mrbgems/mruby-random/src/mt19937ar.h +80 -0
- data/resources/mruby/mrbgems/mruby-random/src/random.c +349 -0
- data/resources/mruby/mrbgems/mruby-random/src/random.h +12 -0
- data/resources/mruby/mrbgems/mruby-random/test/random.rb +88 -0
- data/resources/mruby/mrbgems/mruby-range-ext/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-range-ext/mrblib/range.rb +31 -0
- data/resources/mruby/mrbgems/mruby-range-ext/src/range.c +176 -0
- data/resources/mruby/mrbgems/mruby-range-ext/test/range.rb +32 -0
- data/resources/mruby/mrbgems/mruby-socket/README.md +55 -0
- data/resources/mruby/mrbgems/mruby-socket/mrbgem.rake +17 -0
- data/resources/mruby/mrbgems/mruby-socket/mrblib/socket.rb +621 -0
- data/resources/mruby/mrbgems/mruby-socket/run_test.rb +28 -0
- data/resources/mruby/mrbgems/mruby-socket/src/const.cstub +453 -0
- data/resources/mruby/mrbgems/mruby-socket/src/const.def +163 -0
- data/resources/mruby/mrbgems/mruby-socket/src/gen.rb +17 -0
- data/resources/mruby/mrbgems/mruby-socket/src/socket.c +928 -0
- data/resources/mruby/mrbgems/mruby-socket/test/addrinfo.rb +91 -0
- data/resources/mruby/mrbgems/mruby-socket/test/basicsocket.rb +17 -0
- data/resources/mruby/mrbgems/mruby-socket/test/ipsocket.rb +44 -0
- data/resources/mruby/mrbgems/mruby-socket/test/socket.rb +38 -0
- data/resources/mruby/mrbgems/mruby-socket/test/sockettest.c +46 -0
- data/resources/mruby/mrbgems/mruby-socket/test/tcpsocket.rb +4 -0
- data/resources/mruby/mrbgems/mruby-socket/test/udpsocket.rb +16 -0
- data/resources/mruby/mrbgems/mruby-socket/test/unix.rb +130 -0
- data/resources/mruby/mrbgems/mruby-sprintf/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-sprintf/mrblib/string.rb +9 -0
- data/resources/mruby/mrbgems/mruby-sprintf/src/kernel.c +30 -0
- data/resources/mruby/mrbgems/mruby-sprintf/src/sprintf.c +1126 -0
- data/resources/mruby/mrbgems/mruby-sprintf/test/sprintf.rb +110 -0
- data/resources/mruby/mrbgems/mruby-string-ext/mrbgem.rake +6 -0
- data/resources/mruby/mrbgems/mruby-string-ext/mrblib/string.rb +368 -0
- data/resources/mruby/mrbgems/mruby-string-ext/src/string.c +804 -0
- data/resources/mruby/mrbgems/mruby-string-ext/test/string.rb +682 -0
- data/resources/mruby/mrbgems/mruby-struct/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-struct/mrblib/struct.rb +103 -0
- data/resources/mruby/mrbgems/mruby-struct/src/struct.c +726 -0
- data/resources/mruby/mrbgems/mruby-struct/test/struct.rb +205 -0
- data/resources/mruby/mrbgems/mruby-symbol-ext/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-symbol-ext/mrblib/symbol.rb +78 -0
- data/resources/mruby/mrbgems/mruby-symbol-ext/src/symbol.c +64 -0
- data/resources/mruby/mrbgems/mruby-symbol-ext/test/symbol.rb +48 -0
- data/resources/mruby/mrbgems/mruby-test/README.md +7 -0
- data/resources/mruby/mrbgems/mruby-test/driver.c +175 -0
- data/resources/mruby/mrbgems/mruby-test/init_mrbtest.c +38 -0
- data/resources/mruby/mrbgems/mruby-test/mrbgem.rake +191 -0
- data/resources/mruby/mrbgems/mruby-time/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-time/mrblib/time.rb +9 -0
- data/resources/mruby/mrbgems/mruby-time/src/time.c +869 -0
- data/resources/mruby/mrbgems/mruby-time/test/time.rb +228 -0
- data/resources/mruby/mrbgems/mruby-toplevel-ext/mrbgem.rake +5 -0
- data/resources/mruby/mrbgems/mruby-toplevel-ext/mrblib/toplevel.rb +11 -0
- data/resources/mruby/mrbgems/mruby-toplevel-ext/test/toplevel.rb +24 -0
- data/resources/mruby/mrblib/00class.rb +29 -0
- data/resources/mruby/mrblib/10error.rb +59 -0
- data/resources/mruby/mrblib/array.rb +243 -0
- data/resources/mruby/mrblib/compar.rb +84 -0
- data/resources/mruby/mrblib/enum.rb +348 -0
- data/resources/mruby/mrblib/float.rb +9 -0
- data/resources/mruby/mrblib/hash.rb +358 -0
- data/resources/mruby/mrblib/init_mrblib.c +11 -0
- data/resources/mruby/mrblib/kernel.rb +50 -0
- data/resources/mruby/mrblib/mrblib.rake +21 -0
- data/resources/mruby/mrblib/numeric.rb +163 -0
- data/resources/mruby/mrblib/range.rb +67 -0
- data/resources/mruby/mrblib/string.rb +275 -0
- data/resources/mruby/mruby-source.gemspec +18 -0
- data/resources/mruby/src/array.c +1251 -0
- data/resources/mruby/src/backtrace.c +285 -0
- data/resources/mruby/src/class.c +2546 -0
- data/resources/mruby/src/codedump.c +477 -0
- data/resources/mruby/src/compar.c +13 -0
- data/resources/mruby/src/crc.c +39 -0
- data/resources/mruby/src/debug.c +217 -0
- data/resources/mruby/src/dump.c +1106 -0
- data/resources/mruby/src/enum.c +14 -0
- data/resources/mruby/src/error.c +513 -0
- data/resources/mruby/src/error.h +3 -0
- data/resources/mruby/src/etc.c +246 -0
- data/resources/mruby/src/fmt_fp.c +374 -0
- data/resources/mruby/src/gc.c +1835 -0
- data/resources/mruby/src/hash.c +916 -0
- data/resources/mruby/src/init.c +51 -0
- data/resources/mruby/src/kernel.c +1264 -0
- data/resources/mruby/src/load.c +706 -0
- data/resources/mruby/src/mruby_core.rake +20 -0
- data/resources/mruby/src/numeric.c +1574 -0
- data/resources/mruby/src/object.c +618 -0
- data/resources/mruby/src/opcode.h +2 -0
- data/resources/mruby/src/pool.c +209 -0
- data/resources/mruby/src/print.c +47 -0
- data/resources/mruby/src/proc.c +313 -0
- data/resources/mruby/src/range.c +446 -0
- data/resources/mruby/src/state.c +307 -0
- data/resources/mruby/src/string.c +3025 -0
- data/resources/mruby/src/symbol.c +494 -0
- data/resources/mruby/src/value_array.h +27 -0
- data/resources/mruby/src/variable.c +982 -0
- data/resources/mruby/src/version.c +17 -0
- data/resources/mruby/src/vm.c +3020 -0
- data/resources/mruby/tasks/benchmark.rake +91 -0
- data/resources/mruby/tasks/gitlab.rake +118 -0
- data/resources/mruby/tasks/libmruby.rake +24 -0
- data/resources/mruby/tasks/mrbgems.rake +98 -0
- data/resources/mruby/tasks/toolchains/android.rake +321 -0
- data/resources/mruby/tasks/toolchains/clang.rake +9 -0
- data/resources/mruby/tasks/toolchains/gcc.rake +66 -0
- data/resources/mruby/tasks/toolchains/openwrt.rake +38 -0
- data/resources/mruby/tasks/toolchains/visualcpp.rake +68 -0
- data/resources/mruby/test/assert.rb +249 -0
- data/resources/mruby/test/bintest.rb +33 -0
- data/resources/mruby/test/report.rb +4 -0
- data/resources/mruby/test/t/argumenterror.rb +16 -0
- data/resources/mruby/test/t/array.rb +394 -0
- data/resources/mruby/test/t/basicobject.rb +11 -0
- data/resources/mruby/test/t/bs_block.rb +521 -0
- data/resources/mruby/test/t/bs_literal.rb +38 -0
- data/resources/mruby/test/t/class.rb +451 -0
- data/resources/mruby/test/t/codegen.rb +197 -0
- data/resources/mruby/test/t/comparable.rb +80 -0
- data/resources/mruby/test/t/ensure.rb +54 -0
- data/resources/mruby/test/t/enumerable.rb +134 -0
- data/resources/mruby/test/t/exception.rb +422 -0
- data/resources/mruby/test/t/false.rb +31 -0
- data/resources/mruby/test/t/float.rb +209 -0
- data/resources/mruby/test/t/gc.rb +45 -0
- data/resources/mruby/test/t/hash.rb +375 -0
- data/resources/mruby/test/t/indexerror.rb +6 -0
- data/resources/mruby/test/t/integer.rb +277 -0
- data/resources/mruby/test/t/iterations.rb +61 -0
- data/resources/mruby/test/t/kernel.rb +600 -0
- data/resources/mruby/test/t/lang.rb +74 -0
- data/resources/mruby/test/t/literals.rb +337 -0
- data/resources/mruby/test/t/localjumperror.rb +13 -0
- data/resources/mruby/test/t/methods.rb +109 -0
- data/resources/mruby/test/t/module.rb +914 -0
- data/resources/mruby/test/t/nameerror.rb +28 -0
- data/resources/mruby/test/t/nil.rb +39 -0
- data/resources/mruby/test/t/nomethoderror.rb +22 -0
- data/resources/mruby/test/t/numeric.rb +43 -0
- data/resources/mruby/test/t/object.rb +11 -0
- data/resources/mruby/test/t/proc.rb +180 -0
- data/resources/mruby/test/t/range.rb +95 -0
- data/resources/mruby/test/t/rangeerror.rb +6 -0
- data/resources/mruby/test/t/regexperror.rb +4 -0
- data/resources/mruby/test/t/runtimeerror.rb +6 -0
- data/resources/mruby/test/t/standarderror.rb +6 -0
- data/resources/mruby/test/t/string.rb +728 -0
- data/resources/mruby/test/t/superclass.rb +47 -0
- data/resources/mruby/test/t/symbol.rb +30 -0
- data/resources/mruby/test/t/syntax.rb +468 -0
- data/resources/mruby/test/t/true.rb +31 -0
- data/resources/mruby/test/t/typeerror.rb +6 -0
- data/resources/mruby/test/t/unicode.rb +39 -0
- data/resources/mruby/travis_config.rb +53 -0
- metadata +806 -0
|
@@ -0,0 +1,332 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Stack-less Just-In-Time compiler
|
|
3
|
+
*
|
|
4
|
+
* Copyright 2009-2012 Zoltan Herczeg (hzmester@freemail.hu). All rights reserved.
|
|
5
|
+
*
|
|
6
|
+
* Redistribution and use in source and binary forms, with or without modification, are
|
|
7
|
+
* permitted provided that the following conditions are met:
|
|
8
|
+
*
|
|
9
|
+
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
10
|
+
* conditions and the following disclaimer.
|
|
11
|
+
*
|
|
12
|
+
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
13
|
+
* of conditions and the following disclaimer in the documentation and/or other materials
|
|
14
|
+
* provided with the distribution.
|
|
15
|
+
*
|
|
16
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND CONTRIBUTORS ``AS IS'' AND ANY
|
|
17
|
+
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
18
|
+
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
|
|
19
|
+
* SHALL THE COPYRIGHT HOLDER(S) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
20
|
+
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
|
|
21
|
+
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
|
22
|
+
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
23
|
+
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
24
|
+
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
25
|
+
*/
|
|
26
|
+
|
|
27
|
+
/* ------------------------------------------------------------------------ */
|
|
28
|
+
/* Locks */
|
|
29
|
+
/* ------------------------------------------------------------------------ */
|
|
30
|
+
|
|
31
|
+
#if (defined SLJIT_EXECUTABLE_ALLOCATOR && SLJIT_EXECUTABLE_ALLOCATOR) || (defined SLJIT_UTIL_GLOBAL_LOCK && SLJIT_UTIL_GLOBAL_LOCK)
|
|
32
|
+
|
|
33
|
+
#if (defined SLJIT_SINGLE_THREADED && SLJIT_SINGLE_THREADED)
|
|
34
|
+
|
|
35
|
+
#if (defined SLJIT_EXECUTABLE_ALLOCATOR && SLJIT_EXECUTABLE_ALLOCATOR)
|
|
36
|
+
|
|
37
|
+
static SLJIT_INLINE void allocator_grab_lock(void)
|
|
38
|
+
{
|
|
39
|
+
/* Always successful. */
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
static SLJIT_INLINE void allocator_release_lock(void)
|
|
43
|
+
{
|
|
44
|
+
/* Always successful. */
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
#endif /* SLJIT_EXECUTABLE_ALLOCATOR */
|
|
48
|
+
|
|
49
|
+
#if (defined SLJIT_UTIL_GLOBAL_LOCK && SLJIT_UTIL_GLOBAL_LOCK)
|
|
50
|
+
|
|
51
|
+
SLJIT_API_FUNC_ATTRIBUTE void SLJIT_CALL sljit_grab_lock(void)
|
|
52
|
+
{
|
|
53
|
+
/* Always successful. */
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
SLJIT_API_FUNC_ATTRIBUTE void SLJIT_CALL sljit_release_lock(void)
|
|
57
|
+
{
|
|
58
|
+
/* Always successful. */
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
#endif /* SLJIT_UTIL_GLOBAL_LOCK */
|
|
62
|
+
|
|
63
|
+
#elif defined(_WIN32) /* SLJIT_SINGLE_THREADED */
|
|
64
|
+
|
|
65
|
+
#include "windows.h"
|
|
66
|
+
|
|
67
|
+
#if (defined SLJIT_EXECUTABLE_ALLOCATOR && SLJIT_EXECUTABLE_ALLOCATOR)
|
|
68
|
+
|
|
69
|
+
static HANDLE allocator_mutex = 0;
|
|
70
|
+
|
|
71
|
+
static SLJIT_INLINE void allocator_grab_lock(void)
|
|
72
|
+
{
|
|
73
|
+
/* No idea what to do if an error occures. Static mutexes should never fail... */
|
|
74
|
+
if (!allocator_mutex)
|
|
75
|
+
allocator_mutex = CreateMutex(NULL, TRUE, NULL);
|
|
76
|
+
else
|
|
77
|
+
WaitForSingleObject(allocator_mutex, INFINITE);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
static SLJIT_INLINE void allocator_release_lock(void)
|
|
81
|
+
{
|
|
82
|
+
ReleaseMutex(allocator_mutex);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
#endif /* SLJIT_EXECUTABLE_ALLOCATOR */
|
|
86
|
+
|
|
87
|
+
#if (defined SLJIT_UTIL_GLOBAL_LOCK && SLJIT_UTIL_GLOBAL_LOCK)
|
|
88
|
+
|
|
89
|
+
static HANDLE global_mutex = 0;
|
|
90
|
+
|
|
91
|
+
SLJIT_API_FUNC_ATTRIBUTE void SLJIT_CALL sljit_grab_lock(void)
|
|
92
|
+
{
|
|
93
|
+
/* No idea what to do if an error occures. Static mutexes should never fail... */
|
|
94
|
+
if (!global_mutex)
|
|
95
|
+
global_mutex = CreateMutex(NULL, TRUE, NULL);
|
|
96
|
+
else
|
|
97
|
+
WaitForSingleObject(global_mutex, INFINITE);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
SLJIT_API_FUNC_ATTRIBUTE void SLJIT_CALL sljit_release_lock(void)
|
|
101
|
+
{
|
|
102
|
+
ReleaseMutex(global_mutex);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
#endif /* SLJIT_UTIL_GLOBAL_LOCK */
|
|
106
|
+
|
|
107
|
+
#else /* _WIN32 */
|
|
108
|
+
|
|
109
|
+
#if (defined SLJIT_EXECUTABLE_ALLOCATOR && SLJIT_EXECUTABLE_ALLOCATOR)
|
|
110
|
+
|
|
111
|
+
#include <pthread.h>
|
|
112
|
+
|
|
113
|
+
static pthread_mutex_t allocator_mutex = PTHREAD_MUTEX_INITIALIZER;
|
|
114
|
+
|
|
115
|
+
static SLJIT_INLINE void allocator_grab_lock(void)
|
|
116
|
+
{
|
|
117
|
+
pthread_mutex_lock(&allocator_mutex);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
static SLJIT_INLINE void allocator_release_lock(void)
|
|
121
|
+
{
|
|
122
|
+
pthread_mutex_unlock(&allocator_mutex);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
#endif /* SLJIT_EXECUTABLE_ALLOCATOR */
|
|
126
|
+
|
|
127
|
+
#if (defined SLJIT_UTIL_GLOBAL_LOCK && SLJIT_UTIL_GLOBAL_LOCK)
|
|
128
|
+
|
|
129
|
+
#include <pthread.h>
|
|
130
|
+
|
|
131
|
+
static pthread_mutex_t global_mutex = PTHREAD_MUTEX_INITIALIZER;
|
|
132
|
+
|
|
133
|
+
SLJIT_API_FUNC_ATTRIBUTE void SLJIT_CALL sljit_grab_lock(void)
|
|
134
|
+
{
|
|
135
|
+
pthread_mutex_lock(&global_mutex);
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
SLJIT_API_FUNC_ATTRIBUTE void SLJIT_CALL sljit_release_lock(void)
|
|
139
|
+
{
|
|
140
|
+
pthread_mutex_unlock(&global_mutex);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
#endif /* SLJIT_UTIL_GLOBAL_LOCK */
|
|
144
|
+
|
|
145
|
+
#endif /* _WIN32 */
|
|
146
|
+
|
|
147
|
+
/* ------------------------------------------------------------------------ */
|
|
148
|
+
/* Stack */
|
|
149
|
+
/* ------------------------------------------------------------------------ */
|
|
150
|
+
|
|
151
|
+
#if (defined SLJIT_UTIL_STACK && SLJIT_UTIL_STACK) || (defined SLJIT_EXECUTABLE_ALLOCATOR && SLJIT_EXECUTABLE_ALLOCATOR)
|
|
152
|
+
|
|
153
|
+
#ifdef _WIN32
|
|
154
|
+
#include "windows.h"
|
|
155
|
+
#else
|
|
156
|
+
/* Provides mmap function. */
|
|
157
|
+
#include <sys/mman.h>
|
|
158
|
+
/* For detecting the page size. */
|
|
159
|
+
#include <unistd.h>
|
|
160
|
+
|
|
161
|
+
#ifndef MAP_ANON
|
|
162
|
+
|
|
163
|
+
#include <fcntl.h>
|
|
164
|
+
|
|
165
|
+
/* Some old systems does not have MAP_ANON. */
|
|
166
|
+
static sljit_si dev_zero = -1;
|
|
167
|
+
|
|
168
|
+
#if (defined SLJIT_SINGLE_THREADED && SLJIT_SINGLE_THREADED)
|
|
169
|
+
|
|
170
|
+
static SLJIT_INLINE sljit_si open_dev_zero(void)
|
|
171
|
+
{
|
|
172
|
+
dev_zero = open("/dev/zero", O_RDWR);
|
|
173
|
+
return dev_zero < 0;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
#else /* SLJIT_SINGLE_THREADED */
|
|
177
|
+
|
|
178
|
+
#include <pthread.h>
|
|
179
|
+
|
|
180
|
+
static pthread_mutex_t dev_zero_mutex = PTHREAD_MUTEX_INITIALIZER;
|
|
181
|
+
|
|
182
|
+
static SLJIT_INLINE sljit_si open_dev_zero(void)
|
|
183
|
+
{
|
|
184
|
+
pthread_mutex_lock(&dev_zero_mutex);
|
|
185
|
+
dev_zero = open("/dev/zero", O_RDWR);
|
|
186
|
+
pthread_mutex_unlock(&dev_zero_mutex);
|
|
187
|
+
return dev_zero < 0;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
#endif /* SLJIT_SINGLE_THREADED */
|
|
191
|
+
|
|
192
|
+
#endif
|
|
193
|
+
|
|
194
|
+
#endif
|
|
195
|
+
|
|
196
|
+
#endif /* SLJIT_UTIL_STACK || SLJIT_EXECUTABLE_ALLOCATOR */
|
|
197
|
+
|
|
198
|
+
#if (defined SLJIT_UTIL_STACK && SLJIT_UTIL_STACK)
|
|
199
|
+
|
|
200
|
+
/* Planning to make it even more clever in the future. */
|
|
201
|
+
static sljit_sw sljit_page_align = 0;
|
|
202
|
+
|
|
203
|
+
SLJIT_API_FUNC_ATTRIBUTE struct sljit_stack* SLJIT_CALL sljit_allocate_stack(sljit_uw limit, sljit_uw max_limit)
|
|
204
|
+
{
|
|
205
|
+
struct sljit_stack *stack;
|
|
206
|
+
union {
|
|
207
|
+
void *ptr;
|
|
208
|
+
sljit_uw uw;
|
|
209
|
+
} base;
|
|
210
|
+
#ifdef _WIN32
|
|
211
|
+
SYSTEM_INFO si;
|
|
212
|
+
#endif
|
|
213
|
+
|
|
214
|
+
if (limit > max_limit || limit < 1)
|
|
215
|
+
return NULL;
|
|
216
|
+
|
|
217
|
+
#ifdef _WIN32
|
|
218
|
+
if (!sljit_page_align) {
|
|
219
|
+
GetSystemInfo(&si);
|
|
220
|
+
sljit_page_align = si.dwPageSize - 1;
|
|
221
|
+
}
|
|
222
|
+
#else
|
|
223
|
+
if (!sljit_page_align) {
|
|
224
|
+
sljit_page_align = sysconf(_SC_PAGESIZE);
|
|
225
|
+
/* Should never happen. */
|
|
226
|
+
if (sljit_page_align < 0)
|
|
227
|
+
sljit_page_align = 4096;
|
|
228
|
+
sljit_page_align--;
|
|
229
|
+
}
|
|
230
|
+
#endif
|
|
231
|
+
|
|
232
|
+
/* Align limit and max_limit. */
|
|
233
|
+
max_limit = (max_limit + sljit_page_align) & ~sljit_page_align;
|
|
234
|
+
|
|
235
|
+
stack = (struct sljit_stack*)SLJIT_MALLOC(sizeof(struct sljit_stack));
|
|
236
|
+
if (!stack)
|
|
237
|
+
return NULL;
|
|
238
|
+
|
|
239
|
+
#ifdef _WIN32
|
|
240
|
+
base.ptr = VirtualAlloc(NULL, max_limit, MEM_RESERVE, PAGE_READWRITE);
|
|
241
|
+
if (!base.ptr) {
|
|
242
|
+
SLJIT_FREE(stack);
|
|
243
|
+
return NULL;
|
|
244
|
+
}
|
|
245
|
+
stack->base = base.uw;
|
|
246
|
+
stack->limit = stack->base;
|
|
247
|
+
stack->max_limit = stack->base + max_limit;
|
|
248
|
+
if (sljit_stack_resize(stack, stack->base + limit)) {
|
|
249
|
+
sljit_free_stack(stack);
|
|
250
|
+
return NULL;
|
|
251
|
+
}
|
|
252
|
+
#else
|
|
253
|
+
#ifdef MAP_ANON
|
|
254
|
+
base.ptr = mmap(NULL, max_limit, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON, -1, 0);
|
|
255
|
+
#else
|
|
256
|
+
if (dev_zero < 0) {
|
|
257
|
+
if (open_dev_zero()) {
|
|
258
|
+
SLJIT_FREE(stack);
|
|
259
|
+
return NULL;
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
base.ptr = mmap(NULL, max_limit, PROT_READ | PROT_WRITE, MAP_PRIVATE, dev_zero, 0);
|
|
263
|
+
#endif
|
|
264
|
+
if (base.ptr == MAP_FAILED) {
|
|
265
|
+
SLJIT_FREE(stack);
|
|
266
|
+
return NULL;
|
|
267
|
+
}
|
|
268
|
+
stack->base = base.uw;
|
|
269
|
+
stack->limit = stack->base + limit;
|
|
270
|
+
stack->max_limit = stack->base + max_limit;
|
|
271
|
+
#endif
|
|
272
|
+
stack->top = stack->base;
|
|
273
|
+
return stack;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
#undef PAGE_ALIGN
|
|
277
|
+
|
|
278
|
+
SLJIT_API_FUNC_ATTRIBUTE void SLJIT_CALL sljit_free_stack(struct sljit_stack* stack)
|
|
279
|
+
{
|
|
280
|
+
#ifdef _WIN32
|
|
281
|
+
VirtualFree((void*)stack->base, 0, MEM_RELEASE);
|
|
282
|
+
#else
|
|
283
|
+
munmap((void*)stack->base, stack->max_limit - stack->base);
|
|
284
|
+
#endif
|
|
285
|
+
SLJIT_FREE(stack);
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
SLJIT_API_FUNC_ATTRIBUTE sljit_sw SLJIT_CALL sljit_stack_resize(struct sljit_stack* stack, sljit_uw new_limit)
|
|
289
|
+
{
|
|
290
|
+
sljit_uw aligned_old_limit;
|
|
291
|
+
sljit_uw aligned_new_limit;
|
|
292
|
+
|
|
293
|
+
if ((new_limit > stack->max_limit) || (new_limit < stack->base))
|
|
294
|
+
return -1;
|
|
295
|
+
#ifdef _WIN32
|
|
296
|
+
aligned_new_limit = (new_limit + sljit_page_align) & ~sljit_page_align;
|
|
297
|
+
aligned_old_limit = (stack->limit + sljit_page_align) & ~sljit_page_align;
|
|
298
|
+
if (aligned_new_limit != aligned_old_limit) {
|
|
299
|
+
if (aligned_new_limit > aligned_old_limit) {
|
|
300
|
+
if (!VirtualAlloc((void*)aligned_old_limit, aligned_new_limit - aligned_old_limit, MEM_COMMIT, PAGE_READWRITE))
|
|
301
|
+
return -1;
|
|
302
|
+
}
|
|
303
|
+
else {
|
|
304
|
+
if (!VirtualFree((void*)aligned_new_limit, aligned_old_limit - aligned_new_limit, MEM_DECOMMIT))
|
|
305
|
+
return -1;
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
stack->limit = new_limit;
|
|
309
|
+
return 0;
|
|
310
|
+
#else
|
|
311
|
+
if (new_limit >= stack->limit) {
|
|
312
|
+
stack->limit = new_limit;
|
|
313
|
+
return 0;
|
|
314
|
+
}
|
|
315
|
+
aligned_new_limit = (new_limit + sljit_page_align) & ~sljit_page_align;
|
|
316
|
+
aligned_old_limit = (stack->limit + sljit_page_align) & ~sljit_page_align;
|
|
317
|
+
/* If madvise is available, we release the unnecessary space. */
|
|
318
|
+
#if defined(POSIX_MADV_DONTNEED)
|
|
319
|
+
if (aligned_new_limit < aligned_old_limit)
|
|
320
|
+
posix_madvise((void*)aligned_new_limit, aligned_old_limit - aligned_new_limit, POSIX_MADV_DONTNEED);
|
|
321
|
+
#elif defined(MADV_DONTNEED)
|
|
322
|
+
if (aligned_new_limit < aligned_old_limit)
|
|
323
|
+
madvise((void*)aligned_new_limit, aligned_old_limit - aligned_new_limit, MADV_DONTNEED);
|
|
324
|
+
#endif
|
|
325
|
+
stack->limit = new_limit;
|
|
326
|
+
return 0;
|
|
327
|
+
#endif
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
#endif /* SLJIT_UTIL_STACK */
|
|
331
|
+
|
|
332
|
+
#endif
|
|
@@ -0,0 +1,611 @@
|
|
|
1
|
+
This is a file of miscellaneous text that is used as test data for checking
|
|
2
|
+
that the pcregrep command is working correctly. The file must be more than 24K
|
|
3
|
+
long so that it needs more than a single read() call to process it. New
|
|
4
|
+
features should be added at the end, because some of the tests involve the
|
|
5
|
+
output of line numbers, and we don't want these to change.
|
|
6
|
+
|
|
7
|
+
PATTERN at the start of a line.
|
|
8
|
+
In the middle of a line, PATTERN appears.
|
|
9
|
+
|
|
10
|
+
This pattern is in lower case.
|
|
11
|
+
|
|
12
|
+
Here follows a whole lot of stuff that makes the file over 24K long.
|
|
13
|
+
|
|
14
|
+
-------------------------------------------------------------------------------
|
|
15
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
16
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
17
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
18
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
19
|
+
|
|
20
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
21
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
22
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
23
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
24
|
+
|
|
25
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
26
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
27
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
28
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
29
|
+
|
|
30
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
31
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
32
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
33
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
34
|
+
|
|
35
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
36
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
37
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
38
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
39
|
+
|
|
40
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
41
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
42
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
43
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
44
|
+
|
|
45
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
46
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
47
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
48
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
49
|
+
|
|
50
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
51
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
52
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
53
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
54
|
+
|
|
55
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
56
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
57
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
58
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
59
|
+
|
|
60
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
61
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
62
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
63
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
64
|
+
|
|
65
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
66
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
67
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
68
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
69
|
+
|
|
70
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
71
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
72
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
73
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
74
|
+
|
|
75
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
76
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
77
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
78
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
79
|
+
|
|
80
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
81
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
82
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
83
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
84
|
+
|
|
85
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
86
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
87
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
88
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
89
|
+
|
|
90
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
91
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
92
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
93
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
94
|
+
|
|
95
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
96
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
97
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
98
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
99
|
+
|
|
100
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
101
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
102
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
103
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
104
|
+
|
|
105
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
106
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
107
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
108
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
109
|
+
|
|
110
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
111
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
112
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
113
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
114
|
+
|
|
115
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
116
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
117
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
118
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
119
|
+
|
|
120
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
121
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
122
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
123
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
124
|
+
|
|
125
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
126
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
127
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
128
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
129
|
+
|
|
130
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
131
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
132
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
133
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
134
|
+
|
|
135
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
136
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
137
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
138
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
139
|
+
|
|
140
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
141
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
142
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
143
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
144
|
+
|
|
145
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
146
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
147
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
148
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
149
|
+
|
|
150
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
151
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
152
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
153
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
154
|
+
|
|
155
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
156
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
157
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
158
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
159
|
+
|
|
160
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
161
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
162
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
163
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
164
|
+
|
|
165
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
166
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
167
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
168
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
169
|
+
|
|
170
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
171
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
172
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
173
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
174
|
+
|
|
175
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
176
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
177
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
178
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
179
|
+
|
|
180
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
181
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
182
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
183
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
184
|
+
|
|
185
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
186
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
187
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
188
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
189
|
+
|
|
190
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
191
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
192
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
193
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
194
|
+
|
|
195
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
196
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
197
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
198
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
199
|
+
|
|
200
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
201
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
202
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
203
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
204
|
+
|
|
205
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
206
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
207
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
208
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
209
|
+
|
|
210
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
211
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
212
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
213
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
214
|
+
|
|
215
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
216
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
217
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
218
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
219
|
+
|
|
220
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
221
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
222
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
223
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
224
|
+
|
|
225
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
226
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
227
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
228
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
229
|
+
|
|
230
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
231
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
232
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
233
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
234
|
+
|
|
235
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
236
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
237
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
238
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
239
|
+
|
|
240
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
241
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
242
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
243
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
244
|
+
|
|
245
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
246
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
247
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
248
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
249
|
+
|
|
250
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
251
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
252
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
253
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
254
|
+
|
|
255
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
256
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
257
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
258
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
259
|
+
|
|
260
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
261
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
262
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
263
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
264
|
+
|
|
265
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
266
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
267
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
268
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
269
|
+
|
|
270
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
271
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
272
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
273
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
274
|
+
|
|
275
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
276
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
277
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
278
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
279
|
+
|
|
280
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
281
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
282
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
283
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
284
|
+
|
|
285
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
286
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
287
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
288
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
289
|
+
|
|
290
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
291
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
292
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
293
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
294
|
+
|
|
295
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
296
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
297
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
298
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
299
|
+
|
|
300
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
301
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
302
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
303
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
304
|
+
|
|
305
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
306
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
307
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
308
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
309
|
+
|
|
310
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
311
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
312
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
313
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
314
|
+
|
|
315
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
316
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
317
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
318
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
319
|
+
|
|
320
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
321
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
322
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
323
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
324
|
+
|
|
325
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
326
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
327
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
328
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
329
|
+
|
|
330
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
331
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
332
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
333
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
334
|
+
|
|
335
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
336
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
337
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
338
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
339
|
+
|
|
340
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
341
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
342
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
343
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
344
|
+
|
|
345
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
346
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
347
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
348
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
349
|
+
|
|
350
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
351
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
352
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
353
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
354
|
+
|
|
355
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
356
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
357
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
358
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
359
|
+
|
|
360
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
361
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
362
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
363
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
364
|
+
|
|
365
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
366
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
367
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
368
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
369
|
+
|
|
370
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
371
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
372
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
373
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
374
|
+
|
|
375
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
376
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
377
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
378
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
379
|
+
|
|
380
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
381
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
382
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
383
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
384
|
+
|
|
385
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
386
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
387
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
388
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
389
|
+
|
|
390
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
391
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
392
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
393
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
394
|
+
|
|
395
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
396
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
397
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
398
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
399
|
+
|
|
400
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
401
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
402
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
403
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
404
|
+
|
|
405
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
406
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
407
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
408
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
409
|
+
|
|
410
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
411
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
412
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
413
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
414
|
+
|
|
415
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
416
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
417
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
418
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
419
|
+
|
|
420
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
421
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
422
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
423
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
424
|
+
|
|
425
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
426
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
427
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
428
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
429
|
+
|
|
430
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
431
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
432
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
433
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
434
|
+
|
|
435
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
436
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
437
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
438
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
439
|
+
|
|
440
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
441
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
442
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
443
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
444
|
+
|
|
445
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
446
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
447
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
448
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
449
|
+
|
|
450
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
451
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
452
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
453
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
454
|
+
|
|
455
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
456
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
457
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
458
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
459
|
+
|
|
460
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
461
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
462
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
463
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
464
|
+
|
|
465
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
466
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
467
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
468
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
469
|
+
|
|
470
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
471
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
472
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
473
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
474
|
+
|
|
475
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
476
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
477
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
478
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
479
|
+
|
|
480
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
481
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
482
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
483
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
484
|
+
|
|
485
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
486
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
487
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
488
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
489
|
+
|
|
490
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
491
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
492
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
493
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
494
|
+
|
|
495
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
496
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
497
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
498
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
499
|
+
|
|
500
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
501
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
502
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
503
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
504
|
+
|
|
505
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
506
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
507
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
508
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
509
|
+
|
|
510
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
511
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
512
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
513
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
514
|
+
|
|
515
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
516
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
517
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
518
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
519
|
+
|
|
520
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
521
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
522
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
523
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
524
|
+
|
|
525
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
526
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
527
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
528
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
529
|
+
|
|
530
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
531
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
532
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
533
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
534
|
+
|
|
535
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
536
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
537
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
538
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
539
|
+
|
|
540
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
541
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
542
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
543
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
544
|
+
|
|
545
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
546
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
547
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
548
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
549
|
+
|
|
550
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
551
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
552
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
553
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
554
|
+
|
|
555
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
556
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
557
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
558
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
559
|
+
|
|
560
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
561
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
562
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
563
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
564
|
+
|
|
565
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
566
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
567
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
568
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
569
|
+
|
|
570
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
571
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
572
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
573
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
574
|
+
|
|
575
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
576
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
577
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
578
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
579
|
+
|
|
580
|
+
The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the
|
|
581
|
+
lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox
|
|
582
|
+
jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick
|
|
583
|
+
brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
|
|
584
|
+
-------------------------------------------------------------------------------
|
|
585
|
+
|
|
586
|
+
aaaaa0
|
|
587
|
+
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
|
|
588
|
+
bbbbbb
|
|
589
|
+
cccccccccccccccccccccccccccccccccccccccccc
|
|
590
|
+
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
|
|
591
|
+
eeeee
|
|
592
|
+
aaaaa2
|
|
593
|
+
ffffffffff
|
|
594
|
+
|
|
595
|
+
This is a line before the binary zero.
|
|
596
|
+
This line contains a binary zero here >< for testing.
|
|
597
|
+
This is a line after the binary zero.
|
|
598
|
+
|
|
599
|
+
ABOVE the elephant
|
|
600
|
+
ABOVE
|
|
601
|
+
ABOVE theatre
|
|
602
|
+
AB.VE
|
|
603
|
+
AB.VE the turtle
|
|
604
|
+
|
|
605
|
+
010203040506
|
|
606
|
+
|
|
607
|
+
PUT NEW DATA ABOVE THIS LINE.
|
|
608
|
+
=============================
|
|
609
|
+
|
|
610
|
+
Check up on PATTERN near the end.
|
|
611
|
+
This is the last line of this file.
|