ltris-1.0.19/0000775000175000017500000000000012233753107007745 500000000000000ltris-1.0.19/README0000664000175000017500000000736612140770051010553 00000000000000 LTris a tetris clone for Linux by Michael Speck ******************** I. Requirements II. Installation III. Troubleshooting IV. Localization V. Feedback ******************** ******************** I. Requirements ******************** LTris runs in X and uses SDL (any version though >= 1.1.4 is recommended) and SDL_mixer (optional for sound). Both libraries can be found at http://libsdl.org. ******************** II. Installation ******************** Enter your favorite shell and type in the following stuff (in the directory you extracted the LTris source) > ./configure [--disable-sound] [--disable-install] [--disable-nls] [--localstatedir=HIDIR] --disable-sound: no sound --with-buffer-size: modify audio buffer size (set this value to 2048 if you encounter any sound delays) --disable-install: no installation; play from source directory --localstatedir: install global highscores to this directory REPLACES --with-highscore-path TO COMPLY WITH AUTOCONF; THE DEFAULT LOCATION NOW DEPENDS ON YOUR DISTRIBUTION: PREVIOUSLY IT WAS /var/lib/games. USE --localstatedir=/var/lib/games FOR EXISTING HIGHSCORES. --disable-nls disable gettext support > make > su (become root) > make install (if install wasn't disabled) > exit (become user again) > ltris (run game) ******************** III. Troubleshooting ******************** If you have SDL_mixer installed but configure tells you that it can't find it, remember that you have to install the development package for compiling! --- If you can't compile because LTris' timestamps are slightly in the future run 'touchall' (found in the configure directory). --- If the SDL sound seems to be out of sync first try to modify the audio buffer by using configure option --with-buffer-size (set to 2048). If this fails set SDL_AUDIODRIVER to dma (export SDL_AUDIODRIVER=dma). ******************** IV. Localization ******************** This game now supports i18n. If you want to add l10n for your native language, please contact me first, to prevent overlapping translations. A thorough documentation can be found at http://www.gnu.org/software/gettext/manual/html_mono/gettext.html Basically, you will have to do the following: 1) cd po 2) add your language code (e.g., de for German) to the existing line in LINGUAS merely separated from the other languages by a blank 3) run `msginit -o .po` with replaced by your language code 4) translate the english message IDs in .po 5) run make .gmo Whenever you change something in your translation you'll have to repeat step 5). I strongly recommend to configure the program with --disable-install while working on a translation. Otherwise you'd have to copy and rename the .gmo file as root every time you want to see your changes. If the source has been compiled without installation, only step 5) and simply running the game is required. (Of course, the enviroment variable LANG must be set to your locale.) This should suffice. If not, please read the excellent documentation at gnu.org. The fonts do only contain the basic latin letters. No special letters (like the german umlauts or any accents for example) are supported, so a l10n should not use them. If a string has a single %, meant as a percent sign, you'll have to manually remove the 'format' comment above the id (if any). ******************** V. Feedback ******************** LGames URL: http://lgames.sf.net e-Mail: http://lgames.sf.net/contact.php ltris-1.0.19/mkinstalldirs0000775000175000017500000000653512140770051012476 00000000000000#! /bin/sh # mkinstalldirs --- make directory hierarchy scriptversion=2004-02-15.20 # Original author: Noah Friedman # Created: 1993-05-16 # Public domain. # # This file is maintained in Automake, please report # bugs to or send patches to # . errstatus=0 dirmode="" usage="\ Usage: mkinstalldirs [-h] [--help] [--version] [-m MODE] DIR ... Create each directory DIR (with mode MODE, if specified), including all leading file name components. Report bugs to ." # process command line arguments while test $# -gt 0 ; do case $1 in -h | --help | --h*) # -h for help echo "$usage" exit 0 ;; -m) # -m PERM arg shift test $# -eq 0 && { echo "$usage" 1>&2; exit 1; } dirmode=$1 shift ;; --version) echo "$0 $scriptversion" exit 0 ;; --) # stop option processing shift break ;; -*) # unknown option echo "$usage" 1>&2 exit 1 ;; *) # first non-opt arg break ;; esac done for file do if test -d "$file"; then shift else break fi done case $# in 0) exit 0 ;; esac # Solaris 8's mkdir -p isn't thread-safe. If you mkdir -p a/b and # mkdir -p a/c at the same time, both will detect that a is missing, # one will create a, then the other will try to create a and die with # a "File exists" error. This is a problem when calling mkinstalldirs # from a parallel make. We use --version in the probe to restrict # ourselves to GNU mkdir, which is thread-safe. case $dirmode in '') if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then echo "mkdir -p -- $*" exec mkdir -p -- "$@" else # On NextStep and OpenStep, the `mkdir' command does not # recognize any option. It will interpret all options as # directories to create, and then abort because `.' already # exists. test -d ./-p && rmdir ./-p test -d ./--version && rmdir ./--version fi ;; *) if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 && test ! -d ./--version; then echo "mkdir -m $dirmode -p -- $*" exec mkdir -m "$dirmode" -p -- "$@" else # Clean up after NextStep and OpenStep mkdir. for d in ./-m ./-p ./--version "./$dirmode"; do test -d $d && rmdir $d done fi ;; esac for file do set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'` shift pathcomp= for d do pathcomp="$pathcomp$d" case $pathcomp in -*) pathcomp=./$pathcomp ;; esac if test ! -d "$pathcomp"; then echo "mkdir $pathcomp" mkdir "$pathcomp" || lasterr=$? if test ! -d "$pathcomp"; then errstatus=$lasterr else if test ! -z "$dirmode"; then echo "chmod $dirmode $pathcomp" lasterr="" chmod "$dirmode" "$pathcomp" || lasterr=$? if test ! -z "$lasterr"; then errstatus=$lasterr fi fi fi fi pathcomp="$pathcomp/" done done exit $errstatus # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: ltris-1.0.19/aclocal.m40000664000175000017500000010653012233753071011532 00000000000000# generated automatically by aclocal 1.11.3 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, # Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],, [m4_warning([this file was generated for autoconf 2.68. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically `autoreconf'.])]) # Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008, 2011 Free Software # Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.11.3], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11.3])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to # `$srcdir', `$srcdir/..', or `$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is `.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 9 # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009, # 2010, 2011 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 12 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "GCJ", or "OBJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl ifelse([$1], CC, [depcc="$CC" am_compiler_list=], [$1], CXX, [depcc="$CXX" am_compiler_list=], [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], UPC, [depcc="$UPC" am_compiler_list=], [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, [ --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl AC_SUBST([am__nodep])dnl _AM_SUBST_NOTMAKE([am__nodep])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. #serial 5 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Autoconf 2.62 quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each `.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 8 # AM_CONFIG_HEADER is obsolete. It has been replaced by AC_CONFIG_HEADERS. AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2008, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 16 # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) AM_MISSING_PROG(AUTOCONF, autoconf) AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) AM_MISSING_PROG(AUTOHEADER, autoheader) AM_MISSING_PROG(MAKEINFO, makeinfo) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AM_PROG_MKDIR_P])dnl # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES(CC)], [define([AC_PROG_CC], defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES(CXX)], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES(OBJC)], [define([AC_PROG_OBJC], defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl ]) _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl dnl The `parallel-tests' driver may need to know about EXEEXT, so add the dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl ]) dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001, 2003, 2005, 2008, 2011 Free Software Foundation, # Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST(install_sh)]) # Copyright (C) 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from `make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 6 # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it supports --run. # If it does, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= AC_MSG_WARN([`missing' script is too old or missing]) fi ]) # Copyright (C) 2003, 2004, 2005, 2006, 2011 Free Software Foundation, # Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # AM_PROG_MKDIR_P # --------------- # Check for `mkdir -p'. AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, dnl while keeping a definition of mkdir_p for backward compatibility. dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of dnl Makefile.ins that do not define MKDIR_P, so we do our own dnl adjustment using top_builddir (which is defined more often than dnl MKDIR_P). AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl case $mkdir_p in [[\\/$]]* | ?:[[\\/]]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2008, 2010 Free Software # Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 5 # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # -------------------- # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) # _AM_SET_OPTIONS(OPTIONS) # ------------------------ # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 5 # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Just in case sleep 1 echo timestamp > conftest.file # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; esac # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT(yes)]) # Copyright (C) 2001, 2003, 2005, 2011 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 1 # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor `install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in `make install-strip', and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be `maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006, 2008, 2010 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 3 # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # -------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004, 2005, 2012 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of `v7', `ustar', or `pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar],, [pax],, [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' _am_tools=${am_cv_prog_tar_$1-$_am_tools} # Do not fold the above two line into one, because Tru64 sh and # Solaris sh will not grok spaces in the rhs of `-'. for _am_tool in $_am_tools do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR m4_include([m4/codeset.m4]) m4_include([m4/gettext.m4]) m4_include([m4/glibc21.m4]) m4_include([m4/iconv.m4]) m4_include([m4/intdiv0.m4]) m4_include([m4/intmax.m4]) m4_include([m4/inttypes-pri.m4]) m4_include([m4/inttypes.m4]) m4_include([m4/inttypes_h.m4]) m4_include([m4/isc-posix.m4]) m4_include([m4/lcmessage.m4]) m4_include([m4/lib-ld.m4]) m4_include([m4/lib-link.m4]) m4_include([m4/lib-prefix.m4]) m4_include([m4/longdouble.m4]) m4_include([m4/longlong.m4]) m4_include([m4/nls.m4]) m4_include([m4/po.m4]) m4_include([m4/printf-posix.m4]) m4_include([m4/progtest.m4]) m4_include([m4/signed.m4]) m4_include([m4/size_max.m4]) m4_include([m4/stdint_h.m4]) m4_include([m4/uintmax_t.m4]) m4_include([m4/ulonglong.m4]) m4_include([m4/wchar_t.m4]) m4_include([m4/wint_t.m4]) m4_include([m4/xsize.m4]) m4_include([acinclude.m4]) ltris-1.0.19/intl/0000775000175000017500000000000012233753107010713 500000000000000ltris-1.0.19/intl/plural-exp.c0000664000175000017500000000765112140770050013072 00000000000000/* Expression parsing for plural form selection. Copyright (C) 2000-2001, 2003 Free Software Foundation, Inc. Written by Ulrich Drepper , 2000. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include "plural-exp.h" #if (defined __GNUC__ && !defined __APPLE_CC__) \ || (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L) /* These structs are the constant expression for the germanic plural form determination. It represents the expression "n != 1". */ static const struct expression plvar = { .nargs = 0, .operation = var, }; static const struct expression plone = { .nargs = 0, .operation = num, .val = { .num = 1 } }; struct expression GERMANIC_PLURAL = { .nargs = 2, .operation = not_equal, .val = { .args = { [0] = (struct expression *) &plvar, [1] = (struct expression *) &plone } } }; # define INIT_GERMANIC_PLURAL() #else /* For compilers without support for ISO C 99 struct/union initializers: Initialization at run-time. */ static struct expression plvar; static struct expression plone; struct expression GERMANIC_PLURAL; static void init_germanic_plural () { if (plone.val.num == 0) { plvar.nargs = 0; plvar.operation = var; plone.nargs = 0; plone.operation = num; plone.val.num = 1; GERMANIC_PLURAL.nargs = 2; GERMANIC_PLURAL.operation = not_equal; GERMANIC_PLURAL.val.args[0] = &plvar; GERMANIC_PLURAL.val.args[1] = &plone; } } # define INIT_GERMANIC_PLURAL() init_germanic_plural () #endif void internal_function EXTRACT_PLURAL_EXPRESSION (const char *nullentry, struct expression **pluralp, unsigned long int *npluralsp) { if (nullentry != NULL) { const char *plural; const char *nplurals; plural = strstr (nullentry, "plural="); nplurals = strstr (nullentry, "nplurals="); if (plural == NULL || nplurals == NULL) goto no_plural; else { char *endp; unsigned long int n; struct parse_args args; /* First get the number. */ nplurals += 9; while (*nplurals != '\0' && isspace ((unsigned char) *nplurals)) ++nplurals; if (!(*nplurals >= '0' && *nplurals <= '9')) goto no_plural; #if defined HAVE_STRTOUL || defined _LIBC n = strtoul (nplurals, &endp, 10); #else for (endp = nplurals, n = 0; *endp >= '0' && *endp <= '9'; endp++) n = n * 10 + (*endp - '0'); #endif if (nplurals == endp) goto no_plural; *npluralsp = n; /* Due to the restrictions bison imposes onto the interface of the scanner function we have to put the input string and the result passed up from the parser into the same structure which address is passed down to the parser. */ plural += 7; args.cp = plural; if (PLURAL_PARSE (&args) != 0) goto no_plural; *pluralp = args.res; } } else { /* By default we are using the Germanic form: singular form only for `one', the plural form otherwise. Yes, this is also what English is using since English is a Germanic language. */ no_plural: INIT_GERMANIC_PLURAL (); *pluralp = &GERMANIC_PLURAL; *npluralsp = 2; } } ltris-1.0.19/intl/printf-parse.h0000664000175000017500000000420712140770050013412 00000000000000/* Parse printf format string. Copyright (C) 1999, 2002-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _PRINTF_PARSE_H #define _PRINTF_PARSE_H #include "printf-args.h" /* Flags */ #define FLAG_GROUP 1 /* ' flag */ #define FLAG_LEFT 2 /* - flag */ #define FLAG_SHOWSIGN 4 /* + flag */ #define FLAG_SPACE 8 /* space flag */ #define FLAG_ALT 16 /* # flag */ #define FLAG_ZERO 32 /* arg_index value indicating that no argument is consumed. */ #define ARG_NONE (~(size_t)0) /* A parsed directive. */ typedef struct { const char* dir_start; const char* dir_end; int flags; const char* width_start; const char* width_end; size_t width_arg_index; const char* precision_start; const char* precision_end; size_t precision_arg_index; char conversion; /* d i o u x X f e E g G c s p n U % but not C S */ size_t arg_index; } char_directive; /* A parsed format string. */ typedef struct { size_t count; char_directive *dir; size_t max_width_length; size_t max_precision_length; } char_directives; /* Parses the format string. Fills in the number N of directives, and fills in directives[0], ..., directives[N-1], and sets directives[N].dir_start to the end of the format string. Also fills in the arg_type fields of the arguments and the needed count of arguments. */ #ifdef STATIC STATIC #else extern #endif int printf_parse (const char *format, char_directives *d, arguments *a); #endif /* _PRINTF_PARSE_H */ ltris-1.0.19/intl/finddomain.c0000664000175000017500000001274312140770050013107 00000000000000/* Handle list of needed message catalogs Copyright (C) 1995-1999, 2000-2001, 2003 Free Software Foundation, Inc. Written by Ulrich Drepper , 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include #if defined HAVE_UNISTD_H || defined _LIBC # include #endif #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* @@ end of prolog @@ */ /* List of already loaded domains. */ static struct loaded_l10nfile *_nl_loaded_domains; /* Return a data structure describing the message catalog described by the DOMAINNAME and CATEGORY parameters with respect to the currently established bindings. */ struct loaded_l10nfile * internal_function _nl_find_domain (const char *dirname, char *locale, const char *domainname, struct binding *domainbinding) { struct loaded_l10nfile *retval; const char *language; const char *modifier; const char *territory; const char *codeset; const char *normalized_codeset; const char *special; const char *sponsor; const char *revision; const char *alias_value; int mask; /* LOCALE can consist of up to four recognized parts for the XPG syntax: language[_territory[.codeset]][@modifier] and six parts for the CEN syntax: language[_territory][+audience][+special][,[sponsor][_revision]] Beside the first part all of them are allowed to be missing. If the full specified locale is not found, the less specific one are looked for. The various parts will be stripped off according to the following order: (1) revision (2) sponsor (3) special (4) codeset (5) normalized codeset (6) territory (7) audience/modifier */ /* If we have already tested for this locale entry there has to be one data set in the list of loaded domains. */ retval = _nl_make_l10nflist (&_nl_loaded_domains, dirname, strlen (dirname) + 1, 0, locale, NULL, NULL, NULL, NULL, NULL, NULL, NULL, domainname, 0); if (retval != NULL) { /* We know something about this locale. */ int cnt; if (retval->decided == 0) _nl_load_domain (retval, domainbinding); if (retval->data != NULL) return retval; for (cnt = 0; retval->successor[cnt] != NULL; ++cnt) { if (retval->successor[cnt]->decided == 0) _nl_load_domain (retval->successor[cnt], domainbinding); if (retval->successor[cnt]->data != NULL) break; } return cnt >= 0 ? retval : NULL; /* NOTREACHED */ } /* See whether the locale value is an alias. If yes its value *overwrites* the alias name. No test for the original value is done. */ alias_value = _nl_expand_alias (locale); if (alias_value != NULL) { #if defined _LIBC || defined HAVE_STRDUP locale = strdup (alias_value); if (locale == NULL) return NULL; #else size_t len = strlen (alias_value) + 1; locale = (char *) malloc (len); if (locale == NULL) return NULL; memcpy (locale, alias_value, len); #endif } /* Now we determine the single parts of the locale name. First look for the language. Termination symbols are `_' and `@' if we use XPG4 style, and `_', `+', and `,' if we use CEN syntax. */ mask = _nl_explode_name (locale, &language, &modifier, &territory, &codeset, &normalized_codeset, &special, &sponsor, &revision); /* Create all possible locale entries which might be interested in generalization. */ retval = _nl_make_l10nflist (&_nl_loaded_domains, dirname, strlen (dirname) + 1, mask, language, territory, codeset, normalized_codeset, modifier, special, sponsor, revision, domainname, 1); if (retval == NULL) /* This means we are out of core. */ return NULL; if (retval->decided == 0) _nl_load_domain (retval, domainbinding); if (retval->data == NULL) { int cnt; for (cnt = 0; retval->successor[cnt] != NULL; ++cnt) { if (retval->successor[cnt]->decided == 0) _nl_load_domain (retval->successor[cnt], domainbinding); if (retval->successor[cnt]->data != NULL) break; } } /* The room for an alias was dynamically allocated. Free it now. */ if (alias_value != NULL) free (locale); /* The space for normalized_codeset is dynamically allocated. Free it. */ if (mask & XPG_NORM_CODESET) free ((void *) normalized_codeset); return retval; } #ifdef _LIBC libc_freeres_fn (free_mem) { struct loaded_l10nfile *runp = _nl_loaded_domains; while (runp != NULL) { struct loaded_l10nfile *here = runp; if (runp->data != NULL) _nl_unload_domain ((struct loaded_domain *) runp->data); runp = runp->next; free ((char *) here->filename); free (here); } } #endif ltris-1.0.19/intl/vasnprintf.c0000664000175000017500000005304412140770050013170 00000000000000/* vsprintf with automatic memory allocation. Copyright (C) 1999, 2002-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Tell glibc's to provide a prototype for snprintf(). This must come before because may include , and once has been included, it's too late. */ #ifndef _GNU_SOURCE # define _GNU_SOURCE 1 #endif #ifdef HAVE_CONFIG_H # include #endif #ifndef IN_LIBINTL # include #endif /* Specification. */ #if WIDE_CHAR_VERSION # include "vasnwprintf.h" #else # include "vasnprintf.h" #endif #include /* snprintf(), sprintf() */ #include /* abort(), malloc(), realloc(), free() */ #include /* memcpy(), strlen() */ #include /* errno */ #include /* CHAR_BIT */ #include /* DBL_MAX_EXP, LDBL_MAX_EXP */ #if WIDE_CHAR_VERSION # include "wprintf-parse.h" #else # include "printf-parse.h" #endif /* Checked size_t computations. */ #include "xsize.h" #ifdef HAVE_WCHAR_T # ifdef HAVE_WCSLEN # define local_wcslen wcslen # else /* Solaris 2.5.1 has wcslen() in a separate library libw.so. To avoid a dependency towards this library, here is a local substitute. Define this substitute only once, even if this file is included twice in the same compilation unit. */ # ifndef local_wcslen_defined # define local_wcslen_defined 1 static size_t local_wcslen (const wchar_t *s) { const wchar_t *ptr; for (ptr = s; *ptr != (wchar_t) 0; ptr++) ; return ptr - s; } # endif # endif #endif #if WIDE_CHAR_VERSION # define VASNPRINTF vasnwprintf # define CHAR_T wchar_t # define DIRECTIVE wchar_t_directive # define DIRECTIVES wchar_t_directives # define PRINTF_PARSE wprintf_parse # define USE_SNPRINTF 1 # if HAVE_DECL__SNWPRINTF /* On Windows, the function swprintf() has a different signature than on Unix; we use the _snwprintf() function instead. */ # define SNPRINTF _snwprintf # else /* Unix. */ # define SNPRINTF swprintf # endif #else # define VASNPRINTF vasnprintf # define CHAR_T char # define DIRECTIVE char_directive # define DIRECTIVES char_directives # define PRINTF_PARSE printf_parse # define USE_SNPRINTF (HAVE_DECL__SNPRINTF || HAVE_SNPRINTF) # if HAVE_DECL__SNPRINTF /* Windows. */ # define SNPRINTF _snprintf # else /* Unix. */ # define SNPRINTF snprintf # endif #endif CHAR_T * VASNPRINTF (CHAR_T *resultbuf, size_t *lengthp, const CHAR_T *format, va_list args) { DIRECTIVES d; arguments a; if (PRINTF_PARSE (format, &d, &a) < 0) { errno = EINVAL; return NULL; } #define CLEANUP() \ free (d.dir); \ if (a.arg) \ free (a.arg); if (printf_fetchargs (args, &a) < 0) { CLEANUP (); errno = EINVAL; return NULL; } { size_t buf_neededlength; CHAR_T *buf; CHAR_T *buf_malloced; const CHAR_T *cp; size_t i; DIRECTIVE *dp; /* Output string accumulator. */ CHAR_T *result; size_t allocated; size_t length; /* Allocate a small buffer that will hold a directive passed to sprintf or snprintf. */ buf_neededlength = xsum4 (7, d.max_width_length, d.max_precision_length, 6); #if HAVE_ALLOCA if (buf_neededlength < 4000 / sizeof (CHAR_T)) { buf = (CHAR_T *) alloca (buf_neededlength * sizeof (CHAR_T)); buf_malloced = NULL; } else #endif { size_t buf_memsize = xtimes (buf_neededlength, sizeof (CHAR_T)); if (size_overflow_p (buf_memsize)) goto out_of_memory_1; buf = (CHAR_T *) malloc (buf_memsize); if (buf == NULL) goto out_of_memory_1; buf_malloced = buf; } if (resultbuf != NULL) { result = resultbuf; allocated = *lengthp; } else { result = NULL; allocated = 0; } length = 0; /* Invariants: result is either == resultbuf or == NULL or malloc-allocated. If length > 0, then result != NULL. */ /* Ensures that allocated >= needed. Aborts through a jump to out_of_memory if needed is SIZE_MAX or otherwise too big. */ #define ENSURE_ALLOCATION(needed) \ if ((needed) > allocated) \ { \ size_t memory_size; \ CHAR_T *memory; \ \ allocated = (allocated > 0 ? xtimes (allocated, 2) : 12); \ if ((needed) > allocated) \ allocated = (needed); \ memory_size = xtimes (allocated, sizeof (CHAR_T)); \ if (size_overflow_p (memory_size)) \ goto out_of_memory; \ if (result == resultbuf || result == NULL) \ memory = (CHAR_T *) malloc (memory_size); \ else \ memory = (CHAR_T *) realloc (result, memory_size); \ if (memory == NULL) \ goto out_of_memory; \ if (result == resultbuf && length > 0) \ memcpy (memory, result, length * sizeof (CHAR_T)); \ result = memory; \ } for (cp = format, i = 0, dp = &d.dir[0]; ; cp = dp->dir_end, i++, dp++) { if (cp != dp->dir_start) { size_t n = dp->dir_start - cp; size_t augmented_length = xsum (length, n); ENSURE_ALLOCATION (augmented_length); memcpy (result + length, cp, n * sizeof (CHAR_T)); length = augmented_length; } if (i == d.count) break; /* Execute a single directive. */ if (dp->conversion == '%') { size_t augmented_length; if (!(dp->arg_index == ARG_NONE)) abort (); augmented_length = xsum (length, 1); ENSURE_ALLOCATION (augmented_length); result[length] = '%'; length = augmented_length; } else { if (!(dp->arg_index != ARG_NONE)) abort (); if (dp->conversion == 'n') { switch (a.arg[dp->arg_index].type) { case TYPE_COUNT_SCHAR_POINTER: *a.arg[dp->arg_index].a.a_count_schar_pointer = length; break; case TYPE_COUNT_SHORT_POINTER: *a.arg[dp->arg_index].a.a_count_short_pointer = length; break; case TYPE_COUNT_INT_POINTER: *a.arg[dp->arg_index].a.a_count_int_pointer = length; break; case TYPE_COUNT_LONGINT_POINTER: *a.arg[dp->arg_index].a.a_count_longint_pointer = length; break; #ifdef HAVE_LONG_LONG case TYPE_COUNT_LONGLONGINT_POINTER: *a.arg[dp->arg_index].a.a_count_longlongint_pointer = length; break; #endif default: abort (); } } else { arg_type type = a.arg[dp->arg_index].type; CHAR_T *p; unsigned int prefix_count; int prefixes[2]; #if !USE_SNPRINTF size_t tmp_length; CHAR_T tmpbuf[700]; CHAR_T *tmp; /* Allocate a temporary buffer of sufficient size for calling sprintf. */ { size_t width; size_t precision; width = 0; if (dp->width_start != dp->width_end) { if (dp->width_arg_index != ARG_NONE) { int arg; if (!(a.arg[dp->width_arg_index].type == TYPE_INT)) abort (); arg = a.arg[dp->width_arg_index].a.a_int; width = (arg < 0 ? (unsigned int) (-arg) : arg); } else { const CHAR_T *digitp = dp->width_start; do width = xsum (xtimes (width, 10), *digitp++ - '0'); while (digitp != dp->width_end); } } precision = 6; if (dp->precision_start != dp->precision_end) { if (dp->precision_arg_index != ARG_NONE) { int arg; if (!(a.arg[dp->precision_arg_index].type == TYPE_INT)) abort (); arg = a.arg[dp->precision_arg_index].a.a_int; precision = (arg < 0 ? 0 : arg); } else { const CHAR_T *digitp = dp->precision_start + 1; precision = 0; do precision = xsum (xtimes (precision, 10), *digitp++ - '0'); while (digitp != dp->precision_end); } } switch (dp->conversion) { case 'd': case 'i': case 'u': # ifdef HAVE_LONG_LONG if (type == TYPE_LONGLONGINT || type == TYPE_ULONGLONGINT) tmp_length = (unsigned int) (sizeof (unsigned long long) * CHAR_BIT * 0.30103 /* binary -> decimal */ * 2 /* estimate for FLAG_GROUP */ ) + 1 /* turn floor into ceil */ + 1; /* account for leading sign */ else # endif if (type == TYPE_LONGINT || type == TYPE_ULONGINT) tmp_length = (unsigned int) (sizeof (unsigned long) * CHAR_BIT * 0.30103 /* binary -> decimal */ * 2 /* estimate for FLAG_GROUP */ ) + 1 /* turn floor into ceil */ + 1; /* account for leading sign */ else tmp_length = (unsigned int) (sizeof (unsigned int) * CHAR_BIT * 0.30103 /* binary -> decimal */ * 2 /* estimate for FLAG_GROUP */ ) + 1 /* turn floor into ceil */ + 1; /* account for leading sign */ break; case 'o': # ifdef HAVE_LONG_LONG if (type == TYPE_LONGLONGINT || type == TYPE_ULONGLONGINT) tmp_length = (unsigned int) (sizeof (unsigned long long) * CHAR_BIT * 0.333334 /* binary -> octal */ ) + 1 /* turn floor into ceil */ + 1; /* account for leading sign */ else # endif if (type == TYPE_LONGINT || type == TYPE_ULONGINT) tmp_length = (unsigned int) (sizeof (unsigned long) * CHAR_BIT * 0.333334 /* binary -> octal */ ) + 1 /* turn floor into ceil */ + 1; /* account for leading sign */ else tmp_length = (unsigned int) (sizeof (unsigned int) * CHAR_BIT * 0.333334 /* binary -> octal */ ) + 1 /* turn floor into ceil */ + 1; /* account for leading sign */ break; case 'x': case 'X': # ifdef HAVE_LONG_LONG if (type == TYPE_LONGLONGINT || type == TYPE_ULONGLONGINT) tmp_length = (unsigned int) (sizeof (unsigned long long) * CHAR_BIT * 0.25 /* binary -> hexadecimal */ ) + 1 /* turn floor into ceil */ + 2; /* account for leading sign or alternate form */ else # endif if (type == TYPE_LONGINT || type == TYPE_ULONGINT) tmp_length = (unsigned int) (sizeof (unsigned long) * CHAR_BIT * 0.25 /* binary -> hexadecimal */ ) + 1 /* turn floor into ceil */ + 2; /* account for leading sign or alternate form */ else tmp_length = (unsigned int) (sizeof (unsigned int) * CHAR_BIT * 0.25 /* binary -> hexadecimal */ ) + 1 /* turn floor into ceil */ + 2; /* account for leading sign or alternate form */ break; case 'f': case 'F': # ifdef HAVE_LONG_DOUBLE if (type == TYPE_LONGDOUBLE) tmp_length = (unsigned int) (LDBL_MAX_EXP * 0.30103 /* binary -> decimal */ * 2 /* estimate for FLAG_GROUP */ ) + 1 /* turn floor into ceil */ + 10; /* sign, decimal point etc. */ else # endif tmp_length = (unsigned int) (DBL_MAX_EXP * 0.30103 /* binary -> decimal */ * 2 /* estimate for FLAG_GROUP */ ) + 1 /* turn floor into ceil */ + 10; /* sign, decimal point etc. */ tmp_length = xsum (tmp_length, precision); break; case 'e': case 'E': case 'g': case 'G': case 'a': case 'A': tmp_length = 12; /* sign, decimal point, exponent etc. */ tmp_length = xsum (tmp_length, precision); break; case 'c': # if defined HAVE_WINT_T && !WIDE_CHAR_VERSION if (type == TYPE_WIDE_CHAR) tmp_length = MB_CUR_MAX; else # endif tmp_length = 1; break; case 's': # ifdef HAVE_WCHAR_T if (type == TYPE_WIDE_STRING) { tmp_length = local_wcslen (a.arg[dp->arg_index].a.a_wide_string); # if !WIDE_CHAR_VERSION tmp_length = xtimes (tmp_length, MB_CUR_MAX); # endif } else # endif tmp_length = strlen (a.arg[dp->arg_index].a.a_string); break; case 'p': tmp_length = (unsigned int) (sizeof (void *) * CHAR_BIT * 0.25 /* binary -> hexadecimal */ ) + 1 /* turn floor into ceil */ + 2; /* account for leading 0x */ break; default: abort (); } if (tmp_length < width) tmp_length = width; tmp_length = xsum (tmp_length, 1); /* account for trailing NUL */ } if (tmp_length <= sizeof (tmpbuf) / sizeof (CHAR_T)) tmp = tmpbuf; else { size_t tmp_memsize = xtimes (tmp_length, sizeof (CHAR_T)); if (size_overflow_p (tmp_memsize)) /* Overflow, would lead to out of memory. */ goto out_of_memory; tmp = (CHAR_T *) malloc (tmp_memsize); if (tmp == NULL) /* Out of memory. */ goto out_of_memory; } #endif /* Construct the format string for calling snprintf or sprintf. */ p = buf; *p++ = '%'; if (dp->flags & FLAG_GROUP) *p++ = '\''; if (dp->flags & FLAG_LEFT) *p++ = '-'; if (dp->flags & FLAG_SHOWSIGN) *p++ = '+'; if (dp->flags & FLAG_SPACE) *p++ = ' '; if (dp->flags & FLAG_ALT) *p++ = '#'; if (dp->flags & FLAG_ZERO) *p++ = '0'; if (dp->width_start != dp->width_end) { size_t n = dp->width_end - dp->width_start; memcpy (p, dp->width_start, n * sizeof (CHAR_T)); p += n; } if (dp->precision_start != dp->precision_end) { size_t n = dp->precision_end - dp->precision_start; memcpy (p, dp->precision_start, n * sizeof (CHAR_T)); p += n; } switch (type) { #ifdef HAVE_LONG_LONG case TYPE_LONGLONGINT: case TYPE_ULONGLONGINT: *p++ = 'l'; /*FALLTHROUGH*/ #endif case TYPE_LONGINT: case TYPE_ULONGINT: #ifdef HAVE_WINT_T case TYPE_WIDE_CHAR: #endif #ifdef HAVE_WCHAR_T case TYPE_WIDE_STRING: #endif *p++ = 'l'; break; #ifdef HAVE_LONG_DOUBLE case TYPE_LONGDOUBLE: *p++ = 'L'; break; #endif default: break; } *p = dp->conversion; #if USE_SNPRINTF p[1] = '%'; p[2] = 'n'; p[3] = '\0'; #else p[1] = '\0'; #endif /* Construct the arguments for calling snprintf or sprintf. */ prefix_count = 0; if (dp->width_arg_index != ARG_NONE) { if (!(a.arg[dp->width_arg_index].type == TYPE_INT)) abort (); prefixes[prefix_count++] = a.arg[dp->width_arg_index].a.a_int; } if (dp->precision_arg_index != ARG_NONE) { if (!(a.arg[dp->precision_arg_index].type == TYPE_INT)) abort (); prefixes[prefix_count++] = a.arg[dp->precision_arg_index].a.a_int; } #if USE_SNPRINTF /* Prepare checking whether snprintf returns the count via %n. */ ENSURE_ALLOCATION (xsum (length, 1)); result[length] = '\0'; #endif for (;;) { size_t maxlen; int count; int retcount; maxlen = allocated - length; count = -1; retcount = 0; #if USE_SNPRINTF # define SNPRINTF_BUF(arg) \ switch (prefix_count) \ { \ case 0: \ retcount = SNPRINTF (result + length, maxlen, buf, \ arg, &count); \ break; \ case 1: \ retcount = SNPRINTF (result + length, maxlen, buf, \ prefixes[0], arg, &count); \ break; \ case 2: \ retcount = SNPRINTF (result + length, maxlen, buf, \ prefixes[0], prefixes[1], arg, \ &count); \ break; \ default: \ abort (); \ } #else # define SNPRINTF_BUF(arg) \ switch (prefix_count) \ { \ case 0: \ count = sprintf (tmp, buf, arg); \ break; \ case 1: \ count = sprintf (tmp, buf, prefixes[0], arg); \ break; \ case 2: \ count = sprintf (tmp, buf, prefixes[0], prefixes[1],\ arg); \ break; \ default: \ abort (); \ } #endif switch (type) { case TYPE_SCHAR: { int arg = a.arg[dp->arg_index].a.a_schar; SNPRINTF_BUF (arg); } break; case TYPE_UCHAR: { unsigned int arg = a.arg[dp->arg_index].a.a_uchar; SNPRINTF_BUF (arg); } break; case TYPE_SHORT: { int arg = a.arg[dp->arg_index].a.a_short; SNPRINTF_BUF (arg); } break; case TYPE_USHORT: { unsigned int arg = a.arg[dp->arg_index].a.a_ushort; SNPRINTF_BUF (arg); } break; case TYPE_INT: { int arg = a.arg[dp->arg_index].a.a_int; SNPRINTF_BUF (arg); } break; case TYPE_UINT: { unsigned int arg = a.arg[dp->arg_index].a.a_uint; SNPRINTF_BUF (arg); } break; case TYPE_LONGINT: { long int arg = a.arg[dp->arg_index].a.a_longint; SNPRINTF_BUF (arg); } break; case TYPE_ULONGINT: { unsigned long int arg = a.arg[dp->arg_index].a.a_ulongint; SNPRINTF_BUF (arg); } break; #ifdef HAVE_LONG_LONG case TYPE_LONGLONGINT: { long long int arg = a.arg[dp->arg_index].a.a_longlongint; SNPRINTF_BUF (arg); } break; case TYPE_ULONGLONGINT: { unsigned long long int arg = a.arg[dp->arg_index].a.a_ulonglongint; SNPRINTF_BUF (arg); } break; #endif case TYPE_DOUBLE: { double arg = a.arg[dp->arg_index].a.a_double; SNPRINTF_BUF (arg); } break; #ifdef HAVE_LONG_DOUBLE case TYPE_LONGDOUBLE: { long double arg = a.arg[dp->arg_index].a.a_longdouble; SNPRINTF_BUF (arg); } break; #endif case TYPE_CHAR: { int arg = a.arg[dp->arg_index].a.a_char; SNPRINTF_BUF (arg); } break; #ifdef HAVE_WINT_T case TYPE_WIDE_CHAR: { wint_t arg = a.arg[dp->arg_index].a.a_wide_char; SNPRINTF_BUF (arg); } break; #endif case TYPE_STRING: { const char *arg = a.arg[dp->arg_index].a.a_string; SNPRINTF_BUF (arg); } break; #ifdef HAVE_WCHAR_T case TYPE_WIDE_STRING: { const wchar_t *arg = a.arg[dp->arg_index].a.a_wide_string; SNPRINTF_BUF (arg); } break; #endif case TYPE_POINTER: { void *arg = a.arg[dp->arg_index].a.a_pointer; SNPRINTF_BUF (arg); } break; default: abort (); } #if USE_SNPRINTF /* Portability: Not all implementations of snprintf() are ISO C 99 compliant. Determine the number of bytes that snprintf() has produced or would have produced. */ if (count >= 0) { /* Verify that snprintf() has NUL-terminated its result. */ if (count < maxlen && result[length + count] != '\0') abort (); /* Portability hack. */ if (retcount > count) count = retcount; } else { /* snprintf() doesn't understand the '%n' directive. */ if (p[1] != '\0') { /* Don't use the '%n' directive; instead, look at the snprintf() return value. */ p[1] = '\0'; continue; } else { /* Look at the snprintf() return value. */ if (retcount < 0) { /* HP-UX 10.20 snprintf() is doubly deficient: It doesn't understand the '%n' directive, *and* it returns -1 (rather than the length that would have been required) when the buffer is too small. */ size_t bigger_need = xsum (xtimes (allocated, 2), 12); ENSURE_ALLOCATION (bigger_need); continue; } else count = retcount; } } #endif /* Attempt to handle failure. */ if (count < 0) { if (!(result == resultbuf || result == NULL)) free (result); if (buf_malloced != NULL) free (buf_malloced); CLEANUP (); errno = EINVAL; return NULL; } #if !USE_SNPRINTF if (count >= tmp_length) /* tmp_length was incorrectly calculated - fix the code above! */ abort (); #endif /* Make room for the result. */ if (count >= maxlen) { /* Need at least count bytes. But allocate proportionally, to avoid looping eternally if snprintf() reports a too small count. */ size_t n = xmax (xsum (length, count), xtimes (allocated, 2)); ENSURE_ALLOCATION (n); #if USE_SNPRINTF continue; #endif } #if USE_SNPRINTF /* The snprintf() result did fit. */ #else /* Append the sprintf() result. */ memcpy (result + length, tmp, count * sizeof (CHAR_T)); if (tmp != tmpbuf) free (tmp); #endif length += count; break; } } } } /* Add the final NUL. */ ENSURE_ALLOCATION (xsum (length, 1)); result[length] = '\0'; if (result != resultbuf && length + 1 < allocated) { /* Shrink the allocated memory if possible. */ CHAR_T *memory; memory = (CHAR_T *) realloc (result, (length + 1) * sizeof (CHAR_T)); if (memory != NULL) result = memory; } if (buf_malloced != NULL) free (buf_malloced); CLEANUP (); *lengthp = length; return result; out_of_memory: if (!(result == resultbuf || result == NULL)) free (result); if (buf_malloced != NULL) free (buf_malloced); out_of_memory_1: CLEANUP (); errno = ENOMEM; return NULL; } } #undef SNPRINTF #undef USE_SNPRINTF #undef PRINTF_PARSE #undef DIRECTIVES #undef DIRECTIVE #undef CHAR_T #undef VASNPRINTF ltris-1.0.19/intl/gettextP.h0000664000175000017500000001453012140770050012604 00000000000000/* Header describing internals of libintl library. Copyright (C) 1995-1999, 2000-2003 Free Software Foundation, Inc. Written by Ulrich Drepper , 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _GETTEXTP_H #define _GETTEXTP_H #include /* Get size_t. */ #ifdef _LIBC # include "../iconv/gconv_int.h" #else # if HAVE_ICONV # include # endif #endif #include "loadinfo.h" #include "gmo.h" /* Get nls_uint32. */ /* @@ end of prolog @@ */ #ifndef internal_function # define internal_function #endif #ifndef attribute_hidden # define attribute_hidden #endif /* Tell the compiler when a conditional or integer expression is almost always true or almost always false. */ #ifndef HAVE_BUILTIN_EXPECT # define __builtin_expect(expr, val) (expr) #endif #ifndef W # define W(flag, data) ((flag) ? SWAP (data) : (data)) #endif #ifdef _LIBC # include # define SWAP(i) bswap_32 (i) #else static inline nls_uint32 SWAP (i) nls_uint32 i; { return (i << 24) | ((i & 0xff00) << 8) | ((i >> 8) & 0xff00) | (i >> 24); } #endif /* In-memory representation of system dependent string. */ struct sysdep_string_desc { /* Length of addressed string, including the trailing NUL. */ size_t length; /* Pointer to addressed string. */ const char *pointer; }; /* The representation of an opened message catalog. */ struct loaded_domain { /* Pointer to memory containing the .mo file. */ const char *data; /* 1 if the memory is mmap()ed, 0 if the memory is malloc()ed. */ int use_mmap; /* Size of mmap()ed memory. */ size_t mmap_size; /* 1 if the .mo file uses a different endianness than this machine. */ int must_swap; /* Pointer to additional malloc()ed memory. */ void *malloced; /* Number of static strings pairs. */ nls_uint32 nstrings; /* Pointer to descriptors of original strings in the file. */ const struct string_desc *orig_tab; /* Pointer to descriptors of translated strings in the file. */ const struct string_desc *trans_tab; /* Number of system dependent strings pairs. */ nls_uint32 n_sysdep_strings; /* Pointer to descriptors of original sysdep strings. */ const struct sysdep_string_desc *orig_sysdep_tab; /* Pointer to descriptors of translated sysdep strings. */ const struct sysdep_string_desc *trans_sysdep_tab; /* Size of hash table. */ nls_uint32 hash_size; /* Pointer to hash table. */ const nls_uint32 *hash_tab; /* 1 if the hash table uses a different endianness than this machine. */ int must_swap_hash_tab; int codeset_cntr; #ifdef _LIBC __gconv_t conv; #else # if HAVE_ICONV iconv_t conv; # endif #endif char **conv_tab; struct expression *plural; unsigned long int nplurals; }; /* We want to allocate a string at the end of the struct. But ISO C doesn't allow zero sized arrays. */ #ifdef __GNUC__ # define ZERO 0 #else # define ZERO 1 #endif /* A set of settings bound to a message domain. Used to store settings from bindtextdomain() and bind_textdomain_codeset(). */ struct binding { struct binding *next; char *dirname; int codeset_cntr; /* Incremented each time codeset changes. */ char *codeset; char domainname[ZERO]; }; /* A counter which is incremented each time some previous translations become invalid. This variable is part of the external ABI of the GNU libintl. */ extern int _nl_msg_cat_cntr; #ifndef _LIBC const char *_nl_locale_name (int category, const char *categoryname); #endif struct loaded_l10nfile *_nl_find_domain (const char *__dirname, char *__locale, const char *__domainname, struct binding *__domainbinding) internal_function; void _nl_load_domain (struct loaded_l10nfile *__domain, struct binding *__domainbinding) internal_function; void _nl_unload_domain (struct loaded_domain *__domain) internal_function; const char *_nl_init_domain_conv (struct loaded_l10nfile *__domain_file, struct loaded_domain *__domain, struct binding *__domainbinding) internal_function; void _nl_free_domain_conv (struct loaded_domain *__domain) internal_function; char *_nl_find_msg (struct loaded_l10nfile *domain_file, struct binding *domainbinding, const char *msgid, size_t *lengthp) internal_function; #ifdef _LIBC extern char *__gettext (const char *__msgid); extern char *__dgettext (const char *__domainname, const char *__msgid); extern char *__dcgettext (const char *__domainname, const char *__msgid, int __category); extern char *__ngettext (const char *__msgid1, const char *__msgid2, unsigned long int __n); extern char *__dngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int n); extern char *__dcngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n, int __category); extern char *__dcigettext (const char *__domainname, const char *__msgid1, const char *__msgid2, int __plural, unsigned long int __n, int __category); extern char *__textdomain (const char *__domainname); extern char *__bindtextdomain (const char *__domainname, const char *__dirname); extern char *__bind_textdomain_codeset (const char *__domainname, const char *__codeset); #else /* Declare the exported libintl_* functions, in a way that allows us to call them under their real name. */ # undef _INTL_REDIRECT_INLINE # undef _INTL_REDIRECT_MACROS # define _INTL_REDIRECT_MACROS # include "libgnuintl.h" extern char *libintl_dcigettext (const char *__domainname, const char *__msgid1, const char *__msgid2, int __plural, unsigned long int __n, int __category); #endif /* @@ begin of epilog @@ */ #endif /* gettextP.h */ ltris-1.0.19/intl/VERSION0000664000175000017500000000005012140770050011667 00000000000000GNU gettext library from gettext-0.14.1 ltris-1.0.19/intl/ngettext.c0000664000175000017500000000367012140770050012640 00000000000000/* Implementation of ngettext(3) function. Copyright (C) 1995, 1997, 2000-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #ifdef _LIBC # define __need_NULL # include #else # include /* Just for NULL. */ #endif #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif #include /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define NGETTEXT __ngettext # define DCNGETTEXT __dcngettext #else # define NGETTEXT libintl_ngettext # define DCNGETTEXT libintl_dcngettext #endif /* Look up MSGID in the current default message catalog for the current LC_MESSAGES locale. If not found, returns MSGID itself (the default text). */ char * NGETTEXT (const char *msgid1, const char *msgid2, unsigned long int n) { return DCNGETTEXT (NULL, msgid1, msgid2, n, LC_MESSAGES); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ weak_alias (__ngettext, ngettext); #endif ltris-1.0.19/intl/printf-parse.c0000664000175000017500000002733312140770050013412 00000000000000/* Formatted output to strings. Copyright (C) 1999-2000, 2002-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif /* Specification. */ #if WIDE_CHAR_VERSION # include "wprintf-parse.h" #else # include "printf-parse.h" #endif /* Get size_t, NULL. */ #include /* Get intmax_t. */ #if HAVE_STDINT_H_WITH_UINTMAX # include #endif #if HAVE_INTTYPES_H_WITH_UINTMAX # include #endif /* malloc(), realloc(), free(). */ #include /* Checked size_t computations. */ #include "xsize.h" #if WIDE_CHAR_VERSION # define PRINTF_PARSE wprintf_parse # define CHAR_T wchar_t # define DIRECTIVE wchar_t_directive # define DIRECTIVES wchar_t_directives #else # define PRINTF_PARSE printf_parse # define CHAR_T char # define DIRECTIVE char_directive # define DIRECTIVES char_directives #endif #ifdef STATIC STATIC #endif int PRINTF_PARSE (const CHAR_T *format, DIRECTIVES *d, arguments *a) { const CHAR_T *cp = format; /* pointer into format */ size_t arg_posn = 0; /* number of regular arguments consumed */ size_t d_allocated; /* allocated elements of d->dir */ size_t a_allocated; /* allocated elements of a->arg */ size_t max_width_length = 0; size_t max_precision_length = 0; d->count = 0; d_allocated = 1; d->dir = malloc (d_allocated * sizeof (DIRECTIVE)); if (d->dir == NULL) /* Out of memory. */ return -1; a->count = 0; a_allocated = 0; a->arg = NULL; #define REGISTER_ARG(_index_,_type_) \ { \ size_t n = (_index_); \ if (n >= a_allocated) \ { \ size_t memory_size; \ argument *memory; \ \ a_allocated = xtimes (a_allocated, 2); \ if (a_allocated <= n) \ a_allocated = xsum (n, 1); \ memory_size = xtimes (a_allocated, sizeof (argument)); \ if (size_overflow_p (memory_size)) \ /* Overflow, would lead to out of memory. */ \ goto error; \ memory = (a->arg \ ? realloc (a->arg, memory_size) \ : malloc (memory_size)); \ if (memory == NULL) \ /* Out of memory. */ \ goto error; \ a->arg = memory; \ } \ while (a->count <= n) \ a->arg[a->count++].type = TYPE_NONE; \ if (a->arg[n].type == TYPE_NONE) \ a->arg[n].type = (_type_); \ else if (a->arg[n].type != (_type_)) \ /* Ambiguous type for positional argument. */ \ goto error; \ } while (*cp != '\0') { CHAR_T c = *cp++; if (c == '%') { size_t arg_index = ARG_NONE; DIRECTIVE *dp = &d->dir[d->count];/* pointer to next directive */ /* Initialize the next directive. */ dp->dir_start = cp - 1; dp->flags = 0; dp->width_start = NULL; dp->width_end = NULL; dp->width_arg_index = ARG_NONE; dp->precision_start = NULL; dp->precision_end = NULL; dp->precision_arg_index = ARG_NONE; dp->arg_index = ARG_NONE; /* Test for positional argument. */ if (*cp >= '0' && *cp <= '9') { const CHAR_T *np; for (np = cp; *np >= '0' && *np <= '9'; np++) ; if (*np == '$') { size_t n = 0; for (np = cp; *np >= '0' && *np <= '9'; np++) n = xsum (xtimes (n, 10), *np - '0'); if (n == 0) /* Positional argument 0. */ goto error; if (size_overflow_p (n)) /* n too large, would lead to out of memory later. */ goto error; arg_index = n - 1; cp = np + 1; } } /* Read the flags. */ for (;;) { if (*cp == '\'') { dp->flags |= FLAG_GROUP; cp++; } else if (*cp == '-') { dp->flags |= FLAG_LEFT; cp++; } else if (*cp == '+') { dp->flags |= FLAG_SHOWSIGN; cp++; } else if (*cp == ' ') { dp->flags |= FLAG_SPACE; cp++; } else if (*cp == '#') { dp->flags |= FLAG_ALT; cp++; } else if (*cp == '0') { dp->flags |= FLAG_ZERO; cp++; } else break; } /* Parse the field width. */ if (*cp == '*') { dp->width_start = cp; cp++; dp->width_end = cp; if (max_width_length < 1) max_width_length = 1; /* Test for positional argument. */ if (*cp >= '0' && *cp <= '9') { const CHAR_T *np; for (np = cp; *np >= '0' && *np <= '9'; np++) ; if (*np == '$') { size_t n = 0; for (np = cp; *np >= '0' && *np <= '9'; np++) n = xsum (xtimes (n, 10), *np - '0'); if (n == 0) /* Positional argument 0. */ goto error; if (size_overflow_p (n)) /* n too large, would lead to out of memory later. */ goto error; dp->width_arg_index = n - 1; cp = np + 1; } } if (dp->width_arg_index == ARG_NONE) { dp->width_arg_index = arg_posn++; if (dp->width_arg_index == ARG_NONE) /* arg_posn wrapped around. */ goto error; } REGISTER_ARG (dp->width_arg_index, TYPE_INT); } else if (*cp >= '0' && *cp <= '9') { size_t width_length; dp->width_start = cp; for (; *cp >= '0' && *cp <= '9'; cp++) ; dp->width_end = cp; width_length = dp->width_end - dp->width_start; if (max_width_length < width_length) max_width_length = width_length; } /* Parse the precision. */ if (*cp == '.') { cp++; if (*cp == '*') { dp->precision_start = cp - 1; cp++; dp->precision_end = cp; if (max_precision_length < 2) max_precision_length = 2; /* Test for positional argument. */ if (*cp >= '0' && *cp <= '9') { const CHAR_T *np; for (np = cp; *np >= '0' && *np <= '9'; np++) ; if (*np == '$') { size_t n = 0; for (np = cp; *np >= '0' && *np <= '9'; np++) n = xsum (xtimes (n, 10), *np - '0'); if (n == 0) /* Positional argument 0. */ goto error; if (size_overflow_p (n)) /* n too large, would lead to out of memory later. */ goto error; dp->precision_arg_index = n - 1; cp = np + 1; } } if (dp->precision_arg_index == ARG_NONE) { dp->precision_arg_index = arg_posn++; if (dp->precision_arg_index == ARG_NONE) /* arg_posn wrapped around. */ goto error; } REGISTER_ARG (dp->precision_arg_index, TYPE_INT); } else { size_t precision_length; dp->precision_start = cp - 1; for (; *cp >= '0' && *cp <= '9'; cp++) ; dp->precision_end = cp; precision_length = dp->precision_end - dp->precision_start; if (max_precision_length < precision_length) max_precision_length = precision_length; } } { arg_type type; /* Parse argument type/size specifiers. */ { int flags = 0; for (;;) { if (*cp == 'h') { flags |= (1 << (flags & 1)); cp++; } else if (*cp == 'L') { flags |= 4; cp++; } else if (*cp == 'l') { flags += 8; cp++; } #ifdef HAVE_INTMAX_T else if (*cp == 'j') { if (sizeof (intmax_t) > sizeof (long)) { /* intmax_t = long long */ flags += 16; } else if (sizeof (intmax_t) > sizeof (int)) { /* intmax_t = long */ flags += 8; } cp++; } #endif else if (*cp == 'z' || *cp == 'Z') { /* 'z' is standardized in ISO C 99, but glibc uses 'Z' because the warning facility in gcc-2.95.2 understands only 'Z' (see gcc-2.95.2/gcc/c-common.c:1784). */ if (sizeof (size_t) > sizeof (long)) { /* size_t = long long */ flags += 16; } else if (sizeof (size_t) > sizeof (int)) { /* size_t = long */ flags += 8; } cp++; } else if (*cp == 't') { if (sizeof (ptrdiff_t) > sizeof (long)) { /* ptrdiff_t = long long */ flags += 16; } else if (sizeof (ptrdiff_t) > sizeof (int)) { /* ptrdiff_t = long */ flags += 8; } cp++; } else break; } /* Read the conversion character. */ c = *cp++; switch (c) { case 'd': case 'i': #ifdef HAVE_LONG_LONG if (flags >= 16 || (flags & 4)) type = TYPE_LONGLONGINT; else #endif if (flags >= 8) type = TYPE_LONGINT; else if (flags & 2) type = TYPE_SCHAR; else if (flags & 1) type = TYPE_SHORT; else type = TYPE_INT; break; case 'o': case 'u': case 'x': case 'X': #ifdef HAVE_LONG_LONG if (flags >= 16 || (flags & 4)) type = TYPE_ULONGLONGINT; else #endif if (flags >= 8) type = TYPE_ULONGINT; else if (flags & 2) type = TYPE_UCHAR; else if (flags & 1) type = TYPE_USHORT; else type = TYPE_UINT; break; case 'f': case 'F': case 'e': case 'E': case 'g': case 'G': case 'a': case 'A': #ifdef HAVE_LONG_DOUBLE if (flags >= 16 || (flags & 4)) type = TYPE_LONGDOUBLE; else #endif type = TYPE_DOUBLE; break; case 'c': if (flags >= 8) #ifdef HAVE_WINT_T type = TYPE_WIDE_CHAR; #else goto error; #endif else type = TYPE_CHAR; break; #ifdef HAVE_WINT_T case 'C': type = TYPE_WIDE_CHAR; c = 'c'; break; #endif case 's': if (flags >= 8) #ifdef HAVE_WCHAR_T type = TYPE_WIDE_STRING; #else goto error; #endif else type = TYPE_STRING; break; #ifdef HAVE_WCHAR_T case 'S': type = TYPE_WIDE_STRING; c = 's'; break; #endif case 'p': type = TYPE_POINTER; break; case 'n': #ifdef HAVE_LONG_LONG if (flags >= 16 || (flags & 4)) type = TYPE_COUNT_LONGLONGINT_POINTER; else #endif if (flags >= 8) type = TYPE_COUNT_LONGINT_POINTER; else if (flags & 2) type = TYPE_COUNT_SCHAR_POINTER; else if (flags & 1) type = TYPE_COUNT_SHORT_POINTER; else type = TYPE_COUNT_INT_POINTER; break; case '%': type = TYPE_NONE; break; default: /* Unknown conversion character. */ goto error; } } if (type != TYPE_NONE) { dp->arg_index = arg_index; if (dp->arg_index == ARG_NONE) { dp->arg_index = arg_posn++; if (dp->arg_index == ARG_NONE) /* arg_posn wrapped around. */ goto error; } REGISTER_ARG (dp->arg_index, type); } dp->conversion = c; dp->dir_end = cp; } d->count++; if (d->count >= d_allocated) { size_t memory_size; DIRECTIVE *memory; d_allocated = xtimes (d_allocated, 2); memory_size = xtimes (d_allocated, sizeof (DIRECTIVE)); if (size_overflow_p (memory_size)) /* Overflow, would lead to out of memory. */ goto error; memory = realloc (d->dir, memory_size); if (memory == NULL) /* Out of memory. */ goto error; d->dir = memory; } } } d->dir[d->count].dir_start = cp; d->max_width_length = max_width_length; d->max_precision_length = max_precision_length; return 0; error: if (a->arg) free (a->arg); if (d->dir) free (d->dir); return -1; } #undef DIRECTIVES #undef DIRECTIVE #undef CHAR_T #undef PRINTF_PARSE ltris-1.0.19/intl/dngettext.c0000664000175000017500000000354212140770050013002 00000000000000/* Implementation of the dngettext(3) function. Copyright (C) 1995-1997, 2000-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #include "gettextP.h" #include #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define DNGETTEXT __dngettext # define DCNGETTEXT __dcngettext #else # define DNGETTEXT libintl_dngettext # define DCNGETTEXT libintl_dcngettext #endif /* Look up MSGID in the DOMAINNAME message catalog of the current LC_MESSAGES locale and skip message according to the plural form. */ char * DNGETTEXT (const char *domainname, const char *msgid1, const char *msgid2, unsigned long int n) { return DCNGETTEXT (domainname, msgid1, msgid2, n, LC_MESSAGES); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ weak_alias (__dngettext, dngettext); #endif ltris-1.0.19/intl/vasnwprintf.h0000664000175000017500000000330212140770050013354 00000000000000/* vswprintf with automatic memory allocation. Copyright (C) 2002-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _VASNWPRINTF_H #define _VASNWPRINTF_H /* Get va_list. */ #include /* Get wchar_t, size_t. */ #include #ifdef __cplusplus extern "C" { #endif /* Write formatted output to a string dynamically allocated with malloc(). You can pass a preallocated buffer for the result in RESULTBUF and its size in *LENGTHP; otherwise you pass RESULTBUF = NULL. If successful, return the address of the string (this may be = RESULTBUF if no dynamic memory allocation was necessary) and set *LENGTHP to the number of resulting bytes, excluding the trailing NUL. Upon error, set errno and return NULL. */ extern wchar_t * asnwprintf (wchar_t *resultbuf, size_t *lengthp, const wchar_t *format, ...); extern wchar_t * vasnwprintf (wchar_t *resultbuf, size_t *lengthp, const wchar_t *format, va_list args); #ifdef __cplusplus } #endif #endif /* _VASNWPRINTF_H */ ltris-1.0.19/intl/log.c0000664000175000017500000000530312140770050011552 00000000000000/* Log file output. Copyright (C) 2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Written by Bruno Haible . */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include /* Print an ASCII string with quotes and escape sequences where needed. */ static void print_escaped (FILE *stream, const char *str) { putc ('"', stream); for (; *str != '\0'; str++) if (*str == '\n') { fputs ("\\n\"", stream); if (str[1] == '\0') return; fputs ("\n\"", stream); } else { if (*str == '"' || *str == '\\') putc ('\\', stream); putc (*str, stream); } putc ('"', stream); } /* Add to the log file an entry denoting a failed translation. */ void _nl_log_untranslated (const char *logfilename, const char *domainname, const char *msgid1, const char *msgid2, int plural) { static char *last_logfilename = NULL; static FILE *last_logfile = NULL; FILE *logfile; /* Can we reuse the last opened logfile? */ if (last_logfilename == NULL || strcmp (logfilename, last_logfilename) != 0) { /* Close the last used logfile. */ if (last_logfilename != NULL) { if (last_logfile != NULL) { fclose (last_logfile); last_logfile = NULL; } free (last_logfilename); last_logfilename = NULL; } /* Open the logfile. */ last_logfilename = (char *) malloc (strlen (logfilename) + 1); if (last_logfilename == NULL) return; strcpy (last_logfilename, logfilename); last_logfile = fopen (logfilename, "a"); if (last_logfile == NULL) return; } logfile = last_logfile; fprintf (logfile, "domain "); print_escaped (logfile, domainname); fprintf (logfile, "\nmsgid "); print_escaped (logfile, msgid1); if (plural) { fprintf (logfile, "\nmsgid_plural "); print_escaped (logfile, msgid2); fprintf (logfile, "\nmsgstr[0] \"\"\n"); } else fprintf (logfile, "\nmsgstr \"\"\n"); putc ('\n', logfile); } ltris-1.0.19/intl/hash-string.h0000664000175000017500000000314112140770050013223 00000000000000/* Description of GNU message catalog format: string hashing function. Copyright (C) 1995, 1997-1998, 2000-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* @@ end of prolog @@ */ /* We assume to have `unsigned long int' value with at least 32 bits. */ #define HASHWORDBITS 32 /* Defines the so called `hashpjw' function by P.J. Weinberger [see Aho/Sethi/Ullman, COMPILERS: Principles, Techniques and Tools, 1986, 1987 Bell Telephone Laboratories, Inc.] */ static inline unsigned long int hash_string (const char *str_param) { unsigned long int hval, g; const char *str = str_param; /* Compute the hash value for the given string. */ hval = 0; while (*str != '\0') { hval <<= 4; hval += (unsigned char) *str++; g = hval & ((unsigned long int) 0xf << (HASHWORDBITS - 4)); if (g != 0) { hval ^= g >> (HASHWORDBITS - 8); hval ^= g; } } return hval; } ltris-1.0.19/intl/textdomain.c0000664000175000017500000001066012140770050013147 00000000000000/* Implementation of the textdomain(3) function. Copyright (C) 1995-1998, 2000-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #include #include #ifdef _LIBC # include #else # include "libgnuintl.h" #endif #include "gettextP.h" #ifdef _LIBC /* We have to handle multi-threaded applications. */ # include #else /* Provide dummy implementation if this is outside glibc. */ # define __libc_rwlock_define(CLASS, NAME) # define __libc_rwlock_wrlock(NAME) # define __libc_rwlock_unlock(NAME) #endif /* The internal variables in the standalone libintl.a must have different names than the internal variables in GNU libc, otherwise programs using libintl.a cannot be linked statically. */ #if !defined _LIBC # define _nl_default_default_domain libintl_nl_default_default_domain # define _nl_current_default_domain libintl_nl_current_default_domain #endif /* @@ end of prolog @@ */ /* Name of the default text domain. */ extern const char _nl_default_default_domain[] attribute_hidden; /* Default text domain in which entries for gettext(3) are to be found. */ extern const char *_nl_current_default_domain attribute_hidden; /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define TEXTDOMAIN __textdomain # ifndef strdup # define strdup(str) __strdup (str) # endif #else # define TEXTDOMAIN libintl_textdomain #endif /* Lock variable to protect the global data in the gettext implementation. */ __libc_rwlock_define (extern, _nl_state_lock attribute_hidden) /* Set the current default message catalog to DOMAINNAME. If DOMAINNAME is null, return the current default. If DOMAINNAME is "", reset to the default of "messages". */ char * TEXTDOMAIN (const char *domainname) { char *new_domain; char *old_domain; /* A NULL pointer requests the current setting. */ if (domainname == NULL) return (char *) _nl_current_default_domain; __libc_rwlock_wrlock (_nl_state_lock); old_domain = (char *) _nl_current_default_domain; /* If domain name is the null string set to default domain "messages". */ if (domainname[0] == '\0' || strcmp (domainname, _nl_default_default_domain) == 0) { _nl_current_default_domain = _nl_default_default_domain; new_domain = (char *) _nl_current_default_domain; } else if (strcmp (domainname, old_domain) == 0) /* This can happen and people will use it to signal that some environment variable changed. */ new_domain = old_domain; else { /* If the following malloc fails `_nl_current_default_domain' will be NULL. This value will be returned and so signals we are out of core. */ #if defined _LIBC || defined HAVE_STRDUP new_domain = strdup (domainname); #else size_t len = strlen (domainname) + 1; new_domain = (char *) malloc (len); if (new_domain != NULL) memcpy (new_domain, domainname, len); #endif if (new_domain != NULL) _nl_current_default_domain = new_domain; } /* We use this possibility to signal a change of the loaded catalogs since this is most likely the case and there is no other easy we to do it. Do it only when the call was successful. */ if (new_domain != NULL) { ++_nl_msg_cat_cntr; if (old_domain != new_domain && old_domain != _nl_default_default_domain) free (old_domain); } __libc_rwlock_unlock (_nl_state_lock); return new_domain; } #ifdef _LIBC /* Alias for function name in GNU C Library. */ weak_alias (__textdomain, textdomain); #endif ltris-1.0.19/intl/loadinfo.h0000664000175000017500000001332212140770050012571 00000000000000/* Copyright (C) 1996-1999, 2000-2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1996. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _LOADINFO_H #define _LOADINFO_H 1 /* Declarations of locale dependent catalog lookup functions. Implemented in localealias.c Possibly replace a locale name by another. explodename.c Split a locale name into its various fields. l10nflist.c Generate a list of filenames of possible message catalogs. finddomain.c Find and open the relevant message catalogs. The main function _nl_find_domain() in finddomain.c is declared in gettextP.h. */ #ifndef internal_function # define internal_function #endif /* Tell the compiler when a conditional or integer expression is almost always true or almost always false. */ #ifndef HAVE_BUILTIN_EXPECT # define __builtin_expect(expr, val) (expr) #endif /* Separator in PATH like lists of pathnames. */ #if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __DJGPP__ /* Win32, OS/2, DOS */ # define PATH_SEPARATOR ';' #else /* Unix */ # define PATH_SEPARATOR ':' #endif /* Encoding of locale name parts. */ #define CEN_REVISION 1 #define CEN_SPONSOR 2 #define CEN_SPECIAL 4 #define XPG_NORM_CODESET 8 #define XPG_CODESET 16 #define TERRITORY 32 #define CEN_AUDIENCE 64 #define XPG_MODIFIER 128 #define CEN_SPECIFIC (CEN_REVISION|CEN_SPONSOR|CEN_SPECIAL|CEN_AUDIENCE) #define XPG_SPECIFIC (XPG_CODESET|XPG_NORM_CODESET|XPG_MODIFIER) struct loaded_l10nfile { const char *filename; int decided; const void *data; struct loaded_l10nfile *next; struct loaded_l10nfile *successor[1]; }; /* Normalize codeset name. There is no standard for the codeset names. Normalization allows the user to use any of the common names. The return value is dynamically allocated and has to be freed by the caller. */ extern const char *_nl_normalize_codeset (const char *codeset, size_t name_len); /* Lookup a locale dependent file. *L10NFILE_LIST denotes a pool of lookup results of locale dependent files of the same kind, sorted in decreasing order of ->filename. DIRLIST and DIRLIST_LEN are an argz list of directories in which to look, containing at least one directory (i.e. DIRLIST_LEN > 0). MASK, LANGUAGE, TERRITORY, CODESET, NORMALIZED_CODESET, MODIFIER, SPECIAL, SPONSOR, REVISION are the pieces of the locale name, as produced by _nl_explode_name(). FILENAME is the filename suffix. The return value is the lookup result, either found in *L10NFILE_LIST, or - if DO_ALLOCATE is nonzero - freshly allocated, or possibly NULL. If the return value is non-NULL, it is added to *L10NFILE_LIST, and its ->next field denotes the chaining inside *L10NFILE_LIST, and furthermore its ->successor[] field contains a list of other lookup results from which this lookup result inherits. */ extern struct loaded_l10nfile * _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_list, const char *dirlist, size_t dirlist_len, int mask, const char *language, const char *territory, const char *codeset, const char *normalized_codeset, const char *modifier, const char *special, const char *sponsor, const char *revision, const char *filename, int do_allocate); /* Lookup the real locale name for a locale alias NAME, or NULL if NAME is not a locale alias (but possibly a real locale name). The return value is statically allocated and must not be freed. */ extern const char *_nl_expand_alias (const char *name); /* Split a locale name NAME into its pieces: language, modifier, territory, codeset, special, sponsor, revision. NAME gets destructively modified: NUL bytes are inserted here and there. *LANGUAGE gets assigned NAME. Each of *MODIFIER, *TERRITORY, *CODESET, *SPECIAL, *SPONSOR, *REVISION gets assigned either a pointer into the old NAME string, or NULL. *NORMALIZED_CODESET gets assigned the expanded *CODESET, if it is different from *CODESET; this one is dynamically allocated and has to be freed by the caller. The return value is a bitmask, where each bit corresponds to one filled-in value: XPG_MODIFIER, CEN_AUDIENCE for *MODIFIER, TERRITORY for *TERRITORY, XPG_CODESET for *CODESET, XPG_NORM_CODESET for *NORMALIZED_CODESET, CEN_SPECIAL for *SPECIAL, CEN_SPONSOR for *SPONSOR, CEN_REVISION for *REVISION. */ extern int _nl_explode_name (char *name, const char **language, const char **modifier, const char **territory, const char **codeset, const char **normalized_codeset, const char **special, const char **sponsor, const char **revision); /* Split a locale name NAME into a leading language part and all the rest. Return a pointer to the first character after the language, i.e. to the first byte of the rest. */ extern char *_nl_find_language (const char *name); #endif /* loadinfo.h */ ltris-1.0.19/intl/osdep.c0000664000175000017500000000164312140770050012106 00000000000000/* OS dependent parts of libintl. Copyright (C) 2001-2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #if defined __EMX__ # include "os2compat.c" #else /* Avoid AIX compiler warning. */ typedef int dummy; #endif ltris-1.0.19/intl/vasnprintf.h0000664000175000017500000000436012140770050013172 00000000000000/* vsprintf with automatic memory allocation. Copyright (C) 2002-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _VASNPRINTF_H #define _VASNPRINTF_H /* Get va_list. */ #include /* Get size_t. */ #include #ifndef __attribute__ /* This feature is available in gcc versions 2.5 and later. */ # if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5) || __STRICT_ANSI__ # define __attribute__(Spec) /* empty */ # endif /* The __-protected variants of `format' and `printf' attributes are accepted by gcc versions 2.6.4 (effectively 2.7) and later. */ # if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 7) # define __format__ format # define __printf__ printf # endif #endif #ifdef __cplusplus extern "C" { #endif /* Write formatted output to a string dynamically allocated with malloc(). You can pass a preallocated buffer for the result in RESULTBUF and its size in *LENGTHP; otherwise you pass RESULTBUF = NULL. If successful, return the address of the string (this may be = RESULTBUF if no dynamic memory allocation was necessary) and set *LENGTHP to the number of resulting bytes, excluding the trailing NUL. Upon error, set errno and return NULL. */ extern char * asnprintf (char *resultbuf, size_t *lengthp, const char *format, ...) __attribute__ ((__format__ (__printf__, 3, 4))); extern char * vasnprintf (char *resultbuf, size_t *lengthp, const char *format, va_list args) __attribute__ ((__format__ (__printf__, 3, 0))); #ifdef __cplusplus } #endif #endif /* _VASNPRINTF_H */ ltris-1.0.19/intl/ref-del.sin0000664000175000017500000000202412140770050012653 00000000000000# Remove this package from a list of references stored in a text file. # # Copyright (C) 2000 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Library General Public License as published # by the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Library General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, # USA. # # Written by Bruno Haible . # /^# Packages using this file: / { s/# Packages using this file:// s/ @PACKAGE@ / / s/^/# Packages using this file:/ } ltris-1.0.19/intl/libgnuintl.h.in0000664000175000017500000003114612140770050013556 00000000000000/* Message catalogs for internationalization. Copyright (C) 1995-1997, 2000-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _LIBINTL_H #define _LIBINTL_H 1 #include /* The LC_MESSAGES locale category is the category used by the functions gettext() and dgettext(). It is specified in POSIX, but not in ANSI C. On systems that don't define it, use an arbitrary value instead. On Solaris, defines __LOCALE_H (or _LOCALE_H in Solaris 2.5) then includes (i.e. this file!) and then only defines LC_MESSAGES. To avoid a redefinition warning, don't define LC_MESSAGES in this case. */ #if !defined LC_MESSAGES && !(defined __LOCALE_H || (defined _LOCALE_H && defined __sun)) # define LC_MESSAGES 1729 #endif /* We define an additional symbol to signal that we use the GNU implementation of gettext. */ #define __USE_GNU_GETTEXT 1 /* Provide information about the supported file formats. Returns the maximum minor revision number supported for a given major revision. */ #define __GNU_GETTEXT_SUPPORTED_REVISION(major) \ ((major) == 0 ? 1 : -1) /* Resolve a platform specific conflict on DJGPP. GNU gettext takes precedence over _conio_gettext. */ #ifdef __DJGPP__ # undef gettext #endif #ifdef __cplusplus extern "C" { #endif /* We redirect the functions to those prefixed with "libintl_". This is necessary, because some systems define gettext/textdomain/... in the C library (namely, Solaris 2.4 and newer, and GNU libc 2.0 and newer). If we used the unprefixed names, there would be cases where the definition in the C library would override the one in the libintl.so shared library. Recall that on ELF systems, the symbols are looked up in the following order: 1. in the executable, 2. in the shared libraries specified on the link command line, in order, 3. in the dependencies of the shared libraries specified on the link command line, 4. in the dlopen()ed shared libraries, in the order in which they were dlopen()ed. The definition in the C library would override the one in libintl.so if either * -lc is given on the link command line and -lintl isn't, or * -lc is given on the link command line before -lintl, or * libintl.so is a dependency of a dlopen()ed shared library but not linked to the executable at link time. Since Solaris gettext() behaves differently than GNU gettext(), this would be unacceptable. The redirection happens by default through macros in C, so that &gettext is independent of the compilation unit, but through inline functions in C++, in order not to interfere with the name mangling of class fields or class methods called 'gettext'. */ /* The user can define _INTL_REDIRECT_INLINE or _INTL_REDIRECT_MACROS. If he doesn't, we choose the method. A third possible method is _INTL_REDIRECT_ASM, supported only by GCC. */ #if !(defined _INTL_REDIRECT_INLINE || defined _INTL_REDIRECT_MACROS) # if __GNUC__ >= 2 && !defined __APPLE_CC__ && !defined __MINGW32__ && !(__GNUC__ == 2 && defined _AIX) && (defined __STDC__ || defined __cplusplus) # define _INTL_REDIRECT_ASM # else # ifdef __cplusplus # define _INTL_REDIRECT_INLINE # else # define _INTL_REDIRECT_MACROS # endif # endif #endif /* Auxiliary macros. */ #ifdef _INTL_REDIRECT_ASM # define _INTL_ASM(cname) __asm__ (_INTL_ASMNAME (__USER_LABEL_PREFIX__, #cname)) # define _INTL_ASMNAME(prefix,cnamestring) _INTL_STRINGIFY (prefix) cnamestring # define _INTL_STRINGIFY(prefix) #prefix #else # define _INTL_ASM(cname) #endif /* Look up MSGID in the current default message catalog for the current LC_MESSAGES locale. If not found, returns MSGID itself (the default text). */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_gettext (const char *__msgid); static inline char *gettext (const char *__msgid) { return libintl_gettext (__msgid); } #else #ifdef _INTL_REDIRECT_MACROS # define gettext libintl_gettext #endif extern char *gettext (const char *__msgid) _INTL_ASM (libintl_gettext); #endif /* Look up MSGID in the DOMAINNAME message catalog for the current LC_MESSAGES locale. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_dgettext (const char *__domainname, const char *__msgid); static inline char *dgettext (const char *__domainname, const char *__msgid) { return libintl_dgettext (__domainname, __msgid); } #else #ifdef _INTL_REDIRECT_MACROS # define dgettext libintl_dgettext #endif extern char *dgettext (const char *__domainname, const char *__msgid) _INTL_ASM (libintl_dgettext); #endif /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY locale. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_dcgettext (const char *__domainname, const char *__msgid, int __category); static inline char *dcgettext (const char *__domainname, const char *__msgid, int __category) { return libintl_dcgettext (__domainname, __msgid, __category); } #else #ifdef _INTL_REDIRECT_MACROS # define dcgettext libintl_dcgettext #endif extern char *dcgettext (const char *__domainname, const char *__msgid, int __category) _INTL_ASM (libintl_dcgettext); #endif /* Similar to `gettext' but select the plural form corresponding to the number N. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_ngettext (const char *__msgid1, const char *__msgid2, unsigned long int __n); static inline char *ngettext (const char *__msgid1, const char *__msgid2, unsigned long int __n) { return libintl_ngettext (__msgid1, __msgid2, __n); } #else #ifdef _INTL_REDIRECT_MACROS # define ngettext libintl_ngettext #endif extern char *ngettext (const char *__msgid1, const char *__msgid2, unsigned long int __n) _INTL_ASM (libintl_ngettext); #endif /* Similar to `dgettext' but select the plural form corresponding to the number N. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_dngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n); static inline char *dngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n) { return libintl_dngettext (__domainname, __msgid1, __msgid2, __n); } #else #ifdef _INTL_REDIRECT_MACROS # define dngettext libintl_dngettext #endif extern char *dngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n) _INTL_ASM (libintl_dngettext); #endif /* Similar to `dcgettext' but select the plural form corresponding to the number N. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_dcngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n, int __category); static inline char *dcngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n, int __category) { return libintl_dcngettext (__domainname, __msgid1, __msgid2, __n, __category); } #else #ifdef _INTL_REDIRECT_MACROS # define dcngettext libintl_dcngettext #endif extern char *dcngettext (const char *__domainname, const char *__msgid1, const char *__msgid2, unsigned long int __n, int __category) _INTL_ASM (libintl_dcngettext); #endif /* Set the current default message catalog to DOMAINNAME. If DOMAINNAME is null, return the current default. If DOMAINNAME is "", reset to the default of "messages". */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_textdomain (const char *__domainname); static inline char *textdomain (const char *__domainname) { return libintl_textdomain (__domainname); } #else #ifdef _INTL_REDIRECT_MACROS # define textdomain libintl_textdomain #endif extern char *textdomain (const char *__domainname) _INTL_ASM (libintl_textdomain); #endif /* Specify that the DOMAINNAME message catalog will be found in DIRNAME rather than in the system locale data base. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_bindtextdomain (const char *__domainname, const char *__dirname); static inline char *bindtextdomain (const char *__domainname, const char *__dirname) { return libintl_bindtextdomain (__domainname, __dirname); } #else #ifdef _INTL_REDIRECT_MACROS # define bindtextdomain libintl_bindtextdomain #endif extern char *bindtextdomain (const char *__domainname, const char *__dirname) _INTL_ASM (libintl_bindtextdomain); #endif /* Specify the character encoding in which the messages from the DOMAINNAME message catalog will be returned. */ #ifdef _INTL_REDIRECT_INLINE extern char *libintl_bind_textdomain_codeset (const char *__domainname, const char *__codeset); static inline char *bind_textdomain_codeset (const char *__domainname, const char *__codeset) { return libintl_bind_textdomain_codeset (__domainname, __codeset); } #else #ifdef _INTL_REDIRECT_MACROS # define bind_textdomain_codeset libintl_bind_textdomain_codeset #endif extern char *bind_textdomain_codeset (const char *__domainname, const char *__codeset) _INTL_ASM (libintl_bind_textdomain_codeset); #endif /* Support for format strings with positions in *printf(), following the POSIX/XSI specification. Note: These replacements for the *printf() functions are visible only in source files that #include or #include "gettext.h". Packages that use *printf() in source files that don't refer to _() or gettext() but for which the format string could be the return value of _() or gettext() need to add this #include. Oh well. */ #if !@HAVE_POSIX_PRINTF@ #include #include /* Get va_list. */ #if __STDC__ || defined __cplusplus || defined _MSC_VER # include #else # include #endif #undef fprintf #define fprintf libintl_fprintf extern int fprintf (FILE *, const char *, ...); #undef vfprintf #define vfprintf libintl_vfprintf extern int vfprintf (FILE *, const char *, va_list); #undef printf #define printf libintl_printf extern int printf (const char *, ...); #undef vprintf #define vprintf libintl_vprintf extern int vprintf (const char *, va_list); #undef sprintf #define sprintf libintl_sprintf extern int sprintf (char *, const char *, ...); #undef vsprintf #define vsprintf libintl_vsprintf extern int vsprintf (char *, const char *, va_list); #if @HAVE_SNPRINTF@ #undef snprintf #define snprintf libintl_snprintf extern int snprintf (char *, size_t, const char *, ...); #undef vsnprintf #define vsnprintf libintl_vsnprintf extern int vsnprintf (char *, size_t, const char *, va_list); #endif #if @HAVE_ASPRINTF@ #undef asprintf #define asprintf libintl_asprintf extern int asprintf (char **, const char *, ...); #undef vasprintf #define vasprintf libintl_vasprintf extern int vasprintf (char **, const char *, va_list); #endif #if @HAVE_WPRINTF@ #undef fwprintf #define fwprintf libintl_fwprintf extern int fwprintf (FILE *, const wchar_t *, ...); #undef vfwprintf #define vfwprintf libintl_vfwprintf extern int vfwprintf (FILE *, const wchar_t *, va_list); #undef wprintf #define wprintf libintl_wprintf extern int wprintf (const wchar_t *, ...); #undef vwprintf #define vwprintf libintl_vwprintf extern int vwprintf (const wchar_t *, va_list); #undef swprintf #define swprintf libintl_swprintf extern int swprintf (wchar_t *, size_t, const wchar_t *, ...); #undef vswprintf #define vswprintf libintl_vswprintf extern int vswprintf (wchar_t *, size_t, const wchar_t *, va_list); #endif #endif /* Support for relocatable packages. */ /* Sets the original and the current installation prefix of the package. Relocation simply replaces a pathname starting with the original prefix by the corresponding pathname with the current prefix instead. Both prefixes should be directory names without trailing slash (i.e. use "" instead of "/"). */ #define libintl_set_relocation_prefix libintl_set_relocation_prefix extern void libintl_set_relocation_prefix (const char *orig_prefix, const char *curr_prefix); #ifdef __cplusplus } #endif #endif /* libintl.h */ ltris-1.0.19/intl/dcigettext.c0000664000175000017500000010044712140770050013142 00000000000000/* Implementation of the internal dcigettext function. Copyright (C) 1995-1999, 2000-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Tell glibc's to provide a prototype for mempcpy(). This must come before because may include , and once has been included, it's too late. */ #ifndef _GNU_SOURCE # define _GNU_SOURCE 1 #endif #ifdef HAVE_CONFIG_H # include #endif #include #ifdef __GNUC__ # define alloca __builtin_alloca # define HAVE_ALLOCA 1 #else # ifdef _MSC_VER # include # define alloca _alloca # else # if defined HAVE_ALLOCA_H || defined _LIBC # include # else # ifdef _AIX #pragma alloca # else # ifndef alloca char *alloca (); # endif # endif # endif # endif #endif #include #ifndef errno extern int errno; #endif #ifndef __set_errno # define __set_errno(val) errno = (val) #endif #include #include #include #if defined HAVE_UNISTD_H || defined _LIBC # include #endif #include #include #if defined HAVE_SYS_PARAM_H || defined _LIBC # include #endif #include "gettextP.h" #include "plural-exp.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif #include "hash-string.h" /* Thread safetyness. */ #ifdef _LIBC # include #else /* Provide dummy implementation if this is outside glibc. */ # define __libc_lock_define_initialized(CLASS, NAME) # define __libc_lock_lock(NAME) # define __libc_lock_unlock(NAME) # define __libc_rwlock_define_initialized(CLASS, NAME) # define __libc_rwlock_rdlock(NAME) # define __libc_rwlock_unlock(NAME) #endif /* Alignment of types. */ #if defined __GNUC__ && __GNUC__ >= 2 # define alignof(TYPE) __alignof__ (TYPE) #else # define alignof(TYPE) \ ((int) &((struct { char dummy1; TYPE dummy2; } *) 0)->dummy2) #endif /* The internal variables in the standalone libintl.a must have different names than the internal variables in GNU libc, otherwise programs using libintl.a cannot be linked statically. */ #if !defined _LIBC # define _nl_default_default_domain libintl_nl_default_default_domain # define _nl_current_default_domain libintl_nl_current_default_domain # define _nl_default_dirname libintl_nl_default_dirname # define _nl_domain_bindings libintl_nl_domain_bindings #endif /* Some compilers, like SunOS4 cc, don't have offsetof in . */ #ifndef offsetof # define offsetof(type,ident) ((size_t)&(((type*)0)->ident)) #endif /* @@ end of prolog @@ */ #ifdef _LIBC /* Rename the non ANSI C functions. This is required by the standard because some ANSI C functions will require linking with this object file and the name space must not be polluted. */ # define getcwd __getcwd # ifndef stpcpy # define stpcpy __stpcpy # endif # define tfind __tfind #else # if !defined HAVE_GETCWD char *getwd (); # define getcwd(buf, max) getwd (buf) # else # if VMS # define getcwd(buf, max) (getcwd) (buf, max, 0) # else char *getcwd (); # endif # endif # ifndef HAVE_STPCPY static char *stpcpy (char *dest, const char *src); # endif # ifndef HAVE_MEMPCPY static void *mempcpy (void *dest, const void *src, size_t n); # endif #endif /* Amount to increase buffer size by in each try. */ #define PATH_INCR 32 /* The following is from pathmax.h. */ /* Non-POSIX BSD systems might have gcc's limits.h, which doesn't define PATH_MAX but might cause redefinition warnings when sys/param.h is later included (as on MORE/BSD 4.3). */ #if defined _POSIX_VERSION || (defined HAVE_LIMITS_H && !defined __GNUC__) # include #endif #ifndef _POSIX_PATH_MAX # define _POSIX_PATH_MAX 255 #endif #if !defined PATH_MAX && defined _PC_PATH_MAX # define PATH_MAX (pathconf ("/", _PC_PATH_MAX) < 1 ? 1024 : pathconf ("/", _PC_PATH_MAX)) #endif /* Don't include sys/param.h if it already has been. */ #if defined HAVE_SYS_PARAM_H && !defined PATH_MAX && !defined MAXPATHLEN # include #endif #if !defined PATH_MAX && defined MAXPATHLEN # define PATH_MAX MAXPATHLEN #endif #ifndef PATH_MAX # define PATH_MAX _POSIX_PATH_MAX #endif /* Pathname support. ISSLASH(C) tests whether C is a directory separator character. IS_ABSOLUTE_PATH(P) tests whether P is an absolute path. If it is not, it may be concatenated to a directory pathname. IS_PATH_WITH_DIR(P) tests whether P contains a directory specification. */ #if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __DJGPP__ /* Win32, OS/2, DOS */ # define ISSLASH(C) ((C) == '/' || (C) == '\\') # define HAS_DEVICE(P) \ ((((P)[0] >= 'A' && (P)[0] <= 'Z') || ((P)[0] >= 'a' && (P)[0] <= 'z')) \ && (P)[1] == ':') # define IS_ABSOLUTE_PATH(P) (ISSLASH ((P)[0]) || HAS_DEVICE (P)) # define IS_PATH_WITH_DIR(P) \ (strchr (P, '/') != NULL || strchr (P, '\\') != NULL || HAS_DEVICE (P)) #else /* Unix */ # define ISSLASH(C) ((C) == '/') # define IS_ABSOLUTE_PATH(P) ISSLASH ((P)[0]) # define IS_PATH_WITH_DIR(P) (strchr (P, '/') != NULL) #endif /* This is the type used for the search tree where known translations are stored. */ struct known_translation_t { /* Domain in which to search. */ char *domainname; /* The category. */ int category; /* State of the catalog counter at the point the string was found. */ int counter; /* Catalog where the string was found. */ struct loaded_l10nfile *domain; /* And finally the translation. */ const char *translation; size_t translation_length; /* Pointer to the string in question. */ char msgid[ZERO]; }; /* Root of the search tree with known translations. We can use this only if the system provides the `tsearch' function family. */ #if defined HAVE_TSEARCH || defined _LIBC # include static void *root; # ifdef _LIBC # define tsearch __tsearch # endif /* Function to compare two entries in the table of known translations. */ static int transcmp (const void *p1, const void *p2) { const struct known_translation_t *s1; const struct known_translation_t *s2; int result; s1 = (const struct known_translation_t *) p1; s2 = (const struct known_translation_t *) p2; result = strcmp (s1->msgid, s2->msgid); if (result == 0) { result = strcmp (s1->domainname, s2->domainname); if (result == 0) /* We compare the category last (though this is the cheapest operation) since it is hopefully always the same (namely LC_MESSAGES). */ result = s1->category - s2->category; } return result; } #endif #ifndef INTVARDEF # define INTVARDEF(name) #endif #ifndef INTUSE # define INTUSE(name) name #endif /* Name of the default domain used for gettext(3) prior any call to textdomain(3). The default value for this is "messages". */ const char _nl_default_default_domain[] attribute_hidden = "messages"; /* Value used as the default domain for gettext(3). */ const char *_nl_current_default_domain attribute_hidden = _nl_default_default_domain; /* Contains the default location of the message catalogs. */ #if defined __EMX__ extern const char _nl_default_dirname[]; #else const char _nl_default_dirname[] = LOCALEDIR; INTVARDEF (_nl_default_dirname) #endif /* List with bindings of specific domains created by bindtextdomain() calls. */ struct binding *_nl_domain_bindings; /* Prototypes for local functions. */ static char *plural_lookup (struct loaded_l10nfile *domain, unsigned long int n, const char *translation, size_t translation_len) internal_function; static const char *guess_category_value (int category, const char *categoryname) internal_function; #ifdef _LIBC # include "../locale/localeinfo.h" # define category_to_name(category) _nl_category_names[category] #else static const char *category_to_name (int category) internal_function; #endif /* For those loosing systems which don't have `alloca' we have to add some additional code emulating it. */ #ifdef HAVE_ALLOCA /* Nothing has to be done. */ # define freea(p) /* nothing */ # define ADD_BLOCK(list, address) /* nothing */ # define FREE_BLOCKS(list) /* nothing */ #else struct block_list { void *address; struct block_list *next; }; # define ADD_BLOCK(list, addr) \ do { \ struct block_list *newp = (struct block_list *) malloc (sizeof (*newp)); \ /* If we cannot get a free block we cannot add the new element to \ the list. */ \ if (newp != NULL) { \ newp->address = (addr); \ newp->next = (list); \ (list) = newp; \ } \ } while (0) # define FREE_BLOCKS(list) \ do { \ while (list != NULL) { \ struct block_list *old = list; \ list = list->next; \ free (old->address); \ free (old); \ } \ } while (0) # undef alloca # define alloca(size) (malloc (size)) # define freea(p) free (p) #endif /* have alloca */ #ifdef _LIBC /* List of blocks allocated for translations. */ typedef struct transmem_list { struct transmem_list *next; char data[ZERO]; } transmem_block_t; static struct transmem_list *transmem_list; #else typedef unsigned char transmem_block_t; #endif /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define DCIGETTEXT __dcigettext #else # define DCIGETTEXT libintl_dcigettext #endif /* Lock variable to protect the global data in the gettext implementation. */ #ifdef _LIBC __libc_rwlock_define_initialized (, _nl_state_lock attribute_hidden) #endif /* Checking whether the binaries runs SUID must be done and glibc provides easier methods therefore we make a difference here. */ #ifdef _LIBC # define ENABLE_SECURE __libc_enable_secure # define DETERMINE_SECURE #else # ifndef HAVE_GETUID # define getuid() 0 # endif # ifndef HAVE_GETGID # define getgid() 0 # endif # ifndef HAVE_GETEUID # define geteuid() getuid() # endif # ifndef HAVE_GETEGID # define getegid() getgid() # endif static int enable_secure; # define ENABLE_SECURE (enable_secure == 1) # define DETERMINE_SECURE \ if (enable_secure == 0) \ { \ if (getuid () != geteuid () || getgid () != getegid ()) \ enable_secure = 1; \ else \ enable_secure = -1; \ } #endif /* Get the function to evaluate the plural expression. */ #include "eval-plural.h" /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY locale and, if PLURAL is nonzero, search over string depending on the plural form determined by N. */ char * DCIGETTEXT (const char *domainname, const char *msgid1, const char *msgid2, int plural, unsigned long int n, int category) { #ifndef HAVE_ALLOCA struct block_list *block_list = NULL; #endif struct loaded_l10nfile *domain; struct binding *binding; const char *categoryname; const char *categoryvalue; char *dirname, *xdomainname; char *single_locale; char *retval; size_t retlen; int saved_errno; #if defined HAVE_TSEARCH || defined _LIBC struct known_translation_t *search; struct known_translation_t **foundp = NULL; size_t msgid_len; #endif size_t domainname_len; /* If no real MSGID is given return NULL. */ if (msgid1 == NULL) return NULL; #ifdef _LIBC if (category < 0 || category >= __LC_LAST || category == LC_ALL) /* Bogus. */ return (plural == 0 ? (char *) msgid1 /* Use the Germanic plural rule. */ : n == 1 ? (char *) msgid1 : (char *) msgid2); #endif __libc_rwlock_rdlock (_nl_state_lock); /* If DOMAINNAME is NULL, we are interested in the default domain. If CATEGORY is not LC_MESSAGES this might not make much sense but the definition left this undefined. */ if (domainname == NULL) domainname = _nl_current_default_domain; /* OS/2 specific: backward compatibility with older libintl versions */ #ifdef LC_MESSAGES_COMPAT if (category == LC_MESSAGES_COMPAT) category = LC_MESSAGES; #endif #if defined HAVE_TSEARCH || defined _LIBC msgid_len = strlen (msgid1) + 1; /* Try to find the translation among those which we found at some time. */ search = (struct known_translation_t *) alloca (offsetof (struct known_translation_t, msgid) + msgid_len); memcpy (search->msgid, msgid1, msgid_len); search->domainname = (char *) domainname; search->category = category; foundp = (struct known_translation_t **) tfind (search, &root, transcmp); freea (search); if (foundp != NULL && (*foundp)->counter == _nl_msg_cat_cntr) { /* Now deal with plural. */ if (plural) retval = plural_lookup ((*foundp)->domain, n, (*foundp)->translation, (*foundp)->translation_length); else retval = (char *) (*foundp)->translation; __libc_rwlock_unlock (_nl_state_lock); return retval; } #endif /* Preserve the `errno' value. */ saved_errno = errno; /* See whether this is a SUID binary or not. */ DETERMINE_SECURE; /* First find matching binding. */ for (binding = _nl_domain_bindings; binding != NULL; binding = binding->next) { int compare = strcmp (domainname, binding->domainname); if (compare == 0) /* We found it! */ break; if (compare < 0) { /* It is not in the list. */ binding = NULL; break; } } if (binding == NULL) dirname = (char *) INTUSE(_nl_default_dirname); else if (IS_ABSOLUTE_PATH (binding->dirname)) dirname = binding->dirname; else { /* We have a relative path. Make it absolute now. */ size_t dirname_len = strlen (binding->dirname) + 1; size_t path_max; char *ret; path_max = (unsigned int) PATH_MAX; path_max += 2; /* The getcwd docs say to do this. */ for (;;) { dirname = (char *) alloca (path_max + dirname_len); ADD_BLOCK (block_list, dirname); __set_errno (0); ret = getcwd (dirname, path_max); if (ret != NULL || errno != ERANGE) break; path_max += path_max / 2; path_max += PATH_INCR; } if (ret == NULL) /* We cannot get the current working directory. Don't signal an error but simply return the default string. */ goto return_untranslated; stpcpy (stpcpy (strchr (dirname, '\0'), "/"), binding->dirname); } /* Now determine the symbolic name of CATEGORY and its value. */ categoryname = category_to_name (category); categoryvalue = guess_category_value (category, categoryname); domainname_len = strlen (domainname); xdomainname = (char *) alloca (strlen (categoryname) + domainname_len + 5); ADD_BLOCK (block_list, xdomainname); stpcpy (mempcpy (stpcpy (stpcpy (xdomainname, categoryname), "/"), domainname, domainname_len), ".mo"); /* Creating working area. */ single_locale = (char *) alloca (strlen (categoryvalue) + 1); ADD_BLOCK (block_list, single_locale); /* Search for the given string. This is a loop because we perhaps got an ordered list of languages to consider for the translation. */ while (1) { /* Make CATEGORYVALUE point to the next element of the list. */ while (categoryvalue[0] != '\0' && categoryvalue[0] == ':') ++categoryvalue; if (categoryvalue[0] == '\0') { /* The whole contents of CATEGORYVALUE has been searched but no valid entry has been found. We solve this situation by implicitly appending a "C" entry, i.e. no translation will take place. */ single_locale[0] = 'C'; single_locale[1] = '\0'; } else { char *cp = single_locale; while (categoryvalue[0] != '\0' && categoryvalue[0] != ':') *cp++ = *categoryvalue++; *cp = '\0'; /* When this is a SUID binary we must not allow accessing files outside the dedicated directories. */ if (ENABLE_SECURE && IS_PATH_WITH_DIR (single_locale)) /* Ingore this entry. */ continue; } /* If the current locale value is C (or POSIX) we don't load a domain. Return the MSGID. */ if (strcmp (single_locale, "C") == 0 || strcmp (single_locale, "POSIX") == 0) break; /* Find structure describing the message catalog matching the DOMAINNAME and CATEGORY. */ domain = _nl_find_domain (dirname, single_locale, xdomainname, binding); if (domain != NULL) { retval = _nl_find_msg (domain, binding, msgid1, &retlen); if (retval == NULL) { int cnt; for (cnt = 0; domain->successor[cnt] != NULL; ++cnt) { retval = _nl_find_msg (domain->successor[cnt], binding, msgid1, &retlen); if (retval != NULL) { domain = domain->successor[cnt]; break; } } } if (retval != NULL) { /* Found the translation of MSGID1 in domain DOMAIN: starting at RETVAL, RETLEN bytes. */ FREE_BLOCKS (block_list); #if defined HAVE_TSEARCH || defined _LIBC if (foundp == NULL) { /* Create a new entry and add it to the search tree. */ struct known_translation_t *newp; newp = (struct known_translation_t *) malloc (offsetof (struct known_translation_t, msgid) + msgid_len + domainname_len + 1); if (newp != NULL) { newp->domainname = mempcpy (newp->msgid, msgid1, msgid_len); memcpy (newp->domainname, domainname, domainname_len + 1); newp->category = category; newp->counter = _nl_msg_cat_cntr; newp->domain = domain; newp->translation = retval; newp->translation_length = retlen; /* Insert the entry in the search tree. */ foundp = (struct known_translation_t **) tsearch (newp, &root, transcmp); if (foundp == NULL || __builtin_expect (*foundp != newp, 0)) /* The insert failed. */ free (newp); } } else { /* We can update the existing entry. */ (*foundp)->counter = _nl_msg_cat_cntr; (*foundp)->domain = domain; (*foundp)->translation = retval; (*foundp)->translation_length = retlen; } #endif __set_errno (saved_errno); /* Now deal with plural. */ if (plural) retval = plural_lookup (domain, n, retval, retlen); __libc_rwlock_unlock (_nl_state_lock); return retval; } } } return_untranslated: /* Return the untranslated MSGID. */ FREE_BLOCKS (block_list); __libc_rwlock_unlock (_nl_state_lock); #ifndef _LIBC if (!ENABLE_SECURE) { extern void _nl_log_untranslated (const char *logfilename, const char *domainname, const char *msgid1, const char *msgid2, int plural); const char *logfilename = getenv ("GETTEXT_LOG_UNTRANSLATED"); if (logfilename != NULL && logfilename[0] != '\0') _nl_log_untranslated (logfilename, domainname, msgid1, msgid2, plural); } #endif __set_errno (saved_errno); return (plural == 0 ? (char *) msgid1 /* Use the Germanic plural rule. */ : n == 1 ? (char *) msgid1 : (char *) msgid2); } char * internal_function _nl_find_msg (struct loaded_l10nfile *domain_file, struct binding *domainbinding, const char *msgid, size_t *lengthp) { struct loaded_domain *domain; nls_uint32 nstrings; size_t act; char *result; size_t resultlen; if (domain_file->decided == 0) _nl_load_domain (domain_file, domainbinding); if (domain_file->data == NULL) return NULL; domain = (struct loaded_domain *) domain_file->data; nstrings = domain->nstrings; /* Locate the MSGID and its translation. */ if (domain->hash_tab != NULL) { /* Use the hashing table. */ nls_uint32 len = strlen (msgid); nls_uint32 hash_val = hash_string (msgid); nls_uint32 idx = hash_val % domain->hash_size; nls_uint32 incr = 1 + (hash_val % (domain->hash_size - 2)); while (1) { nls_uint32 nstr = W (domain->must_swap_hash_tab, domain->hash_tab[idx]); if (nstr == 0) /* Hash table entry is empty. */ return NULL; nstr--; /* Compare msgid with the original string at index nstr. We compare the lengths with >=, not ==, because plural entries are represented by strings with an embedded NUL. */ if (nstr < nstrings ? W (domain->must_swap, domain->orig_tab[nstr].length) >= len && (strcmp (msgid, domain->data + W (domain->must_swap, domain->orig_tab[nstr].offset)) == 0) : domain->orig_sysdep_tab[nstr - nstrings].length > len && (strcmp (msgid, domain->orig_sysdep_tab[nstr - nstrings].pointer) == 0)) { act = nstr; goto found; } if (idx >= domain->hash_size - incr) idx -= domain->hash_size - incr; else idx += incr; } /* NOTREACHED */ } else { /* Try the default method: binary search in the sorted array of messages. */ size_t top, bottom; bottom = 0; top = nstrings; while (bottom < top) { int cmp_val; act = (bottom + top) / 2; cmp_val = strcmp (msgid, (domain->data + W (domain->must_swap, domain->orig_tab[act].offset))); if (cmp_val < 0) top = act; else if (cmp_val > 0) bottom = act + 1; else goto found; } /* No translation was found. */ return NULL; } found: /* The translation was found at index ACT. If we have to convert the string to use a different character set, this is the time. */ if (act < nstrings) { result = (char *) (domain->data + W (domain->must_swap, domain->trans_tab[act].offset)); resultlen = W (domain->must_swap, domain->trans_tab[act].length) + 1; } else { result = (char *) domain->trans_sysdep_tab[act - nstrings].pointer; resultlen = domain->trans_sysdep_tab[act - nstrings].length; } #if defined _LIBC || HAVE_ICONV if (domain->codeset_cntr != (domainbinding != NULL ? domainbinding->codeset_cntr : 0)) { /* The domain's codeset has changed through bind_textdomain_codeset() since the message catalog was initialized or last accessed. We have to reinitialize the converter. */ _nl_free_domain_conv (domain); _nl_init_domain_conv (domain_file, domain, domainbinding); } if ( # ifdef _LIBC domain->conv != (__gconv_t) -1 # else # if HAVE_ICONV domain->conv != (iconv_t) -1 # endif # endif ) { /* We are supposed to do a conversion. First allocate an appropriate table with the same structure as the table of translations in the file, where we can put the pointers to the converted strings in. There is a slight complication with plural entries. They are represented by consecutive NUL terminated strings. We handle this case by converting RESULTLEN bytes, including NULs. */ if (domain->conv_tab == NULL && ((domain->conv_tab = (char **) calloc (nstrings + domain->n_sysdep_strings, sizeof (char *))) == NULL)) /* Mark that we didn't succeed allocating a table. */ domain->conv_tab = (char **) -1; if (__builtin_expect (domain->conv_tab == (char **) -1, 0)) /* Nothing we can do, no more memory. */ goto converted; if (domain->conv_tab[act] == NULL) { /* We haven't used this string so far, so it is not translated yet. Do this now. */ /* We use a bit more efficient memory handling. We allocate always larger blocks which get used over time. This is faster than many small allocations. */ __libc_lock_define_initialized (static, lock) # define INITIAL_BLOCK_SIZE 4080 static unsigned char *freemem; static size_t freemem_size; const unsigned char *inbuf; unsigned char *outbuf; int malloc_count; # ifndef _LIBC transmem_block_t *transmem_list = NULL; # endif __libc_lock_lock (lock); inbuf = (const unsigned char *) result; outbuf = freemem + sizeof (size_t); malloc_count = 0; while (1) { transmem_block_t *newmem; # ifdef _LIBC size_t non_reversible; int res; if (freemem_size < sizeof (size_t)) goto resize_freemem; res = __gconv (domain->conv, &inbuf, inbuf + resultlen, &outbuf, outbuf + freemem_size - sizeof (size_t), &non_reversible); if (res == __GCONV_OK || res == __GCONV_EMPTY_INPUT) break; if (res != __GCONV_FULL_OUTPUT) { __libc_lock_unlock (lock); goto converted; } inbuf = result; # else # if HAVE_ICONV const char *inptr = (const char *) inbuf; size_t inleft = resultlen; char *outptr = (char *) outbuf; size_t outleft; if (freemem_size < sizeof (size_t)) goto resize_freemem; outleft = freemem_size - sizeof (size_t); if (iconv (domain->conv, (ICONV_CONST char **) &inptr, &inleft, &outptr, &outleft) != (size_t) (-1)) { outbuf = (unsigned char *) outptr; break; } if (errno != E2BIG) { __libc_lock_unlock (lock); goto converted; } # endif # endif resize_freemem: /* We must allocate a new buffer or resize the old one. */ if (malloc_count > 0) { ++malloc_count; freemem_size = malloc_count * INITIAL_BLOCK_SIZE; newmem = (transmem_block_t *) realloc (transmem_list, freemem_size); # ifdef _LIBC if (newmem != NULL) transmem_list = transmem_list->next; else { struct transmem_list *old = transmem_list; transmem_list = transmem_list->next; free (old); } # endif } else { malloc_count = 1; freemem_size = INITIAL_BLOCK_SIZE; newmem = (transmem_block_t *) malloc (freemem_size); } if (__builtin_expect (newmem == NULL, 0)) { freemem = NULL; freemem_size = 0; __libc_lock_unlock (lock); goto converted; } # ifdef _LIBC /* Add the block to the list of blocks we have to free at some point. */ newmem->next = transmem_list; transmem_list = newmem; freemem = newmem->data; freemem_size -= offsetof (struct transmem_list, data); # else transmem_list = newmem; freemem = newmem; # endif outbuf = freemem + sizeof (size_t); } /* We have now in our buffer a converted string. Put this into the table of conversions. */ *(size_t *) freemem = outbuf - freemem - sizeof (size_t); domain->conv_tab[act] = (char *) freemem; /* Shrink freemem, but keep it aligned. */ freemem_size -= outbuf - freemem; freemem = outbuf; freemem += freemem_size & (alignof (size_t) - 1); freemem_size = freemem_size & ~ (alignof (size_t) - 1); __libc_lock_unlock (lock); } /* Now domain->conv_tab[act] contains the translation of all the plural variants. */ result = domain->conv_tab[act] + sizeof (size_t); resultlen = *(size_t *) domain->conv_tab[act]; } converted: /* The result string is converted. */ #endif /* _LIBC || HAVE_ICONV */ *lengthp = resultlen; return result; } /* Look up a plural variant. */ static char * internal_function plural_lookup (struct loaded_l10nfile *domain, unsigned long int n, const char *translation, size_t translation_len) { struct loaded_domain *domaindata = (struct loaded_domain *) domain->data; unsigned long int index; const char *p; index = plural_eval (domaindata->plural, n); if (index >= domaindata->nplurals) /* This should never happen. It means the plural expression and the given maximum value do not match. */ index = 0; /* Skip INDEX strings at TRANSLATION. */ p = translation; while (index-- > 0) { #ifdef _LIBC p = __rawmemchr (p, '\0'); #else p = strchr (p, '\0'); #endif /* And skip over the NUL byte. */ p++; if (p >= translation + translation_len) /* This should never happen. It means the plural expression evaluated to a value larger than the number of variants available for MSGID1. */ return (char *) translation; } return (char *) p; } #ifndef _LIBC /* Return string representation of locale CATEGORY. */ static const char * internal_function category_to_name (int category) { const char *retval; switch (category) { #ifdef LC_COLLATE case LC_COLLATE: retval = "LC_COLLATE"; break; #endif #ifdef LC_CTYPE case LC_CTYPE: retval = "LC_CTYPE"; break; #endif #ifdef LC_MONETARY case LC_MONETARY: retval = "LC_MONETARY"; break; #endif #ifdef LC_NUMERIC case LC_NUMERIC: retval = "LC_NUMERIC"; break; #endif #ifdef LC_TIME case LC_TIME: retval = "LC_TIME"; break; #endif #ifdef LC_MESSAGES case LC_MESSAGES: retval = "LC_MESSAGES"; break; #endif #ifdef LC_RESPONSE case LC_RESPONSE: retval = "LC_RESPONSE"; break; #endif #ifdef LC_ALL case LC_ALL: /* This might not make sense but is perhaps better than any other value. */ retval = "LC_ALL"; break; #endif default: /* If you have a better idea for a default value let me know. */ retval = "LC_XXX"; } return retval; } #endif /* Guess value of current locale from value of the environment variables. */ static const char * internal_function guess_category_value (int category, const char *categoryname) { const char *language; const char *retval; /* The highest priority value is the `LANGUAGE' environment variable. But we don't use the value if the currently selected locale is the C locale. This is a GNU extension. */ language = getenv ("LANGUAGE"); if (language != NULL && language[0] == '\0') language = NULL; /* We have to proceed with the POSIX methods of looking to `LC_ALL', `LC_xxx', and `LANG'. On some systems this can be done by the `setlocale' function itself. */ #ifdef _LIBC retval = __current_locale_name (category); #else retval = _nl_locale_name (category, categoryname); #endif /* Ignore LANGUAGE if the locale is set to "C" because 1. "C" locale usually uses the ASCII encoding, and most international messages use non-ASCII characters. These characters get displayed as question marks (if using glibc's iconv()) or as invalid 8-bit characters (because other iconv()s refuse to convert most non-ASCII characters to ASCII). In any case, the output is ugly. 2. The precise output of some programs in the "C" locale is specified by POSIX and should not depend on environment variables like "LANGUAGE". We allow such programs to use gettext(). */ return language != NULL && strcmp (retval, "C") != 0 ? language : retval; } /* @@ begin of epilog @@ */ /* We don't want libintl.a to depend on any other library. So we avoid the non-standard function stpcpy. In GNU C Library this function is available, though. Also allow the symbol HAVE_STPCPY to be defined. */ #if !_LIBC && !HAVE_STPCPY static char * stpcpy (char *dest, const char *src) { while ((*dest++ = *src++) != '\0') /* Do nothing. */ ; return dest - 1; } #endif #if !_LIBC && !HAVE_MEMPCPY static void * mempcpy (void *dest, const void *src, size_t n) { return (void *) ((char *) memcpy (dest, src, n) + n); } #endif #ifdef _LIBC /* If we want to free all resources we have to do some work at program's end. */ libc_freeres_fn (free_mem) { void *old; while (_nl_domain_bindings != NULL) { struct binding *oldp = _nl_domain_bindings; _nl_domain_bindings = _nl_domain_bindings->next; if (oldp->dirname != INTUSE(_nl_default_dirname)) /* Yes, this is a pointer comparison. */ free (oldp->dirname); free (oldp->codeset); free (oldp); } if (_nl_current_default_domain != _nl_default_default_domain) /* Yes, again a pointer comparison. */ free ((char *) _nl_current_default_domain); /* Remove the search tree with the known translations. */ __tdestroy (root, free); root = NULL; while (transmem_list != NULL) { old = transmem_list; transmem_list = transmem_list->next; free (old); } } #endif ltris-1.0.19/intl/relocatable.c0000664000175000017500000003136012140770050013250 00000000000000/* Provide relocatable packages. Copyright (C) 2003 Free Software Foundation, Inc. Written by Bruno Haible , 2003. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Tell glibc's to provide a prototype for getline(). This must come before because may include , and once has been included, it's too late. */ #ifndef _GNU_SOURCE # define _GNU_SOURCE 1 #endif #ifdef HAVE_CONFIG_H # include "config.h" #endif /* Specification. */ #include "relocatable.h" #if ENABLE_RELOCATABLE #include #include #include #include #ifdef NO_XMALLOC # define xmalloc malloc #else # include "xalloc.h" #endif #if defined _WIN32 || defined __WIN32__ # define WIN32_LEAN_AND_MEAN # include #endif #if DEPENDS_ON_LIBCHARSET # include #endif #if DEPENDS_ON_LIBICONV && HAVE_ICONV # include #endif #if DEPENDS_ON_LIBINTL && ENABLE_NLS # include #endif /* Faked cheap 'bool'. */ #undef bool #undef false #undef true #define bool int #define false 0 #define true 1 /* Pathname support. ISSLASH(C) tests whether C is a directory separator character. IS_PATH_WITH_DIR(P) tests whether P contains a directory specification. */ #if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __DJGPP__ /* Win32, OS/2, DOS */ # define ISSLASH(C) ((C) == '/' || (C) == '\\') # define HAS_DEVICE(P) \ ((((P)[0] >= 'A' && (P)[0] <= 'Z') || ((P)[0] >= 'a' && (P)[0] <= 'z')) \ && (P)[1] == ':') # define IS_PATH_WITH_DIR(P) \ (strchr (P, '/') != NULL || strchr (P, '\\') != NULL || HAS_DEVICE (P)) # define FILESYSTEM_PREFIX_LEN(P) (HAS_DEVICE (P) ? 2 : 0) #else /* Unix */ # define ISSLASH(C) ((C) == '/') # define IS_PATH_WITH_DIR(P) (strchr (P, '/') != NULL) # define FILESYSTEM_PREFIX_LEN(P) 0 #endif /* Original installation prefix. */ static char *orig_prefix; static size_t orig_prefix_len; /* Current installation prefix. */ static char *curr_prefix; static size_t curr_prefix_len; /* These prefixes do not end in a slash. Anything that will be concatenated to them must start with a slash. */ /* Sets the original and the current installation prefix of this module. Relocation simply replaces a pathname starting with the original prefix by the corresponding pathname with the current prefix instead. Both prefixes should be directory names without trailing slash (i.e. use "" instead of "/"). */ static void set_this_relocation_prefix (const char *orig_prefix_arg, const char *curr_prefix_arg) { if (orig_prefix_arg != NULL && curr_prefix_arg != NULL /* Optimization: if orig_prefix and curr_prefix are equal, the relocation is a nop. */ && strcmp (orig_prefix_arg, curr_prefix_arg) != 0) { /* Duplicate the argument strings. */ char *memory; orig_prefix_len = strlen (orig_prefix_arg); curr_prefix_len = strlen (curr_prefix_arg); memory = (char *) xmalloc (orig_prefix_len + 1 + curr_prefix_len + 1); #ifdef NO_XMALLOC if (memory != NULL) #endif { memcpy (memory, orig_prefix_arg, orig_prefix_len + 1); orig_prefix = memory; memory += orig_prefix_len + 1; memcpy (memory, curr_prefix_arg, curr_prefix_len + 1); curr_prefix = memory; return; } } orig_prefix = NULL; curr_prefix = NULL; /* Don't worry about wasted memory here - this function is usually only called once. */ } /* Sets the original and the current installation prefix of the package. Relocation simply replaces a pathname starting with the original prefix by the corresponding pathname with the current prefix instead. Both prefixes should be directory names without trailing slash (i.e. use "" instead of "/"). */ void set_relocation_prefix (const char *orig_prefix_arg, const char *curr_prefix_arg) { set_this_relocation_prefix (orig_prefix_arg, curr_prefix_arg); /* Now notify all dependent libraries. */ #if DEPENDS_ON_LIBCHARSET libcharset_set_relocation_prefix (orig_prefix_arg, curr_prefix_arg); #endif #if DEPENDS_ON_LIBICONV && HAVE_ICONV && _LIBICONV_VERSION >= 0x0109 libiconv_set_relocation_prefix (orig_prefix_arg, curr_prefix_arg); #endif #if DEPENDS_ON_LIBINTL && ENABLE_NLS && defined libintl_set_relocation_prefix libintl_set_relocation_prefix (orig_prefix_arg, curr_prefix_arg); #endif } #if !defined IN_LIBRARY || (defined PIC && defined INSTALLDIR) /* Convenience function: Computes the current installation prefix, based on the original installation prefix, the original installation directory of a particular file, and the current pathname of this file. Returns NULL upon failure. */ #ifdef IN_LIBRARY #define compute_curr_prefix local_compute_curr_prefix static #endif const char * compute_curr_prefix (const char *orig_installprefix, const char *orig_installdir, const char *curr_pathname) { const char *curr_installdir; const char *rel_installdir; if (curr_pathname == NULL) return NULL; /* Determine the relative installation directory, relative to the prefix. This is simply the difference between orig_installprefix and orig_installdir. */ if (strncmp (orig_installprefix, orig_installdir, strlen (orig_installprefix)) != 0) /* Shouldn't happen - nothing should be installed outside $(prefix). */ return NULL; rel_installdir = orig_installdir + strlen (orig_installprefix); /* Determine the current installation directory. */ { const char *p_base = curr_pathname + FILESYSTEM_PREFIX_LEN (curr_pathname); const char *p = curr_pathname + strlen (curr_pathname); char *q; while (p > p_base) { p--; if (ISSLASH (*p)) break; } q = (char *) xmalloc (p - curr_pathname + 1); #ifdef NO_XMALLOC if (q == NULL) return NULL; #endif memcpy (q, curr_pathname, p - curr_pathname); q[p - curr_pathname] = '\0'; curr_installdir = q; } /* Compute the current installation prefix by removing the trailing rel_installdir from it. */ { const char *rp = rel_installdir + strlen (rel_installdir); const char *cp = curr_installdir + strlen (curr_installdir); const char *cp_base = curr_installdir + FILESYSTEM_PREFIX_LEN (curr_installdir); while (rp > rel_installdir && cp > cp_base) { bool same = false; const char *rpi = rp; const char *cpi = cp; while (rpi > rel_installdir && cpi > cp_base) { rpi--; cpi--; if (ISSLASH (*rpi) || ISSLASH (*cpi)) { if (ISSLASH (*rpi) && ISSLASH (*cpi)) same = true; break; } #if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __DJGPP__ /* Win32, OS/2, DOS - case insignificant filesystem */ if ((*rpi >= 'a' && *rpi <= 'z' ? *rpi - 'a' + 'A' : *rpi) != (*cpi >= 'a' && *cpi <= 'z' ? *cpi - 'a' + 'A' : *cpi)) break; #else if (*rpi != *cpi) break; #endif } if (!same) break; /* The last pathname component was the same. opi and cpi now point to the slash before it. */ rp = rpi; cp = cpi; } if (rp > rel_installdir) /* Unexpected: The curr_installdir does not end with rel_installdir. */ return NULL; { size_t curr_prefix_len = cp - curr_installdir; char *curr_prefix; curr_prefix = (char *) xmalloc (curr_prefix_len + 1); #ifdef NO_XMALLOC if (curr_prefix == NULL) return NULL; #endif memcpy (curr_prefix, curr_installdir, curr_prefix_len); curr_prefix[curr_prefix_len] = '\0'; return curr_prefix; } } } #endif /* !IN_LIBRARY || PIC */ #if defined PIC && defined INSTALLDIR /* Full pathname of shared library, or NULL. */ static char *shared_library_fullname; #if defined _WIN32 || defined __WIN32__ /* Determine the full pathname of the shared library when it is loaded. */ BOOL WINAPI DllMain (HINSTANCE module_handle, DWORD event, LPVOID reserved) { (void) reserved; if (event == DLL_PROCESS_ATTACH) { /* The DLL is being loaded into an application's address range. */ static char location[MAX_PATH]; if (!GetModuleFileName (module_handle, location, sizeof (location))) /* Shouldn't happen. */ return FALSE; if (!IS_PATH_WITH_DIR (location)) /* Shouldn't happen. */ return FALSE; shared_library_fullname = strdup (location); } return TRUE; } #else /* Unix */ static void find_shared_library_fullname () { #if defined __linux__ && __GLIBC__ >= 2 /* Linux has /proc/self/maps. glibc 2 has the getline() function. */ FILE *fp; /* Open the current process' maps file. It describes one VMA per line. */ fp = fopen ("/proc/self/maps", "r"); if (fp) { unsigned long address = (unsigned long) &find_shared_library_fullname; for (;;) { unsigned long start, end; int c; if (fscanf (fp, "%lx-%lx", &start, &end) != 2) break; if (address >= start && address <= end - 1) { /* Found it. Now see if this line contains a filename. */ while (c = getc (fp), c != EOF && c != '\n' && c != '/') continue; if (c == '/') { size_t size; int len; ungetc (c, fp); shared_library_fullname = NULL; size = 0; len = getline (&shared_library_fullname, &size, fp); if (len >= 0) { /* Success: filled shared_library_fullname. */ if (len > 0 && shared_library_fullname[len - 1] == '\n') shared_library_fullname[len - 1] = '\0'; } } break; } while (c = getc (fp), c != EOF && c != '\n') continue; } fclose (fp); } #endif } #endif /* WIN32 / Unix */ /* Return the full pathname of the current shared library. Return NULL if unknown. Guaranteed to work only on Linux and Woe32. */ static char * get_shared_library_fullname () { #if !(defined _WIN32 || defined __WIN32__) static bool tried_find_shared_library_fullname; if (!tried_find_shared_library_fullname) { find_shared_library_fullname (); tried_find_shared_library_fullname = true; } #endif return shared_library_fullname; } #endif /* PIC */ /* Returns the pathname, relocated according to the current installation directory. */ const char * relocate (const char *pathname) { #if defined PIC && defined INSTALLDIR static int initialized; /* Initialization code for a shared library. */ if (!initialized) { /* At this point, orig_prefix and curr_prefix likely have already been set through the main program's set_program_name_and_installdir function. This is sufficient in the case that the library has initially been installed in the same orig_prefix. But we can do better, to also cover the cases that 1. it has been installed in a different prefix before being moved to orig_prefix and (later) to curr_prefix, 2. unlike the program, it has not moved away from orig_prefix. */ const char *orig_installprefix = INSTALLPREFIX; const char *orig_installdir = INSTALLDIR; const char *curr_prefix_better; curr_prefix_better = compute_curr_prefix (orig_installprefix, orig_installdir, get_shared_library_fullname ()); if (curr_prefix_better == NULL) curr_prefix_better = curr_prefix; set_relocation_prefix (orig_installprefix, curr_prefix_better); initialized = 1; } #endif /* Note: It is not necessary to perform case insensitive comparison here, even for DOS-like filesystems, because the pathname argument was typically created from the same Makefile variable as orig_prefix came from. */ if (orig_prefix != NULL && curr_prefix != NULL && strncmp (pathname, orig_prefix, orig_prefix_len) == 0) { if (pathname[orig_prefix_len] == '\0') /* pathname equals orig_prefix. */ return curr_prefix; if (ISSLASH (pathname[orig_prefix_len])) { /* pathname starts with orig_prefix. */ const char *pathname_tail = &pathname[orig_prefix_len]; char *result = (char *) xmalloc (curr_prefix_len + strlen (pathname_tail) + 1); #ifdef NO_XMALLOC if (result != NULL) #endif { memcpy (result, curr_prefix, curr_prefix_len); strcpy (result + curr_prefix_len, pathname_tail); return result; } } } /* Nothing to relocate. */ return pathname; } #endif ltris-1.0.19/intl/config.charset0000775000175000017500000004340612140770050013456 00000000000000#! /bin/sh # Output a system dependent table of character encoding aliases. # # Copyright (C) 2000-2004 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Library General Public License as published # by the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Library General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, # USA. # # The table consists of lines of the form # ALIAS CANONICAL # # ALIAS is the (system dependent) result of "nl_langinfo (CODESET)". # ALIAS is compared in a case sensitive way. # # CANONICAL is the GNU canonical name for this character encoding. # It must be an encoding supported by libiconv. Support by GNU libc is # also desirable. CANONICAL is case insensitive. Usually an upper case # MIME charset name is preferred. # The current list of GNU canonical charset names is as follows. # # name MIME? used by which systems # ASCII, ANSI_X3.4-1968 glibc solaris freebsd darwin # ISO-8859-1 Y glibc aix hpux irix osf solaris freebsd darwin # ISO-8859-2 Y glibc aix hpux irix osf solaris freebsd darwin # ISO-8859-3 Y glibc solaris # ISO-8859-4 Y osf solaris freebsd darwin # ISO-8859-5 Y glibc aix hpux irix osf solaris freebsd darwin # ISO-8859-6 Y glibc aix hpux solaris # ISO-8859-7 Y glibc aix hpux irix osf solaris # ISO-8859-8 Y glibc aix hpux osf solaris # ISO-8859-9 Y glibc aix hpux irix osf solaris # ISO-8859-13 glibc # ISO-8859-14 glibc # ISO-8859-15 glibc aix osf solaris freebsd # KOI8-R Y glibc solaris freebsd darwin # KOI8-U Y glibc freebsd darwin # KOI8-T glibc # CP437 dos # CP775 dos # CP850 aix osf dos # CP852 dos # CP855 dos # CP856 aix # CP857 dos # CP861 dos # CP862 dos # CP864 dos # CP865 dos # CP866 freebsd darwin dos # CP869 dos # CP874 woe32 dos # CP922 aix # CP932 aix woe32 dos # CP943 aix # CP949 osf woe32 dos # CP950 woe32 dos # CP1046 aix # CP1124 aix # CP1125 dos # CP1129 aix # CP1250 woe32 # CP1251 glibc solaris darwin woe32 # CP1252 aix woe32 # CP1253 woe32 # CP1254 woe32 # CP1255 glibc woe32 # CP1256 woe32 # CP1257 woe32 # GB2312 Y glibc aix hpux irix solaris freebsd darwin # EUC-JP Y glibc aix hpux irix osf solaris freebsd darwin # EUC-KR Y glibc aix hpux irix osf solaris freebsd darwin # EUC-TW glibc aix hpux irix osf solaris # BIG5 Y glibc aix hpux osf solaris freebsd darwin # BIG5-HKSCS glibc solaris # GBK glibc aix osf solaris woe32 dos # GB18030 glibc solaris # SHIFT_JIS Y hpux osf solaris freebsd darwin # JOHAB glibc solaris woe32 # TIS-620 glibc aix hpux osf solaris # VISCII Y glibc # TCVN5712-1 glibc # GEORGIAN-PS glibc # HP-ROMAN8 hpux # HP-ARABIC8 hpux # HP-GREEK8 hpux # HP-HEBREW8 hpux # HP-TURKISH8 hpux # HP-KANA8 hpux # DEC-KANJI osf # DEC-HANYU osf # UTF-8 Y glibc aix hpux osf solaris # # Note: Names which are not marked as being a MIME name should not be used in # Internet protocols for information interchange (mail, news, etc.). # # Note: ASCII and ANSI_X3.4-1968 are synonymous canonical names. Applications # must understand both names and treat them as equivalent. # # The first argument passed to this file is the canonical host specification, # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM host="$1" os=`echo "$host" | sed -e 's/^[^-]*-[^-]*-\(.*\)$/\1/'` echo "# This file contains a table of character encoding aliases," echo "# suitable for operating system '${os}'." echo "# It was automatically generated from config.charset." # List of references, updated during installation: echo "# Packages using this file: " case "$os" in linux-gnulibc1*) # Linux libc5 doesn't have nl_langinfo(CODESET); therefore # localcharset.c falls back to using the full locale name # from the environment variables. echo "C ASCII" echo "POSIX ASCII" for l in af af_ZA ca ca_ES da da_DK de de_AT de_BE de_CH de_DE de_LU \ en en_AU en_BW en_CA en_DK en_GB en_IE en_NZ en_US en_ZA \ en_ZW es es_AR es_BO es_CL es_CO es_DO es_EC es_ES es_GT \ es_HN es_MX es_PA es_PE es_PY es_SV es_US es_UY es_VE et \ et_EE eu eu_ES fi fi_FI fo fo_FO fr fr_BE fr_CA fr_CH fr_FR \ fr_LU ga ga_IE gl gl_ES id id_ID in in_ID is is_IS it it_CH \ it_IT kl kl_GL nl nl_BE nl_NL no no_NO pt pt_BR pt_PT sv \ sv_FI sv_SE; do echo "$l ISO-8859-1" echo "$l.iso-8859-1 ISO-8859-1" echo "$l.iso-8859-15 ISO-8859-15" echo "$l.iso-8859-15@euro ISO-8859-15" echo "$l@euro ISO-8859-15" echo "$l.cp-437 CP437" echo "$l.cp-850 CP850" echo "$l.cp-1252 CP1252" echo "$l.cp-1252@euro CP1252" #echo "$l.atari-st ATARI-ST" # not a commonly used encoding echo "$l.utf-8 UTF-8" echo "$l.utf-8@euro UTF-8" done for l in cs cs_CZ hr hr_HR hu hu_HU pl pl_PL ro ro_RO sk sk_SK sl \ sl_SI sr sr_CS sr_YU; do echo "$l ISO-8859-2" echo "$l.iso-8859-2 ISO-8859-2" echo "$l.cp-852 CP852" echo "$l.cp-1250 CP1250" echo "$l.utf-8 UTF-8" done for l in mk mk_MK ru ru_RU; do echo "$l ISO-8859-5" echo "$l.iso-8859-5 ISO-8859-5" echo "$l.koi8-r KOI8-R" echo "$l.cp-866 CP866" echo "$l.cp-1251 CP1251" echo "$l.utf-8 UTF-8" done for l in ar ar_SA; do echo "$l ISO-8859-6" echo "$l.iso-8859-6 ISO-8859-6" echo "$l.cp-864 CP864" #echo "$l.cp-868 CP868" # not a commonly used encoding echo "$l.cp-1256 CP1256" echo "$l.utf-8 UTF-8" done for l in el el_GR gr gr_GR; do echo "$l ISO-8859-7" echo "$l.iso-8859-7 ISO-8859-7" echo "$l.cp-869 CP869" echo "$l.cp-1253 CP1253" echo "$l.cp-1253@euro CP1253" echo "$l.utf-8 UTF-8" echo "$l.utf-8@euro UTF-8" done for l in he he_IL iw iw_IL; do echo "$l ISO-8859-8" echo "$l.iso-8859-8 ISO-8859-8" echo "$l.cp-862 CP862" echo "$l.cp-1255 CP1255" echo "$l.utf-8 UTF-8" done for l in tr tr_TR; do echo "$l ISO-8859-9" echo "$l.iso-8859-9 ISO-8859-9" echo "$l.cp-857 CP857" echo "$l.cp-1254 CP1254" echo "$l.utf-8 UTF-8" done for l in lt lt_LT lv lv_LV; do #echo "$l BALTIC" # not a commonly used encoding, wrong encoding name echo "$l ISO-8859-13" done for l in ru_UA uk uk_UA; do echo "$l KOI8-U" done for l in zh zh_CN; do #echo "$l GB_2312-80" # not a commonly used encoding, wrong encoding name echo "$l GB2312" done for l in ja ja_JP ja_JP.EUC; do echo "$l EUC-JP" done for l in ko ko_KR; do echo "$l EUC-KR" done for l in th th_TH; do echo "$l TIS-620" done for l in fa fa_IR; do #echo "$l ISIRI-3342" # a broken encoding echo "$l.utf-8 UTF-8" done ;; linux* | *-gnu*) # With glibc-2.1 or newer, we don't need any canonicalization, # because glibc has iconv and both glibc and libiconv support all # GNU canonical names directly. Therefore, the Makefile does not # need to install the alias file at all. # The following applies only to glibc-2.0.x and older libcs. echo "ISO_646.IRV:1983 ASCII" ;; aix*) echo "ISO8859-1 ISO-8859-1" echo "ISO8859-2 ISO-8859-2" echo "ISO8859-5 ISO-8859-5" echo "ISO8859-6 ISO-8859-6" echo "ISO8859-7 ISO-8859-7" echo "ISO8859-8 ISO-8859-8" echo "ISO8859-9 ISO-8859-9" echo "ISO8859-15 ISO-8859-15" echo "IBM-850 CP850" echo "IBM-856 CP856" echo "IBM-921 ISO-8859-13" echo "IBM-922 CP922" echo "IBM-932 CP932" echo "IBM-943 CP943" echo "IBM-1046 CP1046" echo "IBM-1124 CP1124" echo "IBM-1129 CP1129" echo "IBM-1252 CP1252" echo "IBM-eucCN GB2312" echo "IBM-eucJP EUC-JP" echo "IBM-eucKR EUC-KR" echo "IBM-eucTW EUC-TW" echo "big5 BIG5" echo "GBK GBK" echo "TIS-620 TIS-620" echo "UTF-8 UTF-8" ;; hpux*) echo "iso88591 ISO-8859-1" echo "iso88592 ISO-8859-2" echo "iso88595 ISO-8859-5" echo "iso88596 ISO-8859-6" echo "iso88597 ISO-8859-7" echo "iso88598 ISO-8859-8" echo "iso88599 ISO-8859-9" echo "iso885915 ISO-8859-15" echo "roman8 HP-ROMAN8" echo "arabic8 HP-ARABIC8" echo "greek8 HP-GREEK8" echo "hebrew8 HP-HEBREW8" echo "turkish8 HP-TURKISH8" echo "kana8 HP-KANA8" echo "tis620 TIS-620" echo "big5 BIG5" echo "eucJP EUC-JP" echo "eucKR EUC-KR" echo "eucTW EUC-TW" echo "hp15CN GB2312" #echo "ccdc ?" # what is this? echo "SJIS SHIFT_JIS" echo "utf8 UTF-8" ;; irix*) echo "ISO8859-1 ISO-8859-1" echo "ISO8859-2 ISO-8859-2" echo "ISO8859-5 ISO-8859-5" echo "ISO8859-7 ISO-8859-7" echo "ISO8859-9 ISO-8859-9" echo "eucCN GB2312" echo "eucJP EUC-JP" echo "eucKR EUC-KR" echo "eucTW EUC-TW" ;; osf*) echo "ISO8859-1 ISO-8859-1" echo "ISO8859-2 ISO-8859-2" echo "ISO8859-4 ISO-8859-4" echo "ISO8859-5 ISO-8859-5" echo "ISO8859-7 ISO-8859-7" echo "ISO8859-8 ISO-8859-8" echo "ISO8859-9 ISO-8859-9" echo "ISO8859-15 ISO-8859-15" echo "cp850 CP850" echo "big5 BIG5" echo "dechanyu DEC-HANYU" echo "dechanzi GB2312" echo "deckanji DEC-KANJI" echo "deckorean EUC-KR" echo "eucJP EUC-JP" echo "eucKR EUC-KR" echo "eucTW EUC-TW" echo "GBK GBK" echo "KSC5601 CP949" echo "sdeckanji EUC-JP" echo "SJIS SHIFT_JIS" echo "TACTIS TIS-620" echo "UTF-8 UTF-8" ;; solaris*) echo "646 ASCII" echo "ISO8859-1 ISO-8859-1" echo "ISO8859-2 ISO-8859-2" echo "ISO8859-3 ISO-8859-3" echo "ISO8859-4 ISO-8859-4" echo "ISO8859-5 ISO-8859-5" echo "ISO8859-6 ISO-8859-6" echo "ISO8859-7 ISO-8859-7" echo "ISO8859-8 ISO-8859-8" echo "ISO8859-9 ISO-8859-9" echo "ISO8859-15 ISO-8859-15" echo "koi8-r KOI8-R" echo "ansi-1251 CP1251" echo "BIG5 BIG5" echo "Big5-HKSCS BIG5-HKSCS" echo "gb2312 GB2312" echo "GBK GBK" echo "GB18030 GB18030" echo "cns11643 EUC-TW" echo "5601 EUC-KR" echo "ko_KR.johap92 JOHAB" echo "eucJP EUC-JP" echo "PCK SHIFT_JIS" echo "TIS620.2533 TIS-620" #echo "sun_eu_greek ?" # what is this? echo "UTF-8 UTF-8" ;; freebsd* | os2*) # FreeBSD 4.2 doesn't have nl_langinfo(CODESET); therefore # localcharset.c falls back to using the full locale name # from the environment variables. # Likewise for OS/2. OS/2 has XFree86 just like FreeBSD. Just # reuse FreeBSD's locale data for OS/2. echo "C ASCII" echo "US-ASCII ASCII" for l in la_LN lt_LN; do echo "$l.ASCII ASCII" done for l in da_DK de_AT de_CH de_DE en_AU en_CA en_GB en_US es_ES \ fi_FI fr_BE fr_CA fr_CH fr_FR is_IS it_CH it_IT la_LN \ lt_LN nl_BE nl_NL no_NO pt_PT sv_SE; do echo "$l.ISO_8859-1 ISO-8859-1" echo "$l.DIS_8859-15 ISO-8859-15" done for l in cs_CZ hr_HR hu_HU la_LN lt_LN pl_PL sl_SI; do echo "$l.ISO_8859-2 ISO-8859-2" done for l in la_LN lt_LT; do echo "$l.ISO_8859-4 ISO-8859-4" done for l in ru_RU ru_SU; do echo "$l.KOI8-R KOI8-R" echo "$l.ISO_8859-5 ISO-8859-5" echo "$l.CP866 CP866" done echo "uk_UA.KOI8-U KOI8-U" echo "zh_TW.BIG5 BIG5" echo "zh_TW.Big5 BIG5" echo "zh_CN.EUC GB2312" echo "ja_JP.EUC EUC-JP" echo "ja_JP.SJIS SHIFT_JIS" echo "ja_JP.Shift_JIS SHIFT_JIS" echo "ko_KR.EUC EUC-KR" ;; netbsd*) echo "646 ASCII" echo "ISO8859-1 ISO-8859-1" echo "ISO8859-2 ISO-8859-2" echo "ISO8859-4 ISO-8859-4" echo "ISO8859-5 ISO-8859-5" echo "ISO8859-15 ISO-8859-15" echo "eucCN GB2312" echo "eucJP EUC-JP" echo "eucKR EUC-KR" echo "eucTW EUC-TW" echo "BIG5 BIG5" echo "SJIS SHIFT_JIS" ;; darwin*) # Darwin 6.8 doesn't have nl_langinfo(CODESET); therefore # localcharset.c falls back to using the full locale name # from the environment variables. echo "C ASCII" for l in en_AU en_CA en_GB en_US la_LN; do echo "$l.US-ASCII ASCII" done for l in da_DK de_AT de_CH de_DE en_AU en_CA en_GB en_US es_ES \ fi_FI fr_BE fr_CA fr_CH fr_FR is_IS it_CH it_IT nl_BE \ nl_NL no_NO pt_PT sv_SE; do echo "$l ISO-8859-1" echo "$l.ISO8859-1 ISO-8859-1" echo "$l.ISO8859-15 ISO-8859-15" done for l in la_LN; do echo "$l.ISO8859-1 ISO-8859-1" echo "$l.ISO8859-15 ISO-8859-15" done for l in cs_CZ hr_HR hu_HU la_LN pl_PL sl_SI; do echo "$l.ISO8859-2 ISO-8859-2" done for l in la_LN lt_LT; do echo "$l.ISO8859-4 ISO-8859-4" done for l in ru_RU; do echo "$l.KOI8-R KOI8-R" echo "$l.ISO8859-5 ISO-8859-5" echo "$l.CP866 CP866" done for l in bg_BG; do echo "$l.CP1251 CP1251" done echo "uk_UA.KOI8-U KOI8-U" echo "zh_TW.BIG5 BIG5" echo "zh_TW.Big5 BIG5" echo "zh_CN.EUC GB2312" echo "ja_JP.EUC EUC-JP" echo "ja_JP.SJIS SHIFT_JIS" echo "ko_KR.EUC EUC-KR" ;; beos*) # BeOS has a single locale, and it has UTF-8 encoding. echo "* UTF-8" ;; msdosdjgpp*) # DJGPP 2.03 doesn't have nl_langinfo(CODESET); therefore # localcharset.c falls back to using the full locale name # from the environment variables. echo "#" echo "# The encodings given here may not all be correct." echo "# If you find that the encoding given for your language and" echo "# country is not the one your DOS machine actually uses, just" echo "# correct it in this file, and send a mail to" echo "# Juan Manuel Guerrero " echo "# and Bruno Haible ." echo "#" echo "C ASCII" # ISO-8859-1 languages echo "ca CP850" echo "ca_ES CP850" echo "da CP865" # not CP850 ?? echo "da_DK CP865" # not CP850 ?? echo "de CP850" echo "de_AT CP850" echo "de_CH CP850" echo "de_DE CP850" echo "en CP850" echo "en_AU CP850" # not CP437 ?? echo "en_CA CP850" echo "en_GB CP850" echo "en_NZ CP437" echo "en_US CP437" echo "en_ZA CP850" # not CP437 ?? echo "es CP850" echo "es_AR CP850" echo "es_BO CP850" echo "es_CL CP850" echo "es_CO CP850" echo "es_CR CP850" echo "es_CU CP850" echo "es_DO CP850" echo "es_EC CP850" echo "es_ES CP850" echo "es_GT CP850" echo "es_HN CP850" echo "es_MX CP850" echo "es_NI CP850" echo "es_PA CP850" echo "es_PY CP850" echo "es_PE CP850" echo "es_SV CP850" echo "es_UY CP850" echo "es_VE CP850" echo "et CP850" echo "et_EE CP850" echo "eu CP850" echo "eu_ES CP850" echo "fi CP850" echo "fi_FI CP850" echo "fr CP850" echo "fr_BE CP850" echo "fr_CA CP850" echo "fr_CH CP850" echo "fr_FR CP850" echo "ga CP850" echo "ga_IE CP850" echo "gd CP850" echo "gd_GB CP850" echo "gl CP850" echo "gl_ES CP850" echo "id CP850" # not CP437 ?? echo "id_ID CP850" # not CP437 ?? echo "is CP861" # not CP850 ?? echo "is_IS CP861" # not CP850 ?? echo "it CP850" echo "it_CH CP850" echo "it_IT CP850" echo "lt CP775" echo "lt_LT CP775" echo "lv CP775" echo "lv_LV CP775" echo "nb CP865" # not CP850 ?? echo "nb_NO CP865" # not CP850 ?? echo "nl CP850" echo "nl_BE CP850" echo "nl_NL CP850" echo "nn CP865" # not CP850 ?? echo "nn_NO CP865" # not CP850 ?? echo "no CP865" # not CP850 ?? echo "no_NO CP865" # not CP850 ?? echo "pt CP850" echo "pt_BR CP850" echo "pt_PT CP850" echo "sv CP850" echo "sv_SE CP850" # ISO-8859-2 languages echo "cs CP852" echo "cs_CZ CP852" echo "hr CP852" echo "hr_HR CP852" echo "hu CP852" echo "hu_HU CP852" echo "pl CP852" echo "pl_PL CP852" echo "ro CP852" echo "ro_RO CP852" echo "sk CP852" echo "sk_SK CP852" echo "sl CP852" echo "sl_SI CP852" echo "sq CP852" echo "sq_AL CP852" echo "sr CP852" # CP852 or CP866 or CP855 ?? echo "sr_CS CP852" # CP852 or CP866 or CP855 ?? echo "sr_YU CP852" # CP852 or CP866 or CP855 ?? # ISO-8859-3 languages echo "mt CP850" echo "mt_MT CP850" # ISO-8859-5 languages echo "be CP866" echo "be_BE CP866" echo "bg CP866" # not CP855 ?? echo "bg_BG CP866" # not CP855 ?? echo "mk CP866" # not CP855 ?? echo "mk_MK CP866" # not CP855 ?? echo "ru CP866" echo "ru_RU CP866" echo "uk CP1125" echo "uk_UA CP1125" # ISO-8859-6 languages echo "ar CP864" echo "ar_AE CP864" echo "ar_DZ CP864" echo "ar_EG CP864" echo "ar_IQ CP864" echo "ar_IR CP864" echo "ar_JO CP864" echo "ar_KW CP864" echo "ar_MA CP864" echo "ar_OM CP864" echo "ar_QA CP864" echo "ar_SA CP864" echo "ar_SY CP864" # ISO-8859-7 languages echo "el CP869" echo "el_GR CP869" # ISO-8859-8 languages echo "he CP862" echo "he_IL CP862" # ISO-8859-9 languages echo "tr CP857" echo "tr_TR CP857" # Japanese echo "ja CP932" echo "ja_JP CP932" # Chinese echo "zh_CN GBK" echo "zh_TW CP950" # not CP938 ?? # Korean echo "kr CP949" # not CP934 ?? echo "kr_KR CP949" # not CP934 ?? # Thai echo "th CP874" echo "th_TH CP874" # Other echo "eo CP850" echo "eo_EO CP850" ;; esac ltris-1.0.19/intl/Makefile.in0000664000175000017500000003762612140770050012707 00000000000000# Makefile for directory with message catalog handling library of GNU gettext # Copyright (C) 1995-1998, 2000-2003 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Library General Public License as published # by the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Library General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, # USA. PACKAGE = @PACKAGE@ VERSION = @VERSION@ SHELL = /bin/sh srcdir = @srcdir@ top_srcdir = @top_srcdir@ top_builddir = .. VPATH = $(srcdir) prefix = @prefix@ exec_prefix = @exec_prefix@ transform = @program_transform_name@ libdir = @libdir@ includedir = @includedir@ datadir = @datadir@ localedir = $(datadir)/locale gettextsrcdir = $(datadir)/gettext/intl aliaspath = $(localedir) subdir = intl INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ MKINSTALLDIRS = @MKINSTALLDIRS@ mkinstalldirs = $(SHELL) $(MKINSTALLDIRS) l = @INTL_LIBTOOL_SUFFIX_PREFIX@ AR = ar CC = @CC@ LIBTOOL = @LIBTOOL@ RANLIB = @RANLIB@ YACC = @INTLBISON@ -y -d YFLAGS = --name-prefix=__gettext DEFS = -DLOCALEDIR=\"$(localedir)\" -DLOCALE_ALIAS_PATH=\"$(aliaspath)\" \ -DLIBDIR=\"$(libdir)\" -DIN_LIBINTL \ -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"$(libdir)\" -DNO_XMALLOC \ -Dset_relocation_prefix=libintl_set_relocation_prefix \ -Drelocate=libintl_relocate \ -DDEPENDS_ON_LIBICONV=1 @DEFS@ CPPFLAGS = @CPPFLAGS@ CFLAGS = @CFLAGS@ LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ COMPILE = $(CC) -c $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS) HEADERS = \ gmo.h \ gettextP.h \ hash-string.h \ loadinfo.h \ plural-exp.h \ eval-plural.h \ localcharset.h \ relocatable.h \ xsize.h \ printf-args.h printf-args.c \ printf-parse.h wprintf-parse.h printf-parse.c \ vasnprintf.h vasnwprintf.h vasnprintf.c \ os2compat.h \ libgnuintl.h.in SOURCES = \ bindtextdom.c \ dcgettext.c \ dgettext.c \ gettext.c \ finddomain.c \ loadmsgcat.c \ localealias.c \ textdomain.c \ l10nflist.c \ explodename.c \ dcigettext.c \ dcngettext.c \ dngettext.c \ ngettext.c \ plural.y \ plural-exp.c \ localcharset.c \ relocatable.c \ localename.c \ log.c \ printf.c \ osdep.c \ os2compat.c \ intl-compat.c OBJECTS = \ bindtextdom.$lo \ dcgettext.$lo \ dgettext.$lo \ gettext.$lo \ finddomain.$lo \ loadmsgcat.$lo \ localealias.$lo \ textdomain.$lo \ l10nflist.$lo \ explodename.$lo \ dcigettext.$lo \ dcngettext.$lo \ dngettext.$lo \ ngettext.$lo \ plural.$lo \ plural-exp.$lo \ localcharset.$lo \ relocatable.$lo \ localename.$lo \ log.$lo \ printf.$lo \ osdep.$lo \ intl-compat.$lo DISTFILES.common = Makefile.in \ config.charset locale.alias ref-add.sin ref-del.sin $(HEADERS) $(SOURCES) DISTFILES.generated = plural.c DISTFILES.normal = VERSION DISTFILES.gettext = COPYING.LIB-2.0 COPYING.LIB-2.1 libintl.glibc \ libgnuintl.h_vms Makefile.vms \ libgnuintl.h.msvc-static libgnuintl.h.msvc-shared README.woe32 Makefile.msvc DISTFILES.obsolete = xopen-msg.sed linux-msg.sed po2tbl.sed.in cat-compat.c \ COPYING.LIB-2 gettext.h libgettext.h plural-eval.c libgnuintl.h all: all-@USE_INCLUDED_LIBINTL@ all-yes: libintl.$la libintl.h charset.alias ref-add.sed ref-del.sed all-no: all-no-@BUILD_INCLUDED_LIBINTL@ all-no-yes: libgnuintl.$la all-no-no: libintl.a libgnuintl.a: $(OBJECTS) rm -f $@ $(AR) cru $@ $(OBJECTS) $(RANLIB) $@ libintl.la libgnuintl.la: $(OBJECTS) $(LIBTOOL) --mode=link \ $(CC) $(CPPFLAGS) $(CFLAGS) $(XCFLAGS) $(LDFLAGS) -o $@ \ $(OBJECTS) @LTLIBICONV@ $(LIBS) -lc \ -version-info $(LTV_CURRENT):$(LTV_REVISION):$(LTV_AGE) \ -rpath $(libdir) \ -no-undefined # Libtool's library version information for libintl. # Before making a gettext release, the gettext maintainer must change this # according to the libtool documentation, section "Library interface versions". # Maintainers of other packages that include the intl directory must *not* # change these values. LTV_CURRENT=7 LTV_REVISION=0 LTV_AGE=4 .SUFFIXES: .SUFFIXES: .c .y .o .lo .sin .sed .c.o: $(COMPILE) $< .y.c: $(YACC) $(YFLAGS) --output $@ $< rm -f $*.h bindtextdom.lo: $(srcdir)/bindtextdom.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/bindtextdom.c dcgettext.lo: $(srcdir)/dcgettext.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/dcgettext.c dgettext.lo: $(srcdir)/dgettext.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/dgettext.c gettext.lo: $(srcdir)/gettext.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/gettext.c finddomain.lo: $(srcdir)/finddomain.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/finddomain.c loadmsgcat.lo: $(srcdir)/loadmsgcat.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/loadmsgcat.c localealias.lo: $(srcdir)/localealias.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/localealias.c textdomain.lo: $(srcdir)/textdomain.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/textdomain.c l10nflist.lo: $(srcdir)/l10nflist.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/l10nflist.c explodename.lo: $(srcdir)/explodename.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/explodename.c dcigettext.lo: $(srcdir)/dcigettext.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/dcigettext.c dcngettext.lo: $(srcdir)/dcngettext.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/dcngettext.c dngettext.lo: $(srcdir)/dngettext.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/dngettext.c ngettext.lo: $(srcdir)/ngettext.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/ngettext.c plural.lo: $(srcdir)/plural.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/plural.c plural-exp.lo: $(srcdir)/plural-exp.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/plural-exp.c localcharset.lo: $(srcdir)/localcharset.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/localcharset.c relocatable.lo: $(srcdir)/relocatable.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/relocatable.c localename.lo: $(srcdir)/localename.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/localename.c log.lo: $(srcdir)/log.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/log.c printf.lo: $(srcdir)/printf.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/printf.c osdep.lo: $(srcdir)/osdep.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/osdep.c intl-compat.lo: $(srcdir)/intl-compat.c $(LIBTOOL) --mode=compile $(COMPILE) $(srcdir)/intl-compat.c ref-add.sed: $(srcdir)/ref-add.sin sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $(srcdir)/ref-add.sin > t-ref-add.sed mv t-ref-add.sed ref-add.sed ref-del.sed: $(srcdir)/ref-del.sin sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $(srcdir)/ref-del.sin > t-ref-del.sed mv t-ref-del.sed ref-del.sed INCLUDES = -I. -I$(srcdir) -I.. libgnuintl.h: $(srcdir)/libgnuintl.h.in sed -e 's,@''HAVE_POSIX_PRINTF''@,@HAVE_POSIX_PRINTF@,g' \ -e 's,@''HAVE_ASPRINTF''@,@HAVE_ASPRINTF@,g' \ -e 's,@''HAVE_SNPRINTF''@,@HAVE_SNPRINTF@,g' \ -e 's,@''HAVE_WPRINTF''@,@HAVE_WPRINTF@,g' \ < $(srcdir)/libgnuintl.h.in > libgnuintl.h libintl.h: libgnuintl.h cp libgnuintl.h libintl.h charset.alias: $(srcdir)/config.charset $(SHELL) $(srcdir)/config.charset '@host@' > t-$@ mv t-$@ $@ check: all # We must not install the libintl.h/libintl.a files if we are on a # system which has the GNU gettext() function in its C library or in a # separate library. # If you want to use the one which comes with this version of the # package, you have to use `configure --with-included-gettext'. install: install-exec install-data install-exec: all if { test "$(PACKAGE)" = "gettext-runtime" || test "$(PACKAGE)" = "gettext-tools"; } \ && test '@USE_INCLUDED_LIBINTL@' = yes; then \ $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir); \ $(INSTALL_DATA) libintl.h $(DESTDIR)$(includedir)/libintl.h; \ $(LIBTOOL) --mode=install \ $(INSTALL_DATA) libintl.$la $(DESTDIR)$(libdir)/libintl.$la; \ if test "@RELOCATABLE@" = yes; then \ dependencies=`sed -n -e 's,^dependency_libs=\(.*\),\1,p' < $(DESTDIR)$(libdir)/libintl.la | sed -e "s,^',," -e "s,'\$$,,"`; \ if test -n "$$dependencies"; then \ rm -f $(DESTDIR)$(libdir)/libintl.la; \ fi; \ fi; \ else \ : ; \ fi if test "$(PACKAGE)" = "gettext-tools" \ && test '@USE_INCLUDED_LIBINTL@' = no; then \ $(mkinstalldirs) $(DESTDIR)$(libdir); \ $(LIBTOOL) --mode=install \ $(INSTALL_DATA) libgnuintl.$la $(DESTDIR)$(libdir)/libgnuintl.$la; \ rm -f $(DESTDIR)$(libdir)/preloadable_libintl.so; \ $(INSTALL_DATA) $(DESTDIR)$(libdir)/libgnuintl.so $(DESTDIR)$(libdir)/preloadable_libintl.so; \ $(LIBTOOL) --mode=uninstall \ rm -f $(DESTDIR)$(libdir)/libgnuintl.$la; \ else \ : ; \ fi if test '@USE_INCLUDED_LIBINTL@' = yes; then \ test @GLIBC21@ != no || $(mkinstalldirs) $(DESTDIR)$(libdir); \ temp=$(DESTDIR)$(libdir)/t-charset.alias; \ dest=$(DESTDIR)$(libdir)/charset.alias; \ if test -f $(DESTDIR)$(libdir)/charset.alias; then \ orig=$(DESTDIR)$(libdir)/charset.alias; \ sed -f ref-add.sed $$orig > $$temp; \ $(INSTALL_DATA) $$temp $$dest; \ rm -f $$temp; \ else \ if test @GLIBC21@ = no; then \ orig=charset.alias; \ sed -f ref-add.sed $$orig > $$temp; \ $(INSTALL_DATA) $$temp $$dest; \ rm -f $$temp; \ fi; \ fi; \ $(mkinstalldirs) $(DESTDIR)$(localedir); \ test -f $(DESTDIR)$(localedir)/locale.alias \ && orig=$(DESTDIR)$(localedir)/locale.alias \ || orig=$(srcdir)/locale.alias; \ temp=$(DESTDIR)$(localedir)/t-locale.alias; \ dest=$(DESTDIR)$(localedir)/locale.alias; \ sed -f ref-add.sed $$orig > $$temp; \ $(INSTALL_DATA) $$temp $$dest; \ rm -f $$temp; \ else \ : ; \ fi install-data: all if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ $(INSTALL_DATA) VERSION $(DESTDIR)$(gettextsrcdir)/VERSION; \ $(INSTALL_DATA) ChangeLog.inst $(DESTDIR)$(gettextsrcdir)/ChangeLog; \ dists="COPYING.LIB-2.0 COPYING.LIB-2.1 $(DISTFILES.common)"; \ for file in $$dists; do \ $(INSTALL_DATA) $(srcdir)/$$file \ $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ chmod a+x $(DESTDIR)$(gettextsrcdir)/config.charset; \ dists="$(DISTFILES.generated)"; \ for file in $$dists; do \ if test -f $$file; then dir=.; else dir=$(srcdir); fi; \ $(INSTALL_DATA) $$dir/$$file \ $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ dists="$(DISTFILES.obsolete)"; \ for file in $$dists; do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi install-strip: install installdirs: if { test "$(PACKAGE)" = "gettext-runtime" || test "$(PACKAGE)" = "gettext-tools"; } \ && test '@USE_INCLUDED_LIBINTL@' = yes; then \ $(mkinstalldirs) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir); \ else \ : ; \ fi if test "$(PACKAGE)" = "gettext-tools" \ && test '@USE_INCLUDED_LIBINTL@' = no; then \ $(mkinstalldirs) $(DESTDIR)$(libdir); \ else \ : ; \ fi if test '@USE_INCLUDED_LIBINTL@' = yes; then \ test @GLIBC21@ != no || $(mkinstalldirs) $(DESTDIR)$(libdir); \ $(mkinstalldirs) $(DESTDIR)$(localedir); \ else \ : ; \ fi if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ else \ : ; \ fi # Define this as empty until I found a useful application. installcheck: uninstall: if { test "$(PACKAGE)" = "gettext-runtime" || test "$(PACKAGE)" = "gettext-tools"; } \ && test '@USE_INCLUDED_LIBINTL@' = yes; then \ rm -f $(DESTDIR)$(includedir)/libintl.h; \ $(LIBTOOL) --mode=uninstall \ rm -f $(DESTDIR)$(libdir)/libintl.$la; \ else \ : ; \ fi if test "$(PACKAGE)" = "gettext-tools" \ && test '@USE_INCLUDED_LIBINTL@' = no; then \ rm -f $(DESTDIR)$(libdir)/preloadable_libintl.so; \ else \ : ; \ fi if test '@USE_INCLUDED_LIBINTL@' = yes; then \ if test -f $(DESTDIR)$(libdir)/charset.alias; then \ temp=$(DESTDIR)$(libdir)/t-charset.alias; \ dest=$(DESTDIR)$(libdir)/charset.alias; \ sed -f ref-del.sed $$dest > $$temp; \ if grep '^# Packages using this file: $$' $$temp > /dev/null; then \ rm -f $$dest; \ else \ $(INSTALL_DATA) $$temp $$dest; \ fi; \ rm -f $$temp; \ fi; \ if test -f $(DESTDIR)$(localedir)/locale.alias; then \ temp=$(DESTDIR)$(localedir)/t-locale.alias; \ dest=$(DESTDIR)$(localedir)/locale.alias; \ sed -f ref-del.sed $$dest > $$temp; \ if grep '^# Packages using this file: $$' $$temp > /dev/null; then \ rm -f $$dest; \ else \ $(INSTALL_DATA) $$temp $$dest; \ fi; \ rm -f $$temp; \ fi; \ else \ : ; \ fi if test "$(PACKAGE)" = "gettext-tools"; then \ for file in VERSION ChangeLog COPYING.LIB-2.0 COPYING.LIB-2.1 $(DISTFILES.common) $(DISTFILES.generated); do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi info dvi ps pdf html: $(OBJECTS): ../config.h libgnuintl.h bindtextdom.$lo dcgettext.$lo dcigettext.$lo dcngettext.$lo dgettext.$lo dngettext.$lo finddomain.$lo gettext.$lo intl-compat.$lo loadmsgcat.$lo localealias.$lo ngettext.$lo textdomain.$lo: $(srcdir)/gettextP.h $(srcdir)/gmo.h $(srcdir)/loadinfo.h dcigettext.$lo loadmsgcat.$lo: $(srcdir)/hash-string.h explodename.$lo l10nflist.$lo: $(srcdir)/loadinfo.h dcigettext.$lo loadmsgcat.$lo plural.$lo plural-exp.$lo: $(srcdir)/plural-exp.h dcigettext.$lo: $(srcdir)/eval-plural.h localcharset.$lo: $(srcdir)/localcharset.h localealias.$lo localcharset.$lo relocatable.$lo: $(srcdir)/relocatable.h printf.$lo: $(srcdir)/printf-args.h $(srcdir)/printf-args.c $(srcdir)/printf-parse.h $(srcdir)/wprintf-parse.h $(srcdir)/xsize.h $(srcdir)/printf-parse.c $(srcdir)/vasnprintf.h $(srcdir)/vasnwprintf.h $(srcdir)/vasnprintf.c tags: TAGS TAGS: $(HEADERS) $(SOURCES) here=`pwd`; cd $(srcdir) && etags -o $$here/TAGS $(HEADERS) $(SOURCES) ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) here=`pwd`; cd $(srcdir) && ctags -o $$here/CTAGS $(HEADERS) $(SOURCES) id: ID ID: $(HEADERS) $(SOURCES) here=`pwd`; cd $(srcdir) && mkid -f$$here/ID $(HEADERS) $(SOURCES) mostlyclean: rm -f *.a *.la *.o *.obj *.lo core core.* rm -f libgnuintl.h libintl.h charset.alias ref-add.sed ref-del.sed rm -f -r .libs _libs clean: mostlyclean distclean: clean rm -f Makefile ID TAGS if test "$(PACKAGE)" = "gettext-runtime" || test "$(PACKAGE)" = "gettext-tools"; then \ rm -f ChangeLog.inst $(DISTFILES.normal); \ else \ : ; \ fi maintainer-clean: distclean @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." # GNU gettext needs not contain the file `VERSION' but contains some # other files which should not be distributed in other packages. distdir = ../$(PACKAGE)-$(VERSION)/$(subdir) dist distdir: Makefile if test "$(PACKAGE)" = "gettext-tools"; then \ : ; \ else \ if test "$(PACKAGE)" = "gettext-runtime"; then \ additional="$(DISTFILES.gettext)"; \ else \ additional="$(DISTFILES.normal)"; \ fi; \ $(MAKE) $(DISTFILES.common) $(DISTFILES.generated) $$additional; \ for file in ChangeLog $(DISTFILES.common) $(DISTFILES.generated) $$additional; do \ if test -f $$file; then dir=.; else dir=$(srcdir); fi; \ cp -p $$dir/$$file $(distdir); \ done; \ fi Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status cd $(top_builddir) && $(SHELL) ./config.status # This would be more efficient, but doesn't work any more with autoconf-2.57, # when AC_CONFIG_FILES([intl/Makefile:somedir/Makefile.in]) is used. # cd $(top_builddir) && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: ltris-1.0.19/intl/localcharset.h0000664000175000017500000000255712140770050013452 00000000000000/* Determine a canonical name for the current locale's character encoding. Copyright (C) 2000-2003 Free Software Foundation, Inc. This file is part of the GNU CHARSET Library. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _LOCALCHARSET_H #define _LOCALCHARSET_H #ifdef __cplusplus extern "C" { #endif /* Determine the current locale's character encoding, and canonicalize it into one of the canonical names listed in config.charset. The result must not be freed; it is statically allocated. If the canonical name cannot be determined, the result is a non-canonical name. */ extern const char * locale_charset (void); #ifdef __cplusplus } #endif #endif /* _LOCALCHARSET_H */ ltris-1.0.19/intl/dcgettext.c0000664000175000017500000000341512140770050012766 00000000000000/* Implementation of the dcgettext(3) function. Copyright (C) 1995-1999, 2000-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define DCGETTEXT __dcgettext # define DCIGETTEXT __dcigettext #else # define DCGETTEXT libintl_dcgettext # define DCIGETTEXT libintl_dcigettext #endif /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY locale. */ char * DCGETTEXT (const char *domainname, const char *msgid, int category) { return DCIGETTEXT (domainname, msgid, NULL, 0, 0, category); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ INTDEF(__dcgettext) weak_alias (__dcgettext, dcgettext); #endif ltris-1.0.19/intl/printf-args.h0000664000175000017500000000550212140770050013233 00000000000000/* Decomposed printf argument list. Copyright (C) 1999, 2002-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _PRINTF_ARGS_H #define _PRINTF_ARGS_H /* Get size_t. */ #include /* Get wchar_t. */ #ifdef HAVE_WCHAR_T # include #endif /* Get wint_t. */ #ifdef HAVE_WINT_T # include #endif /* Get va_list. */ #include /* Argument types */ typedef enum { TYPE_NONE, TYPE_SCHAR, TYPE_UCHAR, TYPE_SHORT, TYPE_USHORT, TYPE_INT, TYPE_UINT, TYPE_LONGINT, TYPE_ULONGINT, #ifdef HAVE_LONG_LONG TYPE_LONGLONGINT, TYPE_ULONGLONGINT, #endif TYPE_DOUBLE, #ifdef HAVE_LONG_DOUBLE TYPE_LONGDOUBLE, #endif TYPE_CHAR, #ifdef HAVE_WINT_T TYPE_WIDE_CHAR, #endif TYPE_STRING, #ifdef HAVE_WCHAR_T TYPE_WIDE_STRING, #endif TYPE_POINTER, TYPE_COUNT_SCHAR_POINTER, TYPE_COUNT_SHORT_POINTER, TYPE_COUNT_INT_POINTER, TYPE_COUNT_LONGINT_POINTER #ifdef HAVE_LONG_LONG , TYPE_COUNT_LONGLONGINT_POINTER #endif } arg_type; /* Polymorphic argument */ typedef struct { arg_type type; union { signed char a_schar; unsigned char a_uchar; short a_short; unsigned short a_ushort; int a_int; unsigned int a_uint; long int a_longint; unsigned long int a_ulongint; #ifdef HAVE_LONG_LONG long long int a_longlongint; unsigned long long int a_ulonglongint; #endif float a_float; double a_double; #ifdef HAVE_LONG_DOUBLE long double a_longdouble; #endif int a_char; #ifdef HAVE_WINT_T wint_t a_wide_char; #endif const char* a_string; #ifdef HAVE_WCHAR_T const wchar_t* a_wide_string; #endif void* a_pointer; signed char * a_count_schar_pointer; short * a_count_short_pointer; int * a_count_int_pointer; long int * a_count_longint_pointer; #ifdef HAVE_LONG_LONG long long int * a_count_longlongint_pointer; #endif } a; } argument; typedef struct { size_t count; argument *arg; } arguments; /* Fetch the arguments, putting them into a. */ #ifdef STATIC STATIC #else extern #endif int printf_fetchargs (va_list args, arguments *a); #endif /* _PRINTF_ARGS_H */ ltris-1.0.19/intl/plural-exp.h0000664000175000017500000000773312140770050013100 00000000000000/* Expression parsing and evaluation for plural form selection. Copyright (C) 2000-2003 Free Software Foundation, Inc. Written by Ulrich Drepper , 2000. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _PLURAL_EXP_H #define _PLURAL_EXP_H #ifndef internal_function # define internal_function #endif #ifndef attribute_hidden # define attribute_hidden #endif /* This is the representation of the expressions to determine the plural form. */ struct expression { int nargs; /* Number of arguments. */ enum operator { /* Without arguments: */ var, /* The variable "n". */ num, /* Decimal number. */ /* Unary operators: */ lnot, /* Logical NOT. */ /* Binary operators: */ mult, /* Multiplication. */ divide, /* Division. */ module, /* Modulo operation. */ plus, /* Addition. */ minus, /* Subtraction. */ less_than, /* Comparison. */ greater_than, /* Comparison. */ less_or_equal, /* Comparison. */ greater_or_equal, /* Comparison. */ equal, /* Comparison for equality. */ not_equal, /* Comparison for inequality. */ land, /* Logical AND. */ lor, /* Logical OR. */ /* Ternary operators: */ qmop /* Question mark operator. */ } operation; union { unsigned long int num; /* Number value for `num'. */ struct expression *args[3]; /* Up to three arguments. */ } val; }; /* This is the data structure to pass information to the parser and get the result in a thread-safe way. */ struct parse_args { const char *cp; struct expression *res; }; /* Names for the libintl functions are a problem. This source code is used 1. in the GNU C Library library, 2. in the GNU libintl library, 3. in the GNU gettext tools. The function names in each situation must be different, to allow for binary incompatible changes in 'struct expression'. Furthermore, 1. in the GNU C Library library, the names have a __ prefix, 2.+3. in the GNU libintl library and in the GNU gettext tools, the names must follow ANSI C and not start with __. So we have to distinguish the three cases. */ #ifdef _LIBC # define FREE_EXPRESSION __gettext_free_exp # define PLURAL_PARSE __gettextparse # define GERMANIC_PLURAL __gettext_germanic_plural # define EXTRACT_PLURAL_EXPRESSION __gettext_extract_plural #elif defined (IN_LIBINTL) # define FREE_EXPRESSION libintl_gettext_free_exp # define PLURAL_PARSE libintl_gettextparse # define GERMANIC_PLURAL libintl_gettext_germanic_plural # define EXTRACT_PLURAL_EXPRESSION libintl_gettext_extract_plural #else # define FREE_EXPRESSION free_plural_expression # define PLURAL_PARSE parse_plural_expression # define GERMANIC_PLURAL germanic_plural # define EXTRACT_PLURAL_EXPRESSION extract_plural_expression #endif extern void FREE_EXPRESSION (struct expression *exp) internal_function; extern int PLURAL_PARSE (void *arg); extern struct expression GERMANIC_PLURAL attribute_hidden; extern void EXTRACT_PLURAL_EXPRESSION (const char *nullentry, struct expression **pluralp, unsigned long int *npluralsp) internal_function; #if !defined (_LIBC) && !defined (IN_LIBINTL) extern unsigned long int plural_eval (struct expression *pexp, unsigned long int n); #endif #endif /* _PLURAL_EXP_H */ ltris-1.0.19/intl/xsize.h0000664000175000017500000000672212140770050012146 00000000000000/* xsize.h -- Checked size_t computations. Copyright (C) 2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _XSIZE_H #define _XSIZE_H /* Get size_t. */ #include /* Get SIZE_MAX. */ #include #if HAVE_STDINT_H # include #endif /* The size of memory objects is often computed through expressions of type size_t. Example: void* p = malloc (header_size + n * element_size). These computations can lead to overflow. When this happens, malloc() returns a piece of memory that is way too small, and the program then crashes while attempting to fill the memory. To avoid this, the functions and macros in this file check for overflow. The convention is that SIZE_MAX represents overflow. malloc (SIZE_MAX) is not guaranteed to fail -- think of a malloc implementation that uses mmap --, it's recommended to use size_overflow_p() or size_in_bounds_p() before invoking malloc(). The example thus becomes: size_t size = xsum (header_size, xtimes (n, element_size)); void *p = (size_in_bounds_p (size) ? malloc (size) : NULL); */ /* Convert an arbitrary value >= 0 to type size_t. */ #define xcast_size_t(N) \ ((N) <= SIZE_MAX ? (size_t) (N) : SIZE_MAX) /* Sum of two sizes, with overflow check. */ static inline size_t #if __GNUC__ >= 3 __attribute__ ((__pure__)) #endif xsum (size_t size1, size_t size2) { size_t sum = size1 + size2; return (sum >= size1 ? sum : SIZE_MAX); } /* Sum of three sizes, with overflow check. */ static inline size_t #if __GNUC__ >= 3 __attribute__ ((__pure__)) #endif xsum3 (size_t size1, size_t size2, size_t size3) { return xsum (xsum (size1, size2), size3); } /* Sum of four sizes, with overflow check. */ static inline size_t #if __GNUC__ >= 3 __attribute__ ((__pure__)) #endif xsum4 (size_t size1, size_t size2, size_t size3, size_t size4) { return xsum (xsum (xsum (size1, size2), size3), size4); } /* Maximum of two sizes, with overflow check. */ static inline size_t #if __GNUC__ >= 3 __attribute__ ((__pure__)) #endif xmax (size_t size1, size_t size2) { /* No explicit check is needed here, because for any n: max (SIZE_MAX, n) == SIZE_MAX and max (n, SIZE_MAX) == SIZE_MAX. */ return (size1 >= size2 ? size1 : size2); } /* Multiplication of a count with an element size, with overflow check. The count must be >= 0 and the element size must be > 0. This is a macro, not an inline function, so that it works correctly even when N is of a wider tupe and N > SIZE_MAX. */ #define xtimes(N, ELSIZE) \ ((N) <= SIZE_MAX / (ELSIZE) ? (size_t) (N) * (ELSIZE) : SIZE_MAX) /* Check for overflow. */ #define size_overflow_p(SIZE) \ ((SIZE) == SIZE_MAX) /* Check against overflow. */ #define size_in_bounds_p(SIZE) \ ((SIZE) != SIZE_MAX) #endif /* _XSIZE_H */ ltris-1.0.19/intl/ChangeLog0000664000175000017500000000011112140770050012367 000000000000002004-01-29 GNU * Version 0.14.1 released. ltris-1.0.19/intl/loadmsgcat.c0000664000175000017500000010723712140770050013120 00000000000000/* Load needed message catalogs. Copyright (C) 1995-1999, 2000-2004 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Tell glibc's to provide a prototype for mempcpy(). This must come before because may include , and once has been included, it's too late. */ #ifndef _GNU_SOURCE # define _GNU_SOURCE 1 #endif #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include #include #ifdef __GNUC__ # undef alloca # define alloca __builtin_alloca # define HAVE_ALLOCA 1 #else # ifdef _MSC_VER # include # define alloca _alloca # else # if defined HAVE_ALLOCA_H || defined _LIBC # include # else # ifdef _AIX #pragma alloca # else # ifndef alloca char *alloca (); # endif # endif # endif # endif #endif #include #include #if defined HAVE_UNISTD_H || defined _LIBC # include #endif #ifdef _LIBC # include # include #endif #if (defined HAVE_MMAP && defined HAVE_MUNMAP && !defined DISALLOW_MMAP) \ || (defined _LIBC && defined _POSIX_MAPPED_FILES) # include # undef HAVE_MMAP # define HAVE_MMAP 1 #else # undef HAVE_MMAP #endif #if defined HAVE_STDINT_H_WITH_UINTMAX || defined _LIBC # include #endif #if defined HAVE_INTTYPES_H || defined _LIBC # include #endif #include "gmo.h" #include "gettextP.h" #include "hash-string.h" #include "plural-exp.h" #ifdef _LIBC # include "../locale/localeinfo.h" #endif /* Provide fallback values for macros that ought to be defined in . Note that our fallback values need not be literal strings, because we don't use them with preprocessor string concatenation. */ #if !defined PRId8 || PRI_MACROS_BROKEN # undef PRId8 # define PRId8 "d" #endif #if !defined PRIi8 || PRI_MACROS_BROKEN # undef PRIi8 # define PRIi8 "i" #endif #if !defined PRIo8 || PRI_MACROS_BROKEN # undef PRIo8 # define PRIo8 "o" #endif #if !defined PRIu8 || PRI_MACROS_BROKEN # undef PRIu8 # define PRIu8 "u" #endif #if !defined PRIx8 || PRI_MACROS_BROKEN # undef PRIx8 # define PRIx8 "x" #endif #if !defined PRIX8 || PRI_MACROS_BROKEN # undef PRIX8 # define PRIX8 "X" #endif #if !defined PRId16 || PRI_MACROS_BROKEN # undef PRId16 # define PRId16 "d" #endif #if !defined PRIi16 || PRI_MACROS_BROKEN # undef PRIi16 # define PRIi16 "i" #endif #if !defined PRIo16 || PRI_MACROS_BROKEN # undef PRIo16 # define PRIo16 "o" #endif #if !defined PRIu16 || PRI_MACROS_BROKEN # undef PRIu16 # define PRIu16 "u" #endif #if !defined PRIx16 || PRI_MACROS_BROKEN # undef PRIx16 # define PRIx16 "x" #endif #if !defined PRIX16 || PRI_MACROS_BROKEN # undef PRIX16 # define PRIX16 "X" #endif #if !defined PRId32 || PRI_MACROS_BROKEN # undef PRId32 # define PRId32 "d" #endif #if !defined PRIi32 || PRI_MACROS_BROKEN # undef PRIi32 # define PRIi32 "i" #endif #if !defined PRIo32 || PRI_MACROS_BROKEN # undef PRIo32 # define PRIo32 "o" #endif #if !defined PRIu32 || PRI_MACROS_BROKEN # undef PRIu32 # define PRIu32 "u" #endif #if !defined PRIx32 || PRI_MACROS_BROKEN # undef PRIx32 # define PRIx32 "x" #endif #if !defined PRIX32 || PRI_MACROS_BROKEN # undef PRIX32 # define PRIX32 "X" #endif #if !defined PRId64 || PRI_MACROS_BROKEN # undef PRId64 # define PRId64 (sizeof (long) == 8 ? "ld" : "lld") #endif #if !defined PRIi64 || PRI_MACROS_BROKEN # undef PRIi64 # define PRIi64 (sizeof (long) == 8 ? "li" : "lli") #endif #if !defined PRIo64 || PRI_MACROS_BROKEN # undef PRIo64 # define PRIo64 (sizeof (long) == 8 ? "lo" : "llo") #endif #if !defined PRIu64 || PRI_MACROS_BROKEN # undef PRIu64 # define PRIu64 (sizeof (long) == 8 ? "lu" : "llu") #endif #if !defined PRIx64 || PRI_MACROS_BROKEN # undef PRIx64 # define PRIx64 (sizeof (long) == 8 ? "lx" : "llx") #endif #if !defined PRIX64 || PRI_MACROS_BROKEN # undef PRIX64 # define PRIX64 (sizeof (long) == 8 ? "lX" : "llX") #endif #if !defined PRIdLEAST8 || PRI_MACROS_BROKEN # undef PRIdLEAST8 # define PRIdLEAST8 "d" #endif #if !defined PRIiLEAST8 || PRI_MACROS_BROKEN # undef PRIiLEAST8 # define PRIiLEAST8 "i" #endif #if !defined PRIoLEAST8 || PRI_MACROS_BROKEN # undef PRIoLEAST8 # define PRIoLEAST8 "o" #endif #if !defined PRIuLEAST8 || PRI_MACROS_BROKEN # undef PRIuLEAST8 # define PRIuLEAST8 "u" #endif #if !defined PRIxLEAST8 || PRI_MACROS_BROKEN # undef PRIxLEAST8 # define PRIxLEAST8 "x" #endif #if !defined PRIXLEAST8 || PRI_MACROS_BROKEN # undef PRIXLEAST8 # define PRIXLEAST8 "X" #endif #if !defined PRIdLEAST16 || PRI_MACROS_BROKEN # undef PRIdLEAST16 # define PRIdLEAST16 "d" #endif #if !defined PRIiLEAST16 || PRI_MACROS_BROKEN # undef PRIiLEAST16 # define PRIiLEAST16 "i" #endif #if !defined PRIoLEAST16 || PRI_MACROS_BROKEN # undef PRIoLEAST16 # define PRIoLEAST16 "o" #endif #if !defined PRIuLEAST16 || PRI_MACROS_BROKEN # undef PRIuLEAST16 # define PRIuLEAST16 "u" #endif #if !defined PRIxLEAST16 || PRI_MACROS_BROKEN # undef PRIxLEAST16 # define PRIxLEAST16 "x" #endif #if !defined PRIXLEAST16 || PRI_MACROS_BROKEN # undef PRIXLEAST16 # define PRIXLEAST16 "X" #endif #if !defined PRIdLEAST32 || PRI_MACROS_BROKEN # undef PRIdLEAST32 # define PRIdLEAST32 "d" #endif #if !defined PRIiLEAST32 || PRI_MACROS_BROKEN # undef PRIiLEAST32 # define PRIiLEAST32 "i" #endif #if !defined PRIoLEAST32 || PRI_MACROS_BROKEN # undef PRIoLEAST32 # define PRIoLEAST32 "o" #endif #if !defined PRIuLEAST32 || PRI_MACROS_BROKEN # undef PRIuLEAST32 # define PRIuLEAST32 "u" #endif #if !defined PRIxLEAST32 || PRI_MACROS_BROKEN # undef PRIxLEAST32 # define PRIxLEAST32 "x" #endif #if !defined PRIXLEAST32 || PRI_MACROS_BROKEN # undef PRIXLEAST32 # define PRIXLEAST32 "X" #endif #if !defined PRIdLEAST64 || PRI_MACROS_BROKEN # undef PRIdLEAST64 # define PRIdLEAST64 PRId64 #endif #if !defined PRIiLEAST64 || PRI_MACROS_BROKEN # undef PRIiLEAST64 # define PRIiLEAST64 PRIi64 #endif #if !defined PRIoLEAST64 || PRI_MACROS_BROKEN # undef PRIoLEAST64 # define PRIoLEAST64 PRIo64 #endif #if !defined PRIuLEAST64 || PRI_MACROS_BROKEN # undef PRIuLEAST64 # define PRIuLEAST64 PRIu64 #endif #if !defined PRIxLEAST64 || PRI_MACROS_BROKEN # undef PRIxLEAST64 # define PRIxLEAST64 PRIx64 #endif #if !defined PRIXLEAST64 || PRI_MACROS_BROKEN # undef PRIXLEAST64 # define PRIXLEAST64 PRIX64 #endif #if !defined PRIdFAST8 || PRI_MACROS_BROKEN # undef PRIdFAST8 # define PRIdFAST8 "d" #endif #if !defined PRIiFAST8 || PRI_MACROS_BROKEN # undef PRIiFAST8 # define PRIiFAST8 "i" #endif #if !defined PRIoFAST8 || PRI_MACROS_BROKEN # undef PRIoFAST8 # define PRIoFAST8 "o" #endif #if !defined PRIuFAST8 || PRI_MACROS_BROKEN # undef PRIuFAST8 # define PRIuFAST8 "u" #endif #if !defined PRIxFAST8 || PRI_MACROS_BROKEN # undef PRIxFAST8 # define PRIxFAST8 "x" #endif #if !defined PRIXFAST8 || PRI_MACROS_BROKEN # undef PRIXFAST8 # define PRIXFAST8 "X" #endif #if !defined PRIdFAST16 || PRI_MACROS_BROKEN # undef PRIdFAST16 # define PRIdFAST16 "d" #endif #if !defined PRIiFAST16 || PRI_MACROS_BROKEN # undef PRIiFAST16 # define PRIiFAST16 "i" #endif #if !defined PRIoFAST16 || PRI_MACROS_BROKEN # undef PRIoFAST16 # define PRIoFAST16 "o" #endif #if !defined PRIuFAST16 || PRI_MACROS_BROKEN # undef PRIuFAST16 # define PRIuFAST16 "u" #endif #if !defined PRIxFAST16 || PRI_MACROS_BROKEN # undef PRIxFAST16 # define PRIxFAST16 "x" #endif #if !defined PRIXFAST16 || PRI_MACROS_BROKEN # undef PRIXFAST16 # define PRIXFAST16 "X" #endif #if !defined PRIdFAST32 || PRI_MACROS_BROKEN # undef PRIdFAST32 # define PRIdFAST32 "d" #endif #if !defined PRIiFAST32 || PRI_MACROS_BROKEN # undef PRIiFAST32 # define PRIiFAST32 "i" #endif #if !defined PRIoFAST32 || PRI_MACROS_BROKEN # undef PRIoFAST32 # define PRIoFAST32 "o" #endif #if !defined PRIuFAST32 || PRI_MACROS_BROKEN # undef PRIuFAST32 # define PRIuFAST32 "u" #endif #if !defined PRIxFAST32 || PRI_MACROS_BROKEN # undef PRIxFAST32 # define PRIxFAST32 "x" #endif #if !defined PRIXFAST32 || PRI_MACROS_BROKEN # undef PRIXFAST32 # define PRIXFAST32 "X" #endif #if !defined PRIdFAST64 || PRI_MACROS_BROKEN # undef PRIdFAST64 # define PRIdFAST64 PRId64 #endif #if !defined PRIiFAST64 || PRI_MACROS_BROKEN # undef PRIiFAST64 # define PRIiFAST64 PRIi64 #endif #if !defined PRIoFAST64 || PRI_MACROS_BROKEN # undef PRIoFAST64 # define PRIoFAST64 PRIo64 #endif #if !defined PRIuFAST64 || PRI_MACROS_BROKEN # undef PRIuFAST64 # define PRIuFAST64 PRIu64 #endif #if !defined PRIxFAST64 || PRI_MACROS_BROKEN # undef PRIxFAST64 # define PRIxFAST64 PRIx64 #endif #if !defined PRIXFAST64 || PRI_MACROS_BROKEN # undef PRIXFAST64 # define PRIXFAST64 PRIX64 #endif #if !defined PRIdMAX || PRI_MACROS_BROKEN # undef PRIdMAX # define PRIdMAX (sizeof (uintmax_t) == sizeof (long) ? "ld" : "lld") #endif #if !defined PRIiMAX || PRI_MACROS_BROKEN # undef PRIiMAX # define PRIiMAX (sizeof (uintmax_t) == sizeof (long) ? "li" : "lli") #endif #if !defined PRIoMAX || PRI_MACROS_BROKEN # undef PRIoMAX # define PRIoMAX (sizeof (uintmax_t) == sizeof (long) ? "lo" : "llo") #endif #if !defined PRIuMAX || PRI_MACROS_BROKEN # undef PRIuMAX # define PRIuMAX (sizeof (uintmax_t) == sizeof (long) ? "lu" : "llu") #endif #if !defined PRIxMAX || PRI_MACROS_BROKEN # undef PRIxMAX # define PRIxMAX (sizeof (uintmax_t) == sizeof (long) ? "lx" : "llx") #endif #if !defined PRIXMAX || PRI_MACROS_BROKEN # undef PRIXMAX # define PRIXMAX (sizeof (uintmax_t) == sizeof (long) ? "lX" : "llX") #endif #if !defined PRIdPTR || PRI_MACROS_BROKEN # undef PRIdPTR # define PRIdPTR \ (sizeof (void *) == sizeof (long) ? "ld" : \ sizeof (void *) == sizeof (int) ? "d" : \ "lld") #endif #if !defined PRIiPTR || PRI_MACROS_BROKEN # undef PRIiPTR # define PRIiPTR \ (sizeof (void *) == sizeof (long) ? "li" : \ sizeof (void *) == sizeof (int) ? "i" : \ "lli") #endif #if !defined PRIoPTR || PRI_MACROS_BROKEN # undef PRIoPTR # define PRIoPTR \ (sizeof (void *) == sizeof (long) ? "lo" : \ sizeof (void *) == sizeof (int) ? "o" : \ "llo") #endif #if !defined PRIuPTR || PRI_MACROS_BROKEN # undef PRIuPTR # define PRIuPTR \ (sizeof (void *) == sizeof (long) ? "lu" : \ sizeof (void *) == sizeof (int) ? "u" : \ "llu") #endif #if !defined PRIxPTR || PRI_MACROS_BROKEN # undef PRIxPTR # define PRIxPTR \ (sizeof (void *) == sizeof (long) ? "lx" : \ sizeof (void *) == sizeof (int) ? "x" : \ "llx") #endif #if !defined PRIXPTR || PRI_MACROS_BROKEN # undef PRIXPTR # define PRIXPTR \ (sizeof (void *) == sizeof (long) ? "lX" : \ sizeof (void *) == sizeof (int) ? "X" : \ "llX") #endif /* @@ end of prolog @@ */ #ifdef _LIBC /* Rename the non ISO C functions. This is required by the standard because some ISO C functions will require linking with this object file and the name space must not be polluted. */ # define open __open # define close __close # define read __read # define mmap __mmap # define munmap __munmap #endif /* For those losing systems which don't have `alloca' we have to add some additional code emulating it. */ #ifdef HAVE_ALLOCA # define freea(p) /* nothing */ #else # define alloca(n) malloc (n) # define freea(p) free (p) #endif /* For systems that distinguish between text and binary I/O. O_BINARY is usually declared in . */ #if !defined O_BINARY && defined _O_BINARY /* For MSC-compatible compilers. */ # define O_BINARY _O_BINARY # define O_TEXT _O_TEXT #endif #ifdef __BEOS__ /* BeOS 5 has O_BINARY and O_TEXT, but they have no effect. */ # undef O_BINARY # undef O_TEXT #endif /* On reasonable systems, binary I/O is the default. */ #ifndef O_BINARY # define O_BINARY 0 #endif /* We need a sign, whether a new catalog was loaded, which can be associated with all translations. This is important if the translations are cached by one of GCC's features. */ int _nl_msg_cat_cntr; /* Expand a system dependent string segment. Return NULL if unsupported. */ static const char * get_sysdep_segment_value (const char *name) { /* Test for an ISO C 99 section 7.8.1 format string directive. Syntax: P R I { d | i | o | u | x | X } { { | LEAST | FAST } { 8 | 16 | 32 | 64 } | MAX | PTR } */ /* We don't use a table of 14 times 6 'const char *' strings here, because data relocations cost startup time. */ if (name[0] == 'P' && name[1] == 'R' && name[2] == 'I') { if (name[3] == 'd' || name[3] == 'i' || name[3] == 'o' || name[3] == 'u' || name[3] == 'x' || name[3] == 'X') { if (name[4] == '8' && name[5] == '\0') { if (name[3] == 'd') return PRId8; if (name[3] == 'i') return PRIi8; if (name[3] == 'o') return PRIo8; if (name[3] == 'u') return PRIu8; if (name[3] == 'x') return PRIx8; if (name[3] == 'X') return PRIX8; abort (); } if (name[4] == '1' && name[5] == '6' && name[6] == '\0') { if (name[3] == 'd') return PRId16; if (name[3] == 'i') return PRIi16; if (name[3] == 'o') return PRIo16; if (name[3] == 'u') return PRIu16; if (name[3] == 'x') return PRIx16; if (name[3] == 'X') return PRIX16; abort (); } if (name[4] == '3' && name[5] == '2' && name[6] == '\0') { if (name[3] == 'd') return PRId32; if (name[3] == 'i') return PRIi32; if (name[3] == 'o') return PRIo32; if (name[3] == 'u') return PRIu32; if (name[3] == 'x') return PRIx32; if (name[3] == 'X') return PRIX32; abort (); } if (name[4] == '6' && name[5] == '4' && name[6] == '\0') { if (name[3] == 'd') return PRId64; if (name[3] == 'i') return PRIi64; if (name[3] == 'o') return PRIo64; if (name[3] == 'u') return PRIu64; if (name[3] == 'x') return PRIx64; if (name[3] == 'X') return PRIX64; abort (); } if (name[4] == 'L' && name[5] == 'E' && name[6] == 'A' && name[7] == 'S' && name[8] == 'T') { if (name[9] == '8' && name[10] == '\0') { if (name[3] == 'd') return PRIdLEAST8; if (name[3] == 'i') return PRIiLEAST8; if (name[3] == 'o') return PRIoLEAST8; if (name[3] == 'u') return PRIuLEAST8; if (name[3] == 'x') return PRIxLEAST8; if (name[3] == 'X') return PRIXLEAST8; abort (); } if (name[9] == '1' && name[10] == '6' && name[11] == '\0') { if (name[3] == 'd') return PRIdLEAST16; if (name[3] == 'i') return PRIiLEAST16; if (name[3] == 'o') return PRIoLEAST16; if (name[3] == 'u') return PRIuLEAST16; if (name[3] == 'x') return PRIxLEAST16; if (name[3] == 'X') return PRIXLEAST16; abort (); } if (name[9] == '3' && name[10] == '2' && name[11] == '\0') { if (name[3] == 'd') return PRIdLEAST32; if (name[3] == 'i') return PRIiLEAST32; if (name[3] == 'o') return PRIoLEAST32; if (name[3] == 'u') return PRIuLEAST32; if (name[3] == 'x') return PRIxLEAST32; if (name[3] == 'X') return PRIXLEAST32; abort (); } if (name[9] == '6' && name[10] == '4' && name[11] == '\0') { if (name[3] == 'd') return PRIdLEAST64; if (name[3] == 'i') return PRIiLEAST64; if (name[3] == 'o') return PRIoLEAST64; if (name[3] == 'u') return PRIuLEAST64; if (name[3] == 'x') return PRIxLEAST64; if (name[3] == 'X') return PRIXLEAST64; abort (); } } if (name[4] == 'F' && name[5] == 'A' && name[6] == 'S' && name[7] == 'T') { if (name[8] == '8' && name[9] == '\0') { if (name[3] == 'd') return PRIdFAST8; if (name[3] == 'i') return PRIiFAST8; if (name[3] == 'o') return PRIoFAST8; if (name[3] == 'u') return PRIuFAST8; if (name[3] == 'x') return PRIxFAST8; if (name[3] == 'X') return PRIXFAST8; abort (); } if (name[8] == '1' && name[9] == '6' && name[10] == '\0') { if (name[3] == 'd') return PRIdFAST16; if (name[3] == 'i') return PRIiFAST16; if (name[3] == 'o') return PRIoFAST16; if (name[3] == 'u') return PRIuFAST16; if (name[3] == 'x') return PRIxFAST16; if (name[3] == 'X') return PRIXFAST16; abort (); } if (name[8] == '3' && name[9] == '2' && name[10] == '\0') { if (name[3] == 'd') return PRIdFAST32; if (name[3] == 'i') return PRIiFAST32; if (name[3] == 'o') return PRIoFAST32; if (name[3] == 'u') return PRIuFAST32; if (name[3] == 'x') return PRIxFAST32; if (name[3] == 'X') return PRIXFAST32; abort (); } if (name[8] == '6' && name[9] == '4' && name[10] == '\0') { if (name[3] == 'd') return PRIdFAST64; if (name[3] == 'i') return PRIiFAST64; if (name[3] == 'o') return PRIoFAST64; if (name[3] == 'u') return PRIuFAST64; if (name[3] == 'x') return PRIxFAST64; if (name[3] == 'X') return PRIXFAST64; abort (); } } if (name[4] == 'M' && name[5] == 'A' && name[6] == 'X' && name[7] == '\0') { if (name[3] == 'd') return PRIdMAX; if (name[3] == 'i') return PRIiMAX; if (name[3] == 'o') return PRIoMAX; if (name[3] == 'u') return PRIuMAX; if (name[3] == 'x') return PRIxMAX; if (name[3] == 'X') return PRIXMAX; abort (); } if (name[4] == 'P' && name[5] == 'T' && name[6] == 'R' && name[7] == '\0') { if (name[3] == 'd') return PRIdPTR; if (name[3] == 'i') return PRIiPTR; if (name[3] == 'o') return PRIoPTR; if (name[3] == 'u') return PRIuPTR; if (name[3] == 'x') return PRIxPTR; if (name[3] == 'X') return PRIXPTR; abort (); } } } /* Test for a glibc specific printf() format directive flag. */ if (name[0] == 'I' && name[1] == '\0') { #if defined _LIBC || __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 2) /* The 'I' flag, in numeric format directives, replaces ASCII digits with the 'outdigits' defined in the LC_CTYPE locale facet. This is used for Farsi (Persian) and maybe Arabic. */ return "I"; #else return ""; #endif } /* Other system dependent strings are not valid. */ return NULL; } /* Initialize the codeset dependent parts of an opened message catalog. Return the header entry. */ const char * internal_function _nl_init_domain_conv (struct loaded_l10nfile *domain_file, struct loaded_domain *domain, struct binding *domainbinding) { /* Find out about the character set the file is encoded with. This can be found (in textual form) in the entry "". If this entry does not exist or if this does not contain the `charset=' information, we will assume the charset matches the one the current locale and we don't have to perform any conversion. */ char *nullentry; size_t nullentrylen; /* Preinitialize fields, to avoid recursion during _nl_find_msg. */ domain->codeset_cntr = (domainbinding != NULL ? domainbinding->codeset_cntr : 0); #ifdef _LIBC domain->conv = (__gconv_t) -1; #else # if HAVE_ICONV domain->conv = (iconv_t) -1; # endif #endif domain->conv_tab = NULL; /* Get the header entry. */ nullentry = _nl_find_msg (domain_file, domainbinding, "", &nullentrylen); if (nullentry != NULL) { #if defined _LIBC || HAVE_ICONV const char *charsetstr; charsetstr = strstr (nullentry, "charset="); if (charsetstr != NULL) { size_t len; char *charset; const char *outcharset; charsetstr += strlen ("charset="); len = strcspn (charsetstr, " \t\n"); charset = (char *) alloca (len + 1); # if defined _LIBC || HAVE_MEMPCPY *((char *) mempcpy (charset, charsetstr, len)) = '\0'; # else memcpy (charset, charsetstr, len); charset[len] = '\0'; # endif /* The output charset should normally be determined by the locale. But sometimes the locale is not used or not correctly set up, so we provide a possibility for the user to override this. Moreover, the value specified through bind_textdomain_codeset overrides both. */ if (domainbinding != NULL && domainbinding->codeset != NULL) outcharset = domainbinding->codeset; else { outcharset = getenv ("OUTPUT_CHARSET"); if (outcharset == NULL || outcharset[0] == '\0') { # ifdef _LIBC outcharset = _NL_CURRENT (LC_CTYPE, CODESET); # else # if HAVE_ICONV extern const char *locale_charset (void); outcharset = locale_charset (); # endif # endif } } # ifdef _LIBC /* We always want to use transliteration. */ outcharset = norm_add_slashes (outcharset, "TRANSLIT"); charset = norm_add_slashes (charset, NULL); if (__gconv_open (outcharset, charset, &domain->conv, GCONV_AVOID_NOCONV) != __GCONV_OK) domain->conv = (__gconv_t) -1; # else # if HAVE_ICONV /* When using GNU libc >= 2.2 or GNU libiconv >= 1.5, we want to use transliteration. */ # if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 2) || __GLIBC__ > 2 \ || _LIBICONV_VERSION >= 0x0105 if (strchr (outcharset, '/') == NULL) { char *tmp; len = strlen (outcharset); tmp = (char *) alloca (len + 10 + 1); memcpy (tmp, outcharset, len); memcpy (tmp + len, "//TRANSLIT", 10 + 1); outcharset = tmp; domain->conv = iconv_open (outcharset, charset); freea (outcharset); } else # endif domain->conv = iconv_open (outcharset, charset); # endif # endif freea (charset); } #endif /* _LIBC || HAVE_ICONV */ } return nullentry; } /* Frees the codeset dependent parts of an opened message catalog. */ void internal_function _nl_free_domain_conv (struct loaded_domain *domain) { if (domain->conv_tab != NULL && domain->conv_tab != (char **) -1) free (domain->conv_tab); #ifdef _LIBC if (domain->conv != (__gconv_t) -1) __gconv_close (domain->conv); #else # if HAVE_ICONV if (domain->conv != (iconv_t) -1) iconv_close (domain->conv); # endif #endif } /* Load the message catalogs specified by FILENAME. If it is no valid message catalog do nothing. */ void internal_function _nl_load_domain (struct loaded_l10nfile *domain_file, struct binding *domainbinding) { int fd; size_t size; #ifdef _LIBC struct stat64 st; #else struct stat st; #endif struct mo_file_header *data = (struct mo_file_header *) -1; int use_mmap = 0; struct loaded_domain *domain; int revision; const char *nullentry; domain_file->decided = 1; domain_file->data = NULL; /* Note that it would be useless to store domainbinding in domain_file because domainbinding might be == NULL now but != NULL later (after a call to bind_textdomain_codeset). */ /* If the record does not represent a valid locale the FILENAME might be NULL. This can happen when according to the given specification the locale file name is different for XPG and CEN syntax. */ if (domain_file->filename == NULL) return; /* Try to open the addressed file. */ fd = open (domain_file->filename, O_RDONLY | O_BINARY); if (fd == -1) return; /* We must know about the size of the file. */ if ( #ifdef _LIBC __builtin_expect (fstat64 (fd, &st) != 0, 0) #else __builtin_expect (fstat (fd, &st) != 0, 0) #endif || __builtin_expect ((size = (size_t) st.st_size) != st.st_size, 0) || __builtin_expect (size < sizeof (struct mo_file_header), 0)) { /* Something went wrong. */ close (fd); return; } #ifdef HAVE_MMAP /* Now we are ready to load the file. If mmap() is available we try this first. If not available or it failed we try to load it. */ data = (struct mo_file_header *) mmap (NULL, size, PROT_READ, MAP_PRIVATE, fd, 0); if (__builtin_expect (data != (struct mo_file_header *) -1, 1)) { /* mmap() call was successful. */ close (fd); use_mmap = 1; } #endif /* If the data is not yet available (i.e. mmap'ed) we try to load it manually. */ if (data == (struct mo_file_header *) -1) { size_t to_read; char *read_ptr; data = (struct mo_file_header *) malloc (size); if (data == NULL) return; to_read = size; read_ptr = (char *) data; do { long int nb = (long int) read (fd, read_ptr, to_read); if (nb <= 0) { #ifdef EINTR if (nb == -1 && errno == EINTR) continue; #endif close (fd); return; } read_ptr += nb; to_read -= nb; } while (to_read > 0); close (fd); } /* Using the magic number we can test whether it really is a message catalog file. */ if (__builtin_expect (data->magic != _MAGIC && data->magic != _MAGIC_SWAPPED, 0)) { /* The magic number is wrong: not a message catalog file. */ #ifdef HAVE_MMAP if (use_mmap) munmap ((caddr_t) data, size); else #endif free (data); return; } domain = (struct loaded_domain *) malloc (sizeof (struct loaded_domain)); if (domain == NULL) return; domain_file->data = domain; domain->data = (char *) data; domain->use_mmap = use_mmap; domain->mmap_size = size; domain->must_swap = data->magic != _MAGIC; domain->malloced = NULL; /* Fill in the information about the available tables. */ revision = W (domain->must_swap, data->revision); /* We support only the major revisions 0 and 1. */ switch (revision >> 16) { case 0: case 1: domain->nstrings = W (domain->must_swap, data->nstrings); domain->orig_tab = (const struct string_desc *) ((char *) data + W (domain->must_swap, data->orig_tab_offset)); domain->trans_tab = (const struct string_desc *) ((char *) data + W (domain->must_swap, data->trans_tab_offset)); domain->hash_size = W (domain->must_swap, data->hash_tab_size); domain->hash_tab = (domain->hash_size > 2 ? (const nls_uint32 *) ((char *) data + W (domain->must_swap, data->hash_tab_offset)) : NULL); domain->must_swap_hash_tab = domain->must_swap; /* Now dispatch on the minor revision. */ switch (revision & 0xffff) { case 0: domain->n_sysdep_strings = 0; domain->orig_sysdep_tab = NULL; domain->trans_sysdep_tab = NULL; break; case 1: default: { nls_uint32 n_sysdep_strings; if (domain->hash_tab == NULL) /* This is invalid. These minor revisions need a hash table. */ goto invalid; n_sysdep_strings = W (domain->must_swap, data->n_sysdep_strings); if (n_sysdep_strings > 0) { nls_uint32 n_sysdep_segments; const struct sysdep_segment *sysdep_segments; const char **sysdep_segment_values; const nls_uint32 *orig_sysdep_tab; const nls_uint32 *trans_sysdep_tab; nls_uint32 n_inmem_sysdep_strings; size_t memneed; char *mem; struct sysdep_string_desc *inmem_orig_sysdep_tab; struct sysdep_string_desc *inmem_trans_sysdep_tab; nls_uint32 *inmem_hash_tab; unsigned int i, j; /* Get the values of the system dependent segments. */ n_sysdep_segments = W (domain->must_swap, data->n_sysdep_segments); sysdep_segments = (const struct sysdep_segment *) ((char *) data + W (domain->must_swap, data->sysdep_segments_offset)); sysdep_segment_values = alloca (n_sysdep_segments * sizeof (const char *)); for (i = 0; i < n_sysdep_segments; i++) { const char *name = (char *) data + W (domain->must_swap, sysdep_segments[i].offset); nls_uint32 namelen = W (domain->must_swap, sysdep_segments[i].length); if (!(namelen > 0 && name[namelen - 1] == '\0')) { freea (sysdep_segment_values); goto invalid; } sysdep_segment_values[i] = get_sysdep_segment_value (name); } orig_sysdep_tab = (const nls_uint32 *) ((char *) data + W (domain->must_swap, data->orig_sysdep_tab_offset)); trans_sysdep_tab = (const nls_uint32 *) ((char *) data + W (domain->must_swap, data->trans_sysdep_tab_offset)); /* Compute the amount of additional memory needed for the system dependent strings and the augmented hash table. At the same time, also drop string pairs which refer to an undefined system dependent segment. */ n_inmem_sysdep_strings = 0; memneed = domain->hash_size * sizeof (nls_uint32); for (i = 0; i < n_sysdep_strings; i++) { int valid = 1; size_t needs[2]; for (j = 0; j < 2; j++) { const struct sysdep_string *sysdep_string = (const struct sysdep_string *) ((char *) data + W (domain->must_swap, j == 0 ? orig_sysdep_tab[i] : trans_sysdep_tab[i])); size_t need = 0; const struct segment_pair *p = sysdep_string->segments; if (W (domain->must_swap, p->sysdepref) != SEGMENTS_END) for (p = sysdep_string->segments;; p++) { nls_uint32 sysdepref; need += W (domain->must_swap, p->segsize); sysdepref = W (domain->must_swap, p->sysdepref); if (sysdepref == SEGMENTS_END) break; if (sysdepref >= n_sysdep_segments) { /* Invalid. */ freea (sysdep_segment_values); goto invalid; } if (sysdep_segment_values[sysdepref] == NULL) { /* This particular string pair is invalid. */ valid = 0; break; } need += strlen (sysdep_segment_values[sysdepref]); } needs[j] = need; if (!valid) break; } if (valid) { n_inmem_sysdep_strings++; memneed += needs[0] + needs[1]; } } memneed += 2 * n_inmem_sysdep_strings * sizeof (struct sysdep_string_desc); if (n_inmem_sysdep_strings > 0) { unsigned int k; /* Allocate additional memory. */ mem = (char *) malloc (memneed); if (mem == NULL) goto invalid; domain->malloced = mem; inmem_orig_sysdep_tab = (struct sysdep_string_desc *) mem; mem += n_inmem_sysdep_strings * sizeof (struct sysdep_string_desc); inmem_trans_sysdep_tab = (struct sysdep_string_desc *) mem; mem += n_inmem_sysdep_strings * sizeof (struct sysdep_string_desc); inmem_hash_tab = (nls_uint32 *) mem; mem += domain->hash_size * sizeof (nls_uint32); /* Compute the system dependent strings. */ k = 0; for (i = 0; i < n_sysdep_strings; i++) { int valid = 1; for (j = 0; j < 2; j++) { const struct sysdep_string *sysdep_string = (const struct sysdep_string *) ((char *) data + W (domain->must_swap, j == 0 ? orig_sysdep_tab[i] : trans_sysdep_tab[i])); const struct segment_pair *p = sysdep_string->segments; if (W (domain->must_swap, p->sysdepref) != SEGMENTS_END) for (p = sysdep_string->segments;; p++) { nls_uint32 sysdepref; sysdepref = W (domain->must_swap, p->sysdepref); if (sysdepref == SEGMENTS_END) break; if (sysdep_segment_values[sysdepref] == NULL) { /* This particular string pair is invalid. */ valid = 0; break; } } if (!valid) break; } if (valid) { for (j = 0; j < 2; j++) { const struct sysdep_string *sysdep_string = (const struct sysdep_string *) ((char *) data + W (domain->must_swap, j == 0 ? orig_sysdep_tab[i] : trans_sysdep_tab[i])); const char *static_segments = (char *) data + W (domain->must_swap, sysdep_string->offset); const struct segment_pair *p = sysdep_string->segments; /* Concatenate the segments, and fill inmem_orig_sysdep_tab[k] (for j == 0) and inmem_trans_sysdep_tab[k] (for j == 1). */ struct sysdep_string_desc *inmem_tab_entry = (j == 0 ? inmem_orig_sysdep_tab : inmem_trans_sysdep_tab) + k; if (W (domain->must_swap, p->sysdepref) == SEGMENTS_END) { /* Only one static segment. */ inmem_tab_entry->length = W (domain->must_swap, p->segsize); inmem_tab_entry->pointer = static_segments; } else { inmem_tab_entry->pointer = mem; for (p = sysdep_string->segments;; p++) { nls_uint32 segsize = W (domain->must_swap, p->segsize); nls_uint32 sysdepref = W (domain->must_swap, p->sysdepref); size_t n; if (segsize > 0) { memcpy (mem, static_segments, segsize); mem += segsize; static_segments += segsize; } if (sysdepref == SEGMENTS_END) break; n = strlen (sysdep_segment_values[sysdepref]); memcpy (mem, sysdep_segment_values[sysdepref], n); mem += n; } inmem_tab_entry->length = mem - inmem_tab_entry->pointer; } } k++; } } if (k != n_inmem_sysdep_strings) abort (); /* Compute the augmented hash table. */ for (i = 0; i < domain->hash_size; i++) inmem_hash_tab[i] = W (domain->must_swap_hash_tab, domain->hash_tab[i]); for (i = 0; i < n_inmem_sysdep_strings; i++) { const char *msgid = inmem_orig_sysdep_tab[i].pointer; nls_uint32 hash_val = hash_string (msgid); nls_uint32 idx = hash_val % domain->hash_size; nls_uint32 incr = 1 + (hash_val % (domain->hash_size - 2)); for (;;) { if (inmem_hash_tab[idx] == 0) { /* Hash table entry is empty. Use it. */ inmem_hash_tab[idx] = 1 + domain->nstrings + i; break; } if (idx >= domain->hash_size - incr) idx -= domain->hash_size - incr; else idx += incr; } } domain->n_sysdep_strings = n_inmem_sysdep_strings; domain->orig_sysdep_tab = inmem_orig_sysdep_tab; domain->trans_sysdep_tab = inmem_trans_sysdep_tab; domain->hash_tab = inmem_hash_tab; domain->must_swap_hash_tab = 0; } else { domain->n_sysdep_strings = 0; domain->orig_sysdep_tab = NULL; domain->trans_sysdep_tab = NULL; } freea (sysdep_segment_values); } else { domain->n_sysdep_strings = 0; domain->orig_sysdep_tab = NULL; domain->trans_sysdep_tab = NULL; } } break; } break; default: /* This is an invalid revision. */ invalid: /* This is an invalid .mo file. */ if (domain->malloced) free (domain->malloced); #ifdef HAVE_MMAP if (use_mmap) munmap ((caddr_t) data, size); else #endif free (data); free (domain); domain_file->data = NULL; return; } /* Now initialize the character set converter from the character set the file is encoded with (found in the header entry) to the domain's specified character set or the locale's character set. */ nullentry = _nl_init_domain_conv (domain_file, domain, domainbinding); /* Also look for a plural specification. */ EXTRACT_PLURAL_EXPRESSION (nullentry, &domain->plural, &domain->nplurals); } #ifdef _LIBC void internal_function _nl_unload_domain (struct loaded_domain *domain) { if (domain->plural != &__gettext_germanic_plural) __gettext_free_exp (domain->plural); _nl_free_domain_conv (domain); if (domain->malloced) free (domain->malloced); # ifdef _POSIX_MAPPED_FILES if (domain->use_mmap) munmap ((caddr_t) domain->data, domain->mmap_size); else # endif /* _POSIX_MAPPED_FILES */ free ((void *) domain->data); free (domain); } #endif ltris-1.0.19/intl/dcngettext.c0000664000175000017500000000347012140770050013145 00000000000000/* Implementation of the dcngettext(3) function. Copyright (C) 1995-1999, 2000-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define DCNGETTEXT __dcngettext # define DCIGETTEXT __dcigettext #else # define DCNGETTEXT libintl_dcngettext # define DCIGETTEXT libintl_dcigettext #endif /* Look up MSGID in the DOMAINNAME message catalog for the current CATEGORY locale. */ char * DCNGETTEXT (const char *domainname, const char *msgid1, const char *msgid2, unsigned long int n, int category) { return DCIGETTEXT (domainname, msgid1, msgid2, 1, n, category); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ weak_alias (__dcngettext, dcngettext); #endif ltris-1.0.19/intl/localename.c0000664000175000017500000007413512140770050013102 00000000000000/* Determine the current selected locale. Copyright (C) 1995-1999, 2000-2004 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Written by Ulrich Drepper , 1995. */ /* Win32 code written by Tor Lillqvist . */ #ifdef HAVE_CONFIG_H # include #endif #include #include #if defined _WIN32 || defined __WIN32__ # undef WIN32 /* avoid warning on mingw32 */ # define WIN32 #endif #ifdef WIN32 # define WIN32_LEAN_AND_MEAN # include /* List of language codes, sorted by value: 0x01 LANG_ARABIC 0x02 LANG_BULGARIAN 0x03 LANG_CATALAN 0x04 LANG_CHINESE 0x05 LANG_CZECH 0x06 LANG_DANISH 0x07 LANG_GERMAN 0x08 LANG_GREEK 0x09 LANG_ENGLISH 0x0a LANG_SPANISH 0x0b LANG_FINNISH 0x0c LANG_FRENCH 0x0d LANG_HEBREW 0x0e LANG_HUNGARIAN 0x0f LANG_ICELANDIC 0x10 LANG_ITALIAN 0x11 LANG_JAPANESE 0x12 LANG_KOREAN 0x13 LANG_DUTCH 0x14 LANG_NORWEGIAN 0x15 LANG_POLISH 0x16 LANG_PORTUGUESE 0x17 LANG_RHAETO_ROMANCE 0x18 LANG_ROMANIAN 0x19 LANG_RUSSIAN 0x1a LANG_CROATIAN == LANG_SERBIAN 0x1b LANG_SLOVAK 0x1c LANG_ALBANIAN 0x1d LANG_SWEDISH 0x1e LANG_THAI 0x1f LANG_TURKISH 0x20 LANG_URDU 0x21 LANG_INDONESIAN 0x22 LANG_UKRAINIAN 0x23 LANG_BELARUSIAN 0x24 LANG_SLOVENIAN 0x25 LANG_ESTONIAN 0x26 LANG_LATVIAN 0x27 LANG_LITHUANIAN 0x28 LANG_TAJIK 0x29 LANG_FARSI 0x2a LANG_VIETNAMESE 0x2b LANG_ARMENIAN 0x2c LANG_AZERI 0x2d LANG_BASQUE 0x2e LANG_SORBIAN 0x2f LANG_MACEDONIAN 0x30 LANG_SUTU 0x31 LANG_TSONGA 0x32 LANG_TSWANA 0x33 LANG_VENDA 0x34 LANG_XHOSA 0x35 LANG_ZULU 0x36 LANG_AFRIKAANS 0x37 LANG_GEORGIAN 0x38 LANG_FAEROESE 0x39 LANG_HINDI 0x3a LANG_MALTESE 0x3b LANG_SAAMI 0x3c LANG_GAELIC 0x3d LANG_YIDDISH 0x3e LANG_MALAY 0x3f LANG_KAZAK 0x40 LANG_KYRGYZ 0x41 LANG_SWAHILI 0x42 LANG_TURKMEN 0x43 LANG_UZBEK 0x44 LANG_TATAR 0x45 LANG_BENGALI 0x46 LANG_PUNJABI 0x47 LANG_GUJARATI 0x48 LANG_ORIYA 0x49 LANG_TAMIL 0x4a LANG_TELUGU 0x4b LANG_KANNADA 0x4c LANG_MALAYALAM 0x4d LANG_ASSAMESE 0x4e LANG_MARATHI 0x4f LANG_SANSKRIT 0x50 LANG_MONGOLIAN 0x51 LANG_TIBETAN 0x52 LANG_WELSH 0x53 LANG_CAMBODIAN 0x54 LANG_LAO 0x55 LANG_BURMESE 0x56 LANG_GALICIAN 0x57 LANG_KONKANI 0x58 LANG_MANIPURI 0x59 LANG_SINDHI 0x5a LANG_SYRIAC 0x5b LANG_SINHALESE 0x5c LANG_CHEROKEE 0x5d LANG_INUKTITUT 0x5e LANG_AMHARIC 0x5f LANG_TAMAZIGHT 0x60 LANG_KASHMIRI 0x61 LANG_NEPALI 0x62 LANG_FRISIAN 0x63 LANG_PASHTO 0x64 LANG_TAGALOG 0x65 LANG_DIVEHI 0x66 LANG_EDO 0x67 LANG_FULFULDE 0x68 LANG_HAUSA 0x69 LANG_IBIBIO 0x6a LANG_YORUBA 0x70 LANG_IGBO 0x71 LANG_KANURI 0x72 LANG_OROMO 0x73 LANG_TIGRINYA 0x74 LANG_GUARANI 0x75 LANG_HAWAIIAN 0x76 LANG_LATIN 0x77 LANG_SOMALI 0x78 LANG_YI 0x79 LANG_PAPIAMENTU */ /* Mingw headers don't have latest language and sublanguage codes. */ # ifndef LANG_AFRIKAANS # define LANG_AFRIKAANS 0x36 # endif # ifndef LANG_ALBANIAN # define LANG_ALBANIAN 0x1c # endif # ifndef LANG_AMHARIC # define LANG_AMHARIC 0x5e # endif # ifndef LANG_ARABIC # define LANG_ARABIC 0x01 # endif # ifndef LANG_ARMENIAN # define LANG_ARMENIAN 0x2b # endif # ifndef LANG_ASSAMESE # define LANG_ASSAMESE 0x4d # endif # ifndef LANG_AZERI # define LANG_AZERI 0x2c # endif # ifndef LANG_BASQUE # define LANG_BASQUE 0x2d # endif # ifndef LANG_BELARUSIAN # define LANG_BELARUSIAN 0x23 # endif # ifndef LANG_BENGALI # define LANG_BENGALI 0x45 # endif # ifndef LANG_BURMESE # define LANG_BURMESE 0x55 # endif # ifndef LANG_CAMBODIAN # define LANG_CAMBODIAN 0x53 # endif # ifndef LANG_CATALAN # define LANG_CATALAN 0x03 # endif # ifndef LANG_CHEROKEE # define LANG_CHEROKEE 0x5c # endif # ifndef LANG_DIVEHI # define LANG_DIVEHI 0x65 # endif # ifndef LANG_EDO # define LANG_EDO 0x66 # endif # ifndef LANG_ESTONIAN # define LANG_ESTONIAN 0x25 # endif # ifndef LANG_FAEROESE # define LANG_FAEROESE 0x38 # endif # ifndef LANG_FARSI # define LANG_FARSI 0x29 # endif # ifndef LANG_FRISIAN # define LANG_FRISIAN 0x62 # endif # ifndef LANG_FULFULDE # define LANG_FULFULDE 0x67 # endif # ifndef LANG_GAELIC # define LANG_GAELIC 0x3c # endif # ifndef LANG_GALICIAN # define LANG_GALICIAN 0x56 # endif # ifndef LANG_GEORGIAN # define LANG_GEORGIAN 0x37 # endif # ifndef LANG_GUARANI # define LANG_GUARANI 0x74 # endif # ifndef LANG_GUJARATI # define LANG_GUJARATI 0x47 # endif # ifndef LANG_HAUSA # define LANG_HAUSA 0x68 # endif # ifndef LANG_HAWAIIAN # define LANG_HAWAIIAN 0x75 # endif # ifndef LANG_HEBREW # define LANG_HEBREW 0x0d # endif # ifndef LANG_HINDI # define LANG_HINDI 0x39 # endif # ifndef LANG_IBIBIO # define LANG_IBIBIO 0x69 # endif # ifndef LANG_IGBO # define LANG_IGBO 0x70 # endif # ifndef LANG_INDONESIAN # define LANG_INDONESIAN 0x21 # endif # ifndef LANG_INUKTITUT # define LANG_INUKTITUT 0x5d # endif # ifndef LANG_KANNADA # define LANG_KANNADA 0x4b # endif # ifndef LANG_KANURI # define LANG_KANURI 0x71 # endif # ifndef LANG_KASHMIRI # define LANG_KASHMIRI 0x60 # endif # ifndef LANG_KAZAK # define LANG_KAZAK 0x3f # endif # ifndef LANG_KONKANI # define LANG_KONKANI 0x57 # endif # ifndef LANG_KYRGYZ # define LANG_KYRGYZ 0x40 # endif # ifndef LANG_LAO # define LANG_LAO 0x54 # endif # ifndef LANG_LATIN # define LANG_LATIN 0x76 # endif # ifndef LANG_LATVIAN # define LANG_LATVIAN 0x26 # endif # ifndef LANG_LITHUANIAN # define LANG_LITHUANIAN 0x27 # endif # ifndef LANG_MACEDONIAN # define LANG_MACEDONIAN 0x2f # endif # ifndef LANG_MALAY # define LANG_MALAY 0x3e # endif # ifndef LANG_MALAYALAM # define LANG_MALAYALAM 0x4c # endif # ifndef LANG_MALTESE # define LANG_MALTESE 0x3a # endif # ifndef LANG_MANIPURI # define LANG_MANIPURI 0x58 # endif # ifndef LANG_MARATHI # define LANG_MARATHI 0x4e # endif # ifndef LANG_MONGOLIAN # define LANG_MONGOLIAN 0x50 # endif # ifndef LANG_NEPALI # define LANG_NEPALI 0x61 # endif # ifndef LANG_ORIYA # define LANG_ORIYA 0x48 # endif # ifndef LANG_OROMO # define LANG_OROMO 0x72 # endif # ifndef LANG_PAPIAMENTU # define LANG_PAPIAMENTU 0x79 # endif # ifndef LANG_PASHTO # define LANG_PASHTO 0x63 # endif # ifndef LANG_PUNJABI # define LANG_PUNJABI 0x46 # endif # ifndef LANG_RHAETO_ROMANCE # define LANG_RHAETO_ROMANCE 0x17 # endif # ifndef LANG_SAAMI # define LANG_SAAMI 0x3b # endif # ifndef LANG_SANSKRIT # define LANG_SANSKRIT 0x4f # endif # ifndef LANG_SERBIAN # define LANG_SERBIAN 0x1a # endif # ifndef LANG_SINDHI # define LANG_SINDHI 0x59 # endif # ifndef LANG_SINHALESE # define LANG_SINHALESE 0x5b # endif # ifndef LANG_SLOVAK # define LANG_SLOVAK 0x1b # endif # ifndef LANG_SOMALI # define LANG_SOMALI 0x77 # endif # ifndef LANG_SORBIAN # define LANG_SORBIAN 0x2e # endif # ifndef LANG_SUTU # define LANG_SUTU 0x30 # endif # ifndef LANG_SWAHILI # define LANG_SWAHILI 0x41 # endif # ifndef LANG_SYRIAC # define LANG_SYRIAC 0x5a # endif # ifndef LANG_TAGALOG # define LANG_TAGALOG 0x64 # endif # ifndef LANG_TAJIK # define LANG_TAJIK 0x28 # endif # ifndef LANG_TAMAZIGHT # define LANG_TAMAZIGHT 0x5f # endif # ifndef LANG_TAMIL # define LANG_TAMIL 0x49 # endif # ifndef LANG_TATAR # define LANG_TATAR 0x44 # endif # ifndef LANG_TELUGU # define LANG_TELUGU 0x4a # endif # ifndef LANG_THAI # define LANG_THAI 0x1e # endif # ifndef LANG_TIBETAN # define LANG_TIBETAN 0x51 # endif # ifndef LANG_TIGRINYA # define LANG_TIGRINYA 0x73 # endif # ifndef LANG_TSONGA # define LANG_TSONGA 0x31 # endif # ifndef LANG_TSWANA # define LANG_TSWANA 0x32 # endif # ifndef LANG_TURKMEN # define LANG_TURKMEN 0x42 # endif # ifndef LANG_UKRAINIAN # define LANG_UKRAINIAN 0x22 # endif # ifndef LANG_URDU # define LANG_URDU 0x20 # endif # ifndef LANG_UZBEK # define LANG_UZBEK 0x43 # endif # ifndef LANG_VENDA # define LANG_VENDA 0x33 # endif # ifndef LANG_VIETNAMESE # define LANG_VIETNAMESE 0x2a # endif # ifndef LANG_WELSH # define LANG_WELSH 0x52 # endif # ifndef LANG_XHOSA # define LANG_XHOSA 0x34 # endif # ifndef LANG_YI # define LANG_YI 0x78 # endif # ifndef LANG_YIDDISH # define LANG_YIDDISH 0x3d # endif # ifndef LANG_YORUBA # define LANG_YORUBA 0x6a # endif # ifndef LANG_ZULU # define LANG_ZULU 0x35 # endif # ifndef SUBLANG_ARABIC_SAUDI_ARABIA # define SUBLANG_ARABIC_SAUDI_ARABIA 0x01 # endif # ifndef SUBLANG_ARABIC_IRAQ # define SUBLANG_ARABIC_IRAQ 0x02 # endif # ifndef SUBLANG_ARABIC_EGYPT # define SUBLANG_ARABIC_EGYPT 0x03 # endif # ifndef SUBLANG_ARABIC_LIBYA # define SUBLANG_ARABIC_LIBYA 0x04 # endif # ifndef SUBLANG_ARABIC_ALGERIA # define SUBLANG_ARABIC_ALGERIA 0x05 # endif # ifndef SUBLANG_ARABIC_MOROCCO # define SUBLANG_ARABIC_MOROCCO 0x06 # endif # ifndef SUBLANG_ARABIC_TUNISIA # define SUBLANG_ARABIC_TUNISIA 0x07 # endif # ifndef SUBLANG_ARABIC_OMAN # define SUBLANG_ARABIC_OMAN 0x08 # endif # ifndef SUBLANG_ARABIC_YEMEN # define SUBLANG_ARABIC_YEMEN 0x09 # endif # ifndef SUBLANG_ARABIC_SYRIA # define SUBLANG_ARABIC_SYRIA 0x0a # endif # ifndef SUBLANG_ARABIC_JORDAN # define SUBLANG_ARABIC_JORDAN 0x0b # endif # ifndef SUBLANG_ARABIC_LEBANON # define SUBLANG_ARABIC_LEBANON 0x0c # endif # ifndef SUBLANG_ARABIC_KUWAIT # define SUBLANG_ARABIC_KUWAIT 0x0d # endif # ifndef SUBLANG_ARABIC_UAE # define SUBLANG_ARABIC_UAE 0x0e # endif # ifndef SUBLANG_ARABIC_BAHRAIN # define SUBLANG_ARABIC_BAHRAIN 0x0f # endif # ifndef SUBLANG_ARABIC_QATAR # define SUBLANG_ARABIC_QATAR 0x10 # endif # ifndef SUBLANG_AZERI_LATIN # define SUBLANG_AZERI_LATIN 0x01 # endif # ifndef SUBLANG_AZERI_CYRILLIC # define SUBLANG_AZERI_CYRILLIC 0x02 # endif # ifndef SUBLANG_BENGALI_INDIA # define SUBLANG_BENGALI_INDIA 0x00 # endif # ifndef SUBLANG_BENGALI_BANGLADESH # define SUBLANG_BENGALI_BANGLADESH 0x01 # endif # ifndef SUBLANG_CHINESE_MACAU # define SUBLANG_CHINESE_MACAU 0x05 # endif # ifndef SUBLANG_ENGLISH_SOUTH_AFRICA # define SUBLANG_ENGLISH_SOUTH_AFRICA 0x07 # endif # ifndef SUBLANG_ENGLISH_JAMAICA # define SUBLANG_ENGLISH_JAMAICA 0x08 # endif # ifndef SUBLANG_ENGLISH_CARIBBEAN # define SUBLANG_ENGLISH_CARIBBEAN 0x09 # endif # ifndef SUBLANG_ENGLISH_BELIZE # define SUBLANG_ENGLISH_BELIZE 0x0a # endif # ifndef SUBLANG_ENGLISH_TRINIDAD # define SUBLANG_ENGLISH_TRINIDAD 0x0b # endif # ifndef SUBLANG_ENGLISH_ZIMBABWE # define SUBLANG_ENGLISH_ZIMBABWE 0x0c # endif # ifndef SUBLANG_ENGLISH_PHILIPPINES # define SUBLANG_ENGLISH_PHILIPPINES 0x0d # endif # ifndef SUBLANG_ENGLISH_INDONESIA # define SUBLANG_ENGLISH_INDONESIA 0x0e # endif # ifndef SUBLANG_ENGLISH_HONGKONG # define SUBLANG_ENGLISH_HONGKONG 0x0f # endif # ifndef SUBLANG_ENGLISH_INDIA # define SUBLANG_ENGLISH_INDIA 0x10 # endif # ifndef SUBLANG_ENGLISH_MALAYSIA # define SUBLANG_ENGLISH_MALAYSIA 0x11 # endif # ifndef SUBLANG_ENGLISH_SINGAPORE # define SUBLANG_ENGLISH_SINGAPORE 0x12 # endif # ifndef SUBLANG_FRENCH_LUXEMBOURG # define SUBLANG_FRENCH_LUXEMBOURG 0x05 # endif # ifndef SUBLANG_FRENCH_MONACO # define SUBLANG_FRENCH_MONACO 0x06 # endif # ifndef SUBLANG_FRENCH_WESTINDIES # define SUBLANG_FRENCH_WESTINDIES 0x07 # endif # ifndef SUBLANG_FRENCH_REUNION # define SUBLANG_FRENCH_REUNION 0x08 # endif # ifndef SUBLANG_FRENCH_CONGO # define SUBLANG_FRENCH_CONGO 0x09 # endif # ifndef SUBLANG_FRENCH_SENEGAL # define SUBLANG_FRENCH_SENEGAL 0x0a # endif # ifndef SUBLANG_FRENCH_CAMEROON # define SUBLANG_FRENCH_CAMEROON 0x0b # endif # ifndef SUBLANG_FRENCH_COTEDIVOIRE # define SUBLANG_FRENCH_COTEDIVOIRE 0x0c # endif # ifndef SUBLANG_FRENCH_MALI # define SUBLANG_FRENCH_MALI 0x0d # endif # ifndef SUBLANG_FRENCH_MOROCCO # define SUBLANG_FRENCH_MOROCCO 0x0e # endif # ifndef SUBLANG_FRENCH_HAITI # define SUBLANG_FRENCH_HAITI 0x0f # endif # ifndef SUBLANG_GERMAN_LUXEMBOURG # define SUBLANG_GERMAN_LUXEMBOURG 0x04 # endif # ifndef SUBLANG_GERMAN_LIECHTENSTEIN # define SUBLANG_GERMAN_LIECHTENSTEIN 0x05 # endif # ifndef SUBLANG_KASHMIRI_INDIA # define SUBLANG_KASHMIRI_INDIA 0x02 # endif # ifndef SUBLANG_MALAY_MALAYSIA # define SUBLANG_MALAY_MALAYSIA 0x01 # endif # ifndef SUBLANG_MALAY_BRUNEI_DARUSSALAM # define SUBLANG_MALAY_BRUNEI_DARUSSALAM 0x02 # endif # ifndef SUBLANG_NEPALI_INDIA # define SUBLANG_NEPALI_INDIA 0x02 # endif # ifndef SUBLANG_PUNJABI_INDIA # define SUBLANG_PUNJABI_INDIA 0x00 # endif # ifndef SUBLANG_PUNJABI_PAKISTAN # define SUBLANG_PUNJABI_PAKISTAN 0x01 # endif # ifndef SUBLANG_ROMANIAN_ROMANIA # define SUBLANG_ROMANIAN_ROMANIA 0x00 # endif # ifndef SUBLANG_ROMANIAN_MOLDOVA # define SUBLANG_ROMANIAN_MOLDOVA 0x01 # endif # ifndef SUBLANG_SERBIAN_LATIN # define SUBLANG_SERBIAN_LATIN 0x02 # endif # ifndef SUBLANG_SERBIAN_CYRILLIC # define SUBLANG_SERBIAN_CYRILLIC 0x03 # endif # ifndef SUBLANG_SINDHI_INDIA # define SUBLANG_SINDHI_INDIA 0x00 # endif # ifndef SUBLANG_SINDHI_PAKISTAN # define SUBLANG_SINDHI_PAKISTAN 0x01 # endif # ifndef SUBLANG_SPANISH_GUATEMALA # define SUBLANG_SPANISH_GUATEMALA 0x04 # endif # ifndef SUBLANG_SPANISH_COSTA_RICA # define SUBLANG_SPANISH_COSTA_RICA 0x05 # endif # ifndef SUBLANG_SPANISH_PANAMA # define SUBLANG_SPANISH_PANAMA 0x06 # endif # ifndef SUBLANG_SPANISH_DOMINICAN_REPUBLIC # define SUBLANG_SPANISH_DOMINICAN_REPUBLIC 0x07 # endif # ifndef SUBLANG_SPANISH_VENEZUELA # define SUBLANG_SPANISH_VENEZUELA 0x08 # endif # ifndef SUBLANG_SPANISH_COLOMBIA # define SUBLANG_SPANISH_COLOMBIA 0x09 # endif # ifndef SUBLANG_SPANISH_PERU # define SUBLANG_SPANISH_PERU 0x0a # endif # ifndef SUBLANG_SPANISH_ARGENTINA # define SUBLANG_SPANISH_ARGENTINA 0x0b # endif # ifndef SUBLANG_SPANISH_ECUADOR # define SUBLANG_SPANISH_ECUADOR 0x0c # endif # ifndef SUBLANG_SPANISH_CHILE # define SUBLANG_SPANISH_CHILE 0x0d # endif # ifndef SUBLANG_SPANISH_URUGUAY # define SUBLANG_SPANISH_URUGUAY 0x0e # endif # ifndef SUBLANG_SPANISH_PARAGUAY # define SUBLANG_SPANISH_PARAGUAY 0x0f # endif # ifndef SUBLANG_SPANISH_BOLIVIA # define SUBLANG_SPANISH_BOLIVIA 0x10 # endif # ifndef SUBLANG_SPANISH_EL_SALVADOR # define SUBLANG_SPANISH_EL_SALVADOR 0x11 # endif # ifndef SUBLANG_SPANISH_HONDURAS # define SUBLANG_SPANISH_HONDURAS 0x12 # endif # ifndef SUBLANG_SPANISH_NICARAGUA # define SUBLANG_SPANISH_NICARAGUA 0x13 # endif # ifndef SUBLANG_SPANISH_PUERTO_RICO # define SUBLANG_SPANISH_PUERTO_RICO 0x14 # endif # ifndef SUBLANG_SWEDISH_FINLAND # define SUBLANG_SWEDISH_FINLAND 0x02 # endif # ifndef SUBLANG_TAMAZIGHT_ARABIC # define SUBLANG_TAMAZIGHT_ARABIC 0x01 # endif # ifndef SUBLANG_TAMAZIGHT_LATIN # define SUBLANG_TAMAZIGHT_LATIN 0x02 # endif # ifndef SUBLANG_TIGRINYA_ETHIOPIA # define SUBLANG_TIGRINYA_ETHIOPIA 0x00 # endif # ifndef SUBLANG_TIGRINYA_ERITREA # define SUBLANG_TIGRINYA_ERITREA 0x01 # endif # ifndef SUBLANG_URDU_PAKISTAN # define SUBLANG_URDU_PAKISTAN 0x01 # endif # ifndef SUBLANG_URDU_INDIA # define SUBLANG_URDU_INDIA 0x02 # endif # ifndef SUBLANG_UZBEK_LATIN # define SUBLANG_UZBEK_LATIN 0x01 # endif # ifndef SUBLANG_UZBEK_CYRILLIC # define SUBLANG_UZBEK_CYRILLIC 0x02 # endif #endif /* XPG3 defines the result of 'setlocale (category, NULL)' as: "Directs 'setlocale()' to query 'category' and return the current setting of 'local'." However it does not specify the exact format. Neither do SUSV2 and ISO C 99. So we can use this feature only on selected systems (e.g. those using GNU C Library). */ #if defined _LIBC || (defined __GNU_LIBRARY__ && __GNU_LIBRARY__ >= 2) # define HAVE_LOCALE_NULL #endif /* Determine the current locale's name, and canonicalize it into XPG syntax language[_territory[.codeset]][@modifier] The codeset part in the result is not reliable; the locale_charset() should be used for codeset information instead. The result must not be freed; it is statically allocated. */ const char * _nl_locale_name (int category, const char *categoryname) { const char *retval; #ifndef WIN32 /* Use the POSIX methods of looking to 'LC_ALL', 'LC_xxx', and 'LANG'. On some systems this can be done by the 'setlocale' function itself. */ # if defined HAVE_SETLOCALE && defined HAVE_LC_MESSAGES && defined HAVE_LOCALE_NULL retval = setlocale (category, NULL); # else /* Setting of LC_ALL overwrites all other. */ retval = getenv ("LC_ALL"); if (retval == NULL || retval[0] == '\0') { /* Next comes the name of the desired category. */ retval = getenv (categoryname); if (retval == NULL || retval[0] == '\0') { /* Last possibility is the LANG environment variable. */ retval = getenv ("LANG"); if (retval == NULL || retval[0] == '\0') /* We use C as the default domain. POSIX says this is implementation defined. */ retval = "C"; } } # endif return retval; #else /* WIN32 */ /* Return an XPG style locale name language[_territory][@modifier]. Don't even bother determining the codeset; it's not useful in this context, because message catalogs are not specific to a single codeset. */ LCID lcid; LANGID langid; int primary, sub; /* Let the user override the system settings through environment variables, as on POSIX systems. */ retval = getenv ("LC_ALL"); if (retval != NULL && retval[0] != '\0') return retval; retval = getenv (categoryname); if (retval != NULL && retval[0] != '\0') return retval; retval = getenv ("LANG"); if (retval != NULL && retval[0] != '\0') return retval; /* Use native Win32 API locale ID. */ lcid = GetThreadLocale (); /* Strip off the sorting rules, keep only the language part. */ langid = LANGIDFROMLCID (lcid); /* Split into language and territory part. */ primary = PRIMARYLANGID (langid); sub = SUBLANGID (langid); /* Dispatch on language. See also http://www.unicode.org/unicode/onlinedat/languages.html . For details about languages, see http://www.ethnologue.com/ . */ switch (primary) { case LANG_AFRIKAANS: return "af_ZA"; case LANG_ALBANIAN: return "sq_AL"; case LANG_AMHARIC: return "am_ET"; case LANG_ARABIC: switch (sub) { case SUBLANG_ARABIC_SAUDI_ARABIA: return "ar_SA"; case SUBLANG_ARABIC_IRAQ: return "ar_IQ"; case SUBLANG_ARABIC_EGYPT: return "ar_EG"; case SUBLANG_ARABIC_LIBYA: return "ar_LY"; case SUBLANG_ARABIC_ALGERIA: return "ar_DZ"; case SUBLANG_ARABIC_MOROCCO: return "ar_MA"; case SUBLANG_ARABIC_TUNISIA: return "ar_TN"; case SUBLANG_ARABIC_OMAN: return "ar_OM"; case SUBLANG_ARABIC_YEMEN: return "ar_YE"; case SUBLANG_ARABIC_SYRIA: return "ar_SY"; case SUBLANG_ARABIC_JORDAN: return "ar_JO"; case SUBLANG_ARABIC_LEBANON: return "ar_LB"; case SUBLANG_ARABIC_KUWAIT: return "ar_KW"; case SUBLANG_ARABIC_UAE: return "ar_AE"; case SUBLANG_ARABIC_BAHRAIN: return "ar_BH"; case SUBLANG_ARABIC_QATAR: return "ar_QA"; } return "ar"; case LANG_ARMENIAN: return "hy_AM"; case LANG_ASSAMESE: return "as_IN"; case LANG_AZERI: switch (sub) { /* FIXME: Adjust this when Azerbaijani locales appear on Unix. */ case SUBLANG_AZERI_LATIN: return "az_AZ@latin"; case SUBLANG_AZERI_CYRILLIC: return "az_AZ@cyrillic"; } return "az"; case LANG_BASQUE: return "eu"; /* Ambiguous: could be "eu_ES" or "eu_FR". */ case LANG_BELARUSIAN: return "be_BY"; case LANG_BENGALI: switch (sub) { case SUBLANG_BENGALI_INDIA: return "bn_IN"; case SUBLANG_BENGALI_BANGLADESH: return "bn_BD"; } return "bn"; case LANG_BULGARIAN: return "bg_BG"; case LANG_BURMESE: return "my_MM"; case LANG_CAMBODIAN: return "km_KH"; case LANG_CATALAN: return "ca_ES"; case LANG_CHEROKEE: return "chr_US"; case LANG_CHINESE: switch (sub) { case SUBLANG_CHINESE_TRADITIONAL: return "zh_TW"; case SUBLANG_CHINESE_SIMPLIFIED: return "zh_CN"; case SUBLANG_CHINESE_HONGKONG: return "zh_HK"; case SUBLANG_CHINESE_SINGAPORE: return "zh_SG"; case SUBLANG_CHINESE_MACAU: return "zh_MO"; } return "zh"; case LANG_CROATIAN: /* LANG_CROATIAN == LANG_SERBIAN * What used to be called Serbo-Croatian * should really now be two separate * languages because of political reasons. * (Says tml, who knows nothing about Serbian * or Croatian.) * (I can feel those flames coming already.) */ switch (sub) { case SUBLANG_DEFAULT: return "hr_HR"; case SUBLANG_SERBIAN_LATIN: return "sr_CS"; case SUBLANG_SERBIAN_CYRILLIC: return "sr_CS@cyrillic"; } return "hr"; case LANG_CZECH: return "cs_CZ"; case LANG_DANISH: return "da_DK"; case LANG_DIVEHI: return "dv_MV"; case LANG_DUTCH: switch (sub) { case SUBLANG_DUTCH: return "nl_NL"; case SUBLANG_DUTCH_BELGIAN: /* FLEMISH, VLAAMS */ return "nl_BE"; } return "nl"; case LANG_EDO: return "bin_NG"; case LANG_ENGLISH: switch (sub) { /* SUBLANG_ENGLISH_US == SUBLANG_DEFAULT. Heh. I thought * English was the language spoken in England. * Oh well. */ case SUBLANG_ENGLISH_US: return "en_US"; case SUBLANG_ENGLISH_UK: return "en_GB"; case SUBLANG_ENGLISH_AUS: return "en_AU"; case SUBLANG_ENGLISH_CAN: return "en_CA"; case SUBLANG_ENGLISH_NZ: return "en_NZ"; case SUBLANG_ENGLISH_EIRE: return "en_IE"; case SUBLANG_ENGLISH_SOUTH_AFRICA: return "en_ZA"; case SUBLANG_ENGLISH_JAMAICA: return "en_JM"; case SUBLANG_ENGLISH_CARIBBEAN: return "en_GD"; /* Grenada? */ case SUBLANG_ENGLISH_BELIZE: return "en_BZ"; case SUBLANG_ENGLISH_TRINIDAD: return "en_TT"; case SUBLANG_ENGLISH_ZIMBABWE: return "en_ZW"; case SUBLANG_ENGLISH_PHILIPPINES: return "en_PH"; case SUBLANG_ENGLISH_INDONESIA: return "en_ID"; case SUBLANG_ENGLISH_HONGKONG: return "en_HK"; case SUBLANG_ENGLISH_INDIA: return "en_IN"; case SUBLANG_ENGLISH_MALAYSIA: return "en_MY"; case SUBLANG_ENGLISH_SINGAPORE: return "en_SG"; } return "en"; case LANG_ESTONIAN: return "et_EE"; case LANG_FAEROESE: return "fo_FO"; case LANG_FARSI: return "fa_IR"; case LANG_FINNISH: return "fi_FI"; case LANG_FRENCH: switch (sub) { case SUBLANG_FRENCH: return "fr_FR"; case SUBLANG_FRENCH_BELGIAN: /* WALLOON */ return "fr_BE"; case SUBLANG_FRENCH_CANADIAN: return "fr_CA"; case SUBLANG_FRENCH_SWISS: return "fr_CH"; case SUBLANG_FRENCH_LUXEMBOURG: return "fr_LU"; case SUBLANG_FRENCH_MONACO: return "fr_MC"; case SUBLANG_FRENCH_WESTINDIES: return "fr"; /* Caribbean? */ case SUBLANG_FRENCH_REUNION: return "fr_RE"; case SUBLANG_FRENCH_CONGO: return "fr_CG"; case SUBLANG_FRENCH_SENEGAL: return "fr_SN"; case SUBLANG_FRENCH_CAMEROON: return "fr_CM"; case SUBLANG_FRENCH_COTEDIVOIRE: return "fr_CI"; case SUBLANG_FRENCH_MALI: return "fr_ML"; case SUBLANG_FRENCH_MOROCCO: return "fr_MA"; case SUBLANG_FRENCH_HAITI: return "fr_HT"; } return "fr"; case LANG_FRISIAN: return "fy_NL"; case LANG_FULFULDE: /* Spoken in Nigeria, Guinea, Senegal, Mali, Niger, Cameroon, Benin. */ return "ff_NG"; case LANG_GAELIC: switch (sub) { case 0x01: /* SCOTTISH */ return "gd_GB"; case 0x02: /* IRISH */ return "ga_IE"; } return "C"; case LANG_GALICIAN: return "gl_ES"; case LANG_GEORGIAN: return "ka_GE"; case LANG_GERMAN: switch (sub) { case SUBLANG_GERMAN: return "de_DE"; case SUBLANG_GERMAN_SWISS: return "de_CH"; case SUBLANG_GERMAN_AUSTRIAN: return "de_AT"; case SUBLANG_GERMAN_LUXEMBOURG: return "de_LU"; case SUBLANG_GERMAN_LIECHTENSTEIN: return "de_LI"; } return "de"; case LANG_GREEK: return "el_GR"; case LANG_GUARANI: return "gn_PY"; case LANG_GUJARATI: return "gu_IN"; case LANG_HAUSA: return "ha_NG"; case LANG_HAWAIIAN: /* FIXME: Do they mean Hawaiian ("haw_US", 1000 speakers) or Hawaii Creole English ("cpe_US", 600000 speakers)? */ return "cpe_US"; case LANG_HEBREW: return "he_IL"; case LANG_HINDI: return "hi_IN"; case LANG_HUNGARIAN: return "hu_HU"; case LANG_IBIBIO: return "nic_NG"; case LANG_ICELANDIC: return "is_IS"; case LANG_IGBO: return "ig_NG"; case LANG_INDONESIAN: return "id_ID"; case LANG_INUKTITUT: return "iu_CA"; case LANG_ITALIAN: switch (sub) { case SUBLANG_ITALIAN: return "it_IT"; case SUBLANG_ITALIAN_SWISS: return "it_CH"; } return "it"; case LANG_JAPANESE: return "ja_JP"; case LANG_KANNADA: return "kn_IN"; case LANG_KANURI: return "kr_NG"; case LANG_KASHMIRI: switch (sub) { case SUBLANG_DEFAULT: return "ks_PK"; case SUBLANG_KASHMIRI_INDIA: return "ks_IN"; } return "ks"; case LANG_KAZAK: return "kk_KZ"; case LANG_KONKANI: /* FIXME: Adjust this when such locales appear on Unix. */ return "kok_IN"; case LANG_KOREAN: return "ko_KR"; case LANG_KYRGYZ: return "ky_KG"; case LANG_LAO: return "lo_LA"; case LANG_LATIN: return "la_VA"; case LANG_LATVIAN: return "lv_LV"; case LANG_LITHUANIAN: return "lt_LT"; case LANG_MACEDONIAN: return "mk_MK"; case LANG_MALAY: switch (sub) { case SUBLANG_MALAY_MALAYSIA: return "ms_MY"; case SUBLANG_MALAY_BRUNEI_DARUSSALAM: return "ms_BN"; } return "ms"; case LANG_MALAYALAM: return "ml_IN"; case LANG_MALTESE: return "mt_MT"; case LANG_MANIPURI: /* FIXME: Adjust this when such locales appear on Unix. */ return "mni_IN"; case LANG_MARATHI: return "mr_IN"; case LANG_MONGOLIAN: return "mn"; /* Ambiguous: could be "mn_CN" or "mn_MN". */ case LANG_NEPALI: switch (sub) { case SUBLANG_DEFAULT: return "ne_NP"; case SUBLANG_NEPALI_INDIA: return "ne_IN"; } return "ne"; case LANG_NORWEGIAN: switch (sub) { case SUBLANG_NORWEGIAN_BOKMAL: return "no_NO"; case SUBLANG_NORWEGIAN_NYNORSK: return "nn_NO"; } return "no"; case LANG_ORIYA: return "or_IN"; case LANG_OROMO: return "om_ET"; case LANG_PAPIAMENTU: return "pap_AN"; case LANG_PASHTO: return "ps"; /* Ambiguous: could be "ps_PK" or "ps_AF". */ case LANG_POLISH: return "pl_PL"; case LANG_PORTUGUESE: switch (sub) { case SUBLANG_PORTUGUESE: return "pt_PT"; /* Hmm. SUBLANG_PORTUGUESE_BRAZILIAN == SUBLANG_DEFAULT. Same phenomenon as SUBLANG_ENGLISH_US == SUBLANG_DEFAULT. */ case SUBLANG_PORTUGUESE_BRAZILIAN: return "pt_BR"; } return "pt"; case LANG_PUNJABI: switch (sub) { case SUBLANG_PUNJABI_INDIA: return "pa_IN"; /* Gurmukhi script */ case SUBLANG_PUNJABI_PAKISTAN: return "pa_PK"; /* Arabic script */ } return "pa"; case LANG_RHAETO_ROMANCE: return "rm_CH"; case LANG_ROMANIAN: switch (sub) { case SUBLANG_ROMANIAN_ROMANIA: return "ro_RO"; case SUBLANG_ROMANIAN_MOLDOVA: return "ro_MD"; } return "ro"; case LANG_RUSSIAN: return "ru"; /* Ambiguous: could be "ru_RU" or "ru_UA" or "ru_MD". */ case LANG_SAAMI: /* actually Northern Sami */ return "se_NO"; case LANG_SANSKRIT: return "sa_IN"; case LANG_SINDHI: switch (sub) { case SUBLANG_SINDHI_INDIA: return "sd_IN"; case SUBLANG_SINDHI_PAKISTAN: return "sd_PK"; } return "sd"; case LANG_SINHALESE: return "si_LK"; case LANG_SLOVAK: return "sk_SK"; case LANG_SLOVENIAN: return "sl_SI"; case LANG_SOMALI: return "so_SO"; case LANG_SORBIAN: /* FIXME: Adjust this when such locales appear on Unix. */ return "wen_DE"; case LANG_SPANISH: switch (sub) { case SUBLANG_SPANISH: return "es_ES"; case SUBLANG_SPANISH_MEXICAN: return "es_MX"; case SUBLANG_SPANISH_MODERN: return "es_ES@modern"; /* not seen on Unix */ case SUBLANG_SPANISH_GUATEMALA: return "es_GT"; case SUBLANG_SPANISH_COSTA_RICA: return "es_CR"; case SUBLANG_SPANISH_PANAMA: return "es_PA"; case SUBLANG_SPANISH_DOMINICAN_REPUBLIC: return "es_DO"; case SUBLANG_SPANISH_VENEZUELA: return "es_VE"; case SUBLANG_SPANISH_COLOMBIA: return "es_CO"; case SUBLANG_SPANISH_PERU: return "es_PE"; case SUBLANG_SPANISH_ARGENTINA: return "es_AR"; case SUBLANG_SPANISH_ECUADOR: return "es_EC"; case SUBLANG_SPANISH_CHILE: return "es_CL"; case SUBLANG_SPANISH_URUGUAY: return "es_UY"; case SUBLANG_SPANISH_PARAGUAY: return "es_PY"; case SUBLANG_SPANISH_BOLIVIA: return "es_BO"; case SUBLANG_SPANISH_EL_SALVADOR: return "es_SV"; case SUBLANG_SPANISH_HONDURAS: return "es_HN"; case SUBLANG_SPANISH_NICARAGUA: return "es_NI"; case SUBLANG_SPANISH_PUERTO_RICO: return "es_PR"; } return "es"; case LANG_SUTU: return "bnt_TZ"; /* or "st_LS" or "nso_ZA"? */ case LANG_SWAHILI: return "sw_KE"; case LANG_SWEDISH: switch (sub) { case SUBLANG_DEFAULT: return "sv_SE"; case SUBLANG_SWEDISH_FINLAND: return "sv_FI"; } return "sv"; case LANG_SYRIAC: return "syr_TR"; /* An extinct language. */ case LANG_TAGALOG: return "tl_PH"; case LANG_TAJIK: return "tg_TJ"; case LANG_TAMAZIGHT: switch (sub) { /* FIXME: Adjust this when Tamazight locales appear on Unix. */ case SUBLANG_TAMAZIGHT_ARABIC: return "ber_MA@arabic"; case SUBLANG_TAMAZIGHT_LATIN: return "ber_MA@latin"; } return "ber_MA"; case LANG_TAMIL: return "ta"; /* Ambiguous: could be "ta_IN" or "ta_LK" or "ta_SG". */ case LANG_TATAR: return "tt_RU"; case LANG_TELUGU: return "te_IN"; case LANG_THAI: return "th_TH"; case LANG_TIBETAN: return "bo_CN"; case LANG_TIGRINYA: switch (sub) { case SUBLANG_TIGRINYA_ETHIOPIA: return "ti_ET"; case SUBLANG_TIGRINYA_ERITREA: return "ti_ER"; } return "ti"; case LANG_TSONGA: return "ts_ZA"; case LANG_TSWANA: return "tn_BW"; case LANG_TURKISH: return "tr_TR"; case LANG_TURKMEN: return "tk_TM"; case LANG_UKRAINIAN: return "uk_UA"; case LANG_URDU: switch (sub) { case SUBLANG_URDU_PAKISTAN: return "ur_PK"; case SUBLANG_URDU_INDIA: return "ur_IN"; } return "ur"; case LANG_UZBEK: switch (sub) { case SUBLANG_UZBEK_LATIN: return "uz_UZ"; case SUBLANG_UZBEK_CYRILLIC: return "uz_UZ@cyrillic"; } return "uz"; case LANG_VENDA: return "ve_ZA"; case LANG_VIETNAMESE: return "vi_VN"; case LANG_WELSH: return "cy_GB"; case LANG_XHOSA: return "xh_ZA"; case LANG_YI: return "sit_CN"; case LANG_YIDDISH: return "yi_IL"; case LANG_YORUBA: return "yo_NG"; case LANG_ZULU: return "zu_ZA"; default: return "C"; } #endif } ltris-1.0.19/intl/printf.c0000664000175000017500000001717712140770050012307 00000000000000/* Formatted output to strings, using POSIX/XSI format strings with positions. Copyright (C) 2003 Free Software Foundation, Inc. Written by Bruno Haible , 2003. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #ifdef __GNUC__ # define alloca __builtin_alloca # define HAVE_ALLOCA 1 #else # ifdef _MSC_VER # include # define alloca _alloca # else # if defined HAVE_ALLOCA_H || defined _LIBC # include # else # ifdef _AIX #pragma alloca # else # ifndef alloca char *alloca (); # endif # endif # endif # endif #endif #include #if !HAVE_POSIX_PRINTF #include #include /* When building a DLL, we must export some functions. Note that because the functions are only defined for binary backward compatibility, we don't need to use __declspec(dllimport) in any case. */ #if defined _MSC_VER && BUILDING_DLL # define DLL_EXPORTED __declspec(dllexport) #else # define DLL_EXPORTED #endif #define STATIC static /* Define auxiliary functions declared in "printf-args.h". */ #include "printf-args.c" /* Define auxiliary functions declared in "printf-parse.h". */ #include "printf-parse.c" /* Define functions declared in "vasnprintf.h". */ #define vasnprintf libintl_vasnprintf #include "vasnprintf.c" #if 0 /* not needed */ #define asnprintf libintl_asnprintf #include "asnprintf.c" #endif DLL_EXPORTED int libintl_vfprintf (FILE *stream, const char *format, va_list args) { if (strchr (format, '$') == NULL) return vfprintf (stream, format, args); else { size_t length; char *result = libintl_vasnprintf (NULL, &length, format, args); int retval = -1; if (result != NULL) { if (fwrite (result, 1, length, stream) == length) retval = length; free (result); } return retval; } } DLL_EXPORTED int libintl_fprintf (FILE *stream, const char *format, ...) { va_list args; int retval; va_start (args, format); retval = libintl_vfprintf (stream, format, args); va_end (args); return retval; } DLL_EXPORTED int libintl_vprintf (const char *format, va_list args) { return libintl_vfprintf (stdout, format, args); } DLL_EXPORTED int libintl_printf (const char *format, ...) { va_list args; int retval; va_start (args, format); retval = libintl_vprintf (format, args); va_end (args); return retval; } DLL_EXPORTED int libintl_vsprintf (char *resultbuf, const char *format, va_list args) { if (strchr (format, '$') == NULL) return vsprintf (resultbuf, format, args); else { size_t length = (size_t) ~0 / (4 * sizeof (char)); char *result = libintl_vasnprintf (resultbuf, &length, format, args); if (result != resultbuf) { free (result); return -1; } else return length; } } DLL_EXPORTED int libintl_sprintf (char *resultbuf, const char *format, ...) { va_list args; int retval; va_start (args, format); retval = libintl_vsprintf (resultbuf, format, args); va_end (args); return retval; } #if HAVE_SNPRINTF # if HAVE_DECL__SNPRINTF /* Windows. */ # define system_vsnprintf _vsnprintf # else /* Unix. */ # define system_vsnprintf vsnprintf # endif DLL_EXPORTED int libintl_vsnprintf (char *resultbuf, size_t length, const char *format, va_list args) { if (strchr (format, '$') == NULL) return system_vsnprintf (resultbuf, length, format, args); else { size_t maxlength = length; char *result = libintl_vasnprintf (resultbuf, &length, format, args); if (result != resultbuf) { if (maxlength > 0) { if (length < maxlength) abort (); memcpy (resultbuf, result, maxlength - 1); resultbuf[maxlength - 1] = '\0'; } free (result); return -1; } else return length; } } DLL_EXPORTED int libintl_snprintf (char *resultbuf, size_t length, const char *format, ...) { va_list args; int retval; va_start (args, format); retval = libintl_vsnprintf (resultbuf, length, format, args); va_end (args); return retval; } #endif #if HAVE_ASPRINTF DLL_EXPORTED int libintl_vasprintf (char **resultp, const char *format, va_list args) { size_t length; char *result = libintl_vasnprintf (NULL, &length, format, args); if (result == NULL) return -1; *resultp = result; return length; } DLL_EXPORTED int libintl_asprintf (char **resultp, const char *format, ...) { va_list args; int retval; va_start (args, format); retval = libintl_vasprintf (resultp, format, args); va_end (args); return retval; } #endif #if HAVE_FWPRINTF #include #define WIDE_CHAR_VERSION 1 /* Define auxiliary functions declared in "wprintf-parse.h". */ #include "printf-parse.c" /* Define functions declared in "vasnprintf.h". */ #define vasnwprintf libintl_vasnwprintf #include "vasnprintf.c" #if 0 /* not needed */ #define asnwprintf libintl_asnwprintf #include "asnprintf.c" #endif # if HAVE_DECL__SNWPRINTF /* Windows. */ # define system_vswprintf _vsnwprintf # else /* Unix. */ # define system_vswprintf vswprintf # endif DLL_EXPORTED int libintl_vfwprintf (FILE *stream, const wchar_t *format, va_list args) { if (wcschr (format, '$') == NULL) return vfwprintf (stream, format, args); else { size_t length; wchar_t *result = libintl_vasnwprintf (NULL, &length, format, args); int retval = -1; if (result != NULL) { size_t i; for (i = 0; i < length; i++) if (fputwc (result[i], stream) == WEOF) break; if (i == length) retval = length; free (result); } return retval; } } DLL_EXPORTED int libintl_fwprintf (FILE *stream, const wchar_t *format, ...) { va_list args; int retval; va_start (args, format); retval = libintl_vfwprintf (stream, format, args); va_end (args); return retval; } DLL_EXPORTED int libintl_vwprintf (const wchar_t *format, va_list args) { return libintl_vfwprintf (stdout, format, args); } DLL_EXPORTED int libintl_wprintf (const wchar_t *format, ...) { va_list args; int retval; va_start (args, format); retval = libintl_vwprintf (format, args); va_end (args); return retval; } DLL_EXPORTED int libintl_vswprintf (wchar_t *resultbuf, size_t length, const wchar_t *format, va_list args) { if (wcschr (format, '$') == NULL) return system_vswprintf (resultbuf, length, format, args); else { size_t maxlength = length; wchar_t *result = libintl_vasnwprintf (resultbuf, &length, format, args); if (result != resultbuf) { if (maxlength > 0) { if (length < maxlength) abort (); memcpy (resultbuf, result, (maxlength - 1) * sizeof (wchar_t)); resultbuf[maxlength - 1] = 0; } free (result); return -1; } else return length; } } DLL_EXPORTED int libintl_swprintf (wchar_t *resultbuf, size_t length, const wchar_t *format, ...) { va_list args; int retval; va_start (args, format); retval = libintl_vswprintf (resultbuf, length, format, args); va_end (args); return retval; } #endif #endif ltris-1.0.19/intl/plural.c0000664000175000017500000015146112233753107012306 00000000000000/* A Bison parser, made by GNU Bison 2.5. */ /* Bison implementation for Yacc-like parsers in C Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ /* As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. This special exception was added by the Free Software Foundation in version 2.2 of Bison. */ /* C LALR(1) parser skeleton written by Richard Stallman, by simplifying the original so-called "semantic" parser. */ /* All symbols defined below should begin with yy or YY, to avoid infringing on user name space. This should be done even for local variables, as they might otherwise be expanded by user macros. There are some unavoidable exceptions within include files to define necessary library symbols; they are noted "INFRINGES ON USER NAME SPACE" below. */ /* Identify Bison output. */ #define YYBISON 1 /* Bison version. */ #define YYBISON_VERSION "2.5" /* Skeleton name. */ #define YYSKELETON_NAME "yacc.c" /* Pure parsers. */ #define YYPURE 1 /* Push parsers. */ #define YYPUSH 0 /* Pull parsers. */ #define YYPULL 1 /* Using locations. */ #define YYLSP_NEEDED 0 /* Substitute the variable and function names. */ #define yyparse __gettextparse #define yylex __gettextlex #define yyerror __gettexterror #define yylval __gettextlval #define yychar __gettextchar #define yydebug __gettextdebug #define yynerrs __gettextnerrs /* Copy the first part of user declarations. */ /* Line 268 of yacc.c */ #line 1 "plural.y" /* Expression parsing for plural form selection. Copyright (C) 2000-2001, 2003 Free Software Foundation, Inc. Written by Ulrich Drepper , 2000. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* The bison generated parser uses alloca. AIX 3 forces us to put this declaration at the beginning of the file. The declaration in bison's skeleton file comes too late. This must come before because may include arbitrary system headers. */ #if defined _AIX && !defined __GNUC__ #pragma alloca #endif #ifdef HAVE_CONFIG_H # include #endif #include #include #include "plural-exp.h" /* The main function generated by the parser is called __gettextparse, but we want it to be called PLURAL_PARSE. */ #ifndef _LIBC # define __gettextparse PLURAL_PARSE #endif #define YYLEX_PARAM &((struct parse_args *) arg)->cp #define YYPARSE_PARAM arg /* Line 268 of yacc.c */ #line 126 "plural.c" /* Enabling traces. */ #ifndef YYDEBUG # define YYDEBUG 0 #endif /* Enabling verbose error messages. */ #ifdef YYERROR_VERBOSE # undef YYERROR_VERBOSE # define YYERROR_VERBOSE 1 #else # define YYERROR_VERBOSE 0 #endif /* Enabling the token table. */ #ifndef YYTOKEN_TABLE # define YYTOKEN_TABLE 0 #endif /* Tokens. */ #ifndef YYTOKENTYPE # define YYTOKENTYPE /* Put the tokens into the symbol table, so that GDB and other debuggers know about them. */ enum yytokentype { EQUOP2 = 258, CMPOP2 = 259, ADDOP2 = 260, MULOP2 = 261, NUMBER = 262 }; #endif /* Tokens. */ #define EQUOP2 258 #define CMPOP2 259 #define ADDOP2 260 #define MULOP2 261 #define NUMBER 262 #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE { /* Line 293 of yacc.c */ #line 49 "plural.y" unsigned long int num; enum operator op; struct expression *exp; /* Line 293 of yacc.c */ #line 184 "plural.c" } YYSTYPE; # define YYSTYPE_IS_TRIVIAL 1 # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 #endif /* Copy the second part of user declarations. */ /* Line 343 of yacc.c */ #line 55 "plural.y" /* Prototypes for local functions. */ static int yylex (YYSTYPE *lval, const char **pexp); static void yyerror (const char *str); /* Allocation of expressions. */ static struct expression * new_exp (int nargs, enum operator op, struct expression * const *args) { int i; struct expression *newp; /* If any of the argument could not be malloc'ed, just return NULL. */ for (i = nargs - 1; i >= 0; i--) if (args[i] == NULL) goto fail; /* Allocate a new expression. */ newp = (struct expression *) malloc (sizeof (*newp)); if (newp != NULL) { newp->nargs = nargs; newp->operation = op; for (i = nargs - 1; i >= 0; i--) newp->val.args[i] = args[i]; return newp; } fail: for (i = nargs - 1; i >= 0; i--) FREE_EXPRESSION (args[i]); return NULL; } static inline struct expression * new_exp_0 (enum operator op) { return new_exp (0, op, NULL); } static inline struct expression * new_exp_1 (enum operator op, struct expression *right) { struct expression *args[1]; args[0] = right; return new_exp (1, op, args); } static struct expression * new_exp_2 (enum operator op, struct expression *left, struct expression *right) { struct expression *args[2]; args[0] = left; args[1] = right; return new_exp (2, op, args); } static inline struct expression * new_exp_3 (enum operator op, struct expression *bexp, struct expression *tbranch, struct expression *fbranch) { struct expression *args[3]; args[0] = bexp; args[1] = tbranch; args[2] = fbranch; return new_exp (3, op, args); } /* Line 343 of yacc.c */ #line 272 "plural.c" #ifdef short # undef short #endif #ifdef YYTYPE_UINT8 typedef YYTYPE_UINT8 yytype_uint8; #else typedef unsigned char yytype_uint8; #endif #ifdef YYTYPE_INT8 typedef YYTYPE_INT8 yytype_int8; #elif (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) typedef signed char yytype_int8; #else typedef short int yytype_int8; #endif #ifdef YYTYPE_UINT16 typedef YYTYPE_UINT16 yytype_uint16; #else typedef unsigned short int yytype_uint16; #endif #ifdef YYTYPE_INT16 typedef YYTYPE_INT16 yytype_int16; #else typedef short int yytype_int16; #endif #ifndef YYSIZE_T # ifdef __SIZE_TYPE__ # define YYSIZE_T __SIZE_TYPE__ # elif defined size_t # define YYSIZE_T size_t # elif ! defined YYSIZE_T && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # define YYSIZE_T size_t # else # define YYSIZE_T unsigned int # endif #endif #define YYSIZE_MAXIMUM ((YYSIZE_T) -1) #ifndef YY_ # if defined YYENABLE_NLS && YYENABLE_NLS # if ENABLE_NLS # include /* INFRINGES ON USER NAME SPACE */ # define YY_(msgid) dgettext ("bison-runtime", msgid) # endif # endif # ifndef YY_ # define YY_(msgid) msgid # endif #endif /* Suppress unused-variable warnings by "using" E. */ #if ! defined lint || defined __GNUC__ # define YYUSE(e) ((void) (e)) #else # define YYUSE(e) /* empty */ #endif /* Identity function, used to suppress warnings about constant conditions. */ #ifndef lint # define YYID(n) (n) #else #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static int YYID (int yyi) #else static int YYID (yyi) int yyi; #endif { return yyi; } #endif #if ! defined yyoverflow || YYERROR_VERBOSE /* The parser invokes alloca or malloc; define the necessary symbols. */ # ifdef YYSTACK_USE_ALLOCA # if YYSTACK_USE_ALLOCA # ifdef __GNUC__ # define YYSTACK_ALLOC __builtin_alloca # elif defined __BUILTIN_VA_ARG_INCR # include /* INFRINGES ON USER NAME SPACE */ # elif defined _AIX # define YYSTACK_ALLOC __alloca # elif defined _MSC_VER # include /* INFRINGES ON USER NAME SPACE */ # define alloca _alloca # else # define YYSTACK_ALLOC alloca # if ! defined _ALLOCA_H && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # endif # endif # endif # ifdef YYSTACK_ALLOC /* Pacify GCC's `empty if-body' warning. */ # define YYSTACK_FREE(Ptr) do { /* empty */; } while (YYID (0)) # ifndef YYSTACK_ALLOC_MAXIMUM /* The OS might guarantee only one guard page at the bottom of the stack, and a page size can be as small as 4096 bytes. So we cannot safely invoke alloca (N) if N exceeds 4096. Use a slightly smaller number to allow for a few compiler-allocated temporary stack slots. */ # define YYSTACK_ALLOC_MAXIMUM 4032 /* reasonable circa 2006 */ # endif # else # define YYSTACK_ALLOC YYMALLOC # define YYSTACK_FREE YYFREE # ifndef YYSTACK_ALLOC_MAXIMUM # define YYSTACK_ALLOC_MAXIMUM YYSIZE_MAXIMUM # endif # if (defined __cplusplus && ! defined EXIT_SUCCESS \ && ! ((defined YYMALLOC || defined malloc) \ && (defined YYFREE || defined free))) # include /* INFRINGES ON USER NAME SPACE */ # ifndef EXIT_SUCCESS # define EXIT_SUCCESS 0 # endif # endif # ifndef YYMALLOC # define YYMALLOC malloc # if ! defined malloc && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void *malloc (YYSIZE_T); /* INFRINGES ON USER NAME SPACE */ # endif # endif # ifndef YYFREE # define YYFREE free # if ! defined free && ! defined EXIT_SUCCESS && (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) void free (void *); /* INFRINGES ON USER NAME SPACE */ # endif # endif # endif #endif /* ! defined yyoverflow || YYERROR_VERBOSE */ #if (! defined yyoverflow \ && (! defined __cplusplus \ || (defined YYSTYPE_IS_TRIVIAL && YYSTYPE_IS_TRIVIAL))) /* A type that is properly aligned for any stack member. */ union yyalloc { yytype_int16 yyss_alloc; YYSTYPE yyvs_alloc; }; /* The size of the maximum gap between one aligned stack and the next. */ # define YYSTACK_GAP_MAXIMUM (sizeof (union yyalloc) - 1) /* The size of an array large to enough to hold all stacks, each with N elements. */ # define YYSTACK_BYTES(N) \ ((N) * (sizeof (yytype_int16) + sizeof (YYSTYPE)) \ + YYSTACK_GAP_MAXIMUM) # define YYCOPY_NEEDED 1 /* Relocate STACK from its old location to the new one. The local variables YYSIZE and YYSTACKSIZE give the old and new number of elements in the stack, and YYPTR gives the new location of the stack. Advance YYPTR to a properly aligned location for the next stack. */ # define YYSTACK_RELOCATE(Stack_alloc, Stack) \ do \ { \ YYSIZE_T yynewbytes; \ YYCOPY (&yyptr->Stack_alloc, Stack, yysize); \ Stack = &yyptr->Stack_alloc; \ yynewbytes = yystacksize * sizeof (*Stack) + YYSTACK_GAP_MAXIMUM; \ yyptr += yynewbytes / sizeof (*yyptr); \ } \ while (YYID (0)) #endif #if defined YYCOPY_NEEDED && YYCOPY_NEEDED /* Copy COUNT objects from FROM to TO. The source and destination do not overlap. */ # ifndef YYCOPY # if defined __GNUC__ && 1 < __GNUC__ # define YYCOPY(To, From, Count) \ __builtin_memcpy (To, From, (Count) * sizeof (*(From))) # else # define YYCOPY(To, From, Count) \ do \ { \ YYSIZE_T yyi; \ for (yyi = 0; yyi < (Count); yyi++) \ (To)[yyi] = (From)[yyi]; \ } \ while (YYID (0)) # endif # endif #endif /* !YYCOPY_NEEDED */ /* YYFINAL -- State number of the termination state. */ #define YYFINAL 9 /* YYLAST -- Last index in YYTABLE. */ #define YYLAST 54 /* YYNTOKENS -- Number of terminals. */ #define YYNTOKENS 16 /* YYNNTS -- Number of nonterminals. */ #define YYNNTS 3 /* YYNRULES -- Number of rules. */ #define YYNRULES 13 /* YYNRULES -- Number of states. */ #define YYNSTATES 27 /* YYTRANSLATE(YYLEX) -- Bison symbol number corresponding to YYLEX. */ #define YYUNDEFTOK 2 #define YYMAXUTOK 262 #define YYTRANSLATE(YYX) \ ((unsigned int) (YYX) <= YYMAXUTOK ? yytranslate[YYX] : YYUNDEFTOK) /* YYTRANSLATE[YYLEX] -- Bison symbol number corresponding to YYLEX. */ static const yytype_uint8 yytranslate[] = { 0, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 10, 2, 2, 2, 2, 5, 2, 14, 15, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 12, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 13, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 6, 7, 8, 9, 11 }; #if YYDEBUG /* YYPRHS[YYN] -- Index of the first RHS symbol of rule number YYN in YYRHS. */ static const yytype_uint8 yyprhs[] = { 0, 0, 3, 5, 11, 15, 19, 23, 27, 31, 35, 38, 40, 42 }; /* YYRHS -- A `-1'-separated list of the rules' RHS. */ static const yytype_int8 yyrhs[] = { 17, 0, -1, 18, -1, 18, 3, 18, 12, 18, -1, 18, 4, 18, -1, 18, 5, 18, -1, 18, 6, 18, -1, 18, 7, 18, -1, 18, 8, 18, -1, 18, 9, 18, -1, 10, 18, -1, 13, -1, 11, -1, 14, 18, 15, -1 }; /* YYRLINE[YYN] -- source line where rule number YYN was defined. */ static const yytype_uint8 yyrline[] = { 0, 150, 150, 158, 162, 166, 170, 174, 178, 182, 186, 190, 194, 199 }; #endif #if YYDEBUG || YYERROR_VERBOSE || YYTOKEN_TABLE /* YYTNAME[SYMBOL-NUM] -- String name of the symbol SYMBOL-NUM. First, the terminals, then, starting at YYNTOKENS, nonterminals. */ static const char *const yytname[] = { "$end", "error", "$undefined", "'?'", "'|'", "'&'", "EQUOP2", "CMPOP2", "ADDOP2", "MULOP2", "'!'", "NUMBER", "':'", "'n'", "'('", "')'", "$accept", "start", "exp", 0 }; #endif # ifdef YYPRINT /* YYTOKNUM[YYLEX-NUM] -- Internal token number corresponding to token YYLEX-NUM. */ static const yytype_uint16 yytoknum[] = { 0, 256, 257, 63, 124, 38, 258, 259, 260, 261, 33, 262, 58, 110, 40, 41 }; # endif /* YYR1[YYN] -- Symbol number of symbol that rule YYN derives. */ static const yytype_uint8 yyr1[] = { 0, 16, 17, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18, 18 }; /* YYR2[YYN] -- Number of symbols composing right hand side of rule YYN. */ static const yytype_uint8 yyr2[] = { 0, 2, 1, 5, 3, 3, 3, 3, 3, 3, 2, 1, 1, 3 }; /* YYDEFACT[STATE-NAME] -- Default reduction number in state STATE-NUM. Performed when YYTABLE doesn't specify something else to do. Zero means the default is an error. */ static const yytype_uint8 yydefact[] = { 0, 0, 12, 11, 0, 0, 2, 10, 0, 1, 0, 0, 0, 0, 0, 0, 0, 13, 0, 4, 5, 6, 7, 8, 9, 0, 3 }; /* YYDEFGOTO[NTERM-NUM]. */ static const yytype_int8 yydefgoto[] = { -1, 5, 6 }; /* YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing STATE-NUM. */ #define YYPACT_NINF -10 static const yytype_int8 yypact[] = { -9, -9, -10, -10, -9, 8, 36, -10, 13, -10, -9, -9, -9, -9, -9, -9, -9, -10, 26, 41, 45, 18, -2, 14, -10, -9, 36 }; /* YYPGOTO[NTERM-NUM]. */ static const yytype_int8 yypgoto[] = { -10, -10, -1 }; /* YYTABLE[YYPACT[STATE-NUM]]. What to do in state STATE-NUM. If positive, shift that token. If negative, reduce the rule which number is the opposite. If YYTABLE_NINF, syntax error. */ #define YYTABLE_NINF -1 static const yytype_uint8 yytable[] = { 7, 1, 2, 8, 3, 4, 15, 16, 9, 18, 19, 20, 21, 22, 23, 24, 10, 11, 12, 13, 14, 15, 16, 16, 26, 14, 15, 16, 17, 10, 11, 12, 13, 14, 15, 16, 0, 0, 25, 10, 11, 12, 13, 14, 15, 16, 12, 13, 14, 15, 16, 13, 14, 15, 16 }; #define yypact_value_is_default(yystate) \ ((yystate) == (-10)) #define yytable_value_is_error(yytable_value) \ YYID (0) static const yytype_int8 yycheck[] = { 1, 10, 11, 4, 13, 14, 8, 9, 0, 10, 11, 12, 13, 14, 15, 16, 3, 4, 5, 6, 7, 8, 9, 9, 25, 7, 8, 9, 15, 3, 4, 5, 6, 7, 8, 9, -1, -1, 12, 3, 4, 5, 6, 7, 8, 9, 5, 6, 7, 8, 9, 6, 7, 8, 9 }; /* YYSTOS[STATE-NUM] -- The (internal number of the) accessing symbol of state STATE-NUM. */ static const yytype_uint8 yystos[] = { 0, 10, 11, 13, 14, 17, 18, 18, 18, 0, 3, 4, 5, 6, 7, 8, 9, 15, 18, 18, 18, 18, 18, 18, 18, 12, 18 }; #define yyerrok (yyerrstatus = 0) #define yyclearin (yychar = YYEMPTY) #define YYEMPTY (-2) #define YYEOF 0 #define YYACCEPT goto yyacceptlab #define YYABORT goto yyabortlab #define YYERROR goto yyerrorlab /* Like YYERROR except do call yyerror. This remains here temporarily to ease the transition to the new meaning of YYERROR, for GCC. Once GCC version 2 has supplanted version 1, this can go. However, YYFAIL appears to be in use. Nevertheless, it is formally deprecated in Bison 2.4.2's NEWS entry, where a plan to phase it out is discussed. */ #define YYFAIL goto yyerrlab #if defined YYFAIL /* This is here to suppress warnings from the GCC cpp's -Wunused-macros. Normally we don't worry about that warning, but some users do, and we want to make it easy for users to remove YYFAIL uses, which will produce warnings from Bison 2.5. */ #endif #define YYRECOVERING() (!!yyerrstatus) #define YYBACKUP(Token, Value) \ do \ if (yychar == YYEMPTY && yylen == 1) \ { \ yychar = (Token); \ yylval = (Value); \ YYPOPSTACK (1); \ goto yybackup; \ } \ else \ { \ yyerror (YY_("syntax error: cannot back up")); \ YYERROR; \ } \ while (YYID (0)) #define YYTERROR 1 #define YYERRCODE 256 /* YYLLOC_DEFAULT -- Set CURRENT to span from RHS[1] to RHS[N]. If N is 0, then set CURRENT to the empty location which ends the previous symbol: RHS[0] (always defined). */ #define YYRHSLOC(Rhs, K) ((Rhs)[K]) #ifndef YYLLOC_DEFAULT # define YYLLOC_DEFAULT(Current, Rhs, N) \ do \ if (YYID (N)) \ { \ (Current).first_line = YYRHSLOC (Rhs, 1).first_line; \ (Current).first_column = YYRHSLOC (Rhs, 1).first_column; \ (Current).last_line = YYRHSLOC (Rhs, N).last_line; \ (Current).last_column = YYRHSLOC (Rhs, N).last_column; \ } \ else \ { \ (Current).first_line = (Current).last_line = \ YYRHSLOC (Rhs, 0).last_line; \ (Current).first_column = (Current).last_column = \ YYRHSLOC (Rhs, 0).last_column; \ } \ while (YYID (0)) #endif /* This macro is provided for backward compatibility. */ #ifndef YY_LOCATION_PRINT # define YY_LOCATION_PRINT(File, Loc) ((void) 0) #endif /* YYLEX -- calling `yylex' with the right arguments. */ #ifdef YYLEX_PARAM # define YYLEX yylex (&yylval, YYLEX_PARAM) #else # define YYLEX yylex (&yylval) #endif /* Enable debugging if requested. */ #if YYDEBUG # ifndef YYFPRINTF # include /* INFRINGES ON USER NAME SPACE */ # define YYFPRINTF fprintf # endif # define YYDPRINTF(Args) \ do { \ if (yydebug) \ YYFPRINTF Args; \ } while (YYID (0)) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) \ do { \ if (yydebug) \ { \ YYFPRINTF (stderr, "%s ", Title); \ yy_symbol_print (stderr, \ Type, Value); \ YYFPRINTF (stderr, "\n"); \ } \ } while (YYID (0)) /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ /*ARGSUSED*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_symbol_value_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) #else static void yy_symbol_value_print (yyoutput, yytype, yyvaluep) FILE *yyoutput; int yytype; YYSTYPE const * const yyvaluep; #endif { if (!yyvaluep) return; # ifdef YYPRINT if (yytype < YYNTOKENS) YYPRINT (yyoutput, yytoknum[yytype], *yyvaluep); # else YYUSE (yyoutput); # endif switch (yytype) { default: break; } } /*--------------------------------. | Print this symbol on YYOUTPUT. | `--------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_symbol_print (FILE *yyoutput, int yytype, YYSTYPE const * const yyvaluep) #else static void yy_symbol_print (yyoutput, yytype, yyvaluep) FILE *yyoutput; int yytype; YYSTYPE const * const yyvaluep; #endif { if (yytype < YYNTOKENS) YYFPRINTF (yyoutput, "token %s (", yytname[yytype]); else YYFPRINTF (yyoutput, "nterm %s (", yytname[yytype]); yy_symbol_value_print (yyoutput, yytype, yyvaluep); YYFPRINTF (yyoutput, ")"); } /*------------------------------------------------------------------. | yy_stack_print -- Print the state stack from its BOTTOM up to its | | TOP (included). | `------------------------------------------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_stack_print (yytype_int16 *yybottom, yytype_int16 *yytop) #else static void yy_stack_print (yybottom, yytop) yytype_int16 *yybottom; yytype_int16 *yytop; #endif { YYFPRINTF (stderr, "Stack now"); for (; yybottom <= yytop; yybottom++) { int yybot = *yybottom; YYFPRINTF (stderr, " %d", yybot); } YYFPRINTF (stderr, "\n"); } # define YY_STACK_PRINT(Bottom, Top) \ do { \ if (yydebug) \ yy_stack_print ((Bottom), (Top)); \ } while (YYID (0)) /*------------------------------------------------. | Report that the YYRULE is going to be reduced. | `------------------------------------------------*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yy_reduce_print (YYSTYPE *yyvsp, int yyrule) #else static void yy_reduce_print (yyvsp, yyrule) YYSTYPE *yyvsp; int yyrule; #endif { int yynrhs = yyr2[yyrule]; int yyi; unsigned long int yylno = yyrline[yyrule]; YYFPRINTF (stderr, "Reducing stack by rule %d (line %lu):\n", yyrule - 1, yylno); /* The symbols being reduced. */ for (yyi = 0; yyi < yynrhs; yyi++) { YYFPRINTF (stderr, " $%d = ", yyi + 1); yy_symbol_print (stderr, yyrhs[yyprhs[yyrule] + yyi], &(yyvsp[(yyi + 1) - (yynrhs)]) ); YYFPRINTF (stderr, "\n"); } } # define YY_REDUCE_PRINT(Rule) \ do { \ if (yydebug) \ yy_reduce_print (yyvsp, Rule); \ } while (YYID (0)) /* Nonzero means print parse trace. It is left uninitialized so that multiple parsers can coexist. */ int yydebug; #else /* !YYDEBUG */ # define YYDPRINTF(Args) # define YY_SYMBOL_PRINT(Title, Type, Value, Location) # define YY_STACK_PRINT(Bottom, Top) # define YY_REDUCE_PRINT(Rule) #endif /* !YYDEBUG */ /* YYINITDEPTH -- initial size of the parser's stacks. */ #ifndef YYINITDEPTH # define YYINITDEPTH 200 #endif /* YYMAXDEPTH -- maximum size the stacks can grow to (effective only if the built-in stack extension method is used). Do not make this value too large; the results are undefined if YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH) evaluated with infinite-precision integer arithmetic. */ #ifndef YYMAXDEPTH # define YYMAXDEPTH 10000 #endif #if YYERROR_VERBOSE # ifndef yystrlen # if defined __GLIBC__ && defined _STRING_H # define yystrlen strlen # else /* Return the length of YYSTR. */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static YYSIZE_T yystrlen (const char *yystr) #else static YYSIZE_T yystrlen (yystr) const char *yystr; #endif { YYSIZE_T yylen; for (yylen = 0; yystr[yylen]; yylen++) continue; return yylen; } # endif # endif # ifndef yystpcpy # if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE # define yystpcpy stpcpy # else /* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in YYDEST. */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static char * yystpcpy (char *yydest, const char *yysrc) #else static char * yystpcpy (yydest, yysrc) char *yydest; const char *yysrc; #endif { char *yyd = yydest; const char *yys = yysrc; while ((*yyd++ = *yys++) != '\0') continue; return yyd - 1; } # endif # endif # ifndef yytnamerr /* Copy to YYRES the contents of YYSTR after stripping away unnecessary quotes and backslashes, so that it's suitable for yyerror. The heuristic is that double-quoting is unnecessary unless the string contains an apostrophe, a comma, or backslash (other than backslash-backslash). YYSTR is taken from yytname. If YYRES is null, do not copy; instead, return the length of what the result would have been. */ static YYSIZE_T yytnamerr (char *yyres, const char *yystr) { if (*yystr == '"') { YYSIZE_T yyn = 0; char const *yyp = yystr; for (;;) switch (*++yyp) { case '\'': case ',': goto do_not_strip_quotes; case '\\': if (*++yyp != '\\') goto do_not_strip_quotes; /* Fall through. */ default: if (yyres) yyres[yyn] = *yyp; yyn++; break; case '"': if (yyres) yyres[yyn] = '\0'; return yyn; } do_not_strip_quotes: ; } if (! yyres) return yystrlen (yystr); return yystpcpy (yyres, yystr) - yyres; } # endif /* Copy into *YYMSG, which is of size *YYMSG_ALLOC, an error message about the unexpected token YYTOKEN for the state stack whose top is YYSSP. Return 0 if *YYMSG was successfully written. Return 1 if *YYMSG is not large enough to hold the message. In that case, also set *YYMSG_ALLOC to the required number of bytes. Return 2 if the required number of bytes is too large to store. */ static int yysyntax_error (YYSIZE_T *yymsg_alloc, char **yymsg, yytype_int16 *yyssp, int yytoken) { YYSIZE_T yysize0 = yytnamerr (0, yytname[yytoken]); YYSIZE_T yysize = yysize0; YYSIZE_T yysize1; enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 }; /* Internationalized format string. */ const char *yyformat = 0; /* Arguments of yyformat. */ char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM]; /* Number of reported tokens (one for the "unexpected", one per "expected"). */ int yycount = 0; /* There are many possibilities here to consider: - Assume YYFAIL is not used. It's too flawed to consider. See for details. YYERROR is fine as it does not invoke this function. - If this state is a consistent state with a default action, then the only way this function was invoked is if the default action is an error action. In that case, don't check for expected tokens because there are none. - The only way there can be no lookahead present (in yychar) is if this state is a consistent state with a default action. Thus, detecting the absence of a lookahead is sufficient to determine that there is no unexpected or expected token to report. In that case, just report a simple "syntax error". - Don't assume there isn't a lookahead just because this state is a consistent state with a default action. There might have been a previous inconsistent state, consistent state with a non-default action, or user semantic action that manipulated yychar. - Of course, the expected token list depends on states to have correct lookahead information, and it depends on the parser not to perform extra reductions after fetching a lookahead from the scanner and before detecting a syntax error. Thus, state merging (from LALR or IELR) and default reductions corrupt the expected token list. However, the list is correct for canonical LR with one exception: it will still contain any token that will not be accepted due to an error action in a later state. */ if (yytoken != YYEMPTY) { int yyn = yypact[*yyssp]; yyarg[yycount++] = yytname[yytoken]; if (!yypact_value_is_default (yyn)) { /* Start YYX at -YYN if negative to avoid negative indexes in YYCHECK. In other words, skip the first -YYN actions for this state because they are default actions. */ int yyxbegin = yyn < 0 ? -yyn : 0; /* Stay within bounds of both yycheck and yytname. */ int yychecklim = YYLAST - yyn + 1; int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS; int yyx; for (yyx = yyxbegin; yyx < yyxend; ++yyx) if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR && !yytable_value_is_error (yytable[yyx + yyn])) { if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM) { yycount = 1; yysize = yysize0; break; } yyarg[yycount++] = yytname[yyx]; yysize1 = yysize + yytnamerr (0, yytname[yyx]); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; } } } switch (yycount) { # define YYCASE_(N, S) \ case N: \ yyformat = S; \ break YYCASE_(0, YY_("syntax error")); YYCASE_(1, YY_("syntax error, unexpected %s")); YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s")); YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s")); YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s")); YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s")); # undef YYCASE_ } yysize1 = yysize + yystrlen (yyformat); if (! (yysize <= yysize1 && yysize1 <= YYSTACK_ALLOC_MAXIMUM)) return 2; yysize = yysize1; if (*yymsg_alloc < yysize) { *yymsg_alloc = 2 * yysize; if (! (yysize <= *yymsg_alloc && *yymsg_alloc <= YYSTACK_ALLOC_MAXIMUM)) *yymsg_alloc = YYSTACK_ALLOC_MAXIMUM; return 1; } /* Avoid sprintf, as that infringes on the user's name space. Don't have undefined behavior even if the translation produced a string with the wrong number of "%s"s. */ { char *yyp = *yymsg; int yyi = 0; while ((*yyp = *yyformat) != '\0') if (*yyp == '%' && yyformat[1] == 's' && yyi < yycount) { yyp += yytnamerr (yyp, yyarg[yyi++]); yyformat += 2; } else { yyp++; yyformat++; } } return 0; } #endif /* YYERROR_VERBOSE */ /*-----------------------------------------------. | Release the memory associated to this symbol. | `-----------------------------------------------*/ /*ARGSUSED*/ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) static void yydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep) #else static void yydestruct (yymsg, yytype, yyvaluep) const char *yymsg; int yytype; YYSTYPE *yyvaluep; #endif { YYUSE (yyvaluep); if (!yymsg) yymsg = "Deleting"; YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp); switch (yytype) { default: break; } } /* Prevent warnings from -Wmissing-prototypes. */ #ifdef YYPARSE_PARAM #if defined __STDC__ || defined __cplusplus int yyparse (void *YYPARSE_PARAM); #else int yyparse (); #endif #else /* ! YYPARSE_PARAM */ #if defined __STDC__ || defined __cplusplus int yyparse (void); #else int yyparse (); #endif #endif /* ! YYPARSE_PARAM */ /*----------. | yyparse. | `----------*/ #ifdef YYPARSE_PARAM #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) int yyparse (void *YYPARSE_PARAM) #else int yyparse (YYPARSE_PARAM) void *YYPARSE_PARAM; #endif #else /* ! YYPARSE_PARAM */ #if (defined __STDC__ || defined __C99__FUNC__ \ || defined __cplusplus || defined _MSC_VER) int yyparse (void) #else int yyparse () #endif #endif { /* The lookahead symbol. */ int yychar; /* The semantic value of the lookahead symbol. */ YYSTYPE yylval; /* Number of syntax errors so far. */ int yynerrs; int yystate; /* Number of tokens to shift before error messages enabled. */ int yyerrstatus; /* The stacks and their tools: `yyss': related to states. `yyvs': related to semantic values. Refer to the stacks thru separate pointers, to allow yyoverflow to reallocate them elsewhere. */ /* The state stack. */ yytype_int16 yyssa[YYINITDEPTH]; yytype_int16 *yyss; yytype_int16 *yyssp; /* The semantic value stack. */ YYSTYPE yyvsa[YYINITDEPTH]; YYSTYPE *yyvs; YYSTYPE *yyvsp; YYSIZE_T yystacksize; int yyn; int yyresult; /* Lookahead token as an internal (translated) token number. */ int yytoken; /* The variables used to return semantic value and location from the action routines. */ YYSTYPE yyval; #if YYERROR_VERBOSE /* Buffer for error messages, and its allocated size. */ char yymsgbuf[128]; char *yymsg = yymsgbuf; YYSIZE_T yymsg_alloc = sizeof yymsgbuf; #endif #define YYPOPSTACK(N) (yyvsp -= (N), yyssp -= (N)) /* The number of symbols on the RHS of the reduced rule. Keep to zero when no symbol should be popped. */ int yylen = 0; yytoken = 0; yyss = yyssa; yyvs = yyvsa; yystacksize = YYINITDEPTH; YYDPRINTF ((stderr, "Starting parse\n")); yystate = 0; yyerrstatus = 0; yynerrs = 0; yychar = YYEMPTY; /* Cause a token to be read. */ /* Initialize stack pointers. Waste one element of value and location stack so that they stay on the same level as the state stack. The wasted elements are never initialized. */ yyssp = yyss; yyvsp = yyvs; goto yysetstate; /*------------------------------------------------------------. | yynewstate -- Push a new state, which is found in yystate. | `------------------------------------------------------------*/ yynewstate: /* In all cases, when you get here, the value and location stacks have just been pushed. So pushing a state here evens the stacks. */ yyssp++; yysetstate: *yyssp = yystate; if (yyss + yystacksize - 1 <= yyssp) { /* Get the current used size of the three stacks, in elements. */ YYSIZE_T yysize = yyssp - yyss + 1; #ifdef yyoverflow { /* Give user a chance to reallocate the stack. Use copies of these so that the &'s don't force the real ones into memory. */ YYSTYPE *yyvs1 = yyvs; yytype_int16 *yyss1 = yyss; /* Each stack pointer address is followed by the size of the data in use in that stack, in bytes. This used to be a conditional around just the two extra args, but that might be undefined if yyoverflow is a macro. */ yyoverflow (YY_("memory exhausted"), &yyss1, yysize * sizeof (*yyssp), &yyvs1, yysize * sizeof (*yyvsp), &yystacksize); yyss = yyss1; yyvs = yyvs1; } #else /* no yyoverflow */ # ifndef YYSTACK_RELOCATE goto yyexhaustedlab; # else /* Extend the stack our own way. */ if (YYMAXDEPTH <= yystacksize) goto yyexhaustedlab; yystacksize *= 2; if (YYMAXDEPTH < yystacksize) yystacksize = YYMAXDEPTH; { yytype_int16 *yyss1 = yyss; union yyalloc *yyptr = (union yyalloc *) YYSTACK_ALLOC (YYSTACK_BYTES (yystacksize)); if (! yyptr) goto yyexhaustedlab; YYSTACK_RELOCATE (yyss_alloc, yyss); YYSTACK_RELOCATE (yyvs_alloc, yyvs); # undef YYSTACK_RELOCATE if (yyss1 != yyssa) YYSTACK_FREE (yyss1); } # endif #endif /* no yyoverflow */ yyssp = yyss + yysize - 1; yyvsp = yyvs + yysize - 1; YYDPRINTF ((stderr, "Stack size increased to %lu\n", (unsigned long int) yystacksize)); if (yyss + yystacksize - 1 <= yyssp) YYABORT; } YYDPRINTF ((stderr, "Entering state %d\n", yystate)); if (yystate == YYFINAL) YYACCEPT; goto yybackup; /*-----------. | yybackup. | `-----------*/ yybackup: /* Do appropriate processing given the current state. Read a lookahead token if we need one and don't already have one. */ /* First try to decide what to do without reference to lookahead token. */ yyn = yypact[yystate]; if (yypact_value_is_default (yyn)) goto yydefault; /* Not known => get a lookahead token if don't already have one. */ /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */ if (yychar == YYEMPTY) { YYDPRINTF ((stderr, "Reading a token: ")); yychar = YYLEX; } if (yychar <= YYEOF) { yychar = yytoken = YYEOF; YYDPRINTF ((stderr, "Now at end of input.\n")); } else { yytoken = YYTRANSLATE (yychar); YY_SYMBOL_PRINT ("Next token is", yytoken, &yylval, &yylloc); } /* If the proper action on seeing token YYTOKEN is to reduce or to detect an error, take that action. */ yyn += yytoken; if (yyn < 0 || YYLAST < yyn || yycheck[yyn] != yytoken) goto yydefault; yyn = yytable[yyn]; if (yyn <= 0) { if (yytable_value_is_error (yyn)) goto yyerrlab; yyn = -yyn; goto yyreduce; } /* Count tokens shifted since error; after three, turn off error status. */ if (yyerrstatus) yyerrstatus--; /* Shift the lookahead token. */ YY_SYMBOL_PRINT ("Shifting", yytoken, &yylval, &yylloc); /* Discard the shifted token. */ yychar = YYEMPTY; yystate = yyn; *++yyvsp = yylval; goto yynewstate; /*-----------------------------------------------------------. | yydefault -- do the default action for the current state. | `-----------------------------------------------------------*/ yydefault: yyn = yydefact[yystate]; if (yyn == 0) goto yyerrlab; goto yyreduce; /*-----------------------------. | yyreduce -- Do a reduction. | `-----------------------------*/ yyreduce: /* yyn is the number of a rule to reduce with. */ yylen = yyr2[yyn]; /* If YYLEN is nonzero, implement the default value of the action: `$$ = $1'. Otherwise, the following line sets YYVAL to garbage. This behavior is undocumented and Bison users should not rely upon it. Assigning to YYVAL unconditionally makes the parser a bit smaller, and it avoids a GCC warning that YYVAL may be used uninitialized. */ yyval = yyvsp[1-yylen]; YY_REDUCE_PRINT (yyn); switch (yyn) { case 2: /* Line 1806 of yacc.c */ #line 151 "plural.y" { if ((yyvsp[(1) - (1)].exp) == NULL) YYABORT; ((struct parse_args *) arg)->res = (yyvsp[(1) - (1)].exp); } break; case 3: /* Line 1806 of yacc.c */ #line 159 "plural.y" { (yyval.exp) = new_exp_3 (qmop, (yyvsp[(1) - (5)].exp), (yyvsp[(3) - (5)].exp), (yyvsp[(5) - (5)].exp)); } break; case 4: /* Line 1806 of yacc.c */ #line 163 "plural.y" { (yyval.exp) = new_exp_2 (lor, (yyvsp[(1) - (3)].exp), (yyvsp[(3) - (3)].exp)); } break; case 5: /* Line 1806 of yacc.c */ #line 167 "plural.y" { (yyval.exp) = new_exp_2 (land, (yyvsp[(1) - (3)].exp), (yyvsp[(3) - (3)].exp)); } break; case 6: /* Line 1806 of yacc.c */ #line 171 "plural.y" { (yyval.exp) = new_exp_2 ((yyvsp[(2) - (3)].op), (yyvsp[(1) - (3)].exp), (yyvsp[(3) - (3)].exp)); } break; case 7: /* Line 1806 of yacc.c */ #line 175 "plural.y" { (yyval.exp) = new_exp_2 ((yyvsp[(2) - (3)].op), (yyvsp[(1) - (3)].exp), (yyvsp[(3) - (3)].exp)); } break; case 8: /* Line 1806 of yacc.c */ #line 179 "plural.y" { (yyval.exp) = new_exp_2 ((yyvsp[(2) - (3)].op), (yyvsp[(1) - (3)].exp), (yyvsp[(3) - (3)].exp)); } break; case 9: /* Line 1806 of yacc.c */ #line 183 "plural.y" { (yyval.exp) = new_exp_2 ((yyvsp[(2) - (3)].op), (yyvsp[(1) - (3)].exp), (yyvsp[(3) - (3)].exp)); } break; case 10: /* Line 1806 of yacc.c */ #line 187 "plural.y" { (yyval.exp) = new_exp_1 (lnot, (yyvsp[(2) - (2)].exp)); } break; case 11: /* Line 1806 of yacc.c */ #line 191 "plural.y" { (yyval.exp) = new_exp_0 (var); } break; case 12: /* Line 1806 of yacc.c */ #line 195 "plural.y" { if (((yyval.exp) = new_exp_0 (num)) != NULL) (yyval.exp)->val.num = (yyvsp[(1) - (1)].num); } break; case 13: /* Line 1806 of yacc.c */ #line 200 "plural.y" { (yyval.exp) = (yyvsp[(2) - (3)].exp); } break; /* Line 1806 of yacc.c */ #line 1618 "plural.c" default: break; } /* User semantic actions sometimes alter yychar, and that requires that yytoken be updated with the new translation. We take the approach of translating immediately before every use of yytoken. One alternative is translating here after every semantic action, but that translation would be missed if the semantic action invokes YYABORT, YYACCEPT, or YYERROR immediately after altering yychar or if it invokes YYBACKUP. In the case of YYABORT or YYACCEPT, an incorrect destructor might then be invoked immediately. In the case of YYERROR or YYBACKUP, subsequent parser actions might lead to an incorrect destructor call or verbose syntax error message before the lookahead is translated. */ YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); *++yyvsp = yyval; /* Now `shift' the result of the reduction. Determine what state that goes to, based on the state we popped back to and the rule number reduced by. */ yyn = yyr1[yyn]; yystate = yypgoto[yyn - YYNTOKENS] + *yyssp; if (0 <= yystate && yystate <= YYLAST && yycheck[yystate] == *yyssp) yystate = yytable[yystate]; else yystate = yydefgoto[yyn - YYNTOKENS]; goto yynewstate; /*------------------------------------. | yyerrlab -- here on detecting error | `------------------------------------*/ yyerrlab: /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = yychar == YYEMPTY ? YYEMPTY : YYTRANSLATE (yychar); /* If not already recovering from an error, report this error. */ if (!yyerrstatus) { ++yynerrs; #if ! YYERROR_VERBOSE yyerror (YY_("syntax error")); #else # define YYSYNTAX_ERROR yysyntax_error (&yymsg_alloc, &yymsg, \ yyssp, yytoken) { char const *yymsgp = YY_("syntax error"); int yysyntax_error_status; yysyntax_error_status = YYSYNTAX_ERROR; if (yysyntax_error_status == 0) yymsgp = yymsg; else if (yysyntax_error_status == 1) { if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); yymsg = (char *) YYSTACK_ALLOC (yymsg_alloc); if (!yymsg) { yymsg = yymsgbuf; yymsg_alloc = sizeof yymsgbuf; yysyntax_error_status = 2; } else { yysyntax_error_status = YYSYNTAX_ERROR; yymsgp = yymsg; } } yyerror (yymsgp); if (yysyntax_error_status == 2) goto yyexhaustedlab; } # undef YYSYNTAX_ERROR #endif } if (yyerrstatus == 3) { /* If just tried and failed to reuse lookahead token after an error, discard it. */ if (yychar <= YYEOF) { /* Return failure if at end of input. */ if (yychar == YYEOF) YYABORT; } else { yydestruct ("Error: discarding", yytoken, &yylval); yychar = YYEMPTY; } } /* Else will try to reuse lookahead token after shifting the error token. */ goto yyerrlab1; /*---------------------------------------------------. | yyerrorlab -- error raised explicitly by YYERROR. | `---------------------------------------------------*/ yyerrorlab: /* Pacify compilers like GCC when the user code never invokes YYERROR and the label yyerrorlab therefore never appears in user code. */ if (/*CONSTCOND*/ 0) goto yyerrorlab; /* Do not reclaim the symbols of the rule which action triggered this YYERROR. */ YYPOPSTACK (yylen); yylen = 0; YY_STACK_PRINT (yyss, yyssp); yystate = *yyssp; goto yyerrlab1; /*-------------------------------------------------------------. | yyerrlab1 -- common code for both syntax error and YYERROR. | `-------------------------------------------------------------*/ yyerrlab1: yyerrstatus = 3; /* Each real token shifted decrements this. */ for (;;) { yyn = yypact[yystate]; if (!yypact_value_is_default (yyn)) { yyn += YYTERROR; if (0 <= yyn && yyn <= YYLAST && yycheck[yyn] == YYTERROR) { yyn = yytable[yyn]; if (0 < yyn) break; } } /* Pop the current state because it cannot handle the error token. */ if (yyssp == yyss) YYABORT; yydestruct ("Error: popping", yystos[yystate], yyvsp); YYPOPSTACK (1); yystate = *yyssp; YY_STACK_PRINT (yyss, yyssp); } *++yyvsp = yylval; /* Shift the error token. */ YY_SYMBOL_PRINT ("Shifting", yystos[yyn], yyvsp, yylsp); yystate = yyn; goto yynewstate; /*-------------------------------------. | yyacceptlab -- YYACCEPT comes here. | `-------------------------------------*/ yyacceptlab: yyresult = 0; goto yyreturn; /*-----------------------------------. | yyabortlab -- YYABORT comes here. | `-----------------------------------*/ yyabortlab: yyresult = 1; goto yyreturn; #if !defined(yyoverflow) || YYERROR_VERBOSE /*-------------------------------------------------. | yyexhaustedlab -- memory exhaustion comes here. | `-------------------------------------------------*/ yyexhaustedlab: yyerror (YY_("memory exhausted")); yyresult = 2; /* Fall through. */ #endif yyreturn: if (yychar != YYEMPTY) { /* Make sure we have latest lookahead translation. See comments at user semantic actions for why this is necessary. */ yytoken = YYTRANSLATE (yychar); yydestruct ("Cleanup: discarding lookahead", yytoken, &yylval); } /* Do not reclaim the symbols of the rule which action triggered this YYABORT or YYACCEPT. */ YYPOPSTACK (yylen); YY_STACK_PRINT (yyss, yyssp); while (yyssp != yyss) { yydestruct ("Cleanup: popping", yystos[*yyssp], yyvsp); YYPOPSTACK (1); } #ifndef yyoverflow if (yyss != yyssa) YYSTACK_FREE (yyss); #endif #if YYERROR_VERBOSE if (yymsg != yymsgbuf) YYSTACK_FREE (yymsg); #endif /* Make sure YYID is used. */ return YYID (yyresult); } /* Line 2067 of yacc.c */ #line 205 "plural.y" void internal_function FREE_EXPRESSION (struct expression *exp) { if (exp == NULL) return; /* Handle the recursive case. */ switch (exp->nargs) { case 3: FREE_EXPRESSION (exp->val.args[2]); /* FALLTHROUGH */ case 2: FREE_EXPRESSION (exp->val.args[1]); /* FALLTHROUGH */ case 1: FREE_EXPRESSION (exp->val.args[0]); /* FALLTHROUGH */ default: break; } free (exp); } static int yylex (YYSTYPE *lval, const char **pexp) { const char *exp = *pexp; int result; while (1) { if (exp[0] == '\0') { *pexp = exp; return YYEOF; } if (exp[0] != ' ' && exp[0] != '\t') break; ++exp; } result = *exp++; switch (result) { case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': { unsigned long int n = result - '0'; while (exp[0] >= '0' && exp[0] <= '9') { n *= 10; n += exp[0] - '0'; ++exp; } lval->num = n; result = NUMBER; } break; case '=': if (exp[0] == '=') { ++exp; lval->op = equal; result = EQUOP2; } else result = YYERRCODE; break; case '!': if (exp[0] == '=') { ++exp; lval->op = not_equal; result = EQUOP2; } break; case '&': case '|': if (exp[0] == result) ++exp; else result = YYERRCODE; break; case '<': if (exp[0] == '=') { ++exp; lval->op = less_or_equal; } else lval->op = less_than; result = CMPOP2; break; case '>': if (exp[0] == '=') { ++exp; lval->op = greater_or_equal; } else lval->op = greater_than; result = CMPOP2; break; case '*': lval->op = mult; result = MULOP2; break; case '/': lval->op = divide; result = MULOP2; break; case '%': lval->op = module; result = MULOP2; break; case '+': lval->op = plus; result = ADDOP2; break; case '-': lval->op = minus; result = ADDOP2; break; case 'n': case '?': case ':': case '(': case ')': /* Nothing, just return the character. */ break; case ';': case '\n': case '\0': /* Be safe and let the user call this function again. */ --exp; result = YYEOF; break; default: result = YYERRCODE; #if YYDEBUG != 0 --exp; #endif break; } *pexp = exp; return result; } static void yyerror (const char *str) { /* Do nothing. We don't print error messages here. */ } ltris-1.0.19/intl/plural.y0000664000175000017500000001627112140770050012324 00000000000000%{ /* Expression parsing for plural form selection. Copyright (C) 2000-2001, 2003 Free Software Foundation, Inc. Written by Ulrich Drepper , 2000. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* The bison generated parser uses alloca. AIX 3 forces us to put this declaration at the beginning of the file. The declaration in bison's skeleton file comes too late. This must come before because may include arbitrary system headers. */ #if defined _AIX && !defined __GNUC__ #pragma alloca #endif #ifdef HAVE_CONFIG_H # include #endif #include #include #include "plural-exp.h" /* The main function generated by the parser is called __gettextparse, but we want it to be called PLURAL_PARSE. */ #ifndef _LIBC # define __gettextparse PLURAL_PARSE #endif #define YYLEX_PARAM &((struct parse_args *) arg)->cp #define YYPARSE_PARAM arg %} %pure_parser %expect 7 %union { unsigned long int num; enum operator op; struct expression *exp; } %{ /* Prototypes for local functions. */ static int yylex (YYSTYPE *lval, const char **pexp); static void yyerror (const char *str); /* Allocation of expressions. */ static struct expression * new_exp (int nargs, enum operator op, struct expression * const *args) { int i; struct expression *newp; /* If any of the argument could not be malloc'ed, just return NULL. */ for (i = nargs - 1; i >= 0; i--) if (args[i] == NULL) goto fail; /* Allocate a new expression. */ newp = (struct expression *) malloc (sizeof (*newp)); if (newp != NULL) { newp->nargs = nargs; newp->operation = op; for (i = nargs - 1; i >= 0; i--) newp->val.args[i] = args[i]; return newp; } fail: for (i = nargs - 1; i >= 0; i--) FREE_EXPRESSION (args[i]); return NULL; } static inline struct expression * new_exp_0 (enum operator op) { return new_exp (0, op, NULL); } static inline struct expression * new_exp_1 (enum operator op, struct expression *right) { struct expression *args[1]; args[0] = right; return new_exp (1, op, args); } static struct expression * new_exp_2 (enum operator op, struct expression *left, struct expression *right) { struct expression *args[2]; args[0] = left; args[1] = right; return new_exp (2, op, args); } static inline struct expression * new_exp_3 (enum operator op, struct expression *bexp, struct expression *tbranch, struct expression *fbranch) { struct expression *args[3]; args[0] = bexp; args[1] = tbranch; args[2] = fbranch; return new_exp (3, op, args); } %} /* This declares that all operators have the same associativity and the precedence order as in C. See [Harbison, Steele: C, A Reference Manual]. There is no unary minus and no bitwise operators. Operators with the same syntactic behaviour have been merged into a single token, to save space in the array generated by bison. */ %right '?' /* ? */ %left '|' /* || */ %left '&' /* && */ %left EQUOP2 /* == != */ %left CMPOP2 /* < > <= >= */ %left ADDOP2 /* + - */ %left MULOP2 /* * / % */ %right '!' /* ! */ %token EQUOP2 CMPOP2 ADDOP2 MULOP2 %token NUMBER %type exp %% start: exp { if ($1 == NULL) YYABORT; ((struct parse_args *) arg)->res = $1; } ; exp: exp '?' exp ':' exp { $$ = new_exp_3 (qmop, $1, $3, $5); } | exp '|' exp { $$ = new_exp_2 (lor, $1, $3); } | exp '&' exp { $$ = new_exp_2 (land, $1, $3); } | exp EQUOP2 exp { $$ = new_exp_2 ($2, $1, $3); } | exp CMPOP2 exp { $$ = new_exp_2 ($2, $1, $3); } | exp ADDOP2 exp { $$ = new_exp_2 ($2, $1, $3); } | exp MULOP2 exp { $$ = new_exp_2 ($2, $1, $3); } | '!' exp { $$ = new_exp_1 (lnot, $2); } | 'n' { $$ = new_exp_0 (var); } | NUMBER { if (($$ = new_exp_0 (num)) != NULL) $$->val.num = $1; } | '(' exp ')' { $$ = $2; } ; %% void internal_function FREE_EXPRESSION (struct expression *exp) { if (exp == NULL) return; /* Handle the recursive case. */ switch (exp->nargs) { case 3: FREE_EXPRESSION (exp->val.args[2]); /* FALLTHROUGH */ case 2: FREE_EXPRESSION (exp->val.args[1]); /* FALLTHROUGH */ case 1: FREE_EXPRESSION (exp->val.args[0]); /* FALLTHROUGH */ default: break; } free (exp); } static int yylex (YYSTYPE *lval, const char **pexp) { const char *exp = *pexp; int result; while (1) { if (exp[0] == '\0') { *pexp = exp; return YYEOF; } if (exp[0] != ' ' && exp[0] != '\t') break; ++exp; } result = *exp++; switch (result) { case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': { unsigned long int n = result - '0'; while (exp[0] >= '0' && exp[0] <= '9') { n *= 10; n += exp[0] - '0'; ++exp; } lval->num = n; result = NUMBER; } break; case '=': if (exp[0] == '=') { ++exp; lval->op = equal; result = EQUOP2; } else result = YYERRCODE; break; case '!': if (exp[0] == '=') { ++exp; lval->op = not_equal; result = EQUOP2; } break; case '&': case '|': if (exp[0] == result) ++exp; else result = YYERRCODE; break; case '<': if (exp[0] == '=') { ++exp; lval->op = less_or_equal; } else lval->op = less_than; result = CMPOP2; break; case '>': if (exp[0] == '=') { ++exp; lval->op = greater_or_equal; } else lval->op = greater_than; result = CMPOP2; break; case '*': lval->op = mult; result = MULOP2; break; case '/': lval->op = divide; result = MULOP2; break; case '%': lval->op = module; result = MULOP2; break; case '+': lval->op = plus; result = ADDOP2; break; case '-': lval->op = minus; result = ADDOP2; break; case 'n': case '?': case ':': case '(': case ')': /* Nothing, just return the character. */ break; case ';': case '\n': case '\0': /* Be safe and let the user call this function again. */ --exp; result = YYEOF; break; default: result = YYERRCODE; #if YYDEBUG != 0 --exp; #endif break; } *pexp = exp; return result; } static void yyerror (const char *str) { /* Do nothing. We don't print error messages here. */ } ltris-1.0.19/intl/localcharset.c0000664000175000017500000002435712140770050013447 00000000000000/* Determine a canonical name for the current locale's character encoding. Copyright (C) 2000-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Written by Bruno Haible . */ #ifdef HAVE_CONFIG_H # include #endif /* Specification. */ #include "localcharset.h" #if HAVE_STDDEF_H # include #endif #include #if HAVE_STRING_H # include #else # include #endif #if HAVE_STDLIB_H # include #endif #if defined _WIN32 || defined __WIN32__ # undef WIN32 /* avoid warning on mingw32 */ # define WIN32 #endif #if defined __EMX__ /* Assume EMX program runs on OS/2, even if compiled under DOS. */ # define OS2 #endif #if !defined WIN32 # if HAVE_LANGINFO_CODESET # include # else # if HAVE_SETLOCALE # include # endif # endif #elif defined WIN32 # define WIN32_LEAN_AND_MEAN # include #endif #if defined OS2 # define INCL_DOS # include #endif #if ENABLE_RELOCATABLE # include "relocatable.h" #else # define relocate(pathname) (pathname) #endif #if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __DJGPP__ /* Win32, OS/2, DOS */ # define ISSLASH(C) ((C) == '/' || (C) == '\\') #endif #ifndef DIRECTORY_SEPARATOR # define DIRECTORY_SEPARATOR '/' #endif #ifndef ISSLASH # define ISSLASH(C) ((C) == DIRECTORY_SEPARATOR) #endif #if HAVE_DECL_GETC_UNLOCKED # undef getc # define getc getc_unlocked #endif /* The following static variable is declared 'volatile' to avoid a possible multithread problem in the function get_charset_aliases. If we are running in a threaded environment, and if two threads initialize 'charset_aliases' simultaneously, both will produce the same value, and everything will be ok if the two assignments to 'charset_aliases' are atomic. But I don't know what will happen if the two assignments mix. */ #if __STDC__ != 1 # define volatile /* empty */ #endif /* Pointer to the contents of the charset.alias file, if it has already been read, else NULL. Its format is: ALIAS_1 '\0' CANONICAL_1 '\0' ... ALIAS_n '\0' CANONICAL_n '\0' '\0' */ static const char * volatile charset_aliases; /* Return a pointer to the contents of the charset.alias file. */ static const char * get_charset_aliases () { const char *cp; cp = charset_aliases; if (cp == NULL) { #if !(defined VMS || defined WIN32) FILE *fp; const char *dir = relocate (LIBDIR); const char *base = "charset.alias"; char *file_name; /* Concatenate dir and base into freshly allocated file_name. */ { size_t dir_len = strlen (dir); size_t base_len = strlen (base); int add_slash = (dir_len > 0 && !ISSLASH (dir[dir_len - 1])); file_name = (char *) malloc (dir_len + add_slash + base_len + 1); if (file_name != NULL) { memcpy (file_name, dir, dir_len); if (add_slash) file_name[dir_len] = DIRECTORY_SEPARATOR; memcpy (file_name + dir_len + add_slash, base, base_len + 1); } } if (file_name == NULL || (fp = fopen (file_name, "r")) == NULL) /* Out of memory or file not found, treat it as empty. */ cp = ""; else { /* Parse the file's contents. */ int c; char buf1[50+1]; char buf2[50+1]; char *res_ptr = NULL; size_t res_size = 0; size_t l1, l2; for (;;) { c = getc (fp); if (c == EOF) break; if (c == '\n' || c == ' ' || c == '\t') continue; if (c == '#') { /* Skip comment, to end of line. */ do c = getc (fp); while (!(c == EOF || c == '\n')); if (c == EOF) break; continue; } ungetc (c, fp); if (fscanf (fp, "%50s %50s", buf1, buf2) < 2) break; l1 = strlen (buf1); l2 = strlen (buf2); if (res_size == 0) { res_size = l1 + 1 + l2 + 1; res_ptr = (char *) malloc (res_size + 1); } else { res_size += l1 + 1 + l2 + 1; res_ptr = (char *) realloc (res_ptr, res_size + 1); } if (res_ptr == NULL) { /* Out of memory. */ res_size = 0; break; } strcpy (res_ptr + res_size - (l2 + 1) - (l1 + 1), buf1); strcpy (res_ptr + res_size - (l2 + 1), buf2); } fclose (fp); if (res_size == 0) cp = ""; else { *(res_ptr + res_size) = '\0'; cp = res_ptr; } } if (file_name != NULL) free (file_name); #else # if defined VMS /* To avoid the troubles of an extra file charset.alias_vms in the sources of many GNU packages, simply inline the aliases here. */ /* The list of encodings is taken from the OpenVMS 7.3-1 documentation "Compaq C Run-Time Library Reference Manual for OpenVMS systems" section 10.7 "Handling Different Character Sets". */ cp = "ISO8859-1" "\0" "ISO-8859-1" "\0" "ISO8859-2" "\0" "ISO-8859-2" "\0" "ISO8859-5" "\0" "ISO-8859-5" "\0" "ISO8859-7" "\0" "ISO-8859-7" "\0" "ISO8859-8" "\0" "ISO-8859-8" "\0" "ISO8859-9" "\0" "ISO-8859-9" "\0" /* Japanese */ "eucJP" "\0" "EUC-JP" "\0" "SJIS" "\0" "SHIFT_JIS" "\0" "DECKANJI" "\0" "DEC-KANJI" "\0" "SDECKANJI" "\0" "EUC-JP" "\0" /* Chinese */ "eucTW" "\0" "EUC-TW" "\0" "DECHANYU" "\0" "DEC-HANYU" "\0" "DECHANZI" "\0" "GB2312" "\0" /* Korean */ "DECKOREAN" "\0" "EUC-KR" "\0"; # endif # if defined WIN32 /* To avoid the troubles of installing a separate file in the same directory as the DLL and of retrieving the DLL's directory at runtime, simply inline the aliases here. */ cp = "CP936" "\0" "GBK" "\0" "CP1361" "\0" "JOHAB" "\0" "CP20127" "\0" "ASCII" "\0" "CP20866" "\0" "KOI8-R" "\0" "CP21866" "\0" "KOI8-RU" "\0" "CP28591" "\0" "ISO-8859-1" "\0" "CP28592" "\0" "ISO-8859-2" "\0" "CP28593" "\0" "ISO-8859-3" "\0" "CP28594" "\0" "ISO-8859-4" "\0" "CP28595" "\0" "ISO-8859-5" "\0" "CP28596" "\0" "ISO-8859-6" "\0" "CP28597" "\0" "ISO-8859-7" "\0" "CP28598" "\0" "ISO-8859-8" "\0" "CP28599" "\0" "ISO-8859-9" "\0" "CP28605" "\0" "ISO-8859-15" "\0"; # endif #endif charset_aliases = cp; } return cp; } /* Determine the current locale's character encoding, and canonicalize it into one of the canonical names listed in config.charset. The result must not be freed; it is statically allocated. If the canonical name cannot be determined, the result is a non-canonical name. */ #ifdef STATIC STATIC #endif const char * locale_charset () { const char *codeset; const char *aliases; #if !(defined WIN32 || defined OS2) # if HAVE_LANGINFO_CODESET /* Most systems support nl_langinfo (CODESET) nowadays. */ codeset = nl_langinfo (CODESET); # else /* On old systems which lack it, use setlocale or getenv. */ const char *locale = NULL; /* But most old systems don't have a complete set of locales. Some (like SunOS 4 or DJGPP) have only the C locale. Therefore we don't use setlocale here; it would return "C" when it doesn't support the locale name the user has set. */ # if HAVE_SETLOCALE && 0 locale = setlocale (LC_CTYPE, NULL); # endif if (locale == NULL || locale[0] == '\0') { locale = getenv ("LC_ALL"); if (locale == NULL || locale[0] == '\0') { locale = getenv ("LC_CTYPE"); if (locale == NULL || locale[0] == '\0') locale = getenv ("LANG"); } } /* On some old systems, one used to set locale = "iso8859_1". On others, you set it to "language_COUNTRY.charset". In any case, we resolve it through the charset.alias file. */ codeset = locale; # endif #elif defined WIN32 static char buf[2 + 10 + 1]; /* Woe32 has a function returning the locale's codepage as a number. */ sprintf (buf, "CP%u", GetACP ()); codeset = buf; #elif defined OS2 const char *locale; static char buf[2 + 10 + 1]; ULONG cp[3]; ULONG cplen; /* Allow user to override the codeset, as set in the operating system, with standard language environment variables. */ locale = getenv ("LC_ALL"); if (locale == NULL || locale[0] == '\0') { locale = getenv ("LC_CTYPE"); if (locale == NULL || locale[0] == '\0') locale = getenv ("LANG"); } if (locale != NULL && locale[0] != '\0') { /* If the locale name contains an encoding after the dot, return it. */ const char *dot = strchr (locale, '.'); if (dot != NULL) { const char *modifier; dot++; /* Look for the possible @... trailer and remove it, if any. */ modifier = strchr (dot, '@'); if (modifier == NULL) return dot; if (modifier - dot < sizeof (buf)) { memcpy (buf, dot, modifier - dot); buf [modifier - dot] = '\0'; return buf; } } /* Resolve through the charset.alias file. */ codeset = locale; } else { /* OS/2 has a function returning the locale's codepage as a number. */ if (DosQueryCp (sizeof (cp), cp, &cplen)) codeset = ""; else { sprintf (buf, "CP%u", cp[0]); codeset = buf; } } #endif if (codeset == NULL) /* The canonical name cannot be determined. */ codeset = ""; /* Resolve alias. */ for (aliases = get_charset_aliases (); *aliases != '\0'; aliases += strlen (aliases) + 1, aliases += strlen (aliases) + 1) if (strcmp (codeset, aliases) == 0 || (aliases[0] == '*' && aliases[1] == '\0')) { codeset = aliases + strlen (aliases) + 1; break; } /* Don't return an empty string. GNU libc and GNU libiconv interpret the empty string as denoting "the locale's character encoding", thus GNU libiconv would call this function a second time. */ if (codeset[0] == '\0') codeset = "ASCII"; return codeset; } ltris-1.0.19/intl/l10nflist.c0000664000175000017500000002733012140770050012611 00000000000000/* Copyright (C) 1995-1999, 2000-2003 Free Software Foundation, Inc. Contributed by Ulrich Drepper , 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Tell glibc's to provide a prototype for stpcpy(). This must come before because may include , and once has been included, it's too late. */ #ifndef _GNU_SOURCE # define _GNU_SOURCE 1 #endif #ifdef HAVE_CONFIG_H # include #endif #include #if defined _LIBC || defined HAVE_ARGZ_H # include #endif #include #include #include #include "loadinfo.h" /* On some strange systems still no definition of NULL is found. Sigh! */ #ifndef NULL # if defined __STDC__ && __STDC__ # define NULL ((void *) 0) # else # define NULL 0 # endif #endif /* @@ end of prolog @@ */ #ifdef _LIBC /* Rename the non ANSI C functions. This is required by the standard because some ANSI C functions will require linking with this object file and the name space must not be polluted. */ # ifndef stpcpy # define stpcpy(dest, src) __stpcpy(dest, src) # endif #else # ifndef HAVE_STPCPY static char *stpcpy (char *dest, const char *src); # endif #endif /* Pathname support. ISSLASH(C) tests whether C is a directory separator character. IS_ABSOLUTE_PATH(P) tests whether P is an absolute path. If it is not, it may be concatenated to a directory pathname. */ #if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __DJGPP__ /* Win32, OS/2, DOS */ # define ISSLASH(C) ((C) == '/' || (C) == '\\') # define HAS_DEVICE(P) \ ((((P)[0] >= 'A' && (P)[0] <= 'Z') || ((P)[0] >= 'a' && (P)[0] <= 'z')) \ && (P)[1] == ':') # define IS_ABSOLUTE_PATH(P) (ISSLASH ((P)[0]) || HAS_DEVICE (P)) #else /* Unix */ # define ISSLASH(C) ((C) == '/') # define IS_ABSOLUTE_PATH(P) ISSLASH ((P)[0]) #endif /* Define function which are usually not available. */ #if !defined _LIBC && !defined HAVE___ARGZ_COUNT /* Returns the number of strings in ARGZ. */ static size_t argz_count__ (const char *argz, size_t len) { size_t count = 0; while (len > 0) { size_t part_len = strlen (argz); argz += part_len + 1; len -= part_len + 1; count++; } return count; } # undef __argz_count # define __argz_count(argz, len) argz_count__ (argz, len) #else # ifdef _LIBC # define __argz_count(argz, len) INTUSE(__argz_count) (argz, len) # endif #endif /* !_LIBC && !HAVE___ARGZ_COUNT */ #if !defined _LIBC && !defined HAVE___ARGZ_STRINGIFY /* Make '\0' separated arg vector ARGZ printable by converting all the '\0's except the last into the character SEP. */ static void argz_stringify__ (char *argz, size_t len, int sep) { while (len > 0) { size_t part_len = strlen (argz); argz += part_len; len -= part_len + 1; if (len > 0) *argz++ = sep; } } # undef __argz_stringify # define __argz_stringify(argz, len, sep) argz_stringify__ (argz, len, sep) #else # ifdef _LIBC # define __argz_stringify(argz, len, sep) \ INTUSE(__argz_stringify) (argz, len, sep) # endif #endif /* !_LIBC && !HAVE___ARGZ_STRINGIFY */ #if !defined _LIBC && !defined HAVE___ARGZ_NEXT static char * argz_next__ (char *argz, size_t argz_len, const char *entry) { if (entry) { if (entry < argz + argz_len) entry = strchr (entry, '\0') + 1; return entry >= argz + argz_len ? NULL : (char *) entry; } else if (argz_len > 0) return argz; else return 0; } # undef __argz_next # define __argz_next(argz, len, entry) argz_next__ (argz, len, entry) #endif /* !_LIBC && !HAVE___ARGZ_NEXT */ /* Return number of bits set in X. */ static inline int pop (int x) { /* We assume that no more than 16 bits are used. */ x = ((x & ~0x5555) >> 1) + (x & 0x5555); x = ((x & ~0x3333) >> 2) + (x & 0x3333); x = ((x >> 4) + x) & 0x0f0f; x = ((x >> 8) + x) & 0xff; return x; } struct loaded_l10nfile * _nl_make_l10nflist (struct loaded_l10nfile **l10nfile_list, const char *dirlist, size_t dirlist_len, int mask, const char *language, const char *territory, const char *codeset, const char *normalized_codeset, const char *modifier, const char *special, const char *sponsor, const char *revision, const char *filename, int do_allocate) { char *abs_filename; struct loaded_l10nfile **lastp; struct loaded_l10nfile *retval; char *cp; size_t dirlist_count; size_t entries; int cnt; /* If LANGUAGE contains an absolute directory specification, we ignore DIRLIST. */ if (IS_ABSOLUTE_PATH (language)) dirlist_len = 0; /* Allocate room for the full file name. */ abs_filename = (char *) malloc (dirlist_len + strlen (language) + ((mask & TERRITORY) != 0 ? strlen (territory) + 1 : 0) + ((mask & XPG_CODESET) != 0 ? strlen (codeset) + 1 : 0) + ((mask & XPG_NORM_CODESET) != 0 ? strlen (normalized_codeset) + 1 : 0) + (((mask & XPG_MODIFIER) != 0 || (mask & CEN_AUDIENCE) != 0) ? strlen (modifier) + 1 : 0) + ((mask & CEN_SPECIAL) != 0 ? strlen (special) + 1 : 0) + (((mask & CEN_SPONSOR) != 0 || (mask & CEN_REVISION) != 0) ? (1 + ((mask & CEN_SPONSOR) != 0 ? strlen (sponsor) : 0) + ((mask & CEN_REVISION) != 0 ? strlen (revision) + 1 : 0)) : 0) + 1 + strlen (filename) + 1); if (abs_filename == NULL) return NULL; /* Construct file name. */ cp = abs_filename; if (dirlist_len > 0) { memcpy (cp, dirlist, dirlist_len); __argz_stringify (cp, dirlist_len, PATH_SEPARATOR); cp += dirlist_len; cp[-1] = '/'; } cp = stpcpy (cp, language); if ((mask & TERRITORY) != 0) { *cp++ = '_'; cp = stpcpy (cp, territory); } if ((mask & XPG_CODESET) != 0) { *cp++ = '.'; cp = stpcpy (cp, codeset); } if ((mask & XPG_NORM_CODESET) != 0) { *cp++ = '.'; cp = stpcpy (cp, normalized_codeset); } if ((mask & (XPG_MODIFIER | CEN_AUDIENCE)) != 0) { /* This component can be part of both syntaces but has different leading characters. For CEN we use `+', else `@'. */ *cp++ = (mask & CEN_AUDIENCE) != 0 ? '+' : '@'; cp = stpcpy (cp, modifier); } if ((mask & CEN_SPECIAL) != 0) { *cp++ = '+'; cp = stpcpy (cp, special); } if ((mask & (CEN_SPONSOR | CEN_REVISION)) != 0) { *cp++ = ','; if ((mask & CEN_SPONSOR) != 0) cp = stpcpy (cp, sponsor); if ((mask & CEN_REVISION) != 0) { *cp++ = '_'; cp = stpcpy (cp, revision); } } *cp++ = '/'; stpcpy (cp, filename); /* Look in list of already loaded domains whether it is already available. */ lastp = l10nfile_list; for (retval = *l10nfile_list; retval != NULL; retval = retval->next) if (retval->filename != NULL) { int compare = strcmp (retval->filename, abs_filename); if (compare == 0) /* We found it! */ break; if (compare < 0) { /* It's not in the list. */ retval = NULL; break; } lastp = &retval->next; } if (retval != NULL || do_allocate == 0) { free (abs_filename); return retval; } dirlist_count = (dirlist_len > 0 ? __argz_count (dirlist, dirlist_len) : 1); /* Allocate a new loaded_l10nfile. */ retval = (struct loaded_l10nfile *) malloc (sizeof (*retval) + (((dirlist_count << pop (mask)) + (dirlist_count > 1 ? 1 : 0)) * sizeof (struct loaded_l10nfile *))); if (retval == NULL) return NULL; retval->filename = abs_filename; /* We set retval->data to NULL here; it is filled in later. Setting retval->decided to 1 here means that retval does not correspond to a real file (dirlist_count > 1) or is not worth looking up (if an unnormalized codeset was specified). */ retval->decided = (dirlist_count > 1 || ((mask & XPG_CODESET) != 0 && (mask & XPG_NORM_CODESET) != 0)); retval->data = NULL; retval->next = *lastp; *lastp = retval; entries = 0; /* Recurse to fill the inheritance list of RETVAL. If the DIRLIST is a real list (i.e. DIRLIST_COUNT > 1), the RETVAL entry does not correspond to a real file; retval->filename contains colons. In this case we loop across all elements of DIRLIST and across all bit patterns dominated by MASK. If the DIRLIST is a single directory or entirely redundant (i.e. DIRLIST_COUNT == 1), we loop across all bit patterns dominated by MASK, excluding MASK itself. In either case, we loop down from MASK to 0. This has the effect that the extra bits in the locale name are dropped in this order: first the modifier, then the territory, then the codeset, then the normalized_codeset. */ for (cnt = dirlist_count > 1 ? mask : mask - 1; cnt >= 0; --cnt) if ((cnt & ~mask) == 0 && ((cnt & CEN_SPECIFIC) == 0 || (cnt & XPG_SPECIFIC) == 0) && ((cnt & XPG_CODESET) == 0 || (cnt & XPG_NORM_CODESET) == 0)) { if (dirlist_count > 1) { /* Iterate over all elements of the DIRLIST. */ char *dir = NULL; while ((dir = __argz_next ((char *) dirlist, dirlist_len, dir)) != NULL) retval->successor[entries++] = _nl_make_l10nflist (l10nfile_list, dir, strlen (dir) + 1, cnt, language, territory, codeset, normalized_codeset, modifier, special, sponsor, revision, filename, 1); } else retval->successor[entries++] = _nl_make_l10nflist (l10nfile_list, dirlist, dirlist_len, cnt, language, territory, codeset, normalized_codeset, modifier, special, sponsor, revision, filename, 1); } retval->successor[entries] = NULL; return retval; } /* Normalize codeset name. There is no standard for the codeset names. Normalization allows the user to use any of the common names. The return value is dynamically allocated and has to be freed by the caller. */ const char * _nl_normalize_codeset (const char *codeset, size_t name_len) { int len = 0; int only_digit = 1; char *retval; char *wp; size_t cnt; for (cnt = 0; cnt < name_len; ++cnt) if (isalnum ((unsigned char) codeset[cnt])) { ++len; if (isalpha ((unsigned char) codeset[cnt])) only_digit = 0; } retval = (char *) malloc ((only_digit ? 3 : 0) + len + 1); if (retval != NULL) { if (only_digit) wp = stpcpy (retval, "iso"); else wp = retval; for (cnt = 0; cnt < name_len; ++cnt) if (isalpha ((unsigned char) codeset[cnt])) *wp++ = tolower ((unsigned char) codeset[cnt]); else if (isdigit ((unsigned char) codeset[cnt])) *wp++ = codeset[cnt]; *wp = '\0'; } return (const char *) retval; } /* @@ begin of epilog @@ */ /* We don't want libintl.a to depend on any other library. So we avoid the non-standard function stpcpy. In GNU C Library this function is available, though. Also allow the symbol HAVE_STPCPY to be defined. */ #if !_LIBC && !HAVE_STPCPY static char * stpcpy (char *dest, const char *src) { while ((*dest++ = *src++) != '\0') /* Do nothing. */ ; return dest - 1; } #endif ltris-1.0.19/intl/bindtextdom.c0000664000175000017500000002312012140770050013307 00000000000000/* Implementation of the bindtextdomain(3) function Copyright (C) 1995-1998, 2000-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include #ifdef _LIBC # include #else # include "libgnuintl.h" #endif #include "gettextP.h" #ifdef _LIBC /* We have to handle multi-threaded applications. */ # include #else /* Provide dummy implementation if this is outside glibc. */ # define __libc_rwlock_define(CLASS, NAME) # define __libc_rwlock_wrlock(NAME) # define __libc_rwlock_unlock(NAME) #endif /* The internal variables in the standalone libintl.a must have different names than the internal variables in GNU libc, otherwise programs using libintl.a cannot be linked statically. */ #if !defined _LIBC # define _nl_default_dirname libintl_nl_default_dirname # define _nl_domain_bindings libintl_nl_domain_bindings #endif /* Some compilers, like SunOS4 cc, don't have offsetof in . */ #ifndef offsetof # define offsetof(type,ident) ((size_t)&(((type*)0)->ident)) #endif /* @@ end of prolog @@ */ /* Contains the default location of the message catalogs. */ extern const char _nl_default_dirname[]; #ifdef _LIBC extern const char _nl_default_dirname_internal[] attribute_hidden; #else # define INTUSE(name) name #endif /* List with bindings of specific domains. */ extern struct binding *_nl_domain_bindings; /* Lock variable to protect the global data in the gettext implementation. */ __libc_rwlock_define (extern, _nl_state_lock attribute_hidden) /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define BINDTEXTDOMAIN __bindtextdomain # define BIND_TEXTDOMAIN_CODESET __bind_textdomain_codeset # ifndef strdup # define strdup(str) __strdup (str) # endif #else # define BINDTEXTDOMAIN libintl_bindtextdomain # define BIND_TEXTDOMAIN_CODESET libintl_bind_textdomain_codeset #endif /* Specifies the directory name *DIRNAMEP and the output codeset *CODESETP to be used for the DOMAINNAME message catalog. If *DIRNAMEP or *CODESETP is NULL, the corresponding attribute is not modified, only the current value is returned. If DIRNAMEP or CODESETP is NULL, the corresponding attribute is neither modified nor returned. */ static void set_binding_values (const char *domainname, const char **dirnamep, const char **codesetp) { struct binding *binding; int modified; /* Some sanity checks. */ if (domainname == NULL || domainname[0] == '\0') { if (dirnamep) *dirnamep = NULL; if (codesetp) *codesetp = NULL; return; } __libc_rwlock_wrlock (_nl_state_lock); modified = 0; for (binding = _nl_domain_bindings; binding != NULL; binding = binding->next) { int compare = strcmp (domainname, binding->domainname); if (compare == 0) /* We found it! */ break; if (compare < 0) { /* It is not in the list. */ binding = NULL; break; } } if (binding != NULL) { if (dirnamep) { const char *dirname = *dirnamep; if (dirname == NULL) /* The current binding has be to returned. */ *dirnamep = binding->dirname; else { /* The domain is already bound. If the new value and the old one are equal we simply do nothing. Otherwise replace the old binding. */ char *result = binding->dirname; if (strcmp (dirname, result) != 0) { if (strcmp (dirname, INTUSE(_nl_default_dirname)) == 0) result = (char *) INTUSE(_nl_default_dirname); else { #if defined _LIBC || defined HAVE_STRDUP result = strdup (dirname); #else size_t len = strlen (dirname) + 1; result = (char *) malloc (len); if (__builtin_expect (result != NULL, 1)) memcpy (result, dirname, len); #endif } if (__builtin_expect (result != NULL, 1)) { if (binding->dirname != INTUSE(_nl_default_dirname)) free (binding->dirname); binding->dirname = result; modified = 1; } } *dirnamep = result; } } if (codesetp) { const char *codeset = *codesetp; if (codeset == NULL) /* The current binding has be to returned. */ *codesetp = binding->codeset; else { /* The domain is already bound. If the new value and the old one are equal we simply do nothing. Otherwise replace the old binding. */ char *result = binding->codeset; if (result == NULL || strcmp (codeset, result) != 0) { #if defined _LIBC || defined HAVE_STRDUP result = strdup (codeset); #else size_t len = strlen (codeset) + 1; result = (char *) malloc (len); if (__builtin_expect (result != NULL, 1)) memcpy (result, codeset, len); #endif if (__builtin_expect (result != NULL, 1)) { if (binding->codeset != NULL) free (binding->codeset); binding->codeset = result; binding->codeset_cntr++; modified = 1; } } *codesetp = result; } } } else if ((dirnamep == NULL || *dirnamep == NULL) && (codesetp == NULL || *codesetp == NULL)) { /* Simply return the default values. */ if (dirnamep) *dirnamep = INTUSE(_nl_default_dirname); if (codesetp) *codesetp = NULL; } else { /* We have to create a new binding. */ size_t len = strlen (domainname) + 1; struct binding *new_binding = (struct binding *) malloc (offsetof (struct binding, domainname) + len); if (__builtin_expect (new_binding == NULL, 0)) goto failed; memcpy (new_binding->domainname, domainname, len); if (dirnamep) { const char *dirname = *dirnamep; if (dirname == NULL) /* The default value. */ dirname = INTUSE(_nl_default_dirname); else { if (strcmp (dirname, INTUSE(_nl_default_dirname)) == 0) dirname = INTUSE(_nl_default_dirname); else { char *result; #if defined _LIBC || defined HAVE_STRDUP result = strdup (dirname); if (__builtin_expect (result == NULL, 0)) goto failed_dirname; #else size_t len = strlen (dirname) + 1; result = (char *) malloc (len); if (__builtin_expect (result == NULL, 0)) goto failed_dirname; memcpy (result, dirname, len); #endif dirname = result; } } *dirnamep = dirname; new_binding->dirname = (char *) dirname; } else /* The default value. */ new_binding->dirname = (char *) INTUSE(_nl_default_dirname); new_binding->codeset_cntr = 0; if (codesetp) { const char *codeset = *codesetp; if (codeset != NULL) { char *result; #if defined _LIBC || defined HAVE_STRDUP result = strdup (codeset); if (__builtin_expect (result == NULL, 0)) goto failed_codeset; #else size_t len = strlen (codeset) + 1; result = (char *) malloc (len); if (__builtin_expect (result == NULL, 0)) goto failed_codeset; memcpy (result, codeset, len); #endif codeset = result; new_binding->codeset_cntr++; } *codesetp = codeset; new_binding->codeset = (char *) codeset; } else new_binding->codeset = NULL; /* Now enqueue it. */ if (_nl_domain_bindings == NULL || strcmp (domainname, _nl_domain_bindings->domainname) < 0) { new_binding->next = _nl_domain_bindings; _nl_domain_bindings = new_binding; } else { binding = _nl_domain_bindings; while (binding->next != NULL && strcmp (domainname, binding->next->domainname) > 0) binding = binding->next; new_binding->next = binding->next; binding->next = new_binding; } modified = 1; /* Here we deal with memory allocation failures. */ if (0) { failed_codeset: if (new_binding->dirname != INTUSE(_nl_default_dirname)) free (new_binding->dirname); failed_dirname: free (new_binding); failed: if (dirnamep) *dirnamep = NULL; if (codesetp) *codesetp = NULL; } } /* If we modified any binding, we flush the caches. */ if (modified) ++_nl_msg_cat_cntr; __libc_rwlock_unlock (_nl_state_lock); } /* Specify that the DOMAINNAME message catalog will be found in DIRNAME rather than in the system locale data base. */ char * BINDTEXTDOMAIN (const char *domainname, const char *dirname) { set_binding_values (domainname, &dirname, NULL); return (char *) dirname; } /* Specify the character encoding in which the messages from the DOMAINNAME message catalog will be returned. */ char * BIND_TEXTDOMAIN_CODESET (const char *domainname, const char *codeset) { set_binding_values (domainname, NULL, &codeset); return (char *) codeset; } #ifdef _LIBC /* Aliases for function names in GNU C Library. */ weak_alias (__bindtextdomain, bindtextdomain); weak_alias (__bind_textdomain_codeset, bind_textdomain_codeset); #endif ltris-1.0.19/intl/os2compat.c0000664000175000017500000000550312140770050012702 00000000000000/* OS/2 compatibility functions. Copyright (C) 2001-2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #define OS2_AWARE #ifdef HAVE_CONFIG_H #include #endif #include #include #include /* A version of getenv() that works from DLLs */ extern unsigned long DosScanEnv (const unsigned char *pszName, unsigned char **ppszValue); char * _nl_getenv (const char *name) { unsigned char *value; if (DosScanEnv (name, &value)) return NULL; else return value; } /* A fixed size buffer. */ char libintl_nl_default_dirname[MAXPATHLEN+1]; char *_nlos2_libdir = NULL; char *_nlos2_localealiaspath = NULL; char *_nlos2_localedir = NULL; static __attribute__((constructor)) void nlos2_initialize () { char *root = getenv ("UNIXROOT"); char *gnulocaledir = getenv ("GNULOCALEDIR"); _nlos2_libdir = gnulocaledir; if (!_nlos2_libdir) { if (root) { size_t sl = strlen (root); _nlos2_libdir = (char *) malloc (sl + strlen (LIBDIR) + 1); memcpy (_nlos2_libdir, root, sl); memcpy (_nlos2_libdir + sl, LIBDIR, strlen (LIBDIR) + 1); } else _nlos2_libdir = LIBDIR; } _nlos2_localealiaspath = gnulocaledir; if (!_nlos2_localealiaspath) { if (root) { size_t sl = strlen (root); _nlos2_localealiaspath = (char *) malloc (sl + strlen (LOCALE_ALIAS_PATH) + 1); memcpy (_nlos2_localealiaspath, root, sl); memcpy (_nlos2_localealiaspath + sl, LOCALE_ALIAS_PATH, strlen (LOCALE_ALIAS_PATH) + 1); } else _nlos2_localealiaspath = LOCALE_ALIAS_PATH; } _nlos2_localedir = gnulocaledir; if (!_nlos2_localedir) { if (root) { size_t sl = strlen (root); _nlos2_localedir = (char *) malloc (sl + strlen (LOCALEDIR) + 1); memcpy (_nlos2_localedir, root, sl); memcpy (_nlos2_localedir + sl, LOCALEDIR, strlen (LOCALEDIR) + 1); } else _nlos2_localedir = LOCALEDIR; } if (strlen (_nlos2_localedir) <= MAXPATHLEN) strcpy (libintl_nl_default_dirname, _nlos2_localedir); } ltris-1.0.19/intl/explodename.c0000664000175000017500000001064312140770050013275 00000000000000/* Copyright (C) 1995-1998, 2000-2001, 2003 Free Software Foundation, Inc. Contributed by Ulrich Drepper , 1995. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #include #include #include #include "loadinfo.h" /* On some strange systems still no definition of NULL is found. Sigh! */ #ifndef NULL # if defined __STDC__ && __STDC__ # define NULL ((void *) 0) # else # define NULL 0 # endif #endif /* @@ end of prolog @@ */ char * _nl_find_language (const char *name) { while (name[0] != '\0' && name[0] != '_' && name[0] != '@' && name[0] != '+' && name[0] != ',') ++name; return (char *) name; } int _nl_explode_name (char *name, const char **language, const char **modifier, const char **territory, const char **codeset, const char **normalized_codeset, const char **special, const char **sponsor, const char **revision) { enum { undecided, xpg, cen } syntax; char *cp; int mask; *modifier = NULL; *territory = NULL; *codeset = NULL; *normalized_codeset = NULL; *special = NULL; *sponsor = NULL; *revision = NULL; /* Now we determine the single parts of the locale name. First look for the language. Termination symbols are `_' and `@' if we use XPG4 style, and `_', `+', and `,' if we use CEN syntax. */ mask = 0; syntax = undecided; *language = cp = name; cp = _nl_find_language (*language); if (*language == cp) /* This does not make sense: language has to be specified. Use this entry as it is without exploding. Perhaps it is an alias. */ cp = strchr (*language, '\0'); else if (cp[0] == '_') { /* Next is the territory. */ cp[0] = '\0'; *territory = ++cp; while (cp[0] != '\0' && cp[0] != '.' && cp[0] != '@' && cp[0] != '+' && cp[0] != ',' && cp[0] != '_') ++cp; mask |= TERRITORY; if (cp[0] == '.') { /* Next is the codeset. */ syntax = xpg; cp[0] = '\0'; *codeset = ++cp; while (cp[0] != '\0' && cp[0] != '@') ++cp; mask |= XPG_CODESET; if (*codeset != cp && (*codeset)[0] != '\0') { *normalized_codeset = _nl_normalize_codeset (*codeset, cp - *codeset); if (strcmp (*codeset, *normalized_codeset) == 0) free ((char *) *normalized_codeset); else mask |= XPG_NORM_CODESET; } } } if (cp[0] == '@' || (syntax != xpg && cp[0] == '+')) { /* Next is the modifier. */ syntax = cp[0] == '@' ? xpg : cen; cp[0] = '\0'; *modifier = ++cp; while (syntax == cen && cp[0] != '\0' && cp[0] != '+' && cp[0] != ',' && cp[0] != '_') ++cp; mask |= XPG_MODIFIER | CEN_AUDIENCE; } if (syntax != xpg && (cp[0] == '+' || cp[0] == ',' || cp[0] == '_')) { syntax = cen; if (cp[0] == '+') { /* Next is special application (CEN syntax). */ cp[0] = '\0'; *special = ++cp; while (cp[0] != '\0' && cp[0] != ',' && cp[0] != '_') ++cp; mask |= CEN_SPECIAL; } if (cp[0] == ',') { /* Next is sponsor (CEN syntax). */ cp[0] = '\0'; *sponsor = ++cp; while (cp[0] != '\0' && cp[0] != '_') ++cp; mask |= CEN_SPONSOR; } if (cp[0] == '_') { /* Next is revision (CEN syntax). */ cp[0] = '\0'; *revision = ++cp; mask |= CEN_REVISION; } } /* For CEN syntax values it might be important to have the separator character in the file name, not for XPG syntax. */ if (syntax == xpg) { if (*territory != NULL && (*territory)[0] == '\0') mask &= ~TERRITORY; if (*codeset != NULL && (*codeset)[0] == '\0') mask &= ~XPG_CODESET; if (*modifier != NULL && (*modifier)[0] == '\0') mask &= ~XPG_MODIFIER; } return mask; } ltris-1.0.19/intl/locale.alias0000664000175000017500000000512212140770050013076 00000000000000# Locale name alias data base. # Copyright (C) 1996-2001,2003 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Library General Public License as published # by the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Library General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, # USA. # The format of this file is the same as for the corresponding file of # the X Window System, which normally can be found in # /usr/lib/X11/locale/locale.alias # A single line contains two fields: an alias and a substitution value. # All entries are case independent. # Note: This file is far from being complete. If you have a value for # your own site which you think might be useful for others too, share # it with the rest of us. Send it using the `glibcbug' script to # bugs@gnu.org. # Packages using this file: bokmal nb_NO.ISO-8859-1 bokmål nb_NO.ISO-8859-1 catalan ca_ES.ISO-8859-1 croatian hr_HR.ISO-8859-2 czech cs_CZ.ISO-8859-2 danish da_DK.ISO-8859-1 dansk da_DK.ISO-8859-1 deutsch de_DE.ISO-8859-1 dutch nl_NL.ISO-8859-1 eesti et_EE.ISO-8859-1 estonian et_EE.ISO-8859-1 finnish fi_FI.ISO-8859-1 français fr_FR.ISO-8859-1 french fr_FR.ISO-8859-1 galego gl_ES.ISO-8859-1 galician gl_ES.ISO-8859-1 german de_DE.ISO-8859-1 greek el_GR.ISO-8859-7 hebrew he_IL.ISO-8859-8 hrvatski hr_HR.ISO-8859-2 hungarian hu_HU.ISO-8859-2 icelandic is_IS.ISO-8859-1 italian it_IT.ISO-8859-1 japanese ja_JP.eucJP japanese.euc ja_JP.eucJP ja_JP ja_JP.eucJP ja_JP.ujis ja_JP.eucJP japanese.sjis ja_JP.SJIS korean ko_KR.eucKR korean.euc ko_KR.eucKR ko_KR ko_KR.eucKR lithuanian lt_LT.ISO-8859-13 no_NO nb_NO.ISO-8859-1 no_NO.ISO-8859-1 nb_NO.ISO-8859-1 norwegian nb_NO.ISO-8859-1 nynorsk nn_NO.ISO-8859-1 polish pl_PL.ISO-8859-2 portuguese pt_PT.ISO-8859-1 romanian ro_RO.ISO-8859-2 russian ru_RU.ISO-8859-5 slovak sk_SK.ISO-8859-2 slovene sl_SI.ISO-8859-2 slovenian sl_SI.ISO-8859-2 spanish es_ES.ISO-8859-1 swedish sv_SE.ISO-8859-1 thai th_TH.TIS-620 turkish tr_TR.ISO-8859-9 ltris-1.0.19/intl/localealias.c0000664000175000017500000002334012140770050013243 00000000000000/* Handle aliases for locale names. Copyright (C) 1995-1999, 2000-2001, 2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Tell glibc's to provide a prototype for mempcpy(). This must come before because may include , and once has been included, it's too late. */ #ifndef _GNU_SOURCE # define _GNU_SOURCE 1 #endif #ifdef HAVE_CONFIG_H # include #endif #include #include #if defined _LIBC || defined HAVE___FSETLOCKING # include #endif #include #ifdef __GNUC__ # undef alloca # define alloca __builtin_alloca # define HAVE_ALLOCA 1 #else # ifdef _MSC_VER # include # define alloca _alloca # else # if defined HAVE_ALLOCA_H || defined _LIBC # include # else # ifdef _AIX #pragma alloca # else # ifndef alloca char *alloca (); # endif # endif # endif # endif #endif #include #include #include "gettextP.h" #if ENABLE_RELOCATABLE # include "relocatable.h" #else # define relocate(pathname) (pathname) #endif /* @@ end of prolog @@ */ #ifdef _LIBC /* Rename the non ANSI C functions. This is required by the standard because some ANSI C functions will require linking with this object file and the name space must not be polluted. */ # define strcasecmp __strcasecmp # ifndef mempcpy # define mempcpy __mempcpy # endif # define HAVE_MEMPCPY 1 # define HAVE___FSETLOCKING 1 /* We need locking here since we can be called from different places. */ # include __libc_lock_define_initialized (static, lock); #endif #ifndef internal_function # define internal_function #endif /* Some optimizations for glibc. */ #ifdef _LIBC # define FEOF(fp) feof_unlocked (fp) # define FGETS(buf, n, fp) fgets_unlocked (buf, n, fp) #else # define FEOF(fp) feof (fp) # define FGETS(buf, n, fp) fgets (buf, n, fp) #endif /* For those losing systems which don't have `alloca' we have to add some additional code emulating it. */ #ifdef HAVE_ALLOCA # define freea(p) /* nothing */ #else # define alloca(n) malloc (n) # define freea(p) free (p) #endif #if defined _LIBC_REENTRANT || HAVE_DECL_FGETS_UNLOCKED # undef fgets # define fgets(buf, len, s) fgets_unlocked (buf, len, s) #endif #if defined _LIBC_REENTRANT || HAVE_DECL_FEOF_UNLOCKED # undef feof # define feof(s) feof_unlocked (s) #endif struct alias_map { const char *alias; const char *value; }; #ifndef _LIBC # define libc_freeres_ptr(decl) decl #endif libc_freeres_ptr (static char *string_space); static size_t string_space_act; static size_t string_space_max; libc_freeres_ptr (static struct alias_map *map); static size_t nmap; static size_t maxmap; /* Prototypes for local functions. */ static size_t read_alias_file (const char *fname, int fname_len) internal_function; static int extend_alias_table (void); static int alias_compare (const struct alias_map *map1, const struct alias_map *map2); const char * _nl_expand_alias (const char *name) { static const char *locale_alias_path; struct alias_map *retval; const char *result = NULL; size_t added; #ifdef _LIBC __libc_lock_lock (lock); #endif if (locale_alias_path == NULL) locale_alias_path = LOCALE_ALIAS_PATH; do { struct alias_map item; item.alias = name; if (nmap > 0) retval = (struct alias_map *) bsearch (&item, map, nmap, sizeof (struct alias_map), (int (*) (const void *, const void *) ) alias_compare); else retval = NULL; /* We really found an alias. Return the value. */ if (retval != NULL) { result = retval->value; break; } /* Perhaps we can find another alias file. */ added = 0; while (added == 0 && locale_alias_path[0] != '\0') { const char *start; while (locale_alias_path[0] == PATH_SEPARATOR) ++locale_alias_path; start = locale_alias_path; while (locale_alias_path[0] != '\0' && locale_alias_path[0] != PATH_SEPARATOR) ++locale_alias_path; if (start < locale_alias_path) added = read_alias_file (start, locale_alias_path - start); } } while (added != 0); #ifdef _LIBC __libc_lock_unlock (lock); #endif return result; } static size_t internal_function read_alias_file (const char *fname, int fname_len) { FILE *fp; char *full_fname; size_t added; static const char aliasfile[] = "/locale.alias"; full_fname = (char *) alloca (fname_len + sizeof aliasfile); #ifdef HAVE_MEMPCPY mempcpy (mempcpy (full_fname, fname, fname_len), aliasfile, sizeof aliasfile); #else memcpy (full_fname, fname, fname_len); memcpy (&full_fname[fname_len], aliasfile, sizeof aliasfile); #endif fp = fopen (relocate (full_fname), "r"); freea (full_fname); if (fp == NULL) return 0; #ifdef HAVE___FSETLOCKING /* No threads present. */ __fsetlocking (fp, FSETLOCKING_BYCALLER); #endif added = 0; while (!FEOF (fp)) { /* It is a reasonable approach to use a fix buffer here because a) we are only interested in the first two fields b) these fields must be usable as file names and so must not be that long We avoid a multi-kilobyte buffer here since this would use up stack space which we might not have if the program ran out of memory. */ char buf[400]; char *alias; char *value; char *cp; if (FGETS (buf, sizeof buf, fp) == NULL) /* EOF reached. */ break; cp = buf; /* Ignore leading white space. */ while (isspace ((unsigned char) cp[0])) ++cp; /* A leading '#' signals a comment line. */ if (cp[0] != '\0' && cp[0] != '#') { alias = cp++; while (cp[0] != '\0' && !isspace ((unsigned char) cp[0])) ++cp; /* Terminate alias name. */ if (cp[0] != '\0') *cp++ = '\0'; /* Now look for the beginning of the value. */ while (isspace ((unsigned char) cp[0])) ++cp; if (cp[0] != '\0') { size_t alias_len; size_t value_len; value = cp++; while (cp[0] != '\0' && !isspace ((unsigned char) cp[0])) ++cp; /* Terminate value. */ if (cp[0] == '\n') { /* This has to be done to make the following test for the end of line possible. We are looking for the terminating '\n' which do not overwrite here. */ *cp++ = '\0'; *cp = '\n'; } else if (cp[0] != '\0') *cp++ = '\0'; if (nmap >= maxmap) if (__builtin_expect (extend_alias_table (), 0)) return added; alias_len = strlen (alias) + 1; value_len = strlen (value) + 1; if (string_space_act + alias_len + value_len > string_space_max) { /* Increase size of memory pool. */ size_t new_size = (string_space_max + (alias_len + value_len > 1024 ? alias_len + value_len : 1024)); char *new_pool = (char *) realloc (string_space, new_size); if (new_pool == NULL) return added; if (__builtin_expect (string_space != new_pool, 0)) { size_t i; for (i = 0; i < nmap; i++) { map[i].alias += new_pool - string_space; map[i].value += new_pool - string_space; } } string_space = new_pool; string_space_max = new_size; } map[nmap].alias = memcpy (&string_space[string_space_act], alias, alias_len); string_space_act += alias_len; map[nmap].value = memcpy (&string_space[string_space_act], value, value_len); string_space_act += value_len; ++nmap; ++added; } } /* Possibly not the whole line fits into the buffer. Ignore the rest of the line. */ while (strchr (buf, '\n') == NULL) if (FGETS (buf, sizeof buf, fp) == NULL) /* Make sure the inner loop will be left. The outer loop will exit at the `feof' test. */ break; } /* Should we test for ferror()? I think we have to silently ignore errors. --drepper */ fclose (fp); if (added > 0) qsort (map, nmap, sizeof (struct alias_map), (int (*) (const void *, const void *)) alias_compare); return added; } static int extend_alias_table () { size_t new_size; struct alias_map *new_map; new_size = maxmap == 0 ? 100 : 2 * maxmap; new_map = (struct alias_map *) realloc (map, (new_size * sizeof (struct alias_map))); if (new_map == NULL) /* Simply don't extend: we don't have any more core. */ return -1; map = new_map; maxmap = new_size; return 0; } static int alias_compare (const struct alias_map *map1, const struct alias_map *map2) { #if defined _LIBC || defined HAVE_STRCASECMP return strcasecmp (map1->alias, map2->alias); #else const unsigned char *p1 = (const unsigned char *) map1->alias; const unsigned char *p2 = (const unsigned char *) map2->alias; unsigned char c1, c2; if (p1 == p2) return 0; do { /* I know this seems to be odd but the tolower() function in some systems libc cannot handle nonalpha characters. */ c1 = isupper (*p1) ? tolower (*p1) : *p1; c2 = isupper (*p2) ? tolower (*p2) : *p2; if (c1 == '\0') break; ++p1; ++p2; } while (c1 == c2); return c1 - c2; #endif } ltris-1.0.19/intl/os2compat.h0000664000175000017500000000302212140770050012701 00000000000000/* OS/2 compatibility defines. This file is intended to be included from config.h Copyright (C) 2001-2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* When included from os2compat.h we need all the original definitions */ #ifndef OS2_AWARE #undef LIBDIR #define LIBDIR _nlos2_libdir extern char *_nlos2_libdir; #undef LOCALEDIR #define LOCALEDIR _nlos2_localedir extern char *_nlos2_localedir; #undef LOCALE_ALIAS_PATH #define LOCALE_ALIAS_PATH _nlos2_localealiaspath extern char *_nlos2_localealiaspath; #endif #undef HAVE_STRCASECMP #define HAVE_STRCASECMP 1 #define strcasecmp stricmp #define strncasecmp strnicmp /* We have our own getenv() which works even if library is compiled as DLL */ #define getenv _nl_getenv /* Older versions of gettext used -1 as the value of LC_MESSAGES */ #define LC_MESSAGES_COMPAT (-1) ltris-1.0.19/intl/printf-args.c0000664000175000017500000000625312140770050013232 00000000000000/* Decomposed printf argument list. Copyright (C) 1999, 2002-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif /* Specification. */ #include "printf-args.h" #ifdef STATIC STATIC #endif int printf_fetchargs (va_list args, arguments *a) { size_t i; argument *ap; for (i = 0, ap = &a->arg[0]; i < a->count; i++, ap++) switch (ap->type) { case TYPE_SCHAR: ap->a.a_schar = va_arg (args, /*signed char*/ int); break; case TYPE_UCHAR: ap->a.a_uchar = va_arg (args, /*unsigned char*/ int); break; case TYPE_SHORT: ap->a.a_short = va_arg (args, /*short*/ int); break; case TYPE_USHORT: ap->a.a_ushort = va_arg (args, /*unsigned short*/ int); break; case TYPE_INT: ap->a.a_int = va_arg (args, int); break; case TYPE_UINT: ap->a.a_uint = va_arg (args, unsigned int); break; case TYPE_LONGINT: ap->a.a_longint = va_arg (args, long int); break; case TYPE_ULONGINT: ap->a.a_ulongint = va_arg (args, unsigned long int); break; #ifdef HAVE_LONG_LONG case TYPE_LONGLONGINT: ap->a.a_longlongint = va_arg (args, long long int); break; case TYPE_ULONGLONGINT: ap->a.a_ulonglongint = va_arg (args, unsigned long long int); break; #endif case TYPE_DOUBLE: ap->a.a_double = va_arg (args, double); break; #ifdef HAVE_LONG_DOUBLE case TYPE_LONGDOUBLE: ap->a.a_longdouble = va_arg (args, long double); break; #endif case TYPE_CHAR: ap->a.a_char = va_arg (args, int); break; #ifdef HAVE_WINT_T case TYPE_WIDE_CHAR: ap->a.a_wide_char = va_arg (args, wint_t); break; #endif case TYPE_STRING: ap->a.a_string = va_arg (args, const char *); break; #ifdef HAVE_WCHAR_T case TYPE_WIDE_STRING: ap->a.a_wide_string = va_arg (args, const wchar_t *); break; #endif case TYPE_POINTER: ap->a.a_pointer = va_arg (args, void *); break; case TYPE_COUNT_SCHAR_POINTER: ap->a.a_count_schar_pointer = va_arg (args, signed char *); break; case TYPE_COUNT_SHORT_POINTER: ap->a.a_count_short_pointer = va_arg (args, short *); break; case TYPE_COUNT_INT_POINTER: ap->a.a_count_int_pointer = va_arg (args, int *); break; case TYPE_COUNT_LONGINT_POINTER: ap->a.a_count_longint_pointer = va_arg (args, long int *); break; #ifdef HAVE_LONG_LONG case TYPE_COUNT_LONGLONGINT_POINTER: ap->a.a_count_longlongint_pointer = va_arg (args, long long int *); break; #endif default: /* Unknown type. */ return -1; } return 0; } ltris-1.0.19/intl/intl-compat.c0000664000175000017500000000644312140770050013226 00000000000000/* intl-compat.c - Stub functions to call gettext functions from GNU gettext Library. Copyright (C) 1995, 2000-2003 Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #include "gettextP.h" /* @@ end of prolog @@ */ /* This file redirects the gettext functions (without prefix) to those defined in the included GNU libintl library (with "libintl_" prefix). It is compiled into libintl in order to make the AM_GNU_GETTEXT test of gettext <= 0.11.2 work with the libintl library >= 0.11.3 which has the redirections primarily in the include file. It is also compiled into libgnuintl so that libgnuintl.so can be used as LD_PRELOADable library on glibc systems, to provide the extra features that the functions in the libc don't have (namely, logging). */ #undef gettext #undef dgettext #undef dcgettext #undef ngettext #undef dngettext #undef dcngettext #undef textdomain #undef bindtextdomain #undef bind_textdomain_codeset /* When building a DLL, we must export some functions. Note that because the functions are only defined for binary backward compatibility, we don't need to use __declspec(dllimport) in any case. */ #if defined _MSC_VER && BUILDING_DLL # define DLL_EXPORTED __declspec(dllexport) #else # define DLL_EXPORTED #endif DLL_EXPORTED char * gettext (const char *msgid) { return libintl_gettext (msgid); } DLL_EXPORTED char * dgettext (const char *domainname, const char *msgid) { return libintl_dgettext (domainname, msgid); } DLL_EXPORTED char * dcgettext (const char *domainname, const char *msgid, int category) { return libintl_dcgettext (domainname, msgid, category); } DLL_EXPORTED char * ngettext (const char *msgid1, const char *msgid2, unsigned long int n) { return libintl_ngettext (msgid1, msgid2, n); } DLL_EXPORTED char * dngettext (const char *domainname, const char *msgid1, const char *msgid2, unsigned long int n) { return libintl_dngettext (domainname, msgid1, msgid2, n); } DLL_EXPORTED char * dcngettext (const char *domainname, const char *msgid1, const char *msgid2, unsigned long int n, int category) { return libintl_dcngettext (domainname, msgid1, msgid2, n, category); } DLL_EXPORTED char * textdomain (const char *domainname) { return libintl_textdomain (domainname); } DLL_EXPORTED char * bindtextdomain (const char *domainname, const char *dirname) { return libintl_bindtextdomain (domainname, dirname); } DLL_EXPORTED char * bind_textdomain_codeset (const char *domainname, const char *codeset) { return libintl_bind_textdomain_codeset (domainname, codeset); } ltris-1.0.19/intl/dgettext.c0000664000175000017500000000336512140770050012627 00000000000000/* Implementation of the dgettext(3) function. Copyright (C) 1995-1997, 2000-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #include "gettextP.h" #include #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define DGETTEXT __dgettext # define DCGETTEXT INTUSE(__dcgettext) #else # define DGETTEXT libintl_dgettext # define DCGETTEXT libintl_dcgettext #endif /* Look up MSGID in the DOMAINNAME message catalog of the current LC_MESSAGES locale. */ char * DGETTEXT (const char *domainname, const char *msgid) { return DCGETTEXT (domainname, msgid, LC_MESSAGES); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ weak_alias (__dgettext, dgettext); #endif ltris-1.0.19/intl/wprintf-parse.h0000664000175000017500000000425712140770050013606 00000000000000/* Parse printf format string. Copyright (C) 1999, 2002-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _WPRINTF_PARSE_H #define _WPRINTF_PARSE_H #include "printf-args.h" /* Flags */ #define FLAG_GROUP 1 /* ' flag */ #define FLAG_LEFT 2 /* - flag */ #define FLAG_SHOWSIGN 4 /* + flag */ #define FLAG_SPACE 8 /* space flag */ #define FLAG_ALT 16 /* # flag */ #define FLAG_ZERO 32 /* arg_index value indicating that no argument is consumed. */ #define ARG_NONE (~(size_t)0) /* A parsed directive. */ typedef struct { const wchar_t* dir_start; const wchar_t* dir_end; int flags; const wchar_t* width_start; const wchar_t* width_end; size_t width_arg_index; const wchar_t* precision_start; const wchar_t* precision_end; size_t precision_arg_index; wchar_t conversion; /* d i o u x X f e E g G c s p n U % but not C S */ size_t arg_index; } wchar_t_directive; /* A parsed format string. */ typedef struct { size_t count; wchar_t_directive *dir; size_t max_width_length; size_t max_precision_length; } wchar_t_directives; /* Parses the format string. Fills in the number N of directives, and fills in directives[0], ..., directives[N-1], and sets directives[N].dir_start to the end of the format string. Also fills in the arg_type fields of the arguments and the needed count of arguments. */ #ifdef STATIC STATIC #else extern #endif int wprintf_parse (const wchar_t *format, wchar_t_directives *d, arguments *a); #endif /* _WPRINTF_PARSE_H */ ltris-1.0.19/intl/ref-add.sin0000664000175000017500000000210112140770050012633 00000000000000# Add this package to a list of references stored in a text file. # # Copyright (C) 2000 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU Library General Public License as published # by the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Library General Public License for more details. # # You should have received a copy of the GNU Library General Public # License along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, # USA. # # Written by Bruno Haible . # /^# Packages using this file: / { s/# Packages using this file:// ta :a s/ @PACKAGE@ / @PACKAGE@ / tb s/ $/ @PACKAGE@ / :b s/^/# Packages using this file:/ } ltris-1.0.19/intl/gmo.h0000664000175000017500000001134512140770050011563 00000000000000/* Description of GNU message catalog format: general file layout. Copyright (C) 1995, 1997, 2000-2002, 2004 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _GETTEXT_H #define _GETTEXT_H 1 #include /* @@ end of prolog @@ */ /* The magic number of the GNU message catalog format. */ #define _MAGIC 0x950412de #define _MAGIC_SWAPPED 0xde120495 /* Revision number of the currently used .mo (binary) file format. */ #define MO_REVISION_NUMBER 0 #define MO_REVISION_NUMBER_WITH_SYSDEP_I 1 /* The following contortions are an attempt to use the C preprocessor to determine an unsigned integral type that is 32 bits wide. An alternative approach is to use autoconf's AC_CHECK_SIZEOF macro, but as of version autoconf-2.13, the AC_CHECK_SIZEOF macro doesn't work when cross-compiling. */ #if __STDC__ # define UINT_MAX_32_BITS 4294967295U #else # define UINT_MAX_32_BITS 0xFFFFFFFF #endif /* If UINT_MAX isn't defined, assume it's a 32-bit type. This should be valid for all systems GNU cares about because that doesn't include 16-bit systems, and only modern systems (that certainly have ) have 64+-bit integral types. */ #ifndef UINT_MAX # define UINT_MAX UINT_MAX_32_BITS #endif #if UINT_MAX == UINT_MAX_32_BITS typedef unsigned nls_uint32; #else # if USHRT_MAX == UINT_MAX_32_BITS typedef unsigned short nls_uint32; # else # if ULONG_MAX == UINT_MAX_32_BITS typedef unsigned long nls_uint32; # else /* The following line is intended to throw an error. Using #error is not portable enough. */ "Cannot determine unsigned 32-bit data type." # endif # endif #endif /* Header for binary .mo file format. */ struct mo_file_header { /* The magic number. */ nls_uint32 magic; /* The revision number of the file format. */ nls_uint32 revision; /* The following are only used in .mo files with major revision 0 or 1. */ /* The number of strings pairs. */ nls_uint32 nstrings; /* Offset of table with start offsets of original strings. */ nls_uint32 orig_tab_offset; /* Offset of table with start offsets of translated strings. */ nls_uint32 trans_tab_offset; /* Size of hash table. */ nls_uint32 hash_tab_size; /* Offset of first hash table entry. */ nls_uint32 hash_tab_offset; /* The following are only used in .mo files with minor revision >= 1. */ /* The number of system dependent segments. */ nls_uint32 n_sysdep_segments; /* Offset of table describing system dependent segments. */ nls_uint32 sysdep_segments_offset; /* The number of system dependent strings pairs. */ nls_uint32 n_sysdep_strings; /* Offset of table with start offsets of original sysdep strings. */ nls_uint32 orig_sysdep_tab_offset; /* Offset of table with start offsets of translated sysdep strings. */ nls_uint32 trans_sysdep_tab_offset; }; /* Descriptor for static string contained in the binary .mo file. */ struct string_desc { /* Length of addressed string, not including the trailing NUL. */ nls_uint32 length; /* Offset of string in file. */ nls_uint32 offset; }; /* The following are only used in .mo files with minor revision >= 1. */ /* Descriptor for system dependent string segment. */ struct sysdep_segment { /* Length of addressed string, including the trailing NUL. */ nls_uint32 length; /* Offset of string in file. */ nls_uint32 offset; }; /* Descriptor for system dependent string. */ struct sysdep_string { /* Offset of static string segments in file. */ nls_uint32 offset; /* Alternating sequence of static and system dependent segments. The last segment is a static segment, including the trailing NUL. */ struct segment_pair { /* Size of static segment. */ nls_uint32 segsize; /* Reference to system dependent string segment, or ~0 at the end. */ nls_uint32 sysdepref; } segments[1]; }; /* Marker for the end of the segments[] array. This has the value 0xFFFFFFFF, regardless whether 'int' is 16 bit, 32 bit, or 64 bit. */ #define SEGMENTS_END ((nls_uint32) ~0) /* @@ begin of epilog @@ */ #endif /* gettext.h */ ltris-1.0.19/intl/eval-plural.h0000664000175000017500000000524312140770050013225 00000000000000/* Plural expression evaluation. Copyright (C) 2000-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include #ifndef STATIC #define STATIC static #endif /* Evaluate the plural expression and return an index value. */ STATIC unsigned long int internal_function plural_eval (struct expression *pexp, unsigned long int n) { switch (pexp->nargs) { case 0: switch (pexp->operation) { case var: return n; case num: return pexp->val.num; default: break; } /* NOTREACHED */ break; case 1: { /* pexp->operation must be lnot. */ unsigned long int arg = plural_eval (pexp->val.args[0], n); return ! arg; } case 2: { unsigned long int leftarg = plural_eval (pexp->val.args[0], n); if (pexp->operation == lor) return leftarg || plural_eval (pexp->val.args[1], n); else if (pexp->operation == land) return leftarg && plural_eval (pexp->val.args[1], n); else { unsigned long int rightarg = plural_eval (pexp->val.args[1], n); switch (pexp->operation) { case mult: return leftarg * rightarg; case divide: if (rightarg == 0) raise (SIGFPE); return leftarg / rightarg; case module: if (rightarg == 0) raise (SIGFPE); return leftarg % rightarg; case plus: return leftarg + rightarg; case minus: return leftarg - rightarg; case less_than: return leftarg < rightarg; case greater_than: return leftarg > rightarg; case less_or_equal: return leftarg <= rightarg; case greater_or_equal: return leftarg >= rightarg; case equal: return leftarg == rightarg; case not_equal: return leftarg != rightarg; default: break; } } /* NOTREACHED */ break; } case 3: { /* pexp->operation must be qmop. */ unsigned long int boolarg = plural_eval (pexp->val.args[0], n); return plural_eval (pexp->val.args[boolarg ? 1 : 2], n); } } /* NOTREACHED */ return 0; } ltris-1.0.19/intl/relocatable.h0000664000175000017500000000523512140770050013257 00000000000000/* Provide relocatable packages. Copyright (C) 2003 Free Software Foundation, Inc. Written by Bruno Haible , 2003. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _RELOCATABLE_H #define _RELOCATABLE_H #ifdef __cplusplus extern "C" { #endif /* This can be enabled through the configure --enable-relocatable option. */ #if ENABLE_RELOCATABLE /* When building a DLL, we must export some functions. Note that because this is a private .h file, we don't need to use __declspec(dllimport) in any case. */ #if defined _MSC_VER && BUILDING_DLL # define RELOCATABLE_DLL_EXPORTED __declspec(dllexport) #else # define RELOCATABLE_DLL_EXPORTED #endif /* Sets the original and the current installation prefix of the package. Relocation simply replaces a pathname starting with the original prefix by the corresponding pathname with the current prefix instead. Both prefixes should be directory names without trailing slash (i.e. use "" instead of "/"). */ extern RELOCATABLE_DLL_EXPORTED void set_relocation_prefix (const char *orig_prefix, const char *curr_prefix); /* Returns the pathname, relocated according to the current installation directory. */ extern const char * relocate (const char *pathname); /* Memory management: relocate() leaks memory, because it has to construct a fresh pathname. If this is a problem because your program calls relocate() frequently, think about caching the result. */ /* Convenience function: Computes the current installation prefix, based on the original installation prefix, the original installation directory of a particular file, and the current pathname of this file. Returns NULL upon failure. */ extern const char * compute_curr_prefix (const char *orig_installprefix, const char *orig_installdir, const char *curr_pathname); #else /* By default, we use the hardwired pathnames. */ #define relocate(pathname) (pathname) #endif #ifdef __cplusplus } #endif #endif /* _RELOCATABLE_H */ ltris-1.0.19/intl/gettext.c0000664000175000017500000000355012140770050012457 00000000000000/* Implementation of gettext(3) function. Copyright (C) 1995, 1997, 2000-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifdef HAVE_CONFIG_H # include #endif #ifdef _LIBC # define __need_NULL # include #else # include /* Just for NULL. */ #endif #include "gettextP.h" #ifdef _LIBC # include #else # include "libgnuintl.h" #endif /* @@ end of prolog @@ */ /* Names for the libintl functions are a problem. They must not clash with existing names and they should follow ANSI C. But this source code is also used in GNU C Library where the names have a __ prefix. So we have to make a difference here. */ #ifdef _LIBC # define GETTEXT __gettext # define DCGETTEXT INTUSE(__dcgettext) #else # define GETTEXT libintl_gettext # define DCGETTEXT libintl_dcgettext #endif /* Look up MSGID in the current default message catalog for the current LC_MESSAGES locale. If not found, returns MSGID itself (the default text). */ char * GETTEXT (const char *msgid) { return DCGETTEXT (NULL, msgid, LC_MESSAGES); } #ifdef _LIBC /* Alias for function name in GNU C Library. */ weak_alias (__gettext, gettext); #endif ltris-1.0.19/INSTALL0000664000175000017500000001547212140770051010721 00000000000000Basic Installation ================== These are generic installation instructions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, a file `config.cache' that saves the results of its tests to speed up reconfiguring, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.in' is used to create `configure' by a program called `autoconf'. You only need `configure.in' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. If you're using `csh' on an old version of System V, you might need to type `sh ./configure' instead to prevent `csh' from trying to execute `configure' itself. Running `configure' takes a while. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Type `make install' to install the programs and any data files and documentation. 4. You can remove the program binaries and object files from the source code directory by typing `make clean'. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. You can give `configure' initial values for variables by setting them in the environment. Using a Bourne-compatible shell, you can do that on the command line like this: CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure Or on systems that have the `env' program, you can do it like this: env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you must use a version of `make' that supports the `VPATH' variable, such as GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. If you have to use a `make' that does not supports the `VPATH' variable, you have to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. Installation Names ================== By default, `make install' will install the package's files in `/usr/local/bin', `/usr/local/man', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PATH'. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you give `configure' the option `--exec-prefix=PATH', the package will use PATH as the prefix for installing programs and libraries. Documentation and other data files will still use the regular prefix. If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Optional Features ================= Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Specifying the System Type ========================== There may be some features `configure' can not figure out automatically, but needs to determine by the type of host the package will run on. Usually `configure' can figure that out, but if it prints a message saying it can not guess the host type, give it the `--host=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name with three fields: CPU-COMPANY-SYSTEM See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the host type. If you are building compiler tools for cross-compiling, you can also use the `--target=TYPE' option to select the type of system they will produce code for and the `--build=TYPE' option to select the type of system on which you are compiling the package. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Operation Controls ================== `configure' recognizes the following options to control how it operates. `--cache-file=FILE' Use and save the results of the tests in FILE instead of `./config.cache'. Set FILE to `/dev/null' to disable caching, for debugging `configure'. `--help' Print a summary of the options to `configure', and exit. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `--version' Print the version of Autoconf used to generate the `configure' script, and exit. `configure' also accepts some other, not widely useful, options. ltris-1.0.19/icons/0000775000175000017500000000000012233753111011053 500000000000000ltris-1.0.19/icons/ltris48.xpm0000664000175000017500000002610712140770050013036 00000000000000/* XPM */ static char * ltris48_xpm[] = { "48 48 405 2", " c None", ". c #000000", "+ c #EC7F7F", "@ c #E28585", "# c #D89393", "$ c #EE9393", "% c #EB7373", "& c #EA7878", "* c #DB9090", "= c #E48484", "- c #E66767", "; c #F28989", "> c #F69898", ", c #DF4F4F", "' c #CF2C2C", ") c #BC1414", "! c #CC2A2A", "~ c #D02424", "{ c #CE0E0E", "] c #D82020", "^ c #D93C3C", "/ c #DC5555", "( c #E25D5D", "_ c #EA7272", ": c #F28787", "< c #E14141", "[ c #BF1515", "} c #8A0000", "| c #A60202", "1 c #AF0202", "2 c #BF0404", "3 c #D21616", "4 c #D62525", "5 c #DA3434", "6 c #DA4C4C", "7 c #E66868", "8 c #EC7777", "9 c #E03F3F", "0 c #B83737", "a c #660000", "b c #7B0000", "c c #940000", "d c #A60000", "e c #BB0000", "f c #CA0808", "g c #D51919", "h c #D73C3C", "i c #E76A6A", "j c #F08282", "k c #E03D3D", "l c #BA3D3D", "m c #620000", "n c #960000", "o c #AD0000", "p c #BF0202", "q c #CD0C0C", "r c #D72929", "s c #DF5555", "t c #ED7878", "u c #F49090", "v c #C54E4E", "w c #640000", "x c #7A0000", "y c #990000", "z c #B60101", "A c #CD0D0D", "B c #D72E2E", "C c #DE5151", "D c #E86D6D", "E c #F18383", "F c #F69696", "G c #DF3C3C", "H c #C75555", "I c #6B0000", "J c #8D0000", "K c #BA0202", "L c #CE0F0F", "M c #D82424", "N c #D84D4D", "O c #E25F5F", "P c #E97070", "Q c #F28686", "R c #F69B9B", "S c #DF3D3D", "T c #BB3C3C", "U c #720000", "V c #A30000", "W c #CA0909", "X c #D52424", "Y c #DA4141", "Z c #DD5555", "` c #E46262", " . c #EC7676", ".. c #F59393", "+. c #F8A1A1", "@. c #E04848", "#. c #C84141", "$. c #930000", "%. c #C51414", "&. c #D74141", "*. c #DC4E4E", "=. c #E26060", "-. c #E66565", ";. c #EF7F7F", ">. c #F69A9A", ",. c #DF5252", "'. c #8686E4", "). c #9494DA", "!. c #8888DE", "~. c #7373EB", "{. c #7B7BEF", "]. c #9191DE", "^. c #8A8AEC", "/. c #6767E6", "(. c #8989F2", "_. c #9898F6", ":. c #4F4FDF", "<. c #8080EE", "[. c #E76363", "}. c #D82929", "|. c #DA2E2E", "1. c #DB5252", "2. c #E56565", "3. c #E96E6E", "4. c #F18585", "5. c #F38B8B", "6. c #DE4B4B", "7. c #1414BE", "8. c #2C2CD2", "9. c #2424D0", "0. c #0E0ECE", "a. c #2020D8", "b. c #3C3CD9", "c. c #5555DC", "d. c #5D5DE2", "e. c #7272EA", "f. c #8787F2", "g. c #4141E1", "h. c #2C2CCF", "i. c #E36464", "j. c #D83F3F", "k. c #D73B3B", "l. c #DF5656", "m. c #E14949", "n. c #DD4F4F", "o. c #E46565", "p. c #E36363", "q. c #EC7575", "r. c #DB3535", "s. c #00008A", "t. c #0202A6", "u. c #0202AF", "v. c #0404BF", "w. c #1616D2", "x. c #2525D6", "y. c #3434DA", "z. c #4C4CDA", "A. c #6868E6", "B. c #7777EC", "C. c #3F3FE0", "D. c #1515BF", "E. c #D53F3F", "F. c #C00F0F", "G. c #B20B0B", "H. c #BF1010", "I. c #CC0D0D", "J. c #C71212", "K. c #AA1616", "L. c #A91515", "M. c #AB1919", "N. c #AC1A1A", "O. c #A80B0B", "P. c #000066", "Q. c #00007B", "R. c #000094", "S. c #0000A6", "T. c #0000BB", "U. c #0808CA", "V. c #1919D5", "W. c #3C3CD7", "X. c #6A6AE7", "Y. c #8282F0", "Z. c #3D3DE0", "`. c #3737B8", " + c #000062", ".+ c #000096", "++ c #0000AD", "@+ c #0202BF", "#+ c #0C0CCD", "$+ c #2929D7", "%+ c #5555DF", "&+ c #7878ED", "*+ c #9090F4", "=+ c #3D3DBA", "-+ c #000064", ";+ c #00007A", ">+ c #000099", ",+ c #0101B6", "'+ c #0D0DCD", ")+ c #2E2ED7", "!+ c #5151DE", "~+ c #6D6DE8", "{+ c #8383F1", "]+ c #9696F6", "^+ c #3C3CDF", "/+ c #4E4EC5", "(+ c #00006B", "_+ c #00008D", ":+ c #0202BA", "<+ c #0F0FCE", "[+ c #2424D8", "}+ c #4D4DD8", "|+ c #5F5FE2", "1+ c #7070E9", "2+ c #8686F2", "3+ c #9B9BF6", "4+ c #3D3DDF", "5+ c #5555C7", "6+ c #000072", "7+ c #0000A3", "8+ c #0909CA", "9+ c #2424D5", "0+ c #4141DA", "a+ c #5555DD", "b+ c #6262E4", "c+ c #7676EC", "d+ c #9393F5", "e+ c #A1A1F8", "f+ c #4848E0", "g+ c #3C3CBB", "h+ c #000093", "i+ c #1414C5", "j+ c #4141D7", "k+ c #4E4EDC", "l+ c #6060E2", "m+ c #6565E6", "n+ c #7F7FEF", "o+ c #9A9AF6", "p+ c #5252DF", "q+ c #4141C8", "r+ c #2929D8", "s+ c #2E2EDA", "t+ c #5252DB", "u+ c #6565E5", "v+ c #6E6EE9", "w+ c #8585F1", "x+ c #8B8BF3", "y+ c #4B4BDE", "z+ c #6363E7", "A+ c #3F3FD8", "B+ c #3B3BD7", "C+ c #5656DF", "D+ c #4949E1", "E+ c #4F4FDD", "F+ c #6565E4", "G+ c #6363E3", "H+ c #7575EC", "I+ c #3535DB", "J+ c #6464E3", "K+ c #0F0FC0", "L+ c #0B0BB2", "M+ c #1010BF", "N+ c #0D0DCC", "O+ c #1212C7", "P+ c #1616AA", "Q+ c #1515A9", "R+ c #1919AB", "S+ c #1A1AAC", "T+ c #0B0BA8", "U+ c #3F3FD5", "V+ c #E2E086", "W+ c #DDDC97", "X+ c #DDDC88", "Y+ c #E9E772", "Z+ c #D8D76F", "`+ c #D7D58F", " @ c #E2E184", ".@ c #E6E467", "+@ c #F2F189", "@@ c #F6F598", "#@ c #DFDE4F", "$@ c #BEBB14", "%@ c #CBC92A", "&@ c #CBC922", "*@ c #CECC0E", "=@ c #D1CE20", "-@ c #D0CE3A", ";@ c #DAD954", ">@ c #E2DF5D", ",@ c #EAE972", "'@ c #F2F087", ")@ c #E1DF41", "!@ c #8A8800", "~@ c #A6A302", "{@ c #AFAD02", "]@ c #BFBC04", "^@ c #D2D016", "/@ c #D6D425", "(@ c #DAD834", "_@ c #DAD84C", ":@ c #E6E568", "<@ c #ECEA77", "[@ c #E0DE3F", "}@ c #666400", "|@ c #7B7900", "1@ c #949200", "2@ c #A6A300", "3@ c #BBB800", "4@ c #CAC708", "5@ c #D5D219", "6@ c #D7D53C", "7@ c #E7E66A", "8@ c #F0EE82", "9@ c #E0DE3D", "0@ c #626000", "a@ c #969400", "b@ c #ADAA00", "c@ c #BFBC02", "d@ c #CDCB0C", "e@ c #D7D629", "f@ c #DFDE55", "g@ c #EDEC78", "h@ c #F4F390", "i@ c #E0DF3F", "j@ c #646200", "k@ c #7A7800", "l@ c #999700", "m@ c #B6B401", "n@ c #CDCA0D", "o@ c #D7D52E", "p@ c #DEDC51", "q@ c #E8E76D", "r@ c #F1EF83", "s@ c #F6F596", "t@ c #DFDC3C", "u@ c #6B6900", "v@ c #8D8B00", "w@ c #BAB702", "x@ c #CECC0F", "y@ c #D8D624", "z@ c #D8D64D", "A@ c #E2E15F", "B@ c #E9E870", "C@ c #F2F086", "D@ c #F6F69B", "E@ c #DFDE3D", "F@ c #726F00", "G@ c #A3A100", "H@ c #CAC809", "I@ c #D5D324", "J@ c #DAD841", "K@ c #DDDB55", "L@ c #E4E262", "M@ c #ECEB76", "N@ c #F5F393", "O@ c #F8F7A1", "P@ c #E0DF48", "Q@ c #939100", "R@ c #C5C314", "S@ c #D7D641", "T@ c #DCDB4E", "U@ c #E2E160", "V@ c #E6E465", "W@ c #EFEE7F", "X@ c #F6F59A", "Y@ c #DFDE52", "Z@ c #D8D529", "`@ c #DAD82E", " # c #DCDB55", ".# c #DBD952", "+# c #E5E365", "@# c #E9E86E", "## c #F1F085", "$# c #F3F28B", "%# c #DEDC4B", "&# c #D8D63F", "*# c #D7D63B", "=# c #DFDE56", "-# c #E1E049", ";# c #DDDB4F", "># c #E4E365", ",# c #E3E263", "'# c #ECEA75", ")# c #DBD935", "!# c #C0BE0F", "~# c #B2B00B", "{# c #BFBC10", "]# c #CCC90D", "^# c #C7C512", "/# c #AAA816", "(# c #A9A815", "_# c #ABA919", ":# c #ACAA1A", "<# c #A8A60B", "[# c #E7E67C", "}# c #CFCE2C", "|# c #BFBD15", "1# c #B8B637", "2# c #BAB83D", "3# c #C5C34E", "4# c #C7C655", "5# c #BBBA3C", "6# c #C8C641", "7# c #E7E663", "8# c #E3E264", " ", " ", " . . . . . . . . . . . . . . . . . . . . . . . . . ", " . + @ # $ % & * = - ; > , + @ # $ % & * = - ; > . ", " . ' ) ! ~ { ] ^ / ( _ : < ' ) ! ~ { ] ^ / ( _ : . ", " . [ } | 1 2 3 4 5 6 7 8 9 [ } | 1 2 3 4 5 6 7 8 . ", " . 0 a b c d e f g h i j k 0 a b c d e f g h i j . ", " . l m b n o p q r s t u 9 l m b n o p q r s t u . ", " . v w x y z A B C D E F G v w x y z A B C D E F . ", " . H I J K L M N O P Q R S H I J K L M N O P Q R . ", " . T U V W X Y Z ` ...+.@.T U V W X Y Z ` ...+.. ", ". . . . . . . . . . . . . . . . . . . . . . . . #.$.%.&.*.=.-.D ;.>.+.,.#.$.%.&.*.=.-.D ;.>.+.. ", ". '.).!.~.{.].^./.(._.:.<.'.).!.~.{.].^./.(._.:.[.}.|./ / 1.2.7 3.4.5.6.[.}.|./ / 1.2.7 3.4.5.. ", ". 7.8.9.0.a.b.c.d.e.f.g.h.7.8.9.0.a.b.c.d.e.f.g.i.j.k.l.m.n.o.2.p._ q.r.i.j.k.l.m.n.o.2.p._ q.. ", ". s.t.u.v.w.x.y.z.A.B.C.D.s.t.u.v.w.x.y.z.A.B.C.E.F.G.H.I.J.K.K.L.M.N.O.E.F.G.H.I.J.K.K.L.M.N.. ", ". P.Q.R.S.T.U.V.W.X.Y.Z.`.P.Q.R.S.T.U.V.W.X.Y.Z.. . . . . . . . . . . . + @ # $ % & * = - ; > . ", ". +Q..+++@+#+$+%+&+*+C.=+ +Q..+++@+#+$+%+&+*+C.. . ' ) ! ~ { ] ^ / ( _ : . ", ". -+;+>+,+'+)+!+~+{+]+^+/+-+;+>+,+'+)+!+~+{+]+^+. . [ } | 1 2 3 4 5 6 7 8 . ", ". (+_+:+<+[+}+|+1+2+3+4+5+(+_+:+<+[+}+|+1+2+3+4+. . 0 a b c d e f g h i j . ", ". 6+7+8+9+0+a+b+c+d+e+f+g+6+7+8+9+0+a+b+c+d+e+f+. . l m b n o p q r s t u . ", ". h+i+j+k+l+m+~+n+o+e+p+q+h+i+j+k+l+m+~+n+o+e+p+. . v w x y z A B C D E F . ", ". r+s+c.c.t+u+A.v+w+x+y+z+r+s+c.c.t+u+A.v+w+x+y+. . H I J K L M N O P Q R . ", ". A+B+C+D+E+F+u+G+e.H+I+J+A+B+C+D+E+F+u+G+e.H+I+. . T U V W X Y Z ` ...+.. ", ". K+L+M+N+O+P+P+Q+R+S+T+U+K+L+M+N+O+P+P+Q+R+S+T+. . . . . . . . . . . . #.$.%.&.*.=.-.D ;.>.+.. ", ". V+W+X+Y+Z+`+ @.@+@@@#@<.'.).!.~.{.].^./.(._.:.<.'.).!.~.{.].^./.(._.:.[.}.|./ / 1.2.7 3.4.5.. ", ". $@%@&@*@=@-@;@>@,@'@)@h.7.8.9.0.a.b.c.d.e.f.g.h.7.8.9.0.a.b.c.d.e.f.g.i.j.k.l.m.n.o.2.p._ q.. ", ". !@~@{@]@^@/@(@_@:@<@[@D.s.t.u.v.w.x.y.z.A.B.C.D.s.t.u.v.w.x.y.z.A.B.C.E.F.G.H.I.J.K.K.L.M.N.. ", ". }@|@1@2@3@4@5@6@7@8@9@`.P.Q.R.S.T.U.V.W.X.Y.Z.`.P.Q.R.S.T.U.V.W.X.Y.Z.+ @ # $ % & * = - ; > . ", ". 0@|@a@b@c@d@e@f@g@h@i@=+ +Q..+++@+#+$+%+&+*+C.=+ +Q..+++@+#+$+%+&+*+C.' ) ! ~ { ] ^ / ( _ : . ", ". j@k@l@m@n@o@p@q@r@s@t@/+-+;+>+,+'+)+!+~+{+]+^+/+-+;+>+,+'+)+!+~+{+]+^+[ } | 1 2 3 4 5 6 7 8 . ", ". u@v@w@x@y@z@A@B@C@D@E@5+(+_+:+<+[+}+|+1+2+3+4+5+(+_+:+<+[+}+|+1+2+3+4+0 a b c d e f g h i j . ", ". F@G@H@I@J@K@L@M@N@O@P@g+6+7+8+9+0+a+b+c+d+e+f+g+6+7+8+9+0+a+b+c+d+e+f+l m b n o p q r s t u . ", ". Q@R@S@T@U@V@q@W@X@O@Y@q+h+i+j+k+l+m+~+n+o+e+p+q+h+i+j+k+l+m+~+n+o+e+p+v w x y z A B C D E F . ", ". Z@`@ # #.#+#:@@###$#%#z+r+s+c.c.t+u+A.v+w+x+y+z+r+s+c.c.t+u+A.v+w+x+y+H I J K L M N O P Q R . ", ". &#*#=#-#;#>#+#,#,@'#)#J+A+B+C+D+E+F+u+G+e.H+I+J+A+B+C+D+E+F+u+G+e.H+I+T U V W X Y Z ` ...+.. ", ". !#~#{#]#^#/#/#(#_#:#<#U+K+L+M+N+O+P+P+Q+R+S+T+U+K+L+M+N+O+P+P+Q+R+S+T+#.$.%.&.*.=.-.D ;.>.+.. ", ". V+W+X+Y+Z+`+ @.@+@@@#@[#V+W+X+Y+Z+`+ @.@+@@@#@[#V+W+X+Y+Z+`+ @.@+@@@#@[.}.|./ / 1.2.7 3.4.5.. ", ". $@%@&@*@=@-@;@>@,@'@)@}#$@%@&@*@=@-@;@>@,@'@)@}#$@%@&@*@=@-@;@>@,@'@)@i.j.k.l.m.n.o.2.p._ q.. ", ". !@~@{@]@^@/@(@_@:@<@[@|#!@~@{@]@^@/@(@_@:@<@[@|#!@~@{@]@^@/@(@_@:@<@[@E.F.G.H.I.J.K.K.L.M.N.. ", ". }@|@1@2@3@4@5@6@7@8@9@1#}@|@1@2@3@4@5@6@7@8@9@1#}@|@1@2@3@4@5@6@7@8@9@. . . . . . . . . . . . ", ". 0@|@a@b@c@d@e@f@g@h@i@2#0@|@a@b@c@d@e@f@g@h@i@2#0@|@a@b@c@d@e@f@g@h@i@. ", ". j@k@l@m@n@o@p@q@r@s@t@3#j@k@l@m@n@o@p@q@r@s@t@3#j@k@l@m@n@o@p@q@r@s@t@. ", ". u@v@w@x@y@z@A@B@C@D@E@4#u@v@w@x@y@z@A@B@C@D@E@4#u@v@w@x@y@z@A@B@C@D@E@. ", ". F@G@H@I@J@K@L@M@N@O@P@5#F@G@H@I@J@K@L@M@N@O@P@5#F@G@H@I@J@K@L@M@N@O@P@. ", ". Q@R@S@T@U@V@q@W@X@O@Y@6#Q@R@S@T@U@V@q@W@X@O@Y@6#Q@R@S@T@U@V@q@W@X@O@Y@. ", ". Z@`@ # #.#+#:@@###$#%#7#Z@`@ # #.#+#:@@###$#%#7#Z@`@ # #.#+#:@@###$#%#. ", ". &#*#=#-#;#>#+#,#,@'#)#8#&#*#=#-#;#>#+#,#,@'#)#8#&#*#=#-#;#>#+#,#,@'#)#. ", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "}; ltris-1.0.19/icons/Makefile.in0000664000175000017500000002555312233753072013060 00000000000000# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = icons DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc21.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intdiv0.m4 \ $(top_srcdir)/m4/intmax.m4 $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes.m4 $(top_srcdir)/m4/inttypes_h.m4 \ $(top_srcdir)/m4/isc-posix.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/longdouble.m4 \ $(top_srcdir)/m4/longlong.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/printf-posix.m4 \ $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/signed.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ $(top_srcdir)/m4/wchar_t.m4 $(top_srcdir)/m4/wint_t.m4 \ $(top_srcdir)/m4/xsize.m4 $(top_srcdir)/acinclude.m4 \ $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GENCAT = @GENCAT@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_WPRINTF = @HAVE_WPRINTF@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGMERGE = @MSGMERGE@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ POSUB = @POSUB@ RANLIB = @RANLIB@ SDL_CFLAGS = @SDL_CFLAGS@ SDL_CONFIG = @SDL_CONFIG@ SDL_LIBS = @SDL_LIBS@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ buf_flag = @buf_flag@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ dis_flag = @dis_flag@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ hi_dir = @hi_dir@ hi_inst_flag = @hi_inst_flag@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ inst_dir = @inst_dir@ inst_flag = @inst_flag@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ locdir_flag = @locdir_flag@ mandir = @mandir@ mixer_flag = @mixer_flag@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sound_flag = @sound_flag@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = ltris16.xpm ltris32.xpm ltris48.xpm all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign icons/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign icons/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic distclean \ distclean-generic distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: ltris-1.0.19/icons/Makefile.am0000664000175000017500000000006012140770050013021 00000000000000EXTRA_DIST = ltris16.xpm ltris32.xpm ltris48.xpmltris-1.0.19/icons/ltris32.xpm0000664000175000017500000001222712140770050013025 00000000000000/* XPM */ static char * ltris32_xpm[] = { "32 32 190 2", " c None", ". c #000000", "+ c #E46464", "@ c #D57878", "# c #E46C6C", "$ c #E35656", "% c #DB7676", "& c #E66767", "* c #F08585", "= c #E76565", "- c #AD0F0F", "; c #AE0303", "> c #B80303", ", c #D21717", "' c #D73232", ") c #DC4E4E", "! c #E86E6E", "~ c #E65757", "{ c #992424", "] c #760000", "^ c #980000", "/ c #B60000", "( c #CC0B0B", "_ c #D93535", ": c #EA7070", "< c #E85A5A", "[ c #A23232", "} c #740000", "| c #9E0000", "1 c #C80707", "2 c #D62C2C", "3 c #F18585", "4 c #E75E5E", "5 c #A23434", "6 c #8A0000", "7 c #C20505", "8 c #D72222", "9 c #DB5252", "0 c #E86C6C", "a c #F48E8E", "b c #E85F5F", "c c #AC2929", "d c #B00909", "e c #D63434", "f c #DE5757", "g c #E46363", "h c #EE7A7A", "i c #F79D9D", "j c #E76C6C", "k c #7A7ADA", "l c #6767DE", "m c #5757E5", "n c #7979E0", "o c #6767E6", "p c #8585F0", "q c #6565E7", "r c #6565E6", "s c #E25454", "t c #D93838", "u c #E26060", "v c #DD5555", "w c #E86B6B", "x c #F28686", "y c #E55C5C", "z c #0303AE", "A c #0303B8", "B c #1717D2", "C c #3232D7", "D c #4E4EDC", "E c #6E6EE8", "F c #5757E6", "G c #0F0FAD", "H c #D53C3C", "I c #BF1313", "J c #C91C1C", "K c #CF1E1E", "L c #BC2C2C", "M c #BB2C2C", "N c #BF3434", "O c #BA1F1F", "P c #000076", "Q c #000098", "R c #0000B6", "S c #0B0BCC", "T c #3535D9", "U c #7070EA", "V c #5A5AE8", "W c #242499", "X c #000074", "Y c #00009E", "Z c #0707C8", "` c #2C2CD6", " . c #6464E4", ".. c #8585F1", "+. c #5E5EE7", "@. c #3232A2", "#. c #00008A", "$. c #0505C2", "%. c #2222D7", "&. c #5252DB", "*. c #6C6CE8", "=. c #8E8EF4", "-. c #5F5FE8", ";. c #3434A2", ">. c #0909B0", ",. c #3434D6", "'. c #5757DE", "). c #6363E4", "!. c #7A7AEE", "~. c #9D9DF7", "{. c #6C6CE7", "]. c #2929AC", "^. c #3838D9", "/. c #6060E2", "(. c #5555DD", "_. c #6B6BE8", ":. c #8686F2", "<. c #5C5CE5", "[. c #5454E2", "}. c #1313BF", "|. c #1C1CC9", "1. c #1E1ECF", "2. c #2C2CBC", "3. c #2C2CBB", "4. c #3434BF", "5. c #1F1FBA", "6. c #3C3CD5", "7. c #DCDB7D", "8. c #DBDA66", "9. c #D7D551", "0. c #D4D274", "a. c #E6E467", "b. c #F0EF85", "c. c #E7E665", "d. c #AEAB03", "e. c #B8B603", "f. c #D2D017", "g. c #D7D632", "h. c #DCDA4E", "i. c #E8E76E", "j. c #E6E457", "k. c #767400", "l. c #989600", "m. c #B6B400", "n. c #CCC90B", "o. c #D9D735", "p. c #EAE870", "q. c #E8E65A", "r. c #747200", "s. c #9E9C00", "t. c #C8C507", "u. c #D6D42C", "v. c #E4E364", "w. c #F1F085", "x. c #E7E65E", "y. c #8A8800", "z. c #C2C005", "A. c #D7D522", "B. c #DBD952", "C. c #E8E76C", "D. c #F4F28E", "E. c #E8E65F", "F. c #B0AE09", "G. c #D6D534", "H. c #DEDD57", "I. c #E4E263", "J. c #EEEC7A", "K. c #F7F69D", "L. c #E7E66C", "M. c #D9D838", "N. c #E2E060", "O. c #DDDB55", "P. c #E8E66C", "Q. c #E8E66B", "R. c #F2F086", "S. c #E5E35C", "T. c #BFBD13", "U. c #C9C71C", "V. c #CFCD1E", "W. c #BCBA2C", "X. c #BBBA2C", "Y. c #BFBD34", "Z. c #BAB81F", "`. c #DDDC60", " + c #ADAB0F", ".+ c #999724", "++ c #A2A032", "@+ c #A2A134", "#+ c #ACAA29", "$+ c #E2E054", " ", " . . . . . . . . . . . . . . . . . ", " . + @ # $ % & * = + @ # $ % & * . ", " . - ; > , ' ) ! ~ - ; > , ' ) ! . ", " . { ] ^ / ( _ : < { ] ^ / ( _ : . ", " . [ } | 1 2 + 3 4 [ } | 1 2 + 3 . ", " . 5 6 7 8 9 0 a b 5 6 7 8 9 0 a . ", ". . . . . . . . . . . . . . . . c d e f g h i j c d e f g h i . ", ". k l m n o p q r k l m n o p q s t u v 0 w x y s t u v 0 w x . ", ". z A B C D E F G z A B C D E F H I J K L M N O H I J K L M N . ", ". P Q R S T U V W P Q R S T U V . . . . . . . . + @ # $ % & * . ", ". X Y Z ` ...+.@.X Y Z ` ...+.. . - ; > , ' ) ! . ", ". #.$.%.&.*.=.-.;.#.$.%.&.*.=.-.. . { ] ^ / ( _ : . ", ". >.,.'.).!.~.{.].>.,.'.).!.~.{.. . [ } | 1 2 + 3 . ", ". ^./.(.*._.:.<.[.^./.(.*._.:.<.. . 5 6 7 8 9 0 a . ", ". }.|.1.2.3.4.5.6.}.|.1.2.3.4.5.. . . . . . . . c d e f g h i . ", ". 7.8.9.0.a.b.c.r k l m n o p q r k l m n o p q s t u v 0 w x . ", ". d.e.f.g.h.i.j.G z A B C D E F G z A B C D E F H I J K L M N . ", ". k.l.m.n.o.p.q.W P Q R S T U V W P Q R S T U V + @ # $ % & * . ", ". r.s.t.u.v.w.x.@.X Y Z ` ...+.@.X Y Z ` ...+.- ; > , ' ) ! . ", ". y.z.A.B.C.D.E.;.#.$.%.&.*.=.-.;.#.$.%.&.*.=.-.{ ] ^ / ( _ : . ", ". F.G.H.I.J.K.L.].>.,.'.).!.~.{.].>.,.'.).!.~.{.[ } | 1 2 + 3 . ", ". M.N.O.P.Q.R.S.[.^./.(.*._.:.<.[.^./.(.*._.:.<.5 6 7 8 9 0 a . ", ". T.U.V.W.X.Y.Z.6.}.|.1.2.3.4.5.6.}.|.1.2.3.4.5.c d e f g h i . ", ". 7.8.9.0.a.b.c.`.7.8.9.0.a.b.c.`.7.8.9.0.a.b.c.s t u v 0 w x . ", ". d.e.f.g.h.i.j. +d.e.f.g.h.i.j. +d.e.f.g.h.i.j.H I J K L M N . ", ". k.l.m.n.o.p.q..+k.l.m.n.o.p.q..+k.l.m.n.o.p.q.. . . . . . . . ", ". r.s.t.u.v.w.x.++r.s.t.u.v.w.x.++r.s.t.u.v.w.x.. ", ". y.z.A.B.C.D.E.@+y.z.A.B.C.D.E.@+y.z.A.B.C.D.E.. ", ". F.G.H.I.J.K.L.#+F.G.H.I.J.K.L.#+F.G.H.I.J.K.L.. ", ". M.N.O.P.Q.R.S.$+M.N.O.P.Q.R.S.$+M.N.O.P.Q.R.S.. ", ". . . . . . . . . . . . . . . . . . . . . . . . . "}; ltris-1.0.19/icons/ltris16.xpm0000664000175000017500000000210612140770050013022 00000000000000/* XPM */ static char * ltris16_xpm[] = { "16 16 48 1", " c None", ". c #000000", "+ c #C53C3C", "@ c #D43737", "# c #DD5757", "$ c #E96C6C", "% c #891616", "& c #AD0202", "* c #D83434", "= c #EA6B6B", "- c #A21A1A", "; c #D32C2C", "> c #E56767", ", c #EE7E7E", "' c #3636D3", ") c #5858DE", "! c #6C6CE9", "~ c #3C3CC7", "{ c #D63C3C", "] c #D24C4C", "^ c #D44D4D", "/ c #0202AD", "( c #3434D8", "_ c #6B6BEA", ": c #161689", "< c #2C2CD3", "[ c #6767E5", "} c #7E7EEE", "| c #1A1AA2", "1 c #3C3CD6", "2 c #4C4CD2", "3 c #4D4DD4", "4 c #3737D4", "5 c #CFCD34", "6 c #DBDA57", "7 c #E9E86C", "8 c #ADAB02", "9 c #D8D634", "0 c #EAE96B", "a c #D3D22C", "b c #E5E467", "c c #EEED7E", "d c #D6D43C", "e c #D2D04C", "f c #D4D24D", "g c #C5C33C", "h c #898716", "i c #A2A01A", " .........", " .+@#$+@#.", " .%&*=%&*.", "........-;>,-;>.", ".')!~')!@{]^@{].", "./(_:/(_....+@#.", ".<[}|<[}. .%&*.", ".1234123....-;>.", ".567~')!~')!@{].", ".890:/(_:/(_+@#.", ".abc|<[}|<[}%&*.", ".def41234123-;>.", ".567g567g567@{].", ".890h890h890....", ".abciabciabc. ", "............. "}; ltris-1.0.19/COPYING0000664000175000017500000003543312140770051010722 00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 675 Mass Ave, Cambridge, MA 02139, USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS ltris-1.0.19/config.sub0000775000175000017500000007470712140770051011661 00000000000000#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. timestamp='2004-06-24' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, # Boston, MA 02111-1307, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit 0 ;; --version | -v ) echo "$version" ; exit 0 ;; --help | --h* | -h ) echo "$usage"; exit 0 ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit 0;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-dietlibc | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | \ kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis | -knuth | -cray) os= basic_machine=$1 ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | m32r | m32rle | m68000 | m68k | m88k | mcore \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64vr | mips64vrel \ | mips64orion | mips64orionel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | msp430 \ | ns16k | ns32k \ | openrisc | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ | sh | sh[1234] | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc86x | sparclet | sparclite | sparcv8 | sparcv9 | sparcv9b \ | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ | we32k \ | x86 | xscale | xstormy16 | xtensa \ | z8k) basic_machine=$basic_machine-unknown ;; m6811 | m68hc11 | m6812 | m68hc12) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* \ | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | mcore-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64vr-* | mips64vrel-* \ | mips64orion-* | mips64orionel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | msp430-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ | sh-* | sh[1234]-* | sh[23]e-* | sh[34]eb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc86x-* | sparclet-* | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xps100-* | xscale-* | xstormy16-* \ | xtensa-* \ | ymp-* \ | z8k-*) ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; abacus) basic_machine=abacus-unknown ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amd64-*) basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; c90) basic_machine=c90-cray os=-unicos ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; craynv) basic_machine=craynv-cray os=-unicosmp ;; cr16c) basic_machine=cr16c-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; crx) basic_machine=crx-unknown os=-elf ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; # I'm not sure what "Sysv32" means. Should this be sysv3.2? i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; mingw32) basic_machine=i386-pc os=-mingw32 ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; msdos) basic_machine=i386-pc os=-msdos ;; mvs) basic_machine=i370-ibm os=-mvs ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; or32 | or32-*) basic_machine=or32-unknown os=-coff ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc) basic_machine=powerpc-unknown ;; ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; s390 | s390-*) basic_machine=s390-ibm ;; s390x | s390x-*) basic_machine=s390x-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tic54x | c54x*) basic_machine=tic54x-unknown os=-coff ;; tic55x | c55x*) basic_machine=tic55x-unknown os=-coff ;; tic6x | c6x*) basic_machine=tic6x-unknown os=-coff ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xps | xps100) basic_machine=xps100-honeywell ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; mmix) basic_machine=mmix-knuth ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh3 | sh4 | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sh64) basic_machine=sh64-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* | -openbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux* | -linux-uclibc* | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -kaos*) os=-kaos ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 # This also exists in the configure program, but was not the # default. # os=-sunos4 ;; m68*-cisco) os=-aout ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -os400*) vendor=ibm ;; -ptx*) vendor=sequent ;; -tpf*) vendor=ibm ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: ltris-1.0.19/configure0000775000175000017500000114607612233753073011615 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.68. # # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software # Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test \$(( 1 + 1 )) = 2 || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV export CONFIG_SHELL case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"} fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in #( -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME= PACKAGE_TARNAME= PACKAGE_VERSION= PACKAGE_STRING= PACKAGE_BUGREPORT= PACKAGE_URL= ac_unique_file="Makefile.am" # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_header_list= ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIBOBJS locdir_flag dis_flag hi_inst_flag inst_flag hi_dir inst_dir buf_flag mixer_flag sound_flag SDL_LIBS SDL_CFLAGS SDL_CONFIG POSUB LTLIBINTL LIBINTL INTLLIBS INTL_LIBTOOL_SUFFIX_PREFIX INTLOBJS GENCAT INSTOBJEXT DATADIRNAME CATOBJEXT USE_INCLUDED_LIBINTL BUILD_INCLUDED_LIBINTL INTLBISON LTLIBICONV LIBICONV HAVE_WPRINTF HAVE_SNPRINTF HAVE_ASPRINTF HAVE_POSIX_PRINTF GLIBC21 ALLOCA EGREP GREP CPP RANLIB am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC MSGMERGE XGETTEXT GMSGFMT MSGFMT USE_NLS MKINSTALLDIRS am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM target_os target_vendor target_cpu target host_os host_vendor host_cpu host build_os build_vendor build_cpu build target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking enable_nls enable_dependency_tracking with_gnu_ld enable_rpath with_libiconv_prefix with_included_gettext with_libintl_prefix enable_zaurus enable_softfloat with_sdl_prefix with_sdl_exec_prefix enable_sdltest enable_sound with_buffer_size enable_install ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used" >&2 elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures this package to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] --target=TARGET configure for building compilers for TARGET [HOST] _ACEOF fi if test -n "$ac_init_help"; then cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --disable-nls do not use Native Language Support --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors --disable-rpath do not hardcode runtime library paths --enable-zaurus Compile for Zaurus --enable-softfloat Use Softfloat for CPUs without FPU --disable-sdltest Do not try to compile and run a test SDL program --disable-sound Disables sound --disable-install No installation. Played from the source directory. Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-gnu-ld assume the C compiler uses GNU ld default=no --with-libiconv-prefix[=DIR] search for libiconv in DIR/include and DIR/lib --without-libiconv-prefix don't search for libiconv in includedir and libdir --with-included-gettext use the GNU gettext library included here --with-libintl-prefix[=DIR] search for libintl in DIR/include and DIR/lib --without-libintl-prefix don't search for libintl in includedir and libdir --with-sdl-prefix=PFX Prefix where SDL is installed (optional) --with-sdl-exec-prefix=PFX Exec prefix where SDL is installed (optional) --with-buffer-size=BUFSIZE Set this value to 2048 if you encounter sound delay. Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CPP C preprocessor Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to the package provider. _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF configure generated by GNU Autoconf 2.68 Copyright (C) 2010 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || $as_test_x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_link # ac_fn_c_try_cpp LINENO # ---------------------- # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_cpp # ac_fn_c_try_run LINENO # ---------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run # ac_fn_c_check_type LINENO TYPE VAR INCLUDES # ------------------------------------------- # Tests whether TYPE exists after having included INCLUDES, setting cache # variable VAR accordingly. ac_fn_c_check_type () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=no" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof ($2)) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof (($2))) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else eval "$3=yes" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_type # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile # ac_fn_c_check_func LINENO FUNC VAR # ---------------------------------- # Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_c_check_func () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant, in case declares $2. For example, HP-UX 11i declares gettimeofday. */ #define $2 innocuous_$2 /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $2 (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $2 /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $2 (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$2 || defined __stub___$2 choke me #endif int main () { return $2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_func # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_mongrel # ac_fn_c_compute_int LINENO EXPR VAR INCLUDES # -------------------------------------------- # Tries to find the compile-time value of EXPR in a program that includes # INCLUDES, setting VAR accordingly. Returns whether the value could be # computed ac_fn_c_compute_int () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) >= 0)]; test_array [0] = 0 ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_lo=0 ac_mid=0 while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) <= $ac_mid)]; test_array [0] = 0 ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_hi=$ac_mid; break else as_fn_arith $ac_mid + 1 && ac_lo=$as_val if test $ac_lo -le $ac_mid; then ac_lo= ac_hi= break fi as_fn_arith 2 '*' $ac_mid + 1 && ac_mid=$as_val fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext done else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) < 0)]; test_array [0] = 0 ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_hi=-1 ac_mid=-1 while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) >= $ac_mid)]; test_array [0] = 0 ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_lo=$ac_mid; break else as_fn_arith '(' $ac_mid ')' - 1 && ac_hi=$as_val if test $ac_mid -le $ac_hi; then ac_lo= ac_hi= break fi as_fn_arith 2 '*' $ac_mid && ac_mid=$as_val fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext done else ac_lo= ac_hi= fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext # Binary search between lo and hi bounds. while test "x$ac_lo" != "x$ac_hi"; do as_fn_arith '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo && ac_mid=$as_val cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) <= $ac_mid)]; test_array [0] = 0 ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_hi=$ac_mid else as_fn_arith '(' $ac_mid ')' + 1 && ac_lo=$as_val fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext done case $ac_lo in #(( ?*) eval "$3=\$ac_lo"; ac_retval=0 ;; '') ac_retval=1 ;; esac else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 static long int longval () { return $2; } static unsigned long int ulongval () { return $2; } #include #include int main () { FILE *f = fopen ("conftest.val", "w"); if (! f) return 1; if (($2) < 0) { long int i = longval (); if (i != ($2)) return 1; fprintf (f, "%ld", i); } else { unsigned long int i = ulongval (); if (i != ($2)) return 1; fprintf (f, "%lu", i); } /* Do not output a trailing newline, as this causes \r\n confusion on some platforms. */ return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : echo >>conftest.val; read $3 config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by $as_me, which was generated by GNU Autoconf 2.68. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi as_fn_append ac_header_list " stdlib.h" as_fn_append ac_header_list " unistd.h" as_fn_append ac_header_list " sys/param.h" # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } if ${ac_cv_build+:} false; then : $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } if ${ac_cv_host+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking target system type" >&5 $as_echo_n "checking target system type... " >&6; } if ${ac_cv_target+:} false; then : $as_echo_n "(cached) " >&6 else if test "x$target_alias" = x; then ac_cv_target=$ac_cv_host else ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_target" >&5 $as_echo "$ac_cv_target" >&6; } case $ac_cv_target in *-*-*) ;; *) as_fn_error $? "invalid value of canonical target" "$LINENO" 5;; esac target=$ac_cv_target ac_save_IFS=$IFS; IFS='-' set x $ac_cv_target shift target_cpu=$1 target_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: target_os=$* IFS=$ac_save_IFS case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac # The aliases save the names the user supplied, while $host etc. # will get canonicalized. test -n "$target_alias" && test "$program_prefix$program_suffix$program_transform_name" = \ NONENONEs,x,x, && program_prefix=${target_alias}- ac_config_headers="$ac_config_headers config.h" am__api_version='1.11' # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Just in case sleep 1 echo timestamp > conftest.file # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; esac # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if ${ac_cv_path_mkdir+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } mkdir_p="$MKDIR_P" case $mkdir_p in [\\/$]* | ?:[\\/]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE=ltris VERSION=1.0.19 cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' MKINSTALLDIRS= if test -n "$ac_aux_dir"; then case "$ac_aux_dir" in /*) MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" ;; *) MKINSTALLDIRS="\$(top_builddir)/$ac_aux_dir/mkinstalldirs" ;; esac fi if test -z "$MKINSTALLDIRS"; then MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5 $as_echo_n "checking whether NLS is requested... " >&6; } # Check whether --enable-nls was given. if test "${enable_nls+set}" = set; then : enableval=$enable_nls; USE_NLS=$enableval else USE_NLS=yes fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 $as_echo "$USE_NLS" >&6; } # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_MSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case "$MSGFMT" in [\\/]* | ?:[\\/]*) ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then if $ac_dir/$ac_word --statistics /dev/null >/dev/null 2>&1 && (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then ac_cv_path_MSGFMT="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_MSGFMT" && ac_cv_path_MSGFMT=":" ;; esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGFMT" >&5 $as_echo "$MSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_GMSGFMT+:} false; then : $as_echo_n "(cached) " >&6 else case $GMSGFMT in [\\/]* | ?:[\\/]*) ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_GMSGFMT="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_GMSGFMT" && ac_cv_path_GMSGFMT="$MSGFMT" ;; esac fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $GMSGFMT" >&5 $as_echo "$GMSGFMT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_XGETTEXT+:} false; then : $as_echo_n "(cached) " >&6 else case "$XGETTEXT" in [\\/]* | ?:[\\/]*) ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >/dev/null 2>&1 && (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then ac_cv_path_XGETTEXT="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_XGETTEXT" && ac_cv_path_XGETTEXT=":" ;; esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $XGETTEXT" >&5 $as_echo "$XGETTEXT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi rm -f messages.po # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "msgmerge", so it can be a program name with args. set dummy msgmerge; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_MSGMERGE+:} false; then : $as_echo_n "(cached) " >&6 else case "$MSGMERGE" in [\\/]* | ?:[\\/]*) ac_cv_path_MSGMERGE="$MSGMERGE" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then if $ac_dir/$ac_word --update -q /dev/null /dev/null >/dev/null 2>&1; then ac_cv_path_MSGMERGE="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" test -z "$ac_cv_path_MSGMERGE" && ac_cv_path_MSGMERGE=":" ;; esac fi MSGMERGE="$ac_cv_path_MSGMERGE" if test "$MSGMERGE" != ":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MSGMERGE" >&5 $as_echo "$MSGMERGE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "$GMSGFMT" != ":"; then if $GMSGFMT --statistics /dev/null >/dev/null 2>&1 && (if $GMSGFMT --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then : ; else GMSGFMT=`echo "$GMSGFMT" | sed -e 's,^.*/,,'` { $as_echo "$as_me:${as_lineno-$LINENO}: result: found $GMSGFMT program is not GNU msgfmt; ignore it" >&5 $as_echo "found $GMSGFMT program is not GNU msgfmt; ignore it" >&6; } GMSGFMT=":" fi fi if test "$XGETTEXT" != ":"; then if $XGETTEXT --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >/dev/null 2>&1 && (if $XGETTEXT --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then : ; else { $as_echo "$as_me:${as_lineno-$LINENO}: result: found xgettext program is not GNU xgettext; ignore it" >&5 $as_echo "found xgettext program is not GNU xgettext; ignore it" >&6; } XGETTEXT=":" fi rm -f messages.po fi ac_config_commands="$ac_config_commands default-1" DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from `make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 $as_echo "$RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_RANLIB="ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 $as_echo "$ac_ct_RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strerror in -lcposix" >&5 $as_echo_n "checking for strerror in -lcposix... " >&6; } if ${ac_cv_lib_cposix_strerror+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lcposix $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char strerror (); int main () { return strerror (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_cposix_strerror=yes else ac_cv_lib_cposix_strerror=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_cposix_strerror" >&5 $as_echo "$ac_cv_lib_cposix_strerror" >&6; } if test "x$ac_cv_lib_cposix_strerror" = xyes; then : LIBS="$LIBS -lcposix" fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5 $as_echo_n "checking for an ANSI C-conforming const... " >&6; } if ${ac_cv_c_const+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { /* FIXME: Include the comments suggested by Paul. */ #ifndef __cplusplus /* Ultrix mips cc rejects this. */ typedef int charset[2]; const charset cs; /* SunOS 4.1.1 cc rejects this. */ char const *const *pcpcc; char **ppc; /* NEC SVR4.0.2 mips cc rejects this. */ struct point {int x, y;}; static struct point const zero = {0,0}; /* AIX XL C 1.02.0.0 rejects this. It does not let you subtract one const X* pointer from another in an arm of an if-expression whose if-part is not a constant expression */ const char *g = "string"; pcpcc = &g + (g ? g-g : 0); /* HPUX 7.0 cc rejects these. */ ++pcpcc; ppc = (char**) pcpcc; pcpcc = (char const *const *) ppc; { /* SCO 3.2v4 cc rejects this. */ char *t; char const *s = 0 ? (char *) 0 : (char const *) 0; *t++ = 0; if (s) return 0; } { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */ int x[] = {25, 17}; const int *foo = &x[0]; ++foo; } { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ typedef const int *iptr; iptr p = 0; ++p; } { /* AIX XL C 1.02.0.0 rejects this saying "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ struct s { int j; const int *ap[3]; }; struct s *b; b->j = 5; } { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ const int foo = 10; if (!foo) return 0; } return !cs[0] && !zero.x; #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_c_const=yes else ac_cv_c_const=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_const" >&5 $as_echo "$ac_cv_c_const" >&6; } if test $ac_cv_c_const = no; then $as_echo "#define const /**/" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for signed" >&5 $as_echo_n "checking for signed... " >&6; } if ${bh_cv_c_signed+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { signed char x; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : bh_cv_c_signed=yes else bh_cv_c_signed=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $bh_cv_c_signed" >&5 $as_echo "$bh_cv_c_signed" >&6; } if test $bh_cv_c_signed = no; then $as_echo "#define signed /**/" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inline" >&5 $as_echo_n "checking for inline... " >&6; } if ${ac_cv_c_inline+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __cplusplus typedef int foo_t; static $ac_kw foo_t static_foo () {return 0; } $ac_kw foo_t foo () {return 0; } #endif _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_c_inline=$ac_kw fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext test "$ac_cv_c_inline" != no && break done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_inline" >&5 $as_echo "$ac_cv_c_inline" >&6; } case $ac_cv_c_inline in inline | yes) ;; *) case $ac_cv_c_inline in no) ac_val=;; *) ac_val=$ac_cv_c_inline;; esac cat >>confdefs.h <<_ACEOF #ifndef __cplusplus #define inline $ac_val #endif _ACEOF ;; esac # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done ac_fn_c_check_type "$LINENO" "off_t" "ac_cv_type_off_t" "$ac_includes_default" if test "x$ac_cv_type_off_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define off_t long int _ACEOF fi ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" if test "x$ac_cv_type_size_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define size_t unsigned int _ACEOF fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long long" >&5 $as_echo_n "checking for long long... " >&6; } if ${ac_cv_type_long_long+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ long long ll = 1LL; int i = 63; int main () { long long llmax = (long long) -1; return ll << i | ll >> i | llmax / ll | llmax % ll; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_type_long_long=yes else ac_cv_type_long_long=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_long_long" >&5 $as_echo "$ac_cv_type_long_long" >&6; } if test $ac_cv_type_long_long = yes; then $as_echo "#define HAVE_LONG_LONG 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long double" >&5 $as_echo_n "checking for long double... " >&6; } if ${gt_cv_c_long_double+:} false; then : $as_echo_n "(cached) " >&6 else if test "$GCC" = yes; then gt_cv_c_long_double=yes else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* The Stardent Vistra knows sizeof(long double), but does not support it. */ long double foo = 0.0; /* On Ultrix 4.3 cc, long double is 4 and double is 8. */ int array [2*(sizeof(long double) >= sizeof(double)) - 1]; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gt_cv_c_long_double=yes else gt_cv_c_long_double=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_c_long_double" >&5 $as_echo "$gt_cv_c_long_double" >&6; } if test $gt_cv_c_long_double = yes; then $as_echo "#define HAVE_LONG_DOUBLE 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for wchar_t" >&5 $as_echo_n "checking for wchar_t... " >&6; } if ${gt_cv_c_wchar_t+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include wchar_t foo = (wchar_t)'\0'; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gt_cv_c_wchar_t=yes else gt_cv_c_wchar_t=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_c_wchar_t" >&5 $as_echo "$gt_cv_c_wchar_t" >&6; } if test $gt_cv_c_wchar_t = yes; then $as_echo "#define HAVE_WCHAR_T 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for wint_t" >&5 $as_echo_n "checking for wint_t... " >&6; } if ${gt_cv_c_wint_t+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include wint_t foo = (wchar_t)'\0'; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gt_cv_c_wint_t=yes else gt_cv_c_wint_t=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_c_wint_t" >&5 $as_echo "$gt_cv_c_wint_t" >&6; } if test $gt_cv_c_wint_t = yes; then $as_echo "#define HAVE_WINT_T 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inttypes.h" >&5 $as_echo_n "checking for inttypes.h... " >&6; } if ${jm_ac_cv_header_inttypes_h+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { uintmax_t i = (uintmax_t) -1; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : jm_ac_cv_header_inttypes_h=yes else jm_ac_cv_header_inttypes_h=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $jm_ac_cv_header_inttypes_h" >&5 $as_echo "$jm_ac_cv_header_inttypes_h" >&6; } if test $jm_ac_cv_header_inttypes_h = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_INTTYPES_H_WITH_UINTMAX 1 _ACEOF fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdint.h" >&5 $as_echo_n "checking for stdint.h... " >&6; } if ${jm_ac_cv_header_stdint_h+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { uintmax_t i = (uintmax_t) -1; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : jm_ac_cv_header_stdint_h=yes else jm_ac_cv_header_stdint_h=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $jm_ac_cv_header_stdint_h" >&5 $as_echo "$jm_ac_cv_header_stdint_h" >&6; } if test $jm_ac_cv_header_stdint_h = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_STDINT_H_WITH_UINTMAX 1 _ACEOF fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for intmax_t" >&5 $as_echo_n "checking for intmax_t... " >&6; } if ${gt_cv_c_intmax_t+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if HAVE_STDINT_H_WITH_UINTMAX #include #endif #if HAVE_INTTYPES_H_WITH_UINTMAX #include #endif int main () { intmax_t x = -1; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gt_cv_c_intmax_t=yes else gt_cv_c_intmax_t=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_c_intmax_t" >&5 $as_echo "$gt_cv_c_intmax_t" >&6; } if test $gt_cv_c_intmax_t = yes; then $as_echo "#define HAVE_INTMAX_T 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether printf() supports POSIX/XSI format strings" >&5 $as_echo_n "checking whether printf() supports POSIX/XSI format strings... " >&6; } if ${gt_cv_func_printf_posix+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if defined __NetBSD__ || defined _MSC_VER || defined __MINGW32__ || defined __CYGWIN__ notposix #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "notposix" >/dev/null 2>&1; then : gt_cv_func_printf_posix="guessing no" else gt_cv_func_printf_posix="guessing yes" fi rm -f conftest* else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include /* The string "%2$d %1$d", with dollar characters protected from the shell's dollar expansion (possibly an autoconf bug). */ static char format[] = { '%', '2', '$', 'd', ' ', '%', '1', '$', 'd', '\0' }; static char buf[100]; int main () { sprintf (buf, format, 33, 55); return (strcmp (buf, "55 33") != 0); } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gt_cv_func_printf_posix=yes else gt_cv_func_printf_posix=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_printf_posix" >&5 $as_echo "$gt_cv_func_printf_posix" >&6; } case $gt_cv_func_printf_posix in *yes) $as_echo "#define HAVE_POSIX_PRINTF 1" >>confdefs.h ;; esac # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working alloca.h" >&5 $as_echo_n "checking for working alloca.h... " >&6; } if ${ac_cv_working_alloca_h+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { char *p = (char *) alloca (2 * sizeof (int)); if (p) return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_working_alloca_h=yes else ac_cv_working_alloca_h=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_working_alloca_h" >&5 $as_echo "$ac_cv_working_alloca_h" >&6; } if test $ac_cv_working_alloca_h = yes; then $as_echo "#define HAVE_ALLOCA_H 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for alloca" >&5 $as_echo_n "checking for alloca... " >&6; } if ${ac_cv_func_alloca_works+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __GNUC__ # define alloca __builtin_alloca #else # ifdef _MSC_VER # include # define alloca _alloca # else # ifdef HAVE_ALLOCA_H # include # else # ifdef _AIX #pragma alloca # else # ifndef alloca /* predefined by HP cc +Olibcalls */ void *alloca (size_t); # endif # endif # endif # endif #endif int main () { char *p = (char *) alloca (1); if (p) return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_func_alloca_works=yes else ac_cv_func_alloca_works=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_alloca_works" >&5 $as_echo "$ac_cv_func_alloca_works" >&6; } if test $ac_cv_func_alloca_works = yes; then $as_echo "#define HAVE_ALLOCA 1" >>confdefs.h else # The SVR3 libPW and SVR4 libucb both contain incompatible functions # that cause trouble. Some versions do not even contain alloca or # contain a buggy version. If you still want to use their alloca, # use ar to extract alloca.o from them instead of compiling alloca.c. ALLOCA=\${LIBOBJDIR}alloca.$ac_objext $as_echo "#define C_ALLOCA 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether \`alloca.c' needs Cray hooks" >&5 $as_echo_n "checking whether \`alloca.c' needs Cray hooks... " >&6; } if ${ac_cv_os_cray+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if defined CRAY && ! defined CRAY2 webecray #else wenotbecray #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "webecray" >/dev/null 2>&1; then : ac_cv_os_cray=yes else ac_cv_os_cray=no fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_os_cray" >&5 $as_echo "$ac_cv_os_cray" >&6; } if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define CRAY_STACKSEG_END $ac_func _ACEOF break fi done fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking stack direction for C alloca" >&5 $as_echo_n "checking stack direction for C alloca... " >&6; } if ${ac_cv_c_stack_direction+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : ac_cv_c_stack_direction=0 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default int find_stack_direction () { static char *addr = 0; auto char dummy; if (addr == 0) { addr = &dummy; return find_stack_direction (); } else return (&dummy > addr) ? 1 : -1; } int main () { return find_stack_direction () < 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_c_stack_direction=1 else ac_cv_c_stack_direction=-1 fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_stack_direction" >&5 $as_echo "$ac_cv_c_stack_direction" >&6; } cat >>confdefs.h <<_ACEOF #define STACK_DIRECTION $ac_cv_c_stack_direction _ACEOF fi for ac_header in $ac_header_list do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_func in getpagesize do : ac_fn_c_check_func "$LINENO" "getpagesize" "ac_cv_func_getpagesize" if test "x$ac_cv_func_getpagesize" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_GETPAGESIZE 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working mmap" >&5 $as_echo_n "checking for working mmap... " >&6; } if ${ac_cv_func_mmap_fixed_mapped+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : ac_cv_func_mmap_fixed_mapped=no else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default /* malloc might have been renamed as rpl_malloc. */ #undef malloc /* Thanks to Mike Haertel and Jim Avera for this test. Here is a matrix of mmap possibilities: mmap private not fixed mmap private fixed at somewhere currently unmapped mmap private fixed at somewhere already mapped mmap shared not fixed mmap shared fixed at somewhere currently unmapped mmap shared fixed at somewhere already mapped For private mappings, we should verify that changes cannot be read() back from the file, nor mmap's back from the file at a different address. (There have been systems where private was not correctly implemented like the infamous i386 svr4.0, and systems where the VM page cache was not coherent with the file system buffer cache like early versions of FreeBSD and possibly contemporary NetBSD.) For shared mappings, we should conversely verify that changes get propagated back to all the places they're supposed to be. Grep wants private fixed already mapped. The main things grep needs to know about mmap are: * does it exist and is it safe to write into the mmap'd area * how to use it (BSD variants) */ #include #include #if !defined STDC_HEADERS && !defined HAVE_STDLIB_H char *malloc (); #endif /* This mess was copied from the GNU getpagesize.h. */ #ifndef HAVE_GETPAGESIZE # ifdef _SC_PAGESIZE # define getpagesize() sysconf(_SC_PAGESIZE) # else /* no _SC_PAGESIZE */ # ifdef HAVE_SYS_PARAM_H # include # ifdef EXEC_PAGESIZE # define getpagesize() EXEC_PAGESIZE # else /* no EXEC_PAGESIZE */ # ifdef NBPG # define getpagesize() NBPG * CLSIZE # ifndef CLSIZE # define CLSIZE 1 # endif /* no CLSIZE */ # else /* no NBPG */ # ifdef NBPC # define getpagesize() NBPC # else /* no NBPC */ # ifdef PAGESIZE # define getpagesize() PAGESIZE # endif /* PAGESIZE */ # endif /* no NBPC */ # endif /* no NBPG */ # endif /* no EXEC_PAGESIZE */ # else /* no HAVE_SYS_PARAM_H */ # define getpagesize() 8192 /* punt totally */ # endif /* no HAVE_SYS_PARAM_H */ # endif /* no _SC_PAGESIZE */ #endif /* no HAVE_GETPAGESIZE */ int main () { char *data, *data2, *data3; const char *cdata2; int i, pagesize; int fd, fd2; pagesize = getpagesize (); /* First, make a file with some known garbage in it. */ data = (char *) malloc (pagesize); if (!data) return 1; for (i = 0; i < pagesize; ++i) *(data + i) = rand (); umask (0); fd = creat ("conftest.mmap", 0600); if (fd < 0) return 2; if (write (fd, data, pagesize) != pagesize) return 3; close (fd); /* Next, check that the tail of a page is zero-filled. File must have non-zero length, otherwise we risk SIGBUS for entire page. */ fd2 = open ("conftest.txt", O_RDWR | O_CREAT | O_TRUNC, 0600); if (fd2 < 0) return 4; cdata2 = ""; if (write (fd2, cdata2, 1) != 1) return 5; data2 = (char *) mmap (0, pagesize, PROT_READ | PROT_WRITE, MAP_SHARED, fd2, 0L); if (data2 == MAP_FAILED) return 6; for (i = 0; i < pagesize; ++i) if (*(data2 + i)) return 7; close (fd2); if (munmap (data2, pagesize)) return 8; /* Next, try to mmap the file at a fixed address which already has something else allocated at it. If we can, also make sure that we see the same garbage. */ fd = open ("conftest.mmap", O_RDWR); if (fd < 0) return 9; if (data2 != mmap (data2, pagesize, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_FIXED, fd, 0L)) return 10; for (i = 0; i < pagesize; ++i) if (*(data + i) != *(data2 + i)) return 11; /* Finally, make sure that changes to the mapped area do not percolate back to the file as seen by read(). (This is a bug on some variants of i386 svr4.0.) */ for (i = 0; i < pagesize; ++i) *(data2 + i) = *(data2 + i) + 1; data3 = (char *) malloc (pagesize); if (!data3) return 12; if (read (fd, data3, pagesize) != pagesize) return 13; for (i = 0; i < pagesize; ++i) if (*(data + i) != *(data3 + i)) return 14; close (fd); return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : ac_cv_func_mmap_fixed_mapped=yes else ac_cv_func_mmap_fixed_mapped=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_mmap_fixed_mapped" >&5 $as_echo "$ac_cv_func_mmap_fixed_mapped" >&6; } if test $ac_cv_func_mmap_fixed_mapped = yes; then $as_echo "#define HAVE_MMAP 1" >>confdefs.h fi rm -f conftest.mmap conftest.txt { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C Library 2.1 or newer" >&5 $as_echo_n "checking whether we are using the GNU C Library 2.1 or newer... " >&6; } if ${ac_cv_gnu_library_2_1+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #ifdef __GNU_LIBRARY__ #if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2) Lucky GNU user #endif #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "Lucky GNU user" >/dev/null 2>&1; then : ac_cv_gnu_library_2_1=yes else ac_cv_gnu_library_2_1=no fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_gnu_library_2_1" >&5 $as_echo "$ac_cv_gnu_library_2_1" >&6; } GLIBC21="$ac_cv_gnu_library_2_1" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether integer division by zero raises SIGFPE" >&5 $as_echo_n "checking whether integer division by zero raises SIGFPE... " >&6; } if ${gt_cv_int_divbyzero_sigfpe+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : # Guess based on the CPU. case "$host_cpu" in alpha* | i3456786 | m68k | s390*) gt_cv_int_divbyzero_sigfpe="guessing yes";; *) gt_cv_int_divbyzero_sigfpe="guessing no";; esac else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include static void #ifdef __cplusplus sigfpe_handler (int sig) #else sigfpe_handler (sig) int sig; #endif { /* Exit with code 0 if SIGFPE, with code 1 if any other signal. */ exit (sig != SIGFPE); } int x = 1; int y = 0; int z; int nan; int main () { signal (SIGFPE, sigfpe_handler); /* IRIX and AIX (when "xlc -qcheck" is used) yield signal SIGTRAP. */ #if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP) signal (SIGTRAP, sigfpe_handler); #endif /* Linux/SPARC yields signal SIGILL. */ #if defined (__sparc__) && defined (__linux__) signal (SIGILL, sigfpe_handler); #endif z = x / y; nan = y / y; exit (1); } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gt_cv_int_divbyzero_sigfpe=yes else gt_cv_int_divbyzero_sigfpe=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_int_divbyzero_sigfpe" >&5 $as_echo "$gt_cv_int_divbyzero_sigfpe" >&6; } case "$gt_cv_int_divbyzero_sigfpe" in *yes) value=1;; *) value=0;; esac cat >>confdefs.h <<_ACEOF #define INTDIV0_RAISES_SIGFPE $value _ACEOF { $as_echo "$as_me:${as_lineno-$LINENO}: checking for unsigned long long" >&5 $as_echo_n "checking for unsigned long long... " >&6; } if ${ac_cv_type_unsigned_long_long+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ unsigned long long ull = 1ULL; int i = 63; int main () { unsigned long long ullmax = (unsigned long long) -1; return ull << i | ull >> i | ullmax / ull | ullmax % ull; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_type_unsigned_long_long=yes else ac_cv_type_unsigned_long_long=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_unsigned_long_long" >&5 $as_echo "$ac_cv_type_unsigned_long_long" >&6; } if test $ac_cv_type_unsigned_long_long = yes; then $as_echo "#define HAVE_UNSIGNED_LONG_LONG 1" >>confdefs.h fi if test $jm_ac_cv_header_inttypes_h = no && test $jm_ac_cv_header_stdint_h = no; then test $ac_cv_type_unsigned_long_long = yes \ && ac_type='unsigned long long' \ || ac_type='unsigned long' cat >>confdefs.h <<_ACEOF #define uintmax_t $ac_type _ACEOF else $as_echo "#define HAVE_UINTMAX_T 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inttypes.h" >&5 $as_echo_n "checking for inttypes.h... " >&6; } if ${gt_cv_header_inttypes_h+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gt_cv_header_inttypes_h=yes else gt_cv_header_inttypes_h=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_header_inttypes_h" >&5 $as_echo "$gt_cv_header_inttypes_h" >&6; } if test $gt_cv_header_inttypes_h = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_INTTYPES_H 1 _ACEOF fi if test $gt_cv_header_inttypes_h = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the inttypes.h PRIxNN macros are broken" >&5 $as_echo_n "checking whether the inttypes.h PRIxNN macros are broken... " >&6; } if ${gt_cv_inttypes_pri_broken+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #ifdef PRId32 char *p = PRId32; #endif int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gt_cv_inttypes_pri_broken=no else gt_cv_inttypes_pri_broken=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_inttypes_pri_broken" >&5 $as_echo "$gt_cv_inttypes_pri_broken" >&6; } fi if test "$gt_cv_inttypes_pri_broken" = yes; then cat >>confdefs.h <<_ACEOF #define PRI_MACROS_BROKEN 1 _ACEOF fi for ac_header in stdint.h do : ac_fn_c_check_header_mongrel "$LINENO" "stdint.h" "ac_cv_header_stdint_h" "$ac_includes_default" if test "x$ac_cv_header_stdint_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STDINT_H 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SIZE_MAX" >&5 $as_echo_n "checking for SIZE_MAX... " >&6; } result= cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #if HAVE_STDINT_H #include #endif #ifdef SIZE_MAX Found it #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "Found it" >/dev/null 2>&1; then : result=yes fi rm -f conftest* if test -z "$result"; then if ac_fn_c_compute_int "$LINENO" "~(size_t)0 / 10" "res_hi" "#include "; then : else result=? fi if ac_fn_c_compute_int "$LINENO" "~(size_t)0 % 10" "res_lo" "#include "; then : else result=? fi if ac_fn_c_compute_int "$LINENO" "sizeof (size_t) <= sizeof (unsigned int)" "fits_in_uint" "#include "; then : else result=? fi if test "$fits_in_uint" = 1; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include extern size_t foo; extern unsigned long foo; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : fits_in_uint=0 fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi if test -z "$result"; then if test "$fits_in_uint" = 1; then result="$res_hi$res_lo"U else result="$res_hi$res_lo"UL fi else result='~(size_t)0' fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $result" >&5 $as_echo "$result" >&6; } if test "$result" != yes; then cat >>confdefs.h <<_ACEOF #define SIZE_MAX $result _ACEOF fi for ac_header in stdint.h do : ac_fn_c_check_header_mongrel "$LINENO" "stdint.h" "ac_cv_header_stdint_h" "$ac_includes_default" if test "x$ac_cv_header_stdint_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_STDINT_H 1 _ACEOF fi done if test "X$prefix" = "XNONE"; then acl_final_prefix="$ac_default_prefix" else acl_final_prefix="$prefix" fi if test "X$exec_prefix" = "XNONE"; then acl_final_exec_prefix='${prefix}' else acl_final_exec_prefix="$exec_prefix" fi acl_save_prefix="$prefix" prefix="$acl_final_prefix" eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" prefix="$acl_save_prefix" # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by GCC" >&5 $as_echo_n "checking for ld used by GCC... " >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | [A-Za-z]:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the path of ld ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi if ${acl_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then acl_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some GNU ld's only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$acl_cv_path_LD" -v 2>&1 < /dev/null` in *GNU* | *'with BFD'*) test "$with_gnu_ld" != no && break ;; *) test "$with_gnu_ld" != yes && break ;; esac fi done IFS="$ac_save_ifs" else acl_cv_path_LD="$LD" # Let the user override the test with a path. fi fi LD="$acl_cv_path_LD" if test -n "$LD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LD" >&5 $as_echo "$LD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if ${acl_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU ld's only accept -v. case `$LD -v 2>&1 &5 $as_echo "$acl_cv_prog_gnu_ld" >&6; } with_gnu_ld=$acl_cv_prog_gnu_ld { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shared library run path origin" >&5 $as_echo_n "checking for shared library run path origin... " >&6; } if ${acl_cv_rpath+:} false; then : $as_echo_n "(cached) " >&6 else CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh . ./conftest.sh rm -f ./conftest.sh acl_cv_rpath=done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_rpath" >&5 $as_echo "$acl_cv_rpath" >&6; } wl="$acl_cv_wl" libext="$acl_cv_libext" shlibext="$acl_cv_shlibext" hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" hardcode_direct="$acl_cv_hardcode_direct" hardcode_minus_L="$acl_cv_hardcode_minus_L" # Check whether --enable-rpath was given. if test "${enable_rpath+set}" = set; then : enableval=$enable_rpath; : else enable_rpath=yes fi use_additional=yes acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" # Check whether --with-libiconv-prefix was given. if test "${with_libiconv_prefix+set}" = set; then : withval=$with_libiconv_prefix; if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" else additional_includedir="$withval/include" additional_libdir="$withval/lib" fi fi fi LIBICONV= LTLIBICONV= INCICONV= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='iconv ' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIBICONV="${LIBICONV}${LIBICONV:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$value" else : fi else found_dir= found_la= found_so= found_a= if test $use_additional = yes; then if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext"; then found_dir="$additional_libdir" found_so="$additional_libdir/lib$name.$shlibext" if test -f "$additional_libdir/lib$name.la"; then found_la="$additional_libdir/lib$name.la" fi else if test -f "$additional_libdir/lib$name.$libext"; then found_dir="$additional_libdir" found_a="$additional_libdir/lib$name.$libext" if test -f "$additional_libdir/lib$name.la"; then found_la="$additional_libdir/lib$name.la" fi fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` if test -n "$shlibext" && test -f "$dir/lib$name.$shlibext"; then found_dir="$dir" found_so="$dir/lib$name.$shlibext" if test -f "$dir/lib$name.la"; then found_la="$dir/lib$name.la" fi else if test -f "$dir/lib$name.$libext"; then found_dir="$dir" found_a="$dir/lib$name.$libext" if test -f "$dir/lib$name.la"; then found_la="$dir/lib$name.la" fi fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/lib"; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi if test "$hardcode_direct" = yes; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else haveit= for x in $LDFLAGS $LIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir" fi if test "$hardcode_minus_L" != no; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_so" else LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then LIBICONV="${LIBICONV}${LIBICONV:+ }$found_a" else LIBICONV="${LIBICONV}${LIBICONV:+ }-L$found_dir -l$name" fi fi additional_includedir= case "$found_dir" in */lib | */lib/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e 's,/lib/*$,,'` additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux*) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INCICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then INCICONV="${INCICONV}${INCICONV:+ }-I$additional_includedir" fi fi fi fi fi if test -n "$found_la"; then save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` if test "X$additional_libdir" != "X/usr/lib"; then haveit= if test "X$additional_libdir" = "X/usr/local/lib"; then if test -n "$GCC"; then case $host_os in linux*) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LIBICONV="${LIBICONV}${LIBICONV:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIBICONV; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) LIBICONV="${LIBICONV}${LIBICONV:+ }$dep" LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }$dep" ;; esac done fi else LIBICONV="${LIBICONV}${LIBICONV:+ }-l$name" LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$hardcode_libdir_separator"; then alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" else for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBICONV="${LIBICONV}${LIBICONV:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do LTLIBICONV="${LTLIBICONV}${LTLIBICONV:+ }-R$found_dir" done fi ac_fn_c_check_type "$LINENO" "ptrdiff_t" "ac_cv_type_ptrdiff_t" "$ac_includes_default" if test "x$ac_cv_type_ptrdiff_t" = xyes; then : else $as_echo "#define ptrdiff_t long" >>confdefs.h fi for ac_header in argz.h limits.h locale.h nl_types.h malloc.h stddef.h \ stdlib.h string.h unistd.h sys/param.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_func in asprintf fwprintf getcwd getegid geteuid getgid getuid \ mempcpy munmap putenv setenv setlocale snprintf stpcpy strcasecmp strdup \ strtoul tsearch wcslen __argz_count __argz_stringify __argz_next \ __fsetlocking do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether _snprintf is declared" >&5 $as_echo_n "checking whether _snprintf is declared... " >&6; } if ${ac_cv_have_decl__snprintf+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { #ifndef _snprintf char *p = (char *) _snprintf; #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_have_decl__snprintf=yes else ac_cv_have_decl__snprintf=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_decl__snprintf" >&5 $as_echo "$ac_cv_have_decl__snprintf" >&6; } if test $ac_cv_have_decl__snprintf = yes; then gt_value=1 else gt_value=0 fi cat >>confdefs.h <<_ACEOF #define HAVE_DECL__SNPRINTF $gt_value _ACEOF { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether _snwprintf is declared" >&5 $as_echo_n "checking whether _snwprintf is declared... " >&6; } if ${ac_cv_have_decl__snwprintf+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { #ifndef _snwprintf char *p = (char *) _snwprintf; #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_have_decl__snwprintf=yes else ac_cv_have_decl__snwprintf=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_decl__snwprintf" >&5 $as_echo "$ac_cv_have_decl__snwprintf" >&6; } if test $ac_cv_have_decl__snwprintf = yes; then gt_value=1 else gt_value=0 fi cat >>confdefs.h <<_ACEOF #define HAVE_DECL__SNWPRINTF $gt_value _ACEOF { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether feof_unlocked is declared" >&5 $as_echo_n "checking whether feof_unlocked is declared... " >&6; } if ${ac_cv_have_decl_feof_unlocked+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { #ifndef feof_unlocked char *p = (char *) feof_unlocked; #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_have_decl_feof_unlocked=yes else ac_cv_have_decl_feof_unlocked=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_decl_feof_unlocked" >&5 $as_echo "$ac_cv_have_decl_feof_unlocked" >&6; } if test $ac_cv_have_decl_feof_unlocked = yes; then gt_value=1 else gt_value=0 fi cat >>confdefs.h <<_ACEOF #define HAVE_DECL_FEOF_UNLOCKED $gt_value _ACEOF { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether fgets_unlocked is declared" >&5 $as_echo_n "checking whether fgets_unlocked is declared... " >&6; } if ${ac_cv_have_decl_fgets_unlocked+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { #ifndef fgets_unlocked char *p = (char *) fgets_unlocked; #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_have_decl_fgets_unlocked=yes else ac_cv_have_decl_fgets_unlocked=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_decl_fgets_unlocked" >&5 $as_echo "$ac_cv_have_decl_fgets_unlocked" >&6; } if test $ac_cv_have_decl_fgets_unlocked = yes; then gt_value=1 else gt_value=0 fi cat >>confdefs.h <<_ACEOF #define HAVE_DECL_FGETS_UNLOCKED $gt_value _ACEOF { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether getc_unlocked is declared" >&5 $as_echo_n "checking whether getc_unlocked is declared... " >&6; } if ${ac_cv_have_decl_getc_unlocked+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { #ifndef getc_unlocked char *p = (char *) getc_unlocked; #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_have_decl_getc_unlocked=yes else ac_cv_have_decl_getc_unlocked=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_have_decl_getc_unlocked" >&5 $as_echo "$ac_cv_have_decl_getc_unlocked" >&6; } if test $ac_cv_have_decl_getc_unlocked = yes; then gt_value=1 else gt_value=0 fi cat >>confdefs.h <<_ACEOF #define HAVE_DECL_GETC_UNLOCKED $gt_value _ACEOF case $gt_cv_func_printf_posix in *yes) HAVE_POSIX_PRINTF=1 ;; *) HAVE_POSIX_PRINTF=0 ;; esac if test "$ac_cv_func_asprintf" = yes; then HAVE_ASPRINTF=1 else HAVE_ASPRINTF=0 fi if test "$ac_cv_func_snprintf" = yes; then HAVE_SNPRINTF=1 else HAVE_SNPRINTF=0 fi if test "$ac_cv_func_wprintf" = yes; then HAVE_WPRINTF=1 else HAVE_WPRINTF=0 fi am_save_CPPFLAGS="$CPPFLAGS" for element in $INCICONV; do haveit= for x in $CPPFLAGS; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv" >&5 $as_echo_n "checking for iconv... " >&6; } if ${am_cv_func_iconv+:} false; then : $as_echo_n "(cached) " >&6 else am_cv_func_iconv="no, consider installing GNU libiconv" am_cv_lib_iconv=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : am_cv_func_iconv=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test "$am_cv_func_iconv" != yes; then am_save_LIBS="$LIBS" LIBS="$LIBS $LIBICONV" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : am_cv_lib_iconv=yes am_cv_func_iconv=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$am_save_LIBS" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_func_iconv" >&5 $as_echo "$am_cv_func_iconv" >&6; } if test "$am_cv_func_iconv" = yes; then $as_echo "#define HAVE_ICONV 1" >>confdefs.h fi if test "$am_cv_lib_iconv" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libiconv" >&5 $as_echo_n "checking how to link with libiconv... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBICONV" >&5 $as_echo "$LIBICONV" >&6; } else CPPFLAGS="$am_save_CPPFLAGS" LIBICONV= LTLIBICONV= fi if test "$am_cv_func_iconv" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for iconv declaration" >&5 $as_echo_n "checking for iconv declaration... " >&6; } if ${am_cv_proto_iconv+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include extern #ifdef __cplusplus "C" #endif #if defined(__STDC__) || defined(__cplusplus) size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); #else size_t iconv(); #endif int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : am_cv_proto_iconv_arg1="" else am_cv_proto_iconv_arg1="const" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);" fi am_cv_proto_iconv=`echo "$am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${ac_t:- }$am_cv_proto_iconv" >&5 $as_echo "${ac_t:- }$am_cv_proto_iconv" >&6; } cat >>confdefs.h <<_ACEOF #define ICONV_CONST $am_cv_proto_iconv_arg1 _ACEOF fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for nl_langinfo and CODESET" >&5 $as_echo_n "checking for nl_langinfo and CODESET... " >&6; } if ${am_cv_langinfo_codeset+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { char* cs = nl_langinfo(CODESET); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : am_cv_langinfo_codeset=yes else am_cv_langinfo_codeset=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_langinfo_codeset" >&5 $as_echo "$am_cv_langinfo_codeset" >&6; } if test $am_cv_langinfo_codeset = yes; then $as_echo "#define HAVE_LANGINFO_CODESET 1" >>confdefs.h fi if test $ac_cv_header_locale_h = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LC_MESSAGES" >&5 $as_echo_n "checking for LC_MESSAGES... " >&6; } if ${am_cv_val_LC_MESSAGES+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { return LC_MESSAGES ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : am_cv_val_LC_MESSAGES=yes else am_cv_val_LC_MESSAGES=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_val_LC_MESSAGES" >&5 $as_echo "$am_cv_val_LC_MESSAGES" >&6; } if test $am_cv_val_LC_MESSAGES = yes; then $as_echo "#define HAVE_LC_MESSAGES 1" >>confdefs.h fi fi for ac_prog in bison do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_INTLBISON+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$INTLBISON"; then ac_cv_prog_INTLBISON="$INTLBISON" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_INTLBISON="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi INTLBISON=$ac_cv_prog_INTLBISON if test -n "$INTLBISON"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INTLBISON" >&5 $as_echo "$INTLBISON" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$INTLBISON" && break done if test -z "$INTLBISON"; then ac_verc_fail=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking version of bison" >&5 $as_echo_n "checking version of bison... " >&6; } ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'` case $ac_prog_version in '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;; 1.2[6-9]* | 1.[3-9][0-9]* | [2-9].*) ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;; *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_prog_version" >&5 $as_echo "$ac_prog_version" >&6; } fi if test $ac_verc_fail = yes; then INTLBISON=: fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NLS is requested" >&5 $as_echo_n "checking whether NLS is requested... " >&6; } # Check whether --enable-nls was given. if test "${enable_nls+set}" = set; then : enableval=$enable_nls; USE_NLS=$enableval else USE_NLS=yes fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 $as_echo "$USE_NLS" >&6; } BUILD_INCLUDED_LIBINTL=no USE_INCLUDED_LIBINTL=no LIBINTL= LTLIBINTL= POSUB= if test "$USE_NLS" = "yes"; then gt_use_preinstalled_gnugettext=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether included gettext is requested" >&5 $as_echo_n "checking whether included gettext is requested... " >&6; } # Check whether --with-included-gettext was given. if test "${with_included_gettext+set}" = set; then : withval=$with_included_gettext; nls_cv_force_use_gnu_gettext=$withval else nls_cv_force_use_gnu_gettext=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $nls_cv_force_use_gnu_gettext" >&5 $as_echo "$nls_cv_force_use_gnu_gettext" >&6; } nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" if test "$nls_cv_force_use_gnu_gettext" != "yes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libc" >&5 $as_echo_n "checking for GNU gettext in libc... " >&6; } if ${gt_cv_func_gnugettext1_libc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include extern int _nl_msg_cat_cntr; extern int *_nl_domain_bindings; int main () { bindtextdomain ("", ""); return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_domain_bindings ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gt_cv_func_gnugettext1_libc=yes else gt_cv_func_gnugettext1_libc=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_gnugettext1_libc" >&5 $as_echo "$gt_cv_func_gnugettext1_libc" >&6; } if test "$gt_cv_func_gnugettext1_libc" != "yes"; then use_additional=yes acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" # Check whether --with-libintl-prefix was given. if test "${with_libintl_prefix+set}" = set; then : withval=$with_libintl_prefix; if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" else additional_includedir="$withval/include" additional_libdir="$withval/lib" fi fi fi LIBINTL= LTLIBINTL= INCINTL= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='intl ' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIBINTL="${LIBINTL}${LIBINTL:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$value" else : fi else found_dir= found_la= found_so= found_a= if test $use_additional = yes; then if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext"; then found_dir="$additional_libdir" found_so="$additional_libdir/lib$name.$shlibext" if test -f "$additional_libdir/lib$name.la"; then found_la="$additional_libdir/lib$name.la" fi else if test -f "$additional_libdir/lib$name.$libext"; then found_dir="$additional_libdir" found_a="$additional_libdir/lib$name.$libext" if test -f "$additional_libdir/lib$name.la"; then found_la="$additional_libdir/lib$name.la" fi fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` if test -n "$shlibext" && test -f "$dir/lib$name.$shlibext"; then found_dir="$dir" found_so="$dir/lib$name.$shlibext" if test -f "$dir/lib$name.la"; then found_la="$dir/lib$name.la" fi else if test -f "$dir/lib$name.$libext"; then found_dir="$dir" found_a="$dir/lib$name.$libext" if test -f "$dir/lib$name.la"; then found_la="$dir/lib$name.la" fi fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/lib"; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi if test "$hardcode_direct" = yes; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else haveit= for x in $LDFLAGS $LIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir" fi if test "$hardcode_minus_L" != no; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_so" else LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then LIBINTL="${LIBINTL}${LIBINTL:+ }$found_a" else LIBINTL="${LIBINTL}${LIBINTL:+ }-L$found_dir -l$name" fi fi additional_includedir= case "$found_dir" in */lib | */lib/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e 's,/lib/*$,,'` additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux*) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INCINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then INCINTL="${INCINTL}${INCINTL:+ }-I$additional_includedir" fi fi fi fi fi if test -n "$found_la"; then save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` if test "X$additional_libdir" != "X/usr/lib"; then haveit= if test "X$additional_libdir" = "X/usr/local/lib"; then if test -n "$GCC"; then case $host_os in linux*) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LIBINTL="${LIBINTL}${LIBINTL:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIBINTL; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) LIBINTL="${LIBINTL}${LIBINTL:+ }$dep" LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }$dep" ;; esac done fi else LIBINTL="${LIBINTL}${LIBINTL:+ }-l$name" LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$hardcode_libdir_separator"; then alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" else for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBINTL="${LIBINTL}${LIBINTL:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do LTLIBINTL="${LTLIBINTL}${LTLIBINTL:+ }-R$found_dir" done fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU gettext in libintl" >&5 $as_echo_n "checking for GNU gettext in libintl... " >&6; } if ${gt_cv_func_gnugettext1_libintl+:} false; then : $as_echo_n "(cached) " >&6 else gt_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $INCINTL" gt_save_LIBS="$LIBS" LIBS="$LIBS $LIBINTL" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (); int main () { bindtextdomain ("", ""); return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_expand_alias (0) ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gt_cv_func_gnugettext1_libintl=yes else gt_cv_func_gnugettext1_libintl=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test "$gt_cv_func_gnugettext1_libintl" != yes && test -n "$LIBICONV"; then LIBS="$LIBS $LIBICONV" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias (); int main () { bindtextdomain ("", ""); return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_expand_alias (0) ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : LIBINTL="$LIBINTL $LIBICONV" LTLIBINTL="$LTLIBINTL $LTLIBICONV" gt_cv_func_gnugettext1_libintl=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi CPPFLAGS="$gt_save_CPPFLAGS" LIBS="$gt_save_LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_func_gnugettext1_libintl" >&5 $as_echo "$gt_cv_func_gnugettext1_libintl" >&6; } fi if test "$gt_cv_func_gnugettext1_libc" = "yes" \ || { test "$gt_cv_func_gnugettext1_libintl" = "yes" \ && test "$PACKAGE" != gettext-runtime \ && test "$PACKAGE" != gettext-tools; }; then gt_use_preinstalled_gnugettext=yes else LIBINTL= LTLIBINTL= INCINTL= fi if test "$gt_use_preinstalled_gnugettext" != "yes"; then nls_cv_use_gnu_gettext=yes fi fi if test "$nls_cv_use_gnu_gettext" = "yes"; then BUILD_INCLUDED_LIBINTL=yes USE_INCLUDED_LIBINTL=yes LIBINTL="\${top_builddir}/intl/libintl.a $LIBICONV" LTLIBINTL="\${top_builddir}/intl/libintl.a $LTLIBICONV" LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` fi if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then CATOBJEXT=.gmo fi if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then $as_echo "#define ENABLE_NLS 1" >>confdefs.h else USE_NLS=no fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to use NLS" >&5 $as_echo_n "checking whether to use NLS... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_NLS" >&5 $as_echo "$USE_NLS" >&6; } if test "$USE_NLS" = "yes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking where the gettext function comes from" >&5 $as_echo_n "checking where the gettext function comes from... " >&6; } if test "$gt_use_preinstalled_gnugettext" = "yes"; then if test "$gt_cv_func_gnugettext1_libintl" = "yes"; then gt_source="external libintl" else gt_source="libc" fi else gt_source="included intl directory" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_source" >&5 $as_echo "$gt_source" >&6; } fi if test "$USE_NLS" = "yes"; then if test "$gt_use_preinstalled_gnugettext" = "yes"; then if test "$gt_cv_func_gnugettext1_libintl" = "yes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libintl" >&5 $as_echo_n "checking how to link with libintl... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIBINTL" >&5 $as_echo "$LIBINTL" >&6; } for element in $INCINTL; do haveit= for x in $CPPFLAGS; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" fi done fi $as_echo "#define HAVE_GETTEXT 1" >>confdefs.h $as_echo "#define HAVE_DCGETTEXT 1" >>confdefs.h fi POSUB=po fi if test "$PACKAGE" = gettext-runtime || test "$PACKAGE" = gettext-tools; then BUILD_INCLUDED_LIBINTL=yes fi nls_cv_header_intl= nls_cv_header_libgt= DATADIRNAME=share INSTOBJEXT=.mo GENCAT=gencat if test "$USE_INCLUDED_LIBINTL" = yes; then INTLOBJS="\$(GETTOBJS)" fi INTL_LIBTOOL_SUFFIX_PREFIX= INTLLIBS="$LIBINTL" ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 $as_echo "$RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_RANLIB="ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 $as_echo "$ac_ct_RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi CFLAGS="$CFLAGS -Wall" # Check whether --enable-zaurus was given. if test "${enable_zaurus+set}" = set; then : enableval=$enable_zaurus; CFLAGS="$CFLAGS -DZAURUS" fi # Check whether --enable-softfloat was given. if test "${enable_softfloat+set}" = set; then : enableval=$enable_softfloat; CFLAGS="$CFLAGS -msoft-float"; LIBS="$LIBS $float" fi sdl_flag="" # Check whether --with-sdl-prefix was given. if test "${with_sdl_prefix+set}" = set; then : withval=$with_sdl_prefix; sdl_prefix="$withval" else sdl_prefix="" fi # Check whether --with-sdl-exec-prefix was given. if test "${with_sdl_exec_prefix+set}" = set; then : withval=$with_sdl_exec_prefix; sdl_exec_prefix="$withval" else sdl_exec_prefix="" fi # Check whether --enable-sdltest was given. if test "${enable_sdltest+set}" = set; then : enableval=$enable_sdltest; else enable_sdltest=yes fi if test x$sdl_exec_prefix != x ; then sdl_args="$sdl_args --exec-prefix=$sdl_exec_prefix" if test x${SDL_CONFIG+set} != xset ; then SDL_CONFIG=$sdl_exec_prefix/bin/sdl-config fi fi if test x$sdl_prefix != x ; then sdl_args="$sdl_args --prefix=$sdl_prefix" if test x${SDL_CONFIG+set} != xset ; then SDL_CONFIG=$sdl_prefix/bin/sdl-config fi fi PATH="$prefix/bin:$prefix/usr/bin:$PATH" # Extract the first word of "sdl-config", so it can be a program name with args. set dummy sdl-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_SDL_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $SDL_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_SDL_CONFIG="$SDL_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_SDL_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_SDL_CONFIG" && ac_cv_path_SDL_CONFIG="no" ;; esac fi SDL_CONFIG=$ac_cv_path_SDL_CONFIG if test -n "$SDL_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SDL_CONFIG" >&5 $as_echo "$SDL_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi min_sdl_version=1.0.0 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SDL - version >= $min_sdl_version" >&5 $as_echo_n "checking for SDL - version >= $min_sdl_version... " >&6; } no_sdl="" if test "$SDL_CONFIG" = "no" ; then no_sdl=yes else SDL_CFLAGS=`$SDL_CONFIG $sdlconf_args --cflags` SDL_LIBS=`$SDL_CONFIG $sdlconf_args --libs` sdl_major_version=`$SDL_CONFIG $sdl_args --version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'` sdl_minor_version=`$SDL_CONFIG $sdl_args --version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'` sdl_micro_version=`$SDL_CONFIG $sdl_config_args --version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'` if test "x$enable_sdltest" = "xyes" ; then ac_save_CFLAGS="$CFLAGS" ac_save_LIBS="$LIBS" CFLAGS="$CFLAGS $SDL_CFLAGS" LIBS="$LIBS $SDL_LIBS" rm -f conf.sdltest if test "$cross_compiling" = yes; then : echo $ac_n "cross compiling; assumed OK... $ac_c" else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include "SDL.h" char* my_strdup (char *str) { char *new_str; if (str) { new_str = (char *)malloc ((strlen (str) + 1) * sizeof(char)); strcpy (new_str, str); } else new_str = NULL; return new_str; } int main (int argc, char *argv[]) { int major, minor, micro; char *tmp_version; /* This hangs on some systems (?) system ("touch conf.sdltest"); */ { FILE *fp = fopen("conf.sdltest", "a"); if ( fp ) fclose(fp); } /* HP/UX 9 (%@#!) writes to sscanf strings */ tmp_version = my_strdup("$min_sdl_version"); if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { printf("%s, bad version string\n", "$min_sdl_version"); exit(1); } if (($sdl_major_version > major) || (($sdl_major_version == major) && ($sdl_minor_version > minor)) || (($sdl_major_version == major) && ($sdl_minor_version == minor) && ($sdl_micro_version >= micro))) { return 0; } else { printf("\n*** 'sdl-config --version' returned %d.%d.%d, but the minimum version\n", $sdl_major_version, $sdl_minor_version, $sdl_micro_version); printf("*** of SDL required is %d.%d.%d. If sdl-config is correct, then it is\n", major, minor, micro); printf("*** best to upgrade to the required version.\n"); printf("*** If sdl-config was wrong, set the environment variable SDL_CONFIG\n"); printf("*** to point to the correct copy of sdl-config, and remove the file\n"); printf("*** config.cache before re-running configure\n"); return 1; } } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else no_sdl=yes fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi fi if test "x$no_sdl" = x ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } : else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if test "$SDL_CONFIG" = "no" ; then echo "*** The sdl-config script installed by SDL could not be found" echo "*** If SDL was installed in PREFIX, make sure PREFIX/bin is in" echo "*** your path, or set the SDL_CONFIG environment variable to the" echo "*** full path to sdl-config." else if test -f conf.sdltest ; then : else echo "*** Could not run SDL test program, checking why..." CFLAGS="$CFLAGS $SDL_CFLAGS" LIBS="$LIBS $SDL_LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include "SDL.h" int main(int argc, char *argv[]) { return 0; } #undef main #define main K_and_R_C_main int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : echo "*** The test program compiled, but did not run. This usually means" echo "*** that the run-time linker is not finding SDL or finding the wrong" echo "*** version of SDL. If it is not finding SDL, you'll need to set your" echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" echo "*** to the installed location Also, make sure you have run ldconfig if that" echo "*** is required on your system" echo "***" echo "*** If you have an old version installed, it is best to remove it, although" echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" else echo "*** The test program failed to compile or link. See the file config.log for the" echo "*** exact error that occured. This usually means SDL was incorrectly installed" echo "*** or that you have moved SDL since it was installed. In the latter case, you" echo "*** may want to edit the sdl-config script: $SDL_CONFIG" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi fi SDL_CFLAGS="" SDL_LIBS="" as_fn_error $? "lib SDL is needed" "$LINENO" 5 fi rm -f conf.sdltest CFLAGS="$CFLAGS $SDL_CFLAGS" LIBS="$LIBS $SDL_LIBS" # Check whether --with-sdl-prefix was given. if test "${with_sdl_prefix+set}" = set; then : withval=$with_sdl_prefix; sdl_prefix="$withval" else sdl_prefix="" fi # Check whether --with-sdl-exec-prefix was given. if test "${with_sdl_exec_prefix+set}" = set; then : withval=$with_sdl_exec_prefix; sdl_exec_prefix="$withval" else sdl_exec_prefix="" fi # Check whether --enable-sdltest was given. if test "${enable_sdltest+set}" = set; then : enableval=$enable_sdltest; else enable_sdltest=yes fi if test x$sdl_exec_prefix != x ; then sdl_args="$sdl_args --exec-prefix=$sdl_exec_prefix" if test x${SDL_CONFIG+set} != xset ; then SDL_CONFIG=$sdl_exec_prefix/bin/sdl-config fi fi if test x$sdl_prefix != x ; then sdl_args="$sdl_args --prefix=$sdl_prefix" if test x${SDL_CONFIG+set} != xset ; then SDL_CONFIG=$sdl_prefix/bin/sdl-config fi fi PATH="$prefix/bin:$prefix/usr/bin:$PATH" # Extract the first word of "sdl-config", so it can be a program name with args. set dummy sdl-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_SDL_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $SDL_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_SDL_CONFIG="$SDL_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_SDL_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_SDL_CONFIG" && ac_cv_path_SDL_CONFIG="no" ;; esac fi SDL_CONFIG=$ac_cv_path_SDL_CONFIG if test -n "$SDL_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SDL_CONFIG" >&5 $as_echo "$SDL_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi min_sdl_version=1.1.5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SDL - version >= $min_sdl_version" >&5 $as_echo_n "checking for SDL - version >= $min_sdl_version... " >&6; } no_sdl="" if test "$SDL_CONFIG" = "no" ; then no_sdl=yes else SDL_CFLAGS=`$SDL_CONFIG $sdlconf_args --cflags` SDL_LIBS=`$SDL_CONFIG $sdlconf_args --libs` sdl_major_version=`$SDL_CONFIG $sdl_args --version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'` sdl_minor_version=`$SDL_CONFIG $sdl_args --version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'` sdl_micro_version=`$SDL_CONFIG $sdl_config_args --version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'` if test "x$enable_sdltest" = "xyes" ; then ac_save_CFLAGS="$CFLAGS" ac_save_LIBS="$LIBS" CFLAGS="$CFLAGS $SDL_CFLAGS" LIBS="$LIBS $SDL_LIBS" rm -f conf.sdltest if test "$cross_compiling" = yes; then : echo $ac_n "cross compiling; assumed OK... $ac_c" else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include "SDL.h" char* my_strdup (char *str) { char *new_str; if (str) { new_str = (char *)malloc ((strlen (str) + 1) * sizeof(char)); strcpy (new_str, str); } else new_str = NULL; return new_str; } int main (int argc, char *argv[]) { int major, minor, micro; char *tmp_version; /* This hangs on some systems (?) system ("touch conf.sdltest"); */ { FILE *fp = fopen("conf.sdltest", "a"); if ( fp ) fclose(fp); } /* HP/UX 9 (%@#!) writes to sscanf strings */ tmp_version = my_strdup("$min_sdl_version"); if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { printf("%s, bad version string\n", "$min_sdl_version"); exit(1); } if (($sdl_major_version > major) || (($sdl_major_version == major) && ($sdl_minor_version > minor)) || (($sdl_major_version == major) && ($sdl_minor_version == minor) && ($sdl_micro_version >= micro))) { return 0; } else { printf("\n*** 'sdl-config --version' returned %d.%d.%d, but the minimum version\n", $sdl_major_version, $sdl_minor_version, $sdl_micro_version); printf("*** of SDL required is %d.%d.%d. If sdl-config is correct, then it is\n", major, minor, micro); printf("*** best to upgrade to the required version.\n"); printf("*** If sdl-config was wrong, set the environment variable SDL_CONFIG\n"); printf("*** to point to the correct copy of sdl-config, and remove the file\n"); printf("*** config.cache before re-running configure\n"); return 1; } } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else no_sdl=yes fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi fi if test "x$no_sdl" = x ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } sdl_flag="-DSDL_1_1_5" else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if test "$SDL_CONFIG" = "no" ; then echo "*** The sdl-config script installed by SDL could not be found" echo "*** If SDL was installed in PREFIX, make sure PREFIX/bin is in" echo "*** your path, or set the SDL_CONFIG environment variable to the" echo "*** full path to sdl-config." else if test -f conf.sdltest ; then : else echo "*** Could not run SDL test program, checking why..." CFLAGS="$CFLAGS $SDL_CFLAGS" LIBS="$LIBS $SDL_LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include "SDL.h" int main(int argc, char *argv[]) { return 0; } #undef main #define main K_and_R_C_main int main () { return 0; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : echo "*** The test program compiled, but did not run. This usually means" echo "*** that the run-time linker is not finding SDL or finding the wrong" echo "*** version of SDL. If it is not finding SDL, you'll need to set your" echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" echo "*** to the installed location Also, make sure you have run ldconfig if that" echo "*** is required on your system" echo "***" echo "*** If you have an old version installed, it is best to remove it, although" echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" else echo "*** The test program failed to compile or link. See the file config.log for the" echo "*** exact error that occured. This usually means SDL was incorrectly installed" echo "*** or that you have moved SDL since it was installed. In the latter case, you" echo "*** may want to edit the sdl-config script: $SDL_CONFIG" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi fi SDL_CFLAGS="" SDL_LIBS="" : fi rm -f conf.sdltest CFLAGS="$CFLAGS $sdl_flag" sound_flag="-DSOUND" mixer_flag="-lSDL_mixer" # Check whether --enable-sound was given. if test "${enable_sound+set}" = set; then : enableval=$enable_sound; sound_flag=""; mixer_flag="" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lSDL_mixer" >&5 $as_echo_n "checking for main in -lSDL_mixer... " >&6; } if ${ac_cv_lib_SDL_mixer_main+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lSDL_mixer $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { return main (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_SDL_mixer_main=yes else ac_cv_lib_SDL_mixer_main=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_SDL_mixer_main" >&5 $as_echo "$ac_cv_lib_SDL_mixer_main" >&6; } if test "x$ac_cv_lib_SDL_mixer_main" = xyes; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: \"SDL_Mixer found\"" >&5 $as_echo "\"SDL_Mixer found\"" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: \"SDL_Mixer NOT found: Audio disabled\"" >&5 $as_echo "\"SDL_Mixer NOT found: Audio disabled\"" >&6; }; sound_flag=""; mixer_flag="" fi buf_flag="-DAUDIO_BUFFER_SIZE=256" # Check whether --with-buffer-size was given. if test "${with_buffer_size+set}" = set; then : withval=$with_buffer_size; buf_flag="-DAUDIO_BUFFER_SIZE=$withval" fi localedir=$datadir/locale locdir_flag="-DLOCALEDIR=\\\"$localedir\\\"" inst_dir=$datadir/ltris hi_dir=$localstatedir dis_flag="" # Check whether --enable-install was given. if test "${enable_install+set}" = set; then : enableval=$enable_install; inst_dir="." hi_dir="." dis_flag="-DDISABLE_INSTALL" locdir_flag="-DLOCALEDIR=\\\"../dict\\\"" rm -rf dict; mkdir dict for lang in `cat po/LINGUAS`; do mkdir dict/$lang; mkdir dict/$lang/LC_MESSAGES ln -s ../../../po/$lang.gmo dict/$lang/LC_MESSAGES/$PACKAGE.mo done fi inst_flag="-DSRC_DIR=\\\"$inst_dir\\\"" hi_inst_flag="-DHI_DIR=\\\"$hi_dir\\\"" ac_config_files="$ac_config_files Makefile src/Makefile icons/Makefile src/sounds/Makefile src/gfx/Makefile intl/Makefile po/Makefile.in m4/Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in #( -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by $as_me, which was generated by GNU Autoconf 2.68. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to the package provider." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ config.status configured by $0, generated by GNU Autoconf 2.68, with options \\"\$ac_cs_config\\" Copyright (C) 2010 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # # Capture the value of obsolete ALL_LINGUAS because we need it to compute # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it # from automake. eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"' # Capture the value of LINGUAS because we need it to compute CATALOGS. LINGUAS="${LINGUAS-%UNSET%}" AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; "icons/Makefile") CONFIG_FILES="$CONFIG_FILES icons/Makefile" ;; "src/sounds/Makefile") CONFIG_FILES="$CONFIG_FILES src/sounds/Makefile" ;; "src/gfx/Makefile") CONFIG_FILES="$CONFIG_FILES src/gfx/Makefile" ;; "intl/Makefile") CONFIG_FILES="$CONFIG_FILES intl/Makefile" ;; "po/Makefile.in") CONFIG_FILES="$CONFIG_FILES po/Makefile.in" ;; "m4/Makefile") CONFIG_FILES="$CONFIG_FILES m4/Makefile" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 $as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "default-1":C) for ac_file in $CONFIG_FILES; do # Support "outfile[:infile[:infile...]]" case "$ac_file" in *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; esac # PO directories have a Makefile.in generated from Makefile.in.in. case "$ac_file" in */Makefile.in) # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then rm -f "$ac_dir/POTFILES" test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" POMAKEFILEDEPS="POTFILES.in" # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend # on $ac_dir but don't depend on user-specified configuration # parameters. if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then # The LINGUAS file contains the set of available languages. if test -n "$OBSOLETE_ALL_LINGUAS"; then test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" fi ALL_LINGUAS_=`sed -e "/^#/d" "$ac_given_srcdir/$ac_dir/LINGUAS"` # Hide the ALL_LINGUAS assigment from automake. eval 'ALL_LINGUAS''=$ALL_LINGUAS_' POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" else # The set of available languages was given in configure.in. eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS' fi # Compute POFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) # Compute UPDATEPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) # Compute DUMMYPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) # Compute GMOFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) case "$ac_given_srcdir" in .) srcdirpre= ;; *) srcdirpre='$(srcdir)/' ;; esac POFILES= UPDATEPOFILES= DUMMYPOFILES= GMOFILES= for lang in $ALL_LINGUAS; do POFILES="$POFILES $srcdirpre$lang.po" UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" DUMMYPOFILES="$DUMMYPOFILES $lang.nop" GMOFILES="$GMOFILES $srcdirpre$lang.gmo" done # CATALOGS depends on both $ac_dir and the user's LINGUAS # environment variable. INST_LINGUAS= if test -n "$ALL_LINGUAS"; then for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "$LINGUAS"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then INST_LINGUAS="$INST_LINGUAS $presentlang" fi done fi CATALOGS= if test -n "$INST_LINGUAS"; then for lang in $INST_LINGUAS; do CATALOGS="$CATALOGS $lang.gmo" done fi test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do if test -f "$f"; then case "$f" in *.orig | *.bak | *~) ;; *) cat "$f" >> "$ac_dir/Makefile" ;; esac fi done fi ;; esac done ;; "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Autoconf 2.62 quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir=$dirpart/$fdir; as_fn_mkdir_p # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi ltris-1.0.19/missing0000775000175000017500000001420212140770051011255 00000000000000#! /bin/sh # Common stub for a few missing GNU programs while installing. # Copyright (C) 1996, 1997 Free Software Foundation, Inc. # Franc,ois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA # 02111-1307, USA. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi case "$1" in -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file yacc create \`y.tab.[ch]', if possible, from existing .[ch]" ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing - GNU libit 0.0" ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; aclocal) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified \`acinclude.m4' or \`configure.in'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified \`configure.in'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified \`acconfig.h' or \`configure.in'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER([^):]*:\([^)]*\)).*/\1/p' configure.in` if test -z "$files"; then files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^):]*\)).*/\1/p' configure.in` test -z "$files" || files="$files.in" else files=`echo "$files" | sed -e 's/:/ /g'` fi test -z "$files" && files="config.h.in" touch $files ;; automake) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`configure.in'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print \ | sed 's/^\(.*\).am$/touch \1.in/' \ | sh ;; bison|yacc) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if [ $# -ne 1 ]; then eval LASTARG="\${$#}" case "$LASTARG" in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" y.tab.h fi ;; esac fi if [ ! -f y.tab.h ]; then echo >y.tab.h fi if [ ! -f y.tab.c ]; then echo 'main() { return 0; }' >y.tab.c fi ;; lex|flex) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if [ $# -ne 1 ]; then eval LASTARG="\${$#}" case "$LASTARG" in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if [ -f "$SRCFILE" ]; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if [ ! -f lex.yy.c ]; then echo 'main() { return 0; }' >lex.yy.c fi ;; makeinfo) echo 1>&2 "\ WARNING: \`$1' is missing on your system. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` if test -z "$file"; then file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file` fi touch $file ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and you do not seem to have it handy on your system. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequirements for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 ltris-1.0.19/Makefile.in0000664000175000017500000006765712233753073011761 00000000000000# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/config.h.in \ $(top_srcdir)/configure $(top_srcdir)/intl/Makefile.in \ ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS TODO \ acconfig.h config.guess config.rpath config.sub depcomp \ install-sh missing mkinstalldirs ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc21.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intdiv0.m4 \ $(top_srcdir)/m4/intmax.m4 $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes.m4 $(top_srcdir)/m4/inttypes_h.m4 \ $(top_srcdir)/m4/isc-posix.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/longdouble.m4 \ $(top_srcdir)/m4/longlong.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/printf-posix.m4 \ $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/signed.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ $(top_srcdir)/m4/wchar_t.m4 $(top_srcdir)/m4/wint_t.m4 \ $(top_srcdir)/m4/xsize.m4 $(top_srcdir)/acinclude.m4 \ $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = intl/Makefile CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } am__installdirs = "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(icondir)" DATA = $(desktop_DATA) $(icon_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir dist dist-all distcheck ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GENCAT = @GENCAT@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_WPRINTF = @HAVE_WPRINTF@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGMERGE = @MSGMERGE@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ POSUB = @POSUB@ RANLIB = @RANLIB@ SDL_CFLAGS = @SDL_CFLAGS@ SDL_CONFIG = @SDL_CONFIG@ SDL_LIBS = @SDL_LIBS@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ buf_flag = @buf_flag@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ dis_flag = @dis_flag@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ hi_dir = @hi_dir@ hi_inst_flag = @hi_inst_flag@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ inst_dir = @inst_dir@ inst_flag = @inst_flag@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ locdir_flag = @locdir_flag@ mandir = @mandir@ mixer_flag = @mixer_flag@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sound_flag = @sound_flag@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = intl m4 po src icons EXTRA_DIST = config.rpath AUTHORS COPYING ChangeLog INSTALL \ README TODO touchall ABOUT-NLS po/tr.po_full po/pt.po_full \ po/nonascii.pl ltris32.gif ltris48.gif ltris.desktop.in desktopdir = $(datadir)/applications desktop_DATA = ltris.desktop icondir = $(datadir)/icons icon_DATA = ltris48.gif AUTOMAKE_OPTIONS = foreign ACLOCAL_AMFLAGS = -I m4 all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: am--refresh: Makefile @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): config.h: stamp-h1 @if test ! -f $@; then rm -f stamp-h1; else :; fi @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: $(am__configure_deps) $(top_srcdir)/acconfig.h ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 intl/Makefile: $(top_builddir)/config.status $(top_srcdir)/intl/Makefile.in cd $(top_builddir) && $(SHELL) ./config.status $@ install-desktopDATA: $(desktop_DATA) @$(NORMAL_INSTALL) test -z "$(desktopdir)" || $(MKDIR_P) "$(DESTDIR)$(desktopdir)" @list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(desktopdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(desktopdir)" || exit $$?; \ done uninstall-desktopDATA: @$(NORMAL_UNINSTALL) @list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(desktopdir)'; $(am__uninstall_files_from_dir) install-iconDATA: $(icon_DATA) @$(NORMAL_INSTALL) test -z "$(icondir)" || $(MKDIR_P) "$(DESTDIR)$(icondir)" @list='$(icon_DATA)'; test -n "$(icondir)" || list=; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(icondir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(icondir)" || exit $$?; \ done uninstall-iconDATA: @$(NORMAL_UNINSTALL) @list='$(icon_DATA)'; test -n "$(icondir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(icondir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__remove_distdir) dist-lzma: distdir tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma $(am__remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__remove_distdir) dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) dist-shar: distdir shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__remove_distdir) dist dist-all: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir); chmod a+w $(distdir) mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ --with-included-gettext \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile $(DATA) config.h installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(icondir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-hdr distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-desktopDATA install-iconDATA install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-desktopDATA uninstall-iconDATA .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \ ctags-recursive install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am am--refresh check check-am clean clean-generic \ ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \ dist-lzip dist-lzma dist-shar dist-tarZ dist-xz dist-zip \ distcheck distclean distclean-generic distclean-hdr \ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-desktopDATA install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-iconDATA install-info install-info-am \ install-man install-pdf install-pdf-am install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ uninstall-desktopDATA uninstall-iconDATA # We can't use static desktop file because of icon location. Is this # the right way to handle it? At least it works... as long as $datadir # does not contain plus signs. :-) ltris.desktop: @sed -e "s+Icon=+Icon=$(datadir)/icons/ltris48.gif+" \ < ltris.desktop.in > ltris.desktop # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: ltris-1.0.19/acinclude.m40000664000175000017500000001410712140770051012053 00000000000000# Configure paths for SDL # Sam Lantinga 9/21/99 # stolen from Manish Singh # stolen back from Frank Belew # stolen from Manish Singh # Shamelessly stolen from Owen Taylor dnl AM_PATH_SDL([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) dnl Test for SDL, and define SDL_CFLAGS and SDL_LIBS dnl AC_DEFUN([AM_PATH_SDL], [dnl dnl Get the cflags and libraries from the sdl-config script dnl AC_ARG_WITH(sdl-prefix,[ --with-sdl-prefix=PFX Prefix where SDL is installed (optional)], sdl_prefix="$withval", sdl_prefix="") AC_ARG_WITH(sdl-exec-prefix,[ --with-sdl-exec-prefix=PFX Exec prefix where SDL is installed (optional)], sdl_exec_prefix="$withval", sdl_exec_prefix="") AC_ARG_ENABLE(sdltest, [ --disable-sdltest Do not try to compile and run a test SDL program], , enable_sdltest=yes) if test x$sdl_exec_prefix != x ; then sdl_args="$sdl_args --exec-prefix=$sdl_exec_prefix" if test x${SDL_CONFIG+set} != xset ; then SDL_CONFIG=$sdl_exec_prefix/bin/sdl-config fi fi if test x$sdl_prefix != x ; then sdl_args="$sdl_args --prefix=$sdl_prefix" if test x${SDL_CONFIG+set} != xset ; then SDL_CONFIG=$sdl_prefix/bin/sdl-config fi fi AC_REQUIRE([AC_CANONICAL_TARGET]) PATH="$prefix/bin:$prefix/usr/bin:$PATH" AC_PATH_PROG(SDL_CONFIG, sdl-config, no, [$PATH]) min_sdl_version=ifelse([$1], ,0.11.0,$1) AC_MSG_CHECKING(for SDL - version >= $min_sdl_version) no_sdl="" if test "$SDL_CONFIG" = "no" ; then no_sdl=yes else SDL_CFLAGS=`$SDL_CONFIG $sdlconf_args --cflags` SDL_LIBS=`$SDL_CONFIG $sdlconf_args --libs` sdl_major_version=`$SDL_CONFIG $sdl_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` sdl_minor_version=`$SDL_CONFIG $sdl_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` sdl_micro_version=`$SDL_CONFIG $sdl_config_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` if test "x$enable_sdltest" = "xyes" ; then ac_save_CFLAGS="$CFLAGS" ac_save_LIBS="$LIBS" CFLAGS="$CFLAGS $SDL_CFLAGS" LIBS="$LIBS $SDL_LIBS" dnl dnl Now check if the installed SDL is sufficiently new. (Also sanity dnl checks the results of sdl-config to some extent dnl rm -f conf.sdltest AC_TRY_RUN([ #include #include #include #include "SDL.h" char* my_strdup (char *str) { char *new_str; if (str) { new_str = (char *)malloc ((strlen (str) + 1) * sizeof(char)); strcpy (new_str, str); } else new_str = NULL; return new_str; } int main (int argc, char *argv[]) { int major, minor, micro; char *tmp_version; /* This hangs on some systems (?) system ("touch conf.sdltest"); */ { FILE *fp = fopen("conf.sdltest", "a"); if ( fp ) fclose(fp); } /* HP/UX 9 (%@#!) writes to sscanf strings */ tmp_version = my_strdup("$min_sdl_version"); if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { printf("%s, bad version string\n", "$min_sdl_version"); exit(1); } if (($sdl_major_version > major) || (($sdl_major_version == major) && ($sdl_minor_version > minor)) || (($sdl_major_version == major) && ($sdl_minor_version == minor) && ($sdl_micro_version >= micro))) { return 0; } else { printf("\n*** 'sdl-config --version' returned %d.%d.%d, but the minimum version\n", $sdl_major_version, $sdl_minor_version, $sdl_micro_version); printf("*** of SDL required is %d.%d.%d. If sdl-config is correct, then it is\n", major, minor, micro); printf("*** best to upgrade to the required version.\n"); printf("*** If sdl-config was wrong, set the environment variable SDL_CONFIG\n"); printf("*** to point to the correct copy of sdl-config, and remove the file\n"); printf("*** config.cache before re-running configure\n"); return 1; } } ],, no_sdl=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"]) CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi fi if test "x$no_sdl" = x ; then AC_MSG_RESULT(yes) ifelse([$2], , :, [$2]) else AC_MSG_RESULT(no) if test "$SDL_CONFIG" = "no" ; then echo "*** The sdl-config script installed by SDL could not be found" echo "*** If SDL was installed in PREFIX, make sure PREFIX/bin is in" echo "*** your path, or set the SDL_CONFIG environment variable to the" echo "*** full path to sdl-config." else if test -f conf.sdltest ; then : else echo "*** Could not run SDL test program, checking why..." CFLAGS="$CFLAGS $SDL_CFLAGS" LIBS="$LIBS $SDL_LIBS" AC_TRY_LINK([ #include #include "SDL.h" int main(int argc, char *argv[]) { return 0; } #undef main #define main K_and_R_C_main ], [ return 0; ], [ echo "*** The test program compiled, but did not run. This usually means" echo "*** that the run-time linker is not finding SDL or finding the wrong" echo "*** version of SDL. If it is not finding SDL, you'll need to set your" echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" echo "*** to the installed location Also, make sure you have run ldconfig if that" echo "*** is required on your system" echo "***" echo "*** If you have an old version installed, it is best to remove it, although" echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"], [ echo "*** The test program failed to compile or link. See the file config.log for the" echo "*** exact error that occured. This usually means SDL was incorrectly installed" echo "*** or that you have moved SDL since it was installed. In the latter case, you" echo "*** may want to edit the sdl-config script: $SDL_CONFIG" ]) CFLAGS="$ac_save_CFLAGS" LIBS="$ac_save_LIBS" fi fi SDL_CFLAGS="" SDL_LIBS="" ifelse([$3], , :, [$3]) fi AC_SUBST(SDL_CFLAGS) AC_SUBST(SDL_LIBS) rm -f conf.sdltest ]) ltris-1.0.19/Makefile.am0000664000175000017500000000123312140770051011712 00000000000000SUBDIRS = intl m4 po src icons EXTRA_DIST = config.rpath AUTHORS COPYING ChangeLog INSTALL \ README TODO touchall ABOUT-NLS po/tr.po_full po/pt.po_full \ po/nonascii.pl ltris32.gif ltris48.gif ltris.desktop.in desktopdir = $(datadir)/applications desktop_DATA = ltris.desktop icondir = $(datadir)/icons icon_DATA = ltris48.gif AUTOMAKE_OPTIONS = foreign # We can't use static desktop file because of icon location. Is this # the right way to handle it? At least it works... as long as $datadir # does not contain plus signs. :-) ltris.desktop: @sed -e "s+Icon=+Icon=$(datadir)/icons/ltris48.gif+" \ < ltris.desktop.in > ltris.desktop ACLOCAL_AMFLAGS = -I m4 ltris-1.0.19/acconfig.h0000664000175000017500000000044512140770051011604 00000000000000#undef ENABLE_NLS #undef HAVE_CATGETS #undef HAVE_GETTEXT #undef HAVE_LC_MESSAGES #undef HAVE_STPCPY #undef HAVE_LIBSM #undef PACKAGE_LOCALE_DIR #undef PACKAGE_DOC_DIR #undef PACKAGE_DATA_DIR #undef PACKAGE_PIXMAPS_DIR #undef PACKAGE_HELP_DIR #undef PACKAGE_MENU_DIR #undef PACKAGE_SOURCE_DIR ltris-1.0.19/AUTHORS0000664000175000017500000000042312140770051010726 00000000000000Michael Speck **** Contributions **** - expert mode with unbalanced properties for next block to make it difficult to fit. - chkno Guiding lines. - Ingo van Lil Check for highscore chart so that it isn't overwritten when updating the game. - Sean Holt ltris-1.0.19/configure.in0000664000175000017500000000446412233753055012210 00000000000000dnl Process this file with autoconf to produce a configure script. AC_INIT(Makefile.am) AC_CANONICAL_TARGET AM_CONFIG_HEADER(config.h) AM_INIT_AUTOMAKE(ltris,1.0.19) dnl Checks for programs. AM_GNU_GETTEXT AC_PROG_CC AC_PROG_RANLIB CFLAGS="$CFLAGS -Wall" dnl Check Zarus install AC_ARG_ENABLE( zaurus, [ --enable-zaurus Compile for Zaurus], CFLAGS="$CFLAGS -DZAURUS") AC_ARG_ENABLE( softfloat, [ --enable-softfloat Use Softfloat for CPUs without FPU], CFLAGS="$CFLAGS -msoft-float"; LIBS="$LIBS $float") dnl check SDL version sdl_flag="" AM_PATH_SDL(1.0.0,, AC_MSG_ERROR(lib SDL is needed)) CFLAGS="$CFLAGS $SDL_CFLAGS" LIBS="$LIBS $SDL_LIBS" AM_PATH_SDL(1.1.5, sdl_flag="-DSDL_1_1_5",) CFLAGS="$CFLAGS $sdl_flag" dnl check sound sound_flag="-DSOUND" mixer_flag="-lSDL_mixer" AC_ARG_ENABLE( sound, [ --disable-sound Disables sound], sound_flag=""; mixer_flag="") dnl check if SDL_mixer's installed dnl if not: clear sound_flag and mixer_flag AC_CHECK_LIB(SDL_mixer, main, AC_MSG_RESULT("SDL_Mixer found"), AC_MSG_RESULT("SDL_Mixer NOT found: Audio disabled"); sound_flag=""; mixer_flag="") AC_SUBST(sound_flag) AC_SUBST(mixer_flag) dnl set sound buffer size buf_flag="-DAUDIO_BUFFER_SIZE=256" AC_ARG_WITH( buffer-size, [ --with-buffer-size=BUFSIZE Set this value to 2048 if you encounter sound delay.], buf_flag="-DAUDIO_BUFFER_SIZE=$withval",) AC_SUBST(buf_flag) dnl set localedir localedir=$datadir/locale locdir_flag="-DLOCALEDIR=\\\"$localedir\\\"" dnl installation path inst_dir=$datadir/ltris hi_dir=$localstatedir dnl check if installation was disabled dis_flag="" AC_ARG_ENABLE( install, [ --disable-install No installation. Played from the source directory.], inst_dir="." hi_dir="." dis_flag="-DDISABLE_INSTALL" locdir_flag="-DLOCALEDIR=\\\"../dict\\\"" rm -rf dict; mkdir dict for lang in `cat po/LINGUAS`; do mkdir dict/$lang; mkdir dict/$lang/LC_MESSAGES ln -s ../../../po/$lang.gmo dict/$lang/LC_MESSAGES/$PACKAGE.mo done ) inst_flag="-DSRC_DIR=\\\"$inst_dir\\\"" hi_inst_flag="-DHI_DIR=\\\"$hi_dir\\\"" AC_SUBST(inst_dir) AC_SUBST(hi_dir) AC_SUBST(inst_flag) AC_SUBST(hi_inst_flag) AC_SUBST(dis_flag) AC_SUBST(locdir_flag) AC_OUTPUT(Makefile src/Makefile icons/Makefile src/sounds/Makefile src/gfx/Makefile intl/Makefile po/Makefile.in m4/Makefile ) ltris-1.0.19/config.h.in0000664000175000017500000002010312233753107011704 00000000000000/* config.h.in. Generated from configure.in by autoheader. */ #undef ENABLE_NLS #undef HAVE_CATGETS #undef HAVE_GETTEXT #undef HAVE_LC_MESSAGES #undef HAVE_STPCPY #undef HAVE_LIBSM #undef PACKAGE_LOCALE_DIR #undef PACKAGE_DOC_DIR #undef PACKAGE_DATA_DIR #undef PACKAGE_PIXMAPS_DIR #undef PACKAGE_HELP_DIR #undef PACKAGE_MENU_DIR #undef PACKAGE_SOURCE_DIR /* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP systems. This function is required for `alloca.c' support on those systems. */ #undef CRAY_STACKSEG_END /* Define to 1 if using `alloca.c'. */ #undef C_ALLOCA /* Define to 1 if translation of program messages to the user's native language is requested. */ #undef ENABLE_NLS /* Define to 1 if you have `alloca', as a function or macro. */ #undef HAVE_ALLOCA /* Define to 1 if you have and it should be used (not on Ultrix). */ #undef HAVE_ALLOCA_H /* Define to 1 if you have the header file. */ #undef HAVE_ARGZ_H /* Define to 1 if you have the `asprintf' function. */ #undef HAVE_ASPRINTF /* Define if the GNU dcgettext() function is already present or preinstalled. */ #undef HAVE_DCGETTEXT /* Define to 1 if you have the declaration of `feof_unlocked', and to 0 if you don't. */ #undef HAVE_DECL_FEOF_UNLOCKED /* Define to 1 if you have the declaration of `fgets_unlocked', and to 0 if you don't. */ #undef HAVE_DECL_FGETS_UNLOCKED /* Define to 1 if you have the declaration of `getc_unlocked', and to 0 if you don't. */ #undef HAVE_DECL_GETC_UNLOCKED /* Define to 1 if you have the declaration of `_snprintf', and to 0 if you don't. */ #undef HAVE_DECL__SNPRINTF /* Define to 1 if you have the declaration of `_snwprintf', and to 0 if you don't. */ #undef HAVE_DECL__SNWPRINTF /* Define to 1 if you have the `fwprintf' function. */ #undef HAVE_FWPRINTF /* Define to 1 if you have the `getcwd' function. */ #undef HAVE_GETCWD /* Define to 1 if you have the `getegid' function. */ #undef HAVE_GETEGID /* Define to 1 if you have the `geteuid' function. */ #undef HAVE_GETEUID /* Define to 1 if you have the `getgid' function. */ #undef HAVE_GETGID /* Define to 1 if you have the `getpagesize' function. */ #undef HAVE_GETPAGESIZE /* Define if the GNU gettext() function is already present or preinstalled. */ #undef HAVE_GETTEXT /* Define to 1 if you have the `getuid' function. */ #undef HAVE_GETUID /* Define if you have the iconv() function. */ #undef HAVE_ICONV /* Define if you have the 'intmax_t' type in or . */ #undef HAVE_INTMAX_T /* Define if exists and doesn't clash with . */ #undef HAVE_INTTYPES_H /* Define if exists, doesn't clash with , and declares uintmax_t. */ #undef HAVE_INTTYPES_H_WITH_UINTMAX /* Define if you have and nl_langinfo(CODESET). */ #undef HAVE_LANGINFO_CODESET /* Define if your file defines LC_MESSAGES. */ #undef HAVE_LC_MESSAGES /* Define to 1 if you have the header file. */ #undef HAVE_LIMITS_H /* Define to 1 if you have the header file. */ #undef HAVE_LOCALE_H /* Define if you have the 'long double' type. */ #undef HAVE_LONG_DOUBLE /* Define if you have the 'long long' type. */ #undef HAVE_LONG_LONG /* Define to 1 if you have the header file. */ #undef HAVE_MALLOC_H /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the `mempcpy' function. */ #undef HAVE_MEMPCPY /* Define to 1 if you have a working `mmap' system call. */ #undef HAVE_MMAP /* Define to 1 if you have the `munmap' function. */ #undef HAVE_MUNMAP /* Define to 1 if you have the header file. */ #undef HAVE_NL_TYPES_H /* Define if your printf() function supports format strings with positions. */ #undef HAVE_POSIX_PRINTF /* Define to 1 if you have the `putenv' function. */ #undef HAVE_PUTENV /* Define to 1 if you have the `setenv' function. */ #undef HAVE_SETENV /* Define to 1 if you have the `setlocale' function. */ #undef HAVE_SETLOCALE /* Define to 1 if you have the `snprintf' function. */ #undef HAVE_SNPRINTF /* Define to 1 if you have the header file. */ #undef HAVE_STDDEF_H /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define if exists, doesn't clash with , and declares uintmax_t. */ #undef HAVE_STDINT_H_WITH_UINTMAX /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the `stpcpy' function. */ #undef HAVE_STPCPY /* Define to 1 if you have the `strcasecmp' function. */ #undef HAVE_STRCASECMP /* Define to 1 if you have the `strdup' function. */ #undef HAVE_STRDUP /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the `strtoul' function. */ #undef HAVE_STRTOUL /* Define to 1 if you have the header file. */ #undef HAVE_SYS_PARAM_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the `tsearch' function. */ #undef HAVE_TSEARCH /* Define if you have the 'uintmax_t' type in or . */ #undef HAVE_UINTMAX_T /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Define if you have the 'unsigned long long' type. */ #undef HAVE_UNSIGNED_LONG_LONG /* Define if you have the 'wchar_t' type. */ #undef HAVE_WCHAR_T /* Define to 1 if you have the `wcslen' function. */ #undef HAVE_WCSLEN /* Define if you have the 'wint_t' type. */ #undef HAVE_WINT_T /* Define to 1 if you have the `__argz_count' function. */ #undef HAVE___ARGZ_COUNT /* Define to 1 if you have the `__argz_next' function. */ #undef HAVE___ARGZ_NEXT /* Define to 1 if you have the `__argz_stringify' function. */ #undef HAVE___ARGZ_STRINGIFY /* Define to 1 if you have the `__fsetlocking' function. */ #undef HAVE___FSETLOCKING /* Define as const if the declaration of iconv() needs const. */ #undef ICONV_CONST /* Define if integer division by zero raises signal SIGFPE. */ #undef INTDIV0_RAISES_SIGFPE /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the home page for this package. */ #undef PACKAGE_URL /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define if exists and defines unusable PRI* macros. */ #undef PRI_MACROS_BROKEN /* Define as the maximum value of type 'size_t', if the system doesn't define it. */ #undef SIZE_MAX /* If using the C implementation of alloca, define if you know the direction of stack growth for your system; otherwise it will be automatically deduced at runtime. STACK_DIRECTION > 0 => grows toward higher addresses STACK_DIRECTION < 0 => grows toward lower addresses STACK_DIRECTION = 0 => direction of growth unknown */ #undef STACK_DIRECTION /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Version number of package */ #undef VERSION /* Define to empty if `const' does not conform to ANSI C. */ #undef const /* Define to `__inline__' or `__inline' if that's what the C compiler calls it, or to nothing if 'inline' is not supported under any name. */ #ifndef __cplusplus #undef inline #endif /* Define to `long int' if does not define. */ #undef off_t /* Define as the type of the result of subtracting two pointers, if the system doesn't define it. */ #undef ptrdiff_t /* Define to empty if the C compiler doesn't support this keyword. */ #undef signed /* Define to `unsigned int' if does not define. */ #undef size_t /* Define to unsigned long or unsigned long long if and don't define. */ #undef uintmax_t ltris-1.0.19/config.rpath0000775000175000017500000003521312140770051012173 00000000000000#! /bin/sh # Output a system dependent set of variables, describing how to set the # run time search path of shared libraries in an executable. # # Copyright 1996-2003 Free Software Foundation, Inc. # Taken from GNU libtool, 2001 # Originally by Gordon Matzigkeit , 1996 # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # # The first argument passed to this file is the canonical host specification, # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld # should be set by the caller. # # The set of defined variables is at the end of this script. # Known limitations: # - On IRIX 6.5 with CC="cc", the run time search patch must not be longer # than 256 bytes, otherwise the compiler driver will dump core. The only # known workaround is to choose shorter directory names for the build # directory and/or the installation directory. # All known linkers require a `.a' archive for static linking (except M$VC, # which needs '.lib'). libext=a shrext=.so host="$1" host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` # Code taken from libtool.m4's AC_LIBTOOL_PROG_COMPILER_PIC. wl= if test "$GCC" = yes; then wl='-Wl,' else case "$host_os" in aix*) wl='-Wl,' ;; mingw* | pw32* | os2*) ;; hpux9* | hpux10* | hpux11*) wl='-Wl,' ;; irix5* | irix6* | nonstopux*) wl='-Wl,' ;; newsos6) ;; linux*) case $CC in icc|ecc) wl='-Wl,' ;; ccc) wl='-Wl,' ;; esac ;; osf3* | osf4* | osf5*) wl='-Wl,' ;; sco3.2v5*) ;; solaris*) wl='-Wl,' ;; sunos4*) wl='-Qoption ld ' ;; sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) wl='-Wl,' ;; sysv4*MP*) ;; uts4*) ;; esac fi # Code taken from libtool.m4's AC_LIBTOOL_PROG_LD_SHLIBS. hardcode_libdir_flag_spec= hardcode_libdir_separator= hardcode_direct=no hardcode_minus_L=no case "$host_os" in cygwin* | mingw* | pw32*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs=yes if test "$with_gnu_ld" = yes; then case "$host_os" in aix3* | aix4* | aix5*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs=no fi ;; amigaos*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes # Samuel A. Falvo II reports # that the semantics of dynamic libraries on AmigaOS, at least up # to version 4, is to share data among multiple programs linked # with the same dynamic library. Since this doesn't match the # behavior of shared libraries on other platforms, we can use # them. ld_shlibs=no ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; cygwin* | mingw* | pw32*) # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then : else ld_shlibs=no fi ;; netbsd*) ;; solaris* | sysv5*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs=no elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; sunos4*) hardcode_direct=yes ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; esac if test "$ld_shlibs" = yes; then # Unlike libtool, we use -rpath here, not --rpath, since the documented # option of GNU ld is called -rpath, not --rpath. hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' fi else case "$host_os" in aix3*) # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test "$GCC" = yes; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix4* | aix5*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix5*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done esac fi hardcode_direct=yes hardcode_libdir_separator=':' if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 hardcode_direct=yes else # We have old collect2 hardcode_direct=unsupported hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi esac fi # Begin _LT_AC_SYS_LIBPATH_AIX. echo 'int main () { return 0; }' > conftest.c ${CC} ${LDFLAGS} conftest.c -o conftest aix_libpath=`dump -H conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` fi if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib" fi rm -f conftest.c conftest # End _LT_AC_SYS_LIBPATH_AIX. if test "$aix_use_runtimelinking" = yes; then hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' else hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" fi fi ;; amigaos*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes # see comment about different semantics on the GNU ld section ld_shlibs=no ;; bsdi4*) ;; cygwin* | mingw* | pw32*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec=' ' libext=lib ;; darwin* | rhapsody*) if $CC -v 2>&1 | grep 'Apple' >/dev/null ; then hardcode_direct=no fi ;; dgux*) hardcode_libdir_flag_spec='-L$libdir' ;; freebsd1*) ld_shlibs=no ;; freebsd2.2*) hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes ;; freebsd2*) hardcode_direct=yes hardcode_minus_L=yes ;; freebsd*) hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes ;; hpux9*) hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; hpux10* | hpux11*) if test "$with_gnu_ld" = no; then case "$host_cpu" in hppa*64*) hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=no ;; ia64*) hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=no # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; *) hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; netbsd*) hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes ;; newsos6) hardcode_direct=yes hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; openbsd*) hardcode_direct=yes if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then hardcode_libdir_flag_spec='${wl}-rpath,$libdir' else case "$host_os" in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) hardcode_libdir_flag_spec='-R$libdir' ;; *) hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; esac fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; osf3*) hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) if test "$GCC" = yes; then hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' else # Both cc and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi hardcode_libdir_separator=: ;; sco3.2v5*) ;; solaris*) hardcode_libdir_flag_spec='-R$libdir' ;; sunos4*) hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes ;; sysv4) case $host_vendor in sni) hardcode_direct=yes # is this really true??? ;; siemens) hardcode_direct=no ;; motorola) hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac ;; sysv4.3*) ;; sysv4*MP*) if test -d /usr/nec; then ld_shlibs=yes fi ;; sysv4.2uw2*) hardcode_direct=yes hardcode_minus_L=no ;; sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[78]* | unixware7*) ;; sysv5*) hardcode_libdir_flag_spec= ;; uts4*) hardcode_libdir_flag_spec='-L$libdir' ;; *) ld_shlibs=no ;; esac fi # Check dynamic linker characteristics # Code taken from libtool.m4's AC_LIBTOOL_SYS_DYNAMIC_LINKER. libname_spec='lib$name' case "$host_os" in aix3*) ;; aix4* | aix5*) ;; amigaos*) ;; beos*) ;; bsdi4*) ;; cygwin* | mingw* | pw32*) shrext=.dll ;; darwin* | rhapsody*) shrext=.dylib ;; dgux*) ;; freebsd1*) ;; freebsd*) ;; gnu*) ;; hpux9* | hpux10* | hpux11*) case "$host_cpu" in ia64*) shrext=.so ;; hppa*64*) shrext=.sl ;; *) shrext=.sl ;; esac ;; irix5* | irix6* | nonstopux*) case "$host_os" in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= ;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;; *) libsuff= shlibsuff= ;; esac ;; esac ;; linux*oldld* | linux*aout* | linux*coff*) ;; linux*) ;; netbsd*) ;; newsos6) ;; nto-qnx) ;; openbsd*) ;; os2*) libname_spec='$name' shrext=.dll ;; osf3* | osf4* | osf5*) ;; sco3.2v5*) ;; solaris*) ;; sunos4*) ;; sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) ;; sysv4*MP*) ;; uts4*) ;; esac sed_quote_subst='s/\(["`$\\]\)/\\\1/g' escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"` shlibext=`echo "$shrext" | sed -e 's,^\.,,'` escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' < c) -removed assembler code -fixed some minor warnings 010310: -added fullscreen option -fixed infinite loop in level 13 of 'advanced' game -score is counted faster -animations disappear faster -doesn't crash when config file comes from an older version 001115: -fixed various bugs -when paused only resume game if 'p' is pressed -fixed segfault in multiplayer mode (when Options/Game/Help was 'on') 001102: -added a 'drop' key -does not get so fast in the beginning -two game speeds (slow/normal) 001017: -fixed some bugs -optional block-by-block drop -added some missing '#include ' and newlines 001014: -smooth horizontal movement -segfault bug in multiplayer mode fixed -you can see where the block will touch the ground (optional) -sound is default (configure) 000930: -compatible with SDL version 1.1.5 or better -improved the installation 000705: -fonts improved -tile graphics improved 000422: -fixed a bug in the menu -added various backgrounds 000418: -added a multiplayer mode -improved some parts of the source code -released the source 000314: -added sound 000313: -initial public release -compiled for ix86 ltris-1.0.19/ltris.desktop.in0000664000175000017500000000017112140770051013013 00000000000000[Desktop Entry] Name=LTris Comment=A tetris clone with nice graphics. Exec=ltris Icon= Type=Application Categories=Game; ltris-1.0.19/touchall0000775000175000017500000000023612140770051011421 00000000000000touch 0101120002 * touch 0101120002 src/* touch 0101120002 src/docs/* touch 0101120002 src/gfx/* touch 0101120002 src/levels/* touch 0101120002 src/sounds/* ltris-1.0.19/ABOUT-NLS0000664000175000017500000015111612140770051011113 00000000000000Notes on the Free Translation Project ************************************* Free software is going international! The Free Translation Project is a way to get maintainers of free software, translators, and users all together, so that will gradually become able to speak many languages. A few packages already provide translations for their messages. If you found this `ABOUT-NLS' file inside a distribution, you may assume that the distributed package does use GNU `gettext' internally, itself available at your nearest GNU archive site. But you do _not_ need to install GNU `gettext' prior to configuring, installing or using this package with messages translated. Installers will find here some useful hints. These notes also explain how users should proceed for getting the programs to use the available translations. They tell how people wanting to contribute and work at translations should contact the appropriate team. When reporting bugs in the `intl/' directory or bugs which may be related to internationalization, you should tell about the version of `gettext' which is used. The information can be found in the `intl/VERSION' file, in internationalized packages. Quick configuration advice ========================== If you want to exploit the full power of internationalization, you should configure it using ./configure --with-included-gettext to force usage of internationalizing routines provided within this package, despite the existence of internationalizing capabilities in the operating system where this package is being installed. So far, only the `gettext' implementation in the GNU C library version 2 provides as many features (such as locale alias, message inheritance, automatic charset conversion or plural form handling) as the implementation here. It is also not possible to offer this additional functionality on top of a `catgets' implementation. Future versions of GNU `gettext' will very likely convey even more functionality. So it might be a good idea to change to GNU `gettext' as soon as possible. So you need _not_ provide this option if you are using GNU libc 2 or you have installed a recent copy of the GNU gettext package with the included `libintl'. INSTALL Matters =============== Some packages are "localizable" when properly installed; the programs they contain can be made to speak your own native language. Most such packages use GNU `gettext'. Other packages have their own ways to internationalization, predating GNU `gettext'. By default, this package will be installed to allow translation of messages. It will automatically detect whether the system already provides the GNU `gettext' functions. If not, the GNU `gettext' own library will be used. This library is wholly contained within this package, usually in the `intl/' subdirectory, so prior installation of the GNU `gettext' package is _not_ required. Installers may use special options at configuration time for changing the default behaviour. The commands: ./configure --with-included-gettext ./configure --disable-nls will respectively bypass any pre-existing `gettext' to use the internationalizing routines provided within this package, or else, _totally_ disable translation of messages. When you already have GNU `gettext' installed on your system and run configure without an option for your new package, `configure' will probably detect the previously built and installed `libintl.a' file and will decide to use this. This might be not what is desirable. You should use the more recent version of the GNU `gettext' library. I.e. if the file `intl/VERSION' shows that the library which comes with this package is more recent, you should use ./configure --with-included-gettext to prevent auto-detection. The configuration process will not test for the `catgets' function and therefore it will not be used. The reason is that even an emulation of `gettext' on top of `catgets' could not provide all the extensions of the GNU `gettext' library. Internationalized packages have usually many `po/LL.po' files, where LL gives an ISO 639 two-letter code identifying the language. Unless translations have been forbidden at `configure' time by using the `--disable-nls' switch, all available translations are installed together with the package. However, the environment variable `LINGUAS' may be set, prior to configuration, to limit the installed set. `LINGUAS' should then contain a space separated list of two-letter codes, stating which languages are allowed. Using This Package ================== As a user, if your language has been installed for this package, you only have to set the `LANG' environment variable to the appropriate `LL_CC' combination. Here `LL' is an ISO 639 two-letter language code, and `CC' is an ISO 3166 two-letter country code. For example, let's suppose that you speak German and live in Germany. At the shell prompt, merely execute `setenv LANG de_DE' (in `csh'), `export LANG; LANG=de_DE' (in `sh') or `export LANG=de_DE' (in `bash'). This can be done from your `.login' or `.profile' file, once and for all. You might think that the country code specification is redundant. But in fact, some languages have dialects in different countries. For example, `de_AT' is used for Austria, and `pt_BR' for Brazil. The country code serves to distinguish the dialects. The locale naming convention of `LL_CC', with `LL' denoting the language and `CC' denoting the country, is the one use on systems based on GNU libc. On other systems, some variations of this scheme are used, such as `LL' or `LL_CC.ENCODING'. You can get the list of locales supported by your system for your country by running the command `locale -a | grep '^LL''. Not all programs have translations for all languages. By default, an English message is shown in place of a nonexistent translation. If you understand other languages, you can set up a priority list of languages. This is done through a different environment variable, called `LANGUAGE'. GNU `gettext' gives preference to `LANGUAGE' over `LANG' for the purpose of message handling, but you still need to have `LANG' set to the primary language; this is required by other parts of the system libraries. For example, some Swedish users who would rather read translations in German than English for when Swedish is not available, set `LANGUAGE' to `sv:de' while leaving `LANG' to `sv_SE'. Special advice for Norwegian users: The language code for Norwegian bokma*l changed from `no' to `nb' recently (in 2003). During the transition period, while some message catalogs for this language are installed under `nb' and some older ones under `no', it's recommended for Norwegian users to set `LANGUAGE' to `nb:no' so that both newer and older translations are used. In the `LANGUAGE' environment variable, but not in the `LANG' environment variable, `LL_CC' combinations can be abbreviated as `LL' to denote the language's main dialect. For example, `de' is equivalent to `de_DE' (German as spoken in Germany), and `pt' to `pt_PT' (Portuguese as spoken in Portugal) in this context. Translating Teams ================= For the Free Translation Project to be a success, we need interested people who like their own language and write it well, and who are also able to synergize with other translators speaking the same language. Each translation team has its own mailing list. The up-to-date list of teams can be found at the Free Translation Project's homepage, `http://www.iro.umontreal.ca/contrib/po/HTML/', in the "National teams" area. If you'd like to volunteer to _work_ at translating messages, you should become a member of the translating team for your own language. The subscribing address is _not_ the same as the list itself, it has `-request' appended. For example, speakers of Swedish can send a message to `sv-request@li.org', having this message body: subscribe Keep in mind that team members are expected to participate _actively_ in translations, or at solving translational difficulties, rather than merely lurking around. If your team does not exist yet and you want to start one, or if you are unsure about what to do or how to get started, please write to `translation@iro.umontreal.ca' to reach the coordinator for all translator teams. The English team is special. It works at improving and uniformizing the terminology in use. Proven linguistic skill are praised more than programming skill, here. Available Packages ================== Languages are not equally supported in all packages. The following matrix shows the current state of internationalization, as of January 2004. The matrix shows, in regard of each package, for which languages PO files have been submitted to translation coordination, with a translation percentage of at least 50%. Ready PO files af am ar az be bg bs ca cs da de el en en_GB eo es +----------------------------------------------------+ a2ps | [] [] [] [] | aegis | () | ant-phone | () | anubis | | ap-utils | | aspell | [] | bash | [] [] [] [] | batchelor | | bfd | [] [] | binutils | [] [] | bison | [] [] [] | bluez-pin | [] [] [] | clisp | | clisp | [] [] [] | console-tools | [] [] | coreutils | [] [] [] [] | cpio | [] [] [] | darkstat | [] () [] | diffutils | [] [] [] [] [] [] [] | e2fsprogs | [] [] [] | enscript | [] [] [] [] | error | [] [] [] [] [] | fetchmail | [] () [] [] [] [] | fileutils | [] [] [] | findutils | [] [] [] [] [] [] [] | flex | [] [] [] [] | fslint | | gas | [] | gawk | [] [] [] [] | gbiff | [] | gcal | [] | gcc | [] [] | gettext | [] [] [] [] [] | gettext-examples | [] [] [] [] | gettext-runtime | [] [] [] [] [] | gettext-tools | [] [] [] | gimp-print | [] [] [] [] [] | gliv | | glunarclock | [] [] | gnubiff | [] | gnucash | [] () [] [] | gnucash-glossary | [] () [] | gnupg | [] () [] [] [] [] | gpe-aerial | [] | gpe-beam | [] [] | gpe-calendar | [] [] | gpe-clock | [] [] | gpe-conf | [] [] | gpe-contacts | [] [] | gpe-edit | [] | gpe-go | [] | gpe-login | [] [] | gpe-ownerinfo | [] [] | gpe-sketchbook | [] [] | gpe-su | [] [] | gpe-taskmanager | [] [] | gpe-timesheet | [] | gpe-today | [] [] | gpe-todo | [] [] | gphoto2 | [] [] [] [] | gprof | [] [] [] | gpsdrive | () () () | gramadoir | [] | grep | [] [] [] [] [] [] | gretl | [] | gtick | [] () | hello | [] [] [] [] [] [] | id-utils | [] [] | indent | [] [] [] [] | iso_3166 | [] [] [] [] [] [] [] [] [] [] | iso_3166_1 | [] [] [] [] [] [] | iso_3166_2 | | iso_3166_3 | [] | iso_4217 | [] [] [] [] | iso_639 | | jpilot | [] [] [] | jtag | | jwhois | [] | kbd | [] [] [] [] [] | latrine | () | ld | [] [] | libc | [] [] [] [] [] [] | libgpewidget | [] [] | libiconv | [] [] [] [] [] | lifelines | [] () | lilypond | [] | lingoteach | | lingoteach_lessons | () () | lynx | [] [] [] [] | m4 | [] [] [] [] | mailutils | [] [] | make | [] [] [] | man-db | [] () [] [] () | minicom | [] [] [] | mysecretdiary | [] [] [] | nano | [] () [] [] [] | nano_1_0 | [] () [] [] [] | opcodes | [] | parted | [] [] [] [] [] | ptx | [] [] [] [] [] | python | | radius | [] | recode | [] [] [] [] [] [] [] | rpm | [] [] | screem | | scrollkeeper | [] [] [] [] [] [] | sed | [] [] [] [] [] [] | sh-utils | [] [] [] | shared-mime-info | | sharutils | [] [] [] [] [] [] | silky | () | skencil | [] () [] | sketch | [] () [] | soundtracker | [] [] [] | sp | [] | tar | [] [] [] [] | texinfo | [] [] [] | textutils | [] [] [] [] | tin | () () | tp-robot | | tuxpaint | [] [] [] [] [] [] [] | unicode-han-tra... | | unicode-transla... | | util-linux | [] [] [] [] [] | vorbis-tools | [] [] [] [] | wastesedge | () | wdiff | [] [] [] [] | wget | [] [] [] [] [] [] | xchat | [] [] [] [] | xfree86_xkb_xml | [] [] | xpad | [] | +----------------------------------------------------+ af am ar az be bg bs ca cs da de el en en_GB eo es 4 0 0 1 9 4 1 40 41 60 78 17 1 5 13 68 et eu fa fi fr ga gl he hr hu id is it ja ko lg +-------------------------------------------------+ a2ps | [] [] [] () () | aegis | | ant-phone | [] | anubis | [] | ap-utils | [] | aspell | [] [] | bash | [] [] | batchelor | [] [] | bfd | [] | binutils | [] [] | bison | [] [] [] [] | bluez-pin | [] [] [] [] [] | clisp | | clisp | [] | console-tools | | coreutils | [] [] [] [] [] [] | cpio | [] [] [] [] | darkstat | () [] [] [] | diffutils | [] [] [] [] [] [] [] | e2fsprogs | | enscript | [] [] | error | [] [] [] [] | fetchmail | [] | fileutils | [] [] [] [] [] [] | findutils | [] [] [] [] [] [] [] [] [] [] [] | flex | [] [] [] | fslint | [] | gas | [] | gawk | [] [] [] | gbiff | [] | gcal | [] | gcc | [] | gettext | [] [] [] | gettext-examples | [] [] | gettext-runtime | [] [] [] [] [] | gettext-tools | [] [] [] | gimp-print | [] [] | gliv | () | glunarclock | [] [] [] [] | gnubiff | [] | gnucash | () [] | gnucash-glossary | [] | gnupg | [] [] [] [] [] [] [] | gpe-aerial | [] | gpe-beam | [] | gpe-calendar | [] [] [] | gpe-clock | [] | gpe-conf | [] | gpe-contacts | [] [] | gpe-edit | [] [] | gpe-go | [] | gpe-login | [] [] | gpe-ownerinfo | [] [] [] | gpe-sketchbook | [] | gpe-su | [] | gpe-taskmanager | [] | gpe-timesheet | [] [] [] | gpe-today | [] [] | gpe-todo | [] [] | gphoto2 | [] [] [] | gprof | [] [] | gpsdrive | () () () | gramadoir | [] [] | grep | [] [] [] [] [] [] [] [] [] [] [] | gretl | [] [] | gtick | [] [] [] | hello | [] [] [] [] [] [] [] [] [] [] [] [] [] | id-utils | [] [] [] [] | indent | [] [] [] [] [] [] [] [] [] | iso_3166 | [] [] [] [] [] [] [] | iso_3166_1 | [] [] [] [] [] | iso_3166_2 | | iso_3166_3 | | iso_4217 | [] [] [] [] [] [] | iso_639 | | jpilot | [] () | jtag | [] | jwhois | [] [] [] [] | kbd | [] | latrine | [] | ld | [] | libc | [] [] [] [] [] [] | libgpewidget | [] [] [] [] | libiconv | [] [] [] [] [] [] [] [] [] | lifelines | () | lilypond | [] | lingoteach | [] [] | lingoteach_lessons | | lynx | [] [] [] [] | m4 | [] [] [] [] | mailutils | | make | [] [] [] [] [] [] | man-db | () () | minicom | [] [] [] [] | mysecretdiary | [] [] | nano | [] [] [] [] | nano_1_0 | [] [] [] [] | opcodes | [] | parted | [] [] [] | ptx | [] [] [] [] [] [] [] | python | | radius | [] | recode | [] [] [] [] [] [] | rpm | [] [] | screem | | scrollkeeper | [] | sed | [] [] [] [] [] [] [] [] [] | sh-utils | [] [] [] [] [] [] [] | shared-mime-info | [] [] [] | sharutils | [] [] [] [] [] | silky | () [] () () | skencil | [] | sketch | [] | soundtracker | [] [] | sp | [] () | tar | [] [] [] [] [] [] [] [] [] | texinfo | [] [] [] [] | textutils | [] [] [] [] [] [] | tin | [] () | tp-robot | [] | tuxpaint | [] [] [] [] [] [] [] [] [] | unicode-han-tra... | | unicode-transla... | [] [] | util-linux | [] [] [] [] () [] | vorbis-tools | [] | wastesedge | () | wdiff | [] [] [] [] [] [] | wget | [] [] [] [] [] [] [] | xchat | [] [] [] | xfree86_xkb_xml | [] [] | xpad | [] [] | +-------------------------------------------------+ et eu fa fi fr ga gl he hr hu id is it ja ko lg 22 2 1 26 106 28 24 8 10 41 33 1 26 33 12 0 lt lv mk mn ms mt nb nl nn no nso pl pt pt_BR ro ru +-----------------------------------------------------+ a2ps | [] [] () () [] [] [] | aegis | () () () | ant-phone | [] [] | anubis | [] [] [] [] [] [] | ap-utils | [] () [] | aspell | [] | bash | [] [] [] | batchelor | [] | bfd | [] | binutils | [] | bison | [] [] [] [] [] | bluez-pin | [] [] [] | clisp | | clisp | [] | console-tools | [] | coreutils | [] [] | cpio | [] [] [] [] [] | darkstat | [] [] [] [] | diffutils | [] [] [] [] [] [] | e2fsprogs | [] | enscript | [] [] [] [] | error | [] [] [] | fetchmail | [] [] () [] | fileutils | [] [] [] | findutils | [] [] [] [] [] | flex | [] [] [] [] | fslint | [] [] | gas | | gawk | [] [] [] | gbiff | [] [] | gcal | | gcc | | gettext | [] [] [] | gettext-examples | [] [] [] | gettext-runtime | [] [] [] [] | gettext-tools | [] [] | gimp-print | [] | gliv | [] [] [] | glunarclock | [] [] [] [] | gnubiff | [] | gnucash | [] [] () [] | gnucash-glossary | [] [] | gnupg | [] | gpe-aerial | [] [] [] [] | gpe-beam | [] [] [] [] | gpe-calendar | [] [] [] [] | gpe-clock | [] [] [] [] | gpe-conf | [] [] [] [] | gpe-contacts | [] [] [] [] | gpe-edit | [] [] [] [] | gpe-go | [] [] [] | gpe-login | [] [] [] [] | gpe-ownerinfo | [] [] [] [] | gpe-sketchbook | [] [] [] [] | gpe-su | [] [] [] [] | gpe-taskmanager | [] [] [] [] | gpe-timesheet | [] [] [] [] | gpe-today | [] [] [] [] | gpe-todo | [] [] [] [] | gphoto2 | [] | gprof | [] [] | gpsdrive | () () [] | gramadoir | () [] | grep | [] [] [] [] [] | gretl | | gtick | [] [] [] | hello | [] [] [] [] [] [] [] [] [] [] | id-utils | [] [] [] [] | indent | [] [] [] [] | iso_3166 | [] [] [] | iso_3166_1 | [] [] | iso_3166_2 | | iso_3166_3 | [] | iso_4217 | [] [] [] [] [] [] [] [] | iso_639 | [] | jpilot | () () | jtag | | jwhois | [] [] [] [] () | kbd | [] [] [] | latrine | [] | ld | | libc | [] [] [] [] | libgpewidget | [] [] [] | libiconv | [] [] [] [] [] | lifelines | | lilypond | | lingoteach | | lingoteach_lessons | | lynx | [] [] [] | m4 | [] [] [] [] [] | mailutils | [] [] [] | make | [] [] [] [] | man-db | [] | minicom | [] [] [] [] | mysecretdiary | [] [] [] | nano | [] [] [] [] [] | nano_1_0 | [] [] [] [] [] [] | opcodes | [] [] | parted | [] [] [] [] | ptx | [] [] [] [] [] [] [] [] | python | | radius | [] [] | recode | [] [] [] [] | rpm | [] [] [] | screem | | scrollkeeper | [] [] [] [] [] | sed | [] [] [] | sh-utils | [] [] | shared-mime-info | [] [] | sharutils | [] [] | silky | () | skencil | [] [] | sketch | [] [] | soundtracker | | sp | | tar | [] [] [] [] [] [] | texinfo | [] [] [] [] | textutils | [] [] | tin | | tp-robot | [] | tuxpaint | [] [] [] [] [] [] [] [] | unicode-han-tra... | | unicode-transla... | | util-linux | [] [] [] | vorbis-tools | [] [] [] | wastesedge | | wdiff | [] [] [] [] [] | wget | [] [] [] | xchat | [] [] [] | xfree86_xkb_xml | [] [] | xpad | [] [] | +-----------------------------------------------------+ lt lv mk mn ms mt nb nl nn no nso pl pt pt_BR ro ru 1 2 0 3 12 0 10 69 6 7 1 40 26 36 76 63 sk sl sr sv ta th tr uk ven vi wa xh zh_CN zh_TW zu +-----------------------------------------------------+ a2ps | [] [] [] [] | 16 aegis | | 0 ant-phone | | 3 anubis | [] [] | 9 ap-utils | () | 3 aspell | | 4 bash | | 9 batchelor | | 3 bfd | [] [] | 6 binutils | [] [] [] | 8 bison | [] [] | 14 bluez-pin | [] [] [] | 14 clisp | | 0 clisp | | 5 console-tools | | 3 coreutils | [] [] [] [] | 16 cpio | [] [] | 14 darkstat | [] [] [] () () | 12 diffutils | [] [] [] | 23 e2fsprogs | [] [] | 6 enscript | [] [] | 12 error | [] [] [] | 15 fetchmail | [] [] | 11 fileutils | [] [] [] [] [] | 17 findutils | [] [] [] [] [] [] | 29 flex | [] [] | 13 fslint | | 3 gas | [] | 3 gawk | [] [] | 12 gbiff | | 4 gcal | [] [] | 4 gcc | [] | 4 gettext | [] [] [] [] [] | 16 gettext-examples | [] [] [] [] [] | 14 gettext-runtime | [] [] [] [] [] [] [] [] | 22 gettext-tools | [] [] [] [] [] [] | 14 gimp-print | [] [] | 10 gliv | | 3 glunarclock | [] [] [] | 13 gnubiff | | 3 gnucash | [] [] | 9 gnucash-glossary | [] [] [] | 8 gnupg | [] [] [] [] | 17 gpe-aerial | [] | 7 gpe-beam | [] | 8 gpe-calendar | [] [] [] [] | 13 gpe-clock | [] [] [] | 10 gpe-conf | [] [] | 9 gpe-contacts | [] [] [] | 11 gpe-edit | [] [] [] [] [] | 12 gpe-go | | 5 gpe-login | [] [] [] [] [] | 13 gpe-ownerinfo | [] [] [] [] | 13 gpe-sketchbook | [] [] | 9 gpe-su | [] [] [] | 10 gpe-taskmanager | [] [] [] | 10 gpe-timesheet | [] [] [] [] | 12 gpe-today | [] [] [] [] [] | 13 gpe-todo | [] [] [] [] | 12 gphoto2 | [] [] [] | 11 gprof | [] [] | 9 gpsdrive | [] [] | 3 gramadoir | [] | 5 grep | [] [] [] [] | 26 gretl | | 3 gtick | | 7 hello | [] [] [] [] [] | 34 id-utils | [] [] | 12 indent | [] [] [] [] | 21 iso_3166 | [] [] [] [] [] [] [] | 27 iso_3166_1 | [] [] [] | 16 iso_3166_2 | | 0 iso_3166_3 | | 2 iso_4217 | [] [] [] [] [] [] | 24 iso_639 | | 1 jpilot | [] [] [] [] [] | 9 jtag | [] | 2 jwhois | () [] [] | 11 kbd | [] [] | 11 latrine | | 2 ld | [] [] | 5 libc | [] [] [] [] | 20 libgpewidget | [] [] [] [] | 13 libiconv | [] [] [] [] [] [] [] [] | 27 lifelines | [] | 2 lilypond | [] | 3 lingoteach | | 2 lingoteach_lessons | () | 0 lynx | [] [] [] | 14 m4 | [] [] | 15 mailutils | | 5 make | [] [] [] | 16 man-db | [] | 5 minicom | | 11 mysecretdiary | [] [] | 10 nano | [] [] [] [] | 17 nano_1_0 | [] [] [] | 17 opcodes | [] [] | 6 parted | [] [] [] | 15 ptx | [] [] | 22 python | | 0 radius | | 4 recode | [] [] [] | 20 rpm | [] [] | 9 screem | [] [] | 2 scrollkeeper | [] [] [] | 15 sed | [] [] [] [] [] [] | 24 sh-utils | [] [] | 14 shared-mime-info | [] [] | 7 sharutils | [] [] [] [] | 17 silky | () | 3 skencil | [] | 6 sketch | [] | 6 soundtracker | [] [] | 7 sp | [] | 3 tar | [] [] [] [] [] | 24 texinfo | [] [] [] | 14 textutils | [] [] [] [] | 16 tin | | 1 tp-robot | | 2 tuxpaint | [] [] [] [] [] | 29 unicode-han-tra... | | 0 unicode-transla... | | 2 util-linux | [] [] | 15 vorbis-tools | | 8 wastesedge | | 0 wdiff | [] [] [] | 18 wget | [] [] [] [] [] [] [] [] | 24 xchat | [] [] [] [] [] | 15 xfree86_xkb_xml | [] [] [] [] [] | 11 xpad | | 5 +-----------------------------------------------------+ 63 teams sk sl sr sv ta th tr uk ven vi wa xh zh_CN zh_TW zu 131 domains 47 19 28 83 0 0 59 13 1 1 11 0 22 22 0 1373 Some counters in the preceding matrix are higher than the number of visible blocks let us expect. This is because a few extra PO files are used for implementing regional variants of languages, or language dialects. For a PO file in the matrix above to be effective, the package to which it applies should also have been internationalized and distributed as such by its maintainer. There might be an observable lag between the mere existence a PO file and its wide availability in a distribution. If January 2004 seems to be old, you may fetch a more recent copy of this `ABOUT-NLS' file on most GNU archive sites. The most up-to-date matrix with full percentage details can be found at `http://www.iro.umontreal.ca/contrib/po/HTML/matrix.html'. Using `gettext' in new packages =============================== If you are writing a freely available program and want to internationalize it you are welcome to use GNU `gettext' in your package. Of course you have to respect the GNU Library General Public License which covers the use of the GNU `gettext' library. This means in particular that even non-free programs can use `libintl' as a shared library, whereas only free software can use `libintl' as a static library or use modified versions of `libintl'. Once the sources are changed appropriately and the setup can handle the use of `gettext' the only thing missing are the translations. The Free Translation Project is also available for packages which are not developed inside the GNU project. Therefore the information given above applies also for every other Free Software Project. Contact `translation@iro.umontreal.ca' to make the `.pot' files available to the translation teams. ltris-1.0.19/ltris32.gif0000664000175000017500000000255312140770051011655 00000000000000GIF89a çÅFNN[__g Z c e f p yK&FNN]2 ^5‰+0e:‰,2ˆ-.[g<h<ˆ/0Z ]j>_Š33Œ59nB57c rDg e Œ9;h ¢63£:=¦;:§;:¨;:«=Aª>>|P®>> s¬?A­?@­?A~P#¬@?­@@¯@AEI®A@±@G‰Q#†R%®DGz³FE‚X,ƒY.‘X*…\.“Y+“Z/Š^3•\.ºNR–a9²ZW¡d2+ˆ.*Š/.‹04Š2+2§h;¨j>49©j@9Œ:6Ž5Ç_`¬k?«l?¬l>­l>¬m>­m?®mB®n@¬tHÉil7¢3DI¤€Z:£<;¦:Ørq;§:¤„c<¨:ÙutÖwtÚvt>ª>ÔxyÚww=¬@@¬?@¬@¹†[?­A@­@?®>A®@A¯AD°GÉZ@²F´‘kÌŒ_H·EÉ\X³VÙ‰ˆ°˜v´˜uÎ’d°š~N¼Q°›~´›‚ЗkµŸ‡ã‘“¾¢…¹£‹ÔžqСvØŸs× q^Ç`סuÛ¦wiÊkË«‘⨨xÔx}ÔurØpvÙtvÚsxÚwç¿—ŒÝŒæÀ½áÄ­âÆ¦ãåÇÉçÉÎ¨ä©æÎÍçÎÍçÐÒæÑÑçÓÔæÕÆçÓÙæÖÂçÔÖåÙÊÀæ½çÛÅÈåÉçÝÔæÞÎËçÌèÞÒçßÒÐçÌÐçÍëßÐÑçÑÑçÓÕçÖÕç×ÖçÕèãÜÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ!þCreated with GIMP!ù ÿ, þÿ H° Áƒ*\ÈP /bµtí* ÐÈ+68ëQ£E†þØéÑñcÈ‘Æb$ ‘#}0¬lù2fʸPåɤ 9wöüyóU/Z¾L¡DÁ(R¥LoÞ¦‹•-—$L­z5ë¯`¼€õJ%*BRb"Y:ÄHR´jÙºµUæJ(RÎÈ@(ȇ $BthÐ÷oàÁ´ž¨ÑÃÍ'73A*„HÑ3K†E©ã™N&n–)²G.'xîìãiÄÍ™.ab†…Nž9p@m¸”§Ï ¦øpÚT Ó E&]J!.<€à@*U«X%| ;¶l+Y«Xþ©ÒäHÉ÷ðãËÃ]Û6]»xõžÒq„† *̯?aÀ‚5Øb=6Ê,ìРo(p`‚ 6(e–a¦gžæÊ3ð@C i$°a‡†8ÚI¦¡¦k# b5äðB¸£Œ4ÂVÓlµÝ–Û°ˆpC .¼ ÇAY䑽 œpÄÇ!?¸Gc0Q•Vb©¥SË1åtÒQ0@pfšk¶¹v^%Y‰œ'yæ·§zi±7W]wå%Ã~öá§}‰ú瀈)Ƙc(<¨ ƒ"xiƒ]ØÙg&Œè!ˆ"r8jˆ–Új­ÙãŒ55¾ø*Ñfnº%I¤‘H ¹ë‘7\qÇqye–[Vy¬–Ýt¼©&›n¢9m›;ltris-1.0.19/ltris48.gif0000664000175000017500000000401612140770051011660 00000000000000GIF89a00çÿEKVX`ZbShmoq s u D< vvE#ktL$|Q(N*‡#‚EX-‰%ƒ#IV1… $W2\1[5`4_4^7’$+TX—*4j< ]o< _›-1m? –05—11u@u@eqBf ¢31¥53§8:mxI#©:7kª;=«<>«=Dq ®>:v¯?@‰M&ˆP!±AB¶@Iu z³CD¬EG‹S#¹BFŠS)®FHW'‹Z3•[+~`?‚_?]1½MQ ‡"ƒ–]3ˆb7ˆ$‰žc,žc3¡g<§f7£h7ŽnF$‘$§gD«h:¬j<¨l;°m>«o>)—2•uL¯nEœtH5–2œuN³pAšyP”{V3œ/™zW¬vH/¡+œ~`.¤5Ÿ\Órf6ª;A¨:Ïyz6¬E9¬=¾…Pãvz<®@C¬F¾†WA¯9ņS>°A°Šnȉ\C´EÄŒcÆ^ʈ†F·HЈ‰ÑV慃ɑhÓmÒ‹‘燊̌Δe튂싈QÁQÏ›iÑ–˜òì’’ÕŸgÙžoᘟÑ噔џ¤çœÏ¤§Ö©zóŸÙ¦«à¥§Óª sÍs˱ܰ‡Ó¯¯Ð³±Î¶šyÓxë°†Ôµ›Ì¸•̸¨‡Ð‹Ø·—ŒÐ’쵃䶳”Òœ›Ðœî¹ŒÐÀ¨và|wâi¢Ðqãv⾘￉ªÓ§åÀÁ¬Óµ´Ó¢²Òµ™ß”ãȦòÅ›äÆÅßÈʼnê†éÈÁ™å‘‚퇅íåË ä¥í‚çÌО硒íçйèÏÙ—ïŒæÒÔçÔÉ´å·æÔÝäרÌá¿äÛÀèØÓžôžÂæÁäÚàÆæÈäÜÕçÜÏÊçÃéÞÑêÝÝÍèÒçáÌåàÞéàÙÔçÓæâÓÒèÙÛçÔÝæáÙèÛáçÜææÜÿÿÿ!þCreated with GIMP!ù ÿ,00þÿ H° Áƒ*\Ȱ¡Ã‡#JœHÑà;ñèÅ‹‡ï4d¤Ò\̸±ãǾÃ%Gž;tàÀÁ3¥ÆÊ–/cά™Rà»X,žE‚$J¢)'~Zô艞ÿÐÅŠAÍš4hÈãrB*U«Xµr…jo4gæ¬!æײgÓ®m;¶ç¸\.ÔX]£fŒ¯*%îæÝÛ÷o ¨îj±H3'Íš5h„a!‘xqãÇ‘'“ÕÅ‚Í4bÞ¨Iƃ=ΞA‹&aÝ>~ðÚåëGNÛ3bžfã5åQ%MŒ=ŠFåÂîÞ¿ƒ/~ï0gÌ”ëµ –¡/ e9b3jÕ§Aþº!B;wïàÅ“Ÿ·kH‘÷ï™Øñbƒá¤01L”81ÄHp_~ûõ÷_€ëìÂÃ…òÇ~lÓÆ q 'dx<€–,‡nÔQGWXÑEúS„~4RÈy\ÓF P¤G”F>Í QH 2þ±6m¨#K.Á$M5ÌÌ~R¥ƒ6*Ù“RB=A”QHñc …ÈXæáÄ‘T^UuUV[À2L4ˆˆ•~PÓÆd™…–Zl¹uB7¶4Ž:ÞC 5ÖxA¡]xéõXa€Óˆ[dºÄ?,‘Ÿ=UƘcIFB#fð€C ¬¦°Áþl°YgŸ…6Zi®Á&m¶á&<ìT#9õüâJ*”dñk°Ã{l²ÇùœpÄ]ÐÜsÑMWÝuâL -³¨bJ&"…Ý~î¸åžk^wß…7žì¹_òÑ'Ž$ 4 0 °o¿ÿá„Ë\¢ÀAáÇÌP@Æwüq!âˆ%ž˜âŠ-¾ãŒ5Þ˜Ž) DFèÃ&"ßœóÎ=ÿ,²Ž%õBéà‘I‚óÊF¡D@äÀ HMµÕXkÍõMM꥔TZYq–Ü€²@Çpщ ´ý¶qÏ=þ—L)ç˜e6Øšj²ƒJF@¡sA„"ƒ†#®øÎ?Þ&Xpr5g…Ü £ž”ÓŠ:¡3Ê+ :éA˜®s'©Ãõç\‚j(¢Š2êh)€$ +¢‚ &§„`ï¾/<ñÆ &)_~Uzi¦[lÚé§}8‘A!h@p@Ùoßý÷á/êe¥N†ªª¬¶à*¬4‚P€@°þôÇ?ÿð4´RÍ­ZóšØÌ¦6·ñIJ„E,c!KYÀ¢ ³.­äP‹9ÎŽt¨c/¤ \â"—¹Ðå-²k…ïB¼ÖÓž{ák>68˜¿&0‚Œ_Ú;T˜V ˆ!HA r„$ô’qÌc ™MÅXCâ‡3ɈF6jÐW4 `ŒDó™´! j*ðZÕ®–µ­umjs ›‚¶*]élsÜð&7ºÙmA(ä"&2™ipiJAä·¸ÊAîp”¤œãÀH:Ù O []éN;Õn”¯KClw¨D-ªQ/@Þï‚7¼â¯w³\ž-b)LiŠSžú@ù¸ç=ð‰|Ú#&úŽÉ÷­ªU¯Š•ó·¿þý/€÷£f¯É€;ltris-1.0.19/TODO0000664000175000017500000000000012140770051010335 00000000000000ltris-1.0.19/src/0000775000175000017500000000000012233753110010526 500000000000000ltris-1.0.19/src/bowl.c0000664000175000017500000017067312227571503011602 00000000000000/*************************************************************************** bowl.c - description ------------------- begin : Tue Dec 25 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include "ltris.h" #include "config.h" #include "tools.h" #include "shrapnells.h" #include "cpu.h" #include "bowl.h" extern Config config; extern Sdl sdl; extern SDL_Surface *offscreen; extern SDL_Surface *bkgnd; extern int keystate[SDLK_LAST]; extern Bowl *bowls[BOWL_COUNT]; extern int cpu_original_bowl[BOWL_WIDTH][BOWL_HEIGHT]; extern Block_Mask *cpu_block; enum { FIGURE_COUNT = 21 }; int figures[FIGURE_COUNT][BOWL_WIDTH][BOWL_HEIGHT]; Block_Mask block_masks[BLOCK_COUNT]; extern Bowl *bowls[BOWL_COUNT]; extern int *next_blocks, next_blocks_size; #define BOWL_DOWN_VEL_START 0.025 #define BOWL_DOWN_VEL_END 0.32 #define BOWL_DOWN_PERC_CHANGE 0.085 /* ==================================================================== Locals ==================================================================== */ /* ==================================================================== Get speed according to level of bowl. ==================================================================== */ void bowl_set_vert_block_vel( Bowl *bowl ) { int i; /* ranges from BOWL_DOWN_VEL_START to BOWL_DOWN_VEL_END within twenty levels */ bowl->block_vert_vel = BOWL_DOWN_VEL_START; for ( i = 0; i < bowl->level; i++ ) { // printf( "Level %2i: %2.5f\n", i, bowl->block_vert_vel ); bowl->block_vert_vel += ( BOWL_DOWN_VEL_END - bowl->block_vert_vel ) * BOWL_DOWN_PERC_CHANGE; } /* set add action info */ if ( config.gametype == 2 ) { bowl->dismantle_saves = 1; /* 7 - 12 single tiles */ if ( bowl->level >= 7 && bowl->level <= 12 ) { delay_set( &bowl->add_delay, 2000 + ( 12 - bowl->level ) * 500 ); bowl->add_lines = 0; bowl->add_tiles = 1; } /* 13 - ... whole lines */ if ( bowl->level >= 13 ) { if ( bowl->level <= 20 ) delay_set( &bowl->add_delay, 2000 + ( 20 - bowl->level ) * 500 ); else delay_set( &bowl->add_delay, 2000 ); bowl->add_lines = 1; bowl->add_tiles = 0; bowl->add_line_holes = bowl->level - 12; if ( bowl->add_line_holes > 6 ) bowl->add_line_holes = 6; } } } /* ==================================================================== Get position of helping shadow of block. ==================================================================== */ int bowl_block_pos_is_valid( Bowl *bowl, int x, int y ) { int i, j; for ( i = 0; i < 4; i++ ) for ( j = 0; j < 4; j++ ) if ( block_masks[bowl->block.id].mask[bowl->block.rot_id][i][j] ) if ( x + i >= 0 && x + i < bowl->w ) { if ( y + j >= bowl->h ) return 0; if ( y + j >= 0 ) if ( bowl->contents[x + i][y + j] != -1 ) return 0; } return 1; } void bowl_compute_help_pos( Bowl *bowl ) { int j = bowl->block.y; while ( bowl_block_pos_is_valid( bowl, bowl->block.x, j ) ) j++; j--; bowl->help_sx = bowl->block.x * bowl->block_size + bowl->sx; bowl->help_sy = j * bowl->block_size + bowl->sy; } /* ==================================================================== Compute position of preview ==================================================================== */ void bowl_compute_preview_pos( Bowl *bowl ) { int i, j; int x1, y1, x2, y2; /* corners of the tile */ if ( bowl->preview_center_sx == -1 ) return; /* first tile */ x1 = y1 = -1; for ( j = 0; j < 4; j++ ) { for ( i = 0; i < 4; i++ ) { if ( block_masks[bowl->next_block_id].mask[0][i][j] ) { y1 = j; break; } } if ( y1 != -1 ) break; } for ( i = 0; i < 4; i++ ) { for ( j = 0; j < 4; j++ ) { if ( block_masks[bowl->next_block_id].mask[0][i][j] ) { x1 = i; break; } } if ( x1 != -1 ) break; } /* last tile */ x2 = y2 = -1; for ( j = 3; j >= 0; j-- ) { for ( i = 3; i >= 0; i-- ) { if ( block_masks[bowl->next_block_id].mask[0][i][j] ) { y2 = j; break; } } if ( y2 != -1 ) break; } for ( i = 3; i >= 0; i-- ) { for ( j = 3; j >= 0; j-- ) { if ( block_masks[bowl->next_block_id].mask[0][i][j] ) { x2 = i; break; } } if ( x2 != -1 ) break; } /* preview position */ bowl->preview_sx = bowl->preview_center_sx - ( x1 * bowl->block_size + ( ( ( x2 - x1 + 1 ) * bowl->block_size ) >> 1 ) ); bowl->preview_sy = bowl->preview_center_sy - ( y1 * bowl->block_size + ( ( ( y2 - y1 + 1 ) * bowl->block_size ) >> 1 ) ); } /* ==================================================================== Compute computer target ==================================================================== */ void bowl_compute_cpu_dest( Bowl *bowl ) { int i, j; CPU_Data cpu_data; /* pass bowl contents to the cpu bowl */ if ( config.gametype == 0 ) /* demo is supposed to get the highest scores */ cpu_data.aggr = 0; /* so play defensive */ else cpu_data.aggr = config.cpu_aggr; /* else use the wanted setting */ cpu_data.bowl_w = bowl->w; cpu_data.bowl_h = bowl->h; cpu_data.original_block = &block_masks[bowl->block.id]; cpu_data.original_preview = &block_masks[bowl->next_block_id]; for ( i = 0; i < bowl->w; i++ ) for ( j = 0; j < bowl->h; j++ ) cpu_data.original_bowl[i][j] = ( bowl->contents[i][j] != -1 ); /* get best destination */ cpu_analyze_data( &cpu_data ); bowl->cpu_dest_x = cpu_data.dest_x; bowl->cpu_dest_rot = cpu_data.dest_rot; bowl->cpu_dest_score = cpu_data.dest_score; } /* ==================================================================== Initate next block. Set bowl::block::id to preview and get id of next block to be dealt to bowl::next_block_id. ==================================================================== */ void bowl_select_next_block( Bowl *bowl ) { int i, min, *new_next_blocks = 0; int num_old_blocks = 0; /* set preview as current block id */ bowl->block.id = bowl->next_block_id; /* in expert mode (only for single player as we will alter the bags!) * test remaining pieces in current bag and swap worst piece to * beginning of queue. */ if (config.expert && (config.gametype == 1 || config.gametype == 2)) { int num_test_blocks; int j, savedblockid; struct { int block, score, next_blocks_pos; } tmp, scores[BLOCK_COUNT]; /* determine number of remaining blocks in current bag */ num_test_blocks = BLOCK_COUNT - (bowl->next_blocks_pos % BLOCK_COUNT); if (num_test_blocks > next_blocks_size - bowl->next_blocks_pos) num_test_blocks = next_blocks_size - bowl->next_blocks_pos; DPRINTF("Expert mode: Testing %d pieces\n", num_test_blocks); /* backup current block id, we need field for cpu algorithm */ savedblockid = bowl->block.id; /* let cpu algorithm compute score for all pieces */ for (i = 0; i < num_test_blocks; i++) { bowl->block.id = next_blocks[bowl->next_blocks_pos + i]; bowl_compute_cpu_dest( bowl ); scores[i].block = bowl->block.id; scores[i].next_blocks_pos = bowl->next_blocks_pos + i; scores[i].score = bowl->cpu_dest_score; DPRINTF(" type = %d, score = %d\n",scores[i].block, scores[i].score); } /* bubblesort scores */ for ( i = 0; i < num_test_blocks - 1; i++ ) { for ( j = i + 1; j < num_test_blocks; j++ ) { if ( scores[j].score < scores[i].score ) { tmp = scores[i]; scores[i] = scores[j]; scores[j] = tmp; } } } /* for now always deal worst block */ i = next_blocks[scores[0].next_blocks_pos]; next_blocks[scores[0].next_blocks_pos] = next_blocks[bowl->next_blocks_pos]; next_blocks[bowl->next_blocks_pos] = i; DPRINTF("Dealing type %d next\n", next_blocks[bowl->next_blocks_pos]); /* restore current block id */ bowl->block.id = savedblockid; } /* set new preview from next_blocks and fill more bags if end of * buffer reached */ bowl->next_block_id = next_blocks[bowl->next_blocks_pos++]; DPRINTF("Bowl %p: Current = %d, Next = %d\n", bowl, bowl->block.id, bowl->next_block_id); if ( bowl->next_blocks_pos == next_blocks_size ) { DPRINTF("Need to fill new tetrominoes bags\n"); /* we have to keep part of buffer which other bowls * might still need to go through */ min = next_blocks_size; for ( i = 0; i < BOWL_COUNT; i++ ) if ( bowls[i] && bowls[i]->next_blocks_pos < min ) min = bowls[i]->next_blocks_pos; num_old_blocks = next_blocks_size - min; /* resize buffer and save old blocks */ next_blocks_size = num_old_blocks + BLOCK_BAG_COUNT*BLOCK_COUNT; new_next_blocks = calloc(next_blocks_size, sizeof(int)); if (num_old_blocks > 0) { memcpy( new_next_blocks, &next_blocks[min], sizeof(int) * num_old_blocks ); DPRINTF("Keeping %d pieces: ", num_old_blocks); for (i = 0; i < num_old_blocks; i++) DPRINTF("%d ",new_next_blocks[i]); DPRINTF("\n"); } free( next_blocks ); next_blocks = new_next_blocks; /* adjust position in next_blocks for all bowls */ for ( i = 0; i < BOWL_COUNT; i++ ) if ( bowls[i] ) bowls[i]->next_blocks_pos -= min; /* fill new bags */ fill_random_block_bags( next_blocks + num_old_blocks, BLOCK_BAG_COUNT ); } /* init rest of block structure */ bowl->block.x = 3; bowl->block.y = -3; bowl->block.sx = bowl->sx + bowl->block_size * bowl->block.x; bowl->block.sy = bowl->sy + bowl->block_size * bowl->block.y; bowl->block.rot_id = 0; bowl->block.sw = bowl->block.sh = 4 * bowl->block_size; bowl->block.cur_x = bowl->block.x * bowl->block_size; bowl->block.cur_y = bowl->block.y * bowl->block_size; bowl->block.check_y = (int)bowl->block.cur_y; bowl_compute_help_pos( bowl ); bowl_compute_preview_pos( bowl ); /* if CPU is in control get destination row & other stuff */ if ( !bowl->controls ) { /* destination */ bowl_compute_cpu_dest( bowl ); /* set delay until cpu waits with dropping block */ delay_set( &bowl->cpu_delay, config.cpu_delay ); bowl->cpu_down = 0; delay_set( &bowl->cpu_rot_delay, config.cpu_rot_delay ); } } /* ==================================================================== Set a tile contents and pixel contents. ==================================================================== */ inline void bowl_set_tile( Bowl *bowl, int x, int y, int tile_id ) { int i, j = y * bowl->block_size; bowl->contents[x][y] = tile_id; for ( i = 0; i < bowl->block_size; i++ ) bowl->pixel_contents[x][j + i] = tile_id; } /* ==================================================================== Reset bowl contents and add levels figure if wanted. ==================================================================== */ void bowl_reset_contents( Bowl *bowl ) { int i, j; for ( i = 0; i < bowl->w; i++ ) for ( j = 0; j < bowl->h; j++ ) bowl_set_tile( bowl, i, j, -1 ); if ( bowl->use_figures && bowl->level < 20 /* don't have more figures */ ) for ( i = 0; i < bowl->w; i++ ) for ( j = 0; j < bowl->h; j++ ) bowl_set_tile( bowl, i, j, figures[bowl->level][i][j] ); } /* ==================================================================== Check if the passed pixel position by rotation is a valid one for bowl::block. NOTE: py is a pixel value and x is a bowl map value. The tolerance value moves the checked corners into the middle of the brick opening a small 'window' to move though it's blocked. Useful when config::block_by_block is disabled. If position is valid, 0 is returned. Other return values: POSINVAL_LEFT (out of left boundary) POSINVAL_RIGHT (out of right boundary) POSINVAL invalid for other reasons ==================================================================== */ #define POSVALID 0 #define POSINVAL -1 #define POSINVAL_LEFT -2 #define POSINVAL_RIGHT -3 int bowl_validate_block_pos( Bowl *bowl, int x, int py, int rot, int tol ) { int i, j; int tile_y = 0; for ( j = 0; j < 4; j++ ) { for ( i = 0; i < 4; i++ ) { if ( block_masks[bowl->block.id].mask[rot][i][j] ) { if ( x + i < 0 ) return POSINVAL_LEFT; if ( x + i >= bowl->w ) return POSINVAL_RIGHT; if ( py + tile_y >= bowl->sh ) return POSINVAL; /* if it doesn't fit the screen from above it's okay */ if ( py + tile_y < 0 ) continue; /* bowl pixel contents */ if ( bowl->pixel_contents[i + x][py + tile_y + tol]!= -1 ) return POSINVAL; if ( bowl->pixel_contents[i + x][py + tile_y + bowl->block_size - 1 - tol] != -1 ) return POSINVAL; /* if the bowl bottom is hit it is a collision as well */ if ( py + tile_y + tol >= bowl->sh ) return POSINVAL; if ( py + tile_y + bowl->block_size - 1 - tol >= bowl->sh ) return POSINVAL; } } tile_y += bowl->block_size; } return POSVALID; } /* ==================================================================== Draw block to offscreen. ==================================================================== */ void bowl_draw_block_to_offscreen( Bowl *bowl ) { int i, j; int tile_x = 0, tile_y = 0; if ( bowl->blind ) return; bowl->block.sx = bowl->block.x * bowl->block_size + bowl->sx; bowl->block.sy = bowl->block.y * bowl->block_size + bowl->sy; for ( j = 0; j < 4; j++ ) { for ( i = 0; i < 4; i++ ) { if ( block_masks[bowl->block.id].mask[bowl->block.rot_id][i][j] ) { DEST( offscreen, bowl->block.sx + tile_x, bowl->block.sy + tile_y, bowl->block_size, bowl->block_size ); SOURCE( bowl->blocks, bowl->block.id * bowl->block_size, 0 ); blit_surf(); } tile_x += bowl->block_size; } tile_y += bowl->block_size; tile_x = 0; } } /* ==================================================================== Add a single tile at a random position so that it doesn't hit the current block nor leads to game over nor completes a line. ==================================================================== */ void bowl_add_tile( Bowl *bowl ) { int j, k; int added = 0; int i = rand() % bowl->w; int checks = 0; int hole; while ( checks < 10 ) { i++; checks++; if ( i == bowl->w ) i = 0; /* get first free tile in column */ if ( bowl->contents[i][1] != -1 ) continue; else j = 1; while ( j + 1 < bowl->h && bowl->contents[i][j + 1] == -1 ) j++; /* add tile and test if this hits the block if so remove and try another one */ bowl_set_tile( bowl, i, j, 9 ); if ( bowl_validate_block_pos( bowl, bowl->block.x, bowl->block.check_y, bowl->block.rot_id, 0 ) < 0) { bowl_set_tile( bowl, i, j, -1 ); continue; } /* if this line was completed deny, too */ hole = 0; for ( k = 0; k < bowl->w; k++ ) if ( bowl->contents[k][j] == -1 ) { hole = 1; break; } if ( !hole ) { bowl_set_tile( bowl, i, j, -1 ); continue; } /* position worked out! */ added = 1; bowl_draw_tile( bowl, i, j ); break; } /* help shadow may have changed */ if ( added ) bowl_compute_help_pos( bowl ); } /* ==================================================================== Add a line at the bottom of a bowl and return False if bowl is filled to the top. If the block position becomes invalid by this move it's positioned one up. ==================================================================== */ int bowl_add_line( Bowl * bowl, int wanted_holes, int *holes_pos) { int i, j, holes = 0, hole_x; /* if the first line containts a tile the game is over! */ for ( i = 0; i < bowl->w; i++ ) if ( bowl->contents[i][0] != -1 ) return 0; /* move all lines one up */ for ( j = 0; j < bowl->h - 1; j++ ) for ( i = 0; i < bowl->w; i++ ) bowl_set_tile( bowl, i, j, bowl->contents[i][j + 1] ); /* add a random line */ for ( i = 0; i < bowl->w; i++ ) bowl_set_tile( bowl, i, bowl->h - 1, rand() % BLOCK_TILE_COUNT ); /* add holes */ while ( holes < wanted_holes ) { if ( holes_pos ) { hole_x = holes_pos[holes]; } else { hole_x = rand() % bowl->w; } if ( bowl->contents[hole_x][bowl->h - 1] != -1 ) { bowl_set_tile( bowl, hole_x, bowl->h - 1, -1 ); holes++; } } /* check if block position became invalid */ if ( bowl_validate_block_pos( bowl, bowl->block.x, bowl->block.check_y, bowl->block.rot_id, 0 ) < 0 ) { bowl->block.y = bowl->block.check_y / bowl->block_size - 1; bowl->block.check_y = bowl->block.y * bowl->block_size; bowl->block.cur_y = bowl->block.check_y; } /* update helping shadow */ bowl_compute_help_pos( bowl ); return 1; } /* ==================================================================== Initate final animation. ==================================================================== */ void bowl_final_animation( Bowl *bowl ) { int i, j, k; if ( bowl->blind ) return; for ( j = 0; j < bowl->h; j++ ) for ( i = 0, k = 1; i < bowl->w; i++, k++ ) if ( bowl->contents[i][j] != -1 ) shrapnell_create( bowl->sx + i * bowl->block_size, bowl->sy + j * bowl->block_size, bowl->block_size, bowl->block_size, 0, -0.05, 0, 0.0002 ); } /* ==================================================================== Finish game and set game over. ==================================================================== */ void bowl_finish_game( Bowl *bowl ) { float score_mod = 0; bowl->game_over = 1; bowl->hide_block = 1; bowl_final_animation( bowl ); bowl->use_figures = 0; bowl_reset_contents( bowl ); bowl_draw_contents( bowl ); bowl->font->align = ALIGN_X_CENTER | ALIGN_Y_CENTER; write_text( bowl->font, offscreen, bowl->sx + bowl->sw / 2, bowl->sy + bowl->sh / 2, _("Game Over"), OPAQUE ); write_text( bowl->font, sdl.screen, bowl->sx + bowl->sw / 2, bowl->sy + bowl->sh / 2, _("Game Over"), OPAQUE ); #ifdef SOUND if ( !bowl->mute ) sound_play( bowl->wav_explosion ); #endif /* gain the bonus score */ DPRINTF("Basic score before bonuses: %d\n", (int)counter_get(bowl->score)); if ( !config.preview || bowl->preview_center_sx == -1 ) { score_mod += 0.15; DPRINTF("Bonus for no preview, current score mod = %1.2g\n",score_mod); } if ( config.gametype != 2 && config.starting_level > 0) { score_mod += 0.015 * config.starting_level; DPRINTF("Bonus for higher starting level, current score mod = %1.2g\n",score_mod); } if ( config.expert && (config.gametype == 1 || config.gametype == 2) ) { score_mod += 0.5; DPRINTF("Bonus for expert mode, current score mod = %1.2g\n",score_mod); } counter_add( &bowl->score, (int)( score_mod * counter_get( bowl->score )) ); DPRINTF("Final score with bonuses: %d\n", (int)counter_get(bowl->score)); } /* ==================================================================== Actually insert block and remove a line if needed, create shrapnells, give score etc ==================================================================== */ void bowl_insert_block( Bowl *bowl ) { int i, j, k, l; int line_y[4]; int line_count; int line_score; int full; int old_level; int send_count; int shr_type; int py; int *hole_pos = 0; /* move block y up so it gets to the first free place */ py = bowl->block.y * bowl->block_size; while ( bowl_validate_block_pos( bowl, bowl->block.x, py, bowl->block.rot_id, 0 ) < 0 ) py -= bowl->block_size; bowl->block.y = py / bowl->block_size; /* insert and check if block is out of screen */ for ( i = 0; i < 4; i++ ) { for ( j = 0; j < 4; j++ ) { if ( block_masks[bowl->block.id].mask[bowl->block.rot_id][i][j] ) { if ( bowl->block.y + j < 0 ) bowl->game_over = 1; if ( bowl->block.x + i >= 0 && bowl->block.x + i < bowl->w ) if ( bowl->block.y + j >= 0 && bowl->block.y + j < bowl->h ) bowl_set_tile( bowl, bowl->block.x + i, bowl->block.y + j, bowl->block.id ); } } } /* draw block to offscreen for shrapnells */ bowl_draw_contents( bowl ); #ifdef SOUND if ( !bowl->mute ) sound_play( bowl->wav_stop ); #endif /* if game over just explode everything and return */ if ( bowl->game_over ) { bowl_finish_game( bowl ); return; } /* check for completed lines */ line_count = 0; for ( j = 0; j < bowl->h; j++ ) { full = 1; for ( i = 0; i < bowl->w; i++ ) { if ( bowl->contents[i][j] == -1 ) { full = 0; break; } } if ( full ) line_y[line_count++] = j; } for ( j = 0; j < line_count; j++ ) for ( i = 0; i < bowl->w; i++ ) { for ( l = line_y[j]; l > 0; l-- ) bowl_set_tile( bowl, i, l, bowl->contents[i][l - 1] ); bowl_set_tile( bowl, i, 0, -1 ); } /* tetris? tell him! */ #ifdef SOUND if ( line_count == 4 ) if ( !bowl->mute ) sound_play( bowl->wav_excellent ); #endif /* create shrapnells */ shr_type = rand() % SHR_TYPE_COUNT; if ( !bowl->blind ) for ( j = 0; j < line_count; j++ ) shrapnells_create( bowl->sx, bowl->sy + line_y[j] * bowl->block_size, bowl->sw, bowl->block_size, shr_type ); #ifdef SOUND if ( line_count > 0 ) if ( !bowl->mute ) sound_play( bowl->wav_explosion ); #endif /* add score */ line_score = 100 * ( bowl->level + 1 ); for ( i = 0; i < line_count; i++ ) { counter_add( &bowl->score, line_score ); line_score *= 2; } /* line and level update */ old_level = bowl->lines / 10; bowl->lines += line_count; if ( old_level != bowl->lines / 10 ) { #ifdef SOUND if ( !bowl->mute ) sound_play( bowl->wav_nextlevel ); #endif /* new level */ bowl->level++; bowl_set_vert_block_vel( bowl ); /* in advanced game reset bowl contents */ if ( config.gametype == 2 ) { bowl_reset_contents( bowl ); } } /* reset delay of add_line/tile */ if ( line_count && ( bowl->add_lines || bowl->add_tiles ) && bowl->dismantle_saves ) delay_reset( &bowl->add_delay ); /* update offscreen&screen */ bowl->draw_contents = 1; /* send completed lines to all other bowls */ if ( line_count > 1 ) { send_count = line_count; if ( !config.send_all ) send_count--; if ( line_count == 4 && config.send_tetris ) send_count = 4; for ( i = 0; i < BOWL_COUNT; i++ ) if ( bowls[i] && bowls[i] != bowl && !bowls[i]->game_over) { if ( !config.rand_holes ) { hole_pos = calloc(config.holes,sizeof(int)); for ( j = 0; j < config.holes; ) { l = rand() % bowls[i]->w; for (k=0;kdraw_contents = 1; if ( hole_pos ) free( hole_pos ); hole_pos = 0; } } /* get next block */ bowl_select_next_block( bowl ); } /* ==================================================================== Check if the block collides at the current position and insert it if so. ==================================================================== */ int bowl_check_block_insertion( Bowl *bowl ) { int i, j; int cy; int collision = 0; /* check the bottom of the lowest tile in pixel_contents * if we drop block-by-block don't use the current position but * compute the lowest pixel from bowl position so we may * move a block below a neighbored one. */ for ( i = 0; i < 4; i++ ) { for ( j = 3; j >= 0; j-- ) if ( bowl->block.x + i >= 0 && bowl->block.x + i < bowl->w ) if ( block_masks[bowl->block.id].mask[bowl->block.rot_id][i][j] ) { /* if the lowest tile is still out of screen skip this column */ if ( bowl->block.y + j < 0 ) break; /* check tile hit by tile bottom */ cy = (int)bowl->block.check_y + j * bowl->block_size + bowl->block_size - 1/* last pixel of tile */; if ( cy < 0 ) break; if ( bowl->pixel_contents[bowl->block.x + i][cy] != -1 ) collision = 1; /* if the bowl bottom is hit it is a collision as well */ if ( cy >= bowl->sh ) collision = 1; break; } if ( collision ) break; } if ( !collision ) return 0; /* clear the down key so we don't move the next block too far */ if ( bowl->controls && config.clear_keystate ) { keystate[bowl->controls->down] = 0; if ( config.clear_keystate == 2 ) { keystate[bowl->controls->left] = 0; keystate[bowl->controls->right] = 0; keystate[bowl->controls->rot_left] = 0; keystate[bowl->controls->rot_right] = 0; keystate[bowl->controls->drop] = 0; } } /* insert, gain score bla bla bla */ bowl_insert_block( bowl ); return 1; } /* ==================================================================== Drop block in one p-cycle. ==================================================================== */ void bowl_drop_block( Bowl *bowl ) { while ( !bowl_check_block_insertion( bowl ) ) { bowl->block.cur_y += bowl->block_size >> 1; bowl->block.y = (int)bowl->block.cur_y / bowl->block_size; /* update check y */ if ( config.block_by_block ) bowl->block.check_y = bowl->block.y * bowl->block_size; else bowl->block.check_y = (int)bowl->block.cur_y; } bowl->stored_key = -1; } /* ==================================================================== Return True if CPU may drop/move down. ==================================================================== */ int bowl_cpu_may_move_down( Bowl *bowl ) { if ( !bowl->controls && bowl->cpu_down && bowl->block.x == bowl->cpu_dest_x && bowl->block.rot_id == bowl->cpu_dest_rot ) return 1; return 0; } int bowl_cpu_may_drop( Bowl *bowl ) { /* if ( config.cpu_diff == 5 && bowl_cpu_may_move_down( bowl ) ) return 1;*/ return 0; } /* ==================================================================== Publics ==================================================================== */ /* ==================================================================== Load figures from file. ==================================================================== */ void bowl_load_figures() { int i, j, k; FILE *file = 0; char path[512]; char buf[128]; sprintf( path, "%s/figures", SRC_DIR ); if ( ( file = fopen( path, "r" ) ) == 0 ) { fprintf( stderr, "Cannot load figures from '%s'.\n", path ); return; } for ( i = 0; i < FIGURE_COUNT; i++ ) for ( j = 0; j < BOWL_HEIGHT; j++ ) { if ( feof( file ) ) { fprintf( stderr, "Unexpected end of file when trying to read line %i of figure %i in '%s'.\n", j, i, path ); return; } fread( buf, sizeof( char ), BOWL_WIDTH + 1, file ); buf[BOWL_WIDTH] = 0; for ( k = 0; k < BOWL_WIDTH; k++ ) { if ( buf[k] == 32 ) figures[i][k][j] = -1; else figures[i][k][j] = buf[k] - 97; } } fclose( file ); } /* ==================================================================== Initate block masks. ==================================================================== */ void bowl_init_block_masks() { int masksize = sizeof(block_masks[0].mask); // same for all block_masks[0].rx = 0; block_masks[0].ry = 0; block_masks[0].id = 0; memset(block_masks[0].mask, 0, masksize ); block_masks[0].mask[0][1][1] = 1; block_masks[0].mask[0][2][1] = 1; block_masks[0].mask[0][1][2] = 1; block_masks[0].mask[0][2][2] = 1; block_masks[0].mask[1][1][1] = 1; block_masks[0].mask[1][2][1] = 1; block_masks[0].mask[1][1][2] = 1; block_masks[0].mask[1][2][2] = 1; block_masks[0].mask[2][1][1] = 1; block_masks[0].mask[2][2][1] = 1; block_masks[0].mask[2][1][2] = 1; block_masks[0].mask[2][2][2] = 1; block_masks[0].mask[3][1][1] = 1; block_masks[0].mask[3][2][1] = 1; block_masks[0].mask[3][1][2] = 1; block_masks[0].mask[3][2][2] = 1; block_masks[1].rx = 0; block_masks[1].ry = 0; block_masks[1].id = 1; memset(block_masks[1].mask, 0, masksize ); block_masks[1].mask[0][0][2] = 1; block_masks[1].mask[0][1][2] = 1; block_masks[1].mask[0][2][2] = 1; block_masks[1].mask[0][3][2] = 1; block_masks[1].mask[1][1][0] = 1; block_masks[1].mask[1][1][1] = 1; block_masks[1].mask[1][1][2] = 1; block_masks[1].mask[1][1][3] = 1; block_masks[1].mask[2][0][2] = 1; block_masks[1].mask[2][1][2] = 1; block_masks[1].mask[2][2][2] = 1; block_masks[1].mask[2][3][2] = 1; block_masks[1].mask[3][1][0] = 1; block_masks[1].mask[3][1][1] = 1; block_masks[1].mask[3][1][2] = 1; block_masks[1].mask[3][1][3] = 1; block_masks[2].rx = 0; block_masks[2].ry = 1; block_masks[2].id = 2; memset(block_masks[2].mask, 0, masksize ); block_masks[2].mask[0][0][1] = 1; block_masks[2].mask[0][1][1] = 1; block_masks[2].mask[0][2][1] = 1; block_masks[2].mask[0][1][2] = 1; block_masks[2].mask[1][1][0] = 1; block_masks[2].mask[1][1][1] = 1; block_masks[2].mask[1][1][2] = 1; block_masks[2].mask[1][0][1] = 1; block_masks[2].mask[2][0][1] = 1; block_masks[2].mask[2][1][0] = 1; block_masks[2].mask[2][1][1] = 1; block_masks[2].mask[2][2][1] = 1; block_masks[2].mask[3][1][0] = 1; block_masks[2].mask[3][1][1] = 1; block_masks[2].mask[3][1][2] = 1; block_masks[2].mask[3][2][1] = 1; block_masks[3].rx = 0; block_masks[3].ry = 1; block_masks[3].id = 3; memset(block_masks[3].mask, 0, masksize ); block_masks[3].mask[0][0][2] = 1; block_masks[3].mask[0][1][1] = 1; block_masks[3].mask[0][1][2] = 1; block_masks[3].mask[0][2][1] = 1; block_masks[3].mask[1][0][1] = 1; block_masks[3].mask[1][0][2] = 1; block_masks[3].mask[1][1][2] = 1; block_masks[3].mask[1][1][3] = 1; block_masks[3].mask[2][0][2] = 1; block_masks[3].mask[2][1][1] = 1; block_masks[3].mask[2][1][2] = 1; block_masks[3].mask[2][2][1] = 1; block_masks[3].mask[3][0][1] = 1; block_masks[3].mask[3][0][2] = 1; block_masks[3].mask[3][1][2] = 1; block_masks[3].mask[3][1][3] = 1; block_masks[4].rx = 0; block_masks[4].ry = 1; block_masks[4].id = 4; memset(block_masks[4].mask, 0, masksize ); block_masks[4].mask[0][0][1] = 1; block_masks[4].mask[0][1][1] = 1; block_masks[4].mask[0][1][2] = 1; block_masks[4].mask[0][2][2] = 1; block_masks[4].mask[1][1][1] = 1; block_masks[4].mask[1][1][2] = 1; block_masks[4].mask[1][0][2] = 1; block_masks[4].mask[1][0][3] = 1; block_masks[4].mask[2][0][1] = 1; block_masks[4].mask[2][1][1] = 1; block_masks[4].mask[2][1][2] = 1; block_masks[4].mask[2][2][2] = 1; block_masks[4].mask[3][1][1] = 1; block_masks[4].mask[3][1][2] = 1; block_masks[4].mask[3][0][2] = 1; block_masks[4].mask[3][0][3] = 1; block_masks[5].rx = 0; block_masks[5].ry = 1; block_masks[5].id = 5; memset(block_masks[5].mask, 0, masksize ); block_masks[5].mask[0][0][1] = 1; block_masks[5].mask[0][1][1] = 1; block_masks[5].mask[0][2][1] = 1; block_masks[5].mask[0][0][2] = 1; block_masks[5].mask[1][0][0] = 1; block_masks[5].mask[1][1][0] = 1; block_masks[5].mask[1][1][1] = 1; block_masks[5].mask[1][1][2] = 1; block_masks[5].mask[2][0][1] = 1; block_masks[5].mask[2][1][1] = 1; block_masks[5].mask[2][2][1] = 1; block_masks[5].mask[2][2][0] = 1; block_masks[5].mask[3][1][0] = 1; block_masks[5].mask[3][1][1] = 1; block_masks[5].mask[3][1][2] = 1; block_masks[5].mask[3][2][2] = 1; block_masks[6].rx = 0; block_masks[6].ry = 1; block_masks[6].id = 6; memset(block_masks[6].mask, 0, masksize ); block_masks[6].mask[0][2][2] = 1; block_masks[6].mask[0][0][1] = 1; block_masks[6].mask[0][1][1] = 1; block_masks[6].mask[0][2][1] = 1; block_masks[6].mask[1][0][2] = 1; block_masks[6].mask[1][1][0] = 1; block_masks[6].mask[1][1][1] = 1; block_masks[6].mask[1][1][2] = 1; block_masks[6].mask[2][0][0] = 1; block_masks[6].mask[2][0][1] = 1; block_masks[6].mask[2][1][1] = 1; block_masks[6].mask[2][2][1] = 1; block_masks[6].mask[3][1][0] = 1; block_masks[6].mask[3][1][1] = 1; block_masks[6].mask[3][1][2] = 1; block_masks[6].mask[3][2][0] = 1; } /* ==================================================================== Create a bowl at screen position x,y. Measurements are the same for all bowls. Controls are the player's controls defined in config.c. ==================================================================== */ Bowl *bowl_create( int x, int y, int preview_x, int preview_y, SDL_Surface *blocks, SDL_Surface *unknown_preview, char *name, Controls *controls ) { Bowl *bowl = calloc( 1, sizeof( Bowl ) ); bowl->mute = 0; bowl->blind = 0; bowl->sx = x; bowl->sy = y; bowl->block_size = BOWL_BLOCK_SIZE; bowl->w = BOWL_WIDTH; bowl->h = BOWL_HEIGHT; bowl->sw = bowl->w * bowl->block_size; bowl->sh = bowl->h * bowl->block_size; bowl->blocks = blocks; bowl->unknown_preview = unknown_preview; strcpy( bowl->name, name ); bowl->controls = controls; bowl->use_figures = ( config.gametype == 2 ); bowl->level = (config.gametype == 2 ) ? 0 : config.starting_level; bowl->stored_key = -1; bowl_reset_contents( bowl ); bowl->next_block_id = next_blocks[bowl->next_blocks_pos++]; delay_set( &bowl->block_hori_delay, config.hori_delay * 12 + 63 ); bowl->block_hori_vel = (float)bowl->block_size / bowl->block_hori_delay.limit; /* translate config option vert_delay into drop_vel to avoid unnecessary * changes in the code. the lower the delay the higher the velocity. */ bowl->block_drop_vel = 0.8 - config.vert_delay*0.07; bowl_set_vert_block_vel( bowl ); bowl->help_sw = bowl->help_sh = bowl->block_size * 4; bowl->preview_center_sx = preview_x; bowl->preview_center_sy = preview_y; bowl_select_next_block( bowl ); bowl->help_alpha_change = -0.9; bowl->help_alpha = 255; bowl->preview_alpha_change = 0.4; bowl->font = load_fixed_font( "f_small_white.bmp", 32, 96, 8 ); #ifdef SOUND bowl->wav_leftright = sound_chunk_load( "leftright.wav" ); bowl->wav_explosion = sound_chunk_load( "explosion.wav" ); bowl->wav_stop = sound_chunk_load( "stop.wav" ); bowl->wav_nextlevel = sound_chunk_load( "nextlevel.wav" ); bowl->wav_excellent = sound_chunk_load( "excellent.wav" ); #endif return bowl; } void bowl_delete( Bowl *bowl ) { free_font( &bowl->font ); #ifdef SOUND if ( bowl->wav_excellent ) sound_chunk_free( bowl->wav_excellent ); bowl->wav_excellent = 0; if ( bowl->wav_nextlevel ) sound_chunk_free( bowl->wav_nextlevel ); bowl->wav_nextlevel = 0; if ( bowl->wav_stop ) sound_chunk_free( bowl->wav_stop ); bowl->wav_stop = 0; if ( bowl->wav_leftright ) sound_chunk_free( bowl->wav_leftright ); bowl->wav_leftright = 0; if ( bowl->wav_explosion ) sound_chunk_free( bowl->wav_explosion ); bowl->wav_explosion = 0; #endif free( bowl ); } /* ==================================================================== Check if key belongs to this bowl and store the value for use in bowl_update(). ==================================================================== */ void bowl_store_key( Bowl *bowl, int keysym ) { if ( !bowl->controls ) return; /* CPU handles this bowl */ if ( bowl->controls->left == keysym ) bowl->stored_key = KEY_LEFT; else if ( bowl->controls->right == keysym ) bowl->stored_key = KEY_RIGHT; else if ( bowl->controls->rot_left == keysym ) bowl->stored_key = KEY_ROT_LEFT; else if ( bowl->controls->rot_right == keysym ) bowl->stored_key = KEY_ROT_RIGHT; else if ( bowl->controls->down == keysym ) bowl->stored_key = KEY_DOWN; else if ( bowl->controls->drop == keysym ) bowl->stored_key = KEY_DROP; } /* ==================================================================== Hide/show/update all animations handled by a bowl. ==================================================================== */ void bowl_hide( Bowl *bowl ) { /* block */ if ( !bowl->hide_block ) { DEST( sdl.screen, bowl->block.sx, bowl->block.sy, bowl->block.sw, bowl->block.sh ); SOURCE( offscreen, bowl->block.sx, bowl->block.sy ); blit_surf(); add_refresh_rect( bowl->block.sx, bowl->block.sy, bowl->block.sw, bowl->block.sh ); } /* help */ if ( config.help ) { DEST( sdl.screen, bowl->help_sx, bowl->help_sy, bowl->help_sw, bowl->help_sh ); SOURCE( offscreen, bowl->help_sx, bowl->help_sy ); blit_surf(); add_refresh_rect( bowl->help_sx, bowl->help_sy, bowl->help_sw, bowl->help_sh ); } /* preview */ if ( bowl->preview_center_sx != -1 ) { DEST( sdl.screen, bowl->preview_center_sx - ( bowl->block_size << 1 ), bowl->preview_center_sy - ( bowl->block_size << 1 ), bowl->block_size << 2, bowl->block_size << 2 ); SOURCE( offscreen, bowl->preview_center_sx - ( bowl->block_size << 1 ), bowl->preview_center_sy - ( bowl->block_size << 1 ) ); blit_surf(); add_refresh_rect( bowl->preview_center_sx - ( bowl->block_size << 1 ), bowl->preview_center_sy - ( bowl->block_size << 1 ), bowl->block_size << 2, bowl->block_size << 2 ); } /* score */ DEST( sdl.screen, bowl->score_sx, bowl->score_sy, bowl->score_sw, bowl->score_sh ); SOURCE( offscreen, bowl->score_sx, bowl->score_sy ); blit_surf(); add_refresh_rect( bowl->score_sx, bowl->score_sy, bowl->score_sw, bowl->score_sh ); /* remove help lines */ if ( !bowl->hide_block && (config.help == 2) ) { int i, j; int x = bowl->block.sx, y = bowl->block.sy; int tile_x = 0, tile_y = 0; int left = bowl->block.sx + bowl->block.sw - 1; int right = bowl->block.sx; /* left and right borders of current block */ for ( j = 0; j < 4; j++ ) { for ( i = 0; i < 4; i++ ) { if ( block_masks[bowl->block.id].mask[bowl->block.rot_id][i][j] ) { if ( x < left ) left = x; if ( x + bowl->block_size - 1 > right ) right = x + bowl->block_size - 1; } x += bowl->block_size; tile_x += bowl->block_size; } y += bowl->block_size; x = bowl->block.sx; tile_x = 0; tile_y += bowl->block_size; } DEST( sdl.screen, left, bowl->sy, 1, bowl->sh ); SOURCE( offscreen, left, bowl->sy ); blit_surf(); add_refresh_rect( left, bowl->sy, 1, bowl->sh ); DEST( sdl.screen, right, bowl->sy, 1, bowl->sh ); SOURCE( offscreen, right, bowl->sy ); blit_surf(); add_refresh_rect( right, bowl->sy, 1, bowl->sh ); } } void bowl_show( Bowl *bowl ) { int i, j; int x = bowl->block.sx, y = bowl->block.sy; int tile_x = 0, tile_y = 0; char aux[24]; /* start blocks for left and right helplines */ int left_x = 3; int left_y = 0; int right_x = 0; int right_y = 0; /* draw contents? */ if ( bowl->draw_contents ) { bowl->draw_contents = 0; bowl_draw_contents( bowl ); } /* block&help */ if ( !bowl->hide_block ) { for ( j = 0; j < 4; j++ ) { for ( i = 0; i < 4; i++ ) { if ( block_masks[bowl->next_block_id].mask[0][i][j] ) { /* preview */ if ( config.preview && bowl->preview_center_sx != -1 ) { DEST( sdl.screen, bowl->preview_sx + tile_x, bowl->preview_sy + tile_y, bowl->block_size, bowl->block_size ); SOURCE( bowl->blocks, bowl->next_block_id * bowl->block_size, 0 ); blit_surf(); add_refresh_rect( bowl->preview_sx + tile_x, bowl->preview_sy + tile_y, bowl->block_size, bowl->block_size ); } } if ( block_masks[bowl->block.id].mask[bowl->block.rot_id][i][j] ) { /* help */ if ( config.help == 1 ) { DEST( sdl.screen, bowl->help_sx + tile_x, bowl->help_sy + tile_y, bowl->block_size, bowl->block_size ); SOURCE( bowl->blocks, 10 * bowl->block_size, 0 ); alpha_blit_surf( bowl->help_alpha ); add_refresh_rect( bowl->help_sx + tile_x, bowl->help_sy + tile_y, bowl->block_size, bowl->block_size ); } /* block */ DEST( sdl.screen, x, y, bowl->block_size, bowl->block_size ); SOURCE( bowl->blocks, bowl->block.id * bowl->block_size, 0 ); blit_surf(); add_refresh_rect( x, y, bowl->block_size, bowl->block_size ); /* update helpline coordinates */ if ( i <= left_x ) { left_x = i; left_y = j; } if ( i >= right_x ) { right_x = i; right_y = j; } } x += bowl->block_size; tile_x += bowl->block_size; } y += bowl->block_size; x = bowl->block.sx; tile_x = 0; tile_y += bowl->block_size; } if ( config.help == 2 ) { /* draw help lines */ int i, x, y, y1, y2; int red = SDL_MapRGB( sdl.screen->format, 64, 192, 64 ); /* left help line */ x = bowl->block.sx + left_x * bowl->block_size; y1 = bowl->block.sy + (left_y+1) * bowl->block_size; i = bowl->block.y + left_y; if ( i < 0 ) i = 0; while ( i < bowl->h && bowl->contents[bowl->block.x + left_x][i] == -1 ) i++; y2 = bowl->sy + i * bowl->block_size - 1; if ( y1 < bowl->sy ) y1 = bowl->sy; for ( y = y1; y <= y2; y++ ) set_pixel( sdl.screen, x, y, red ); add_refresh_rect( x, y1, 1, y2-y1+1 ); /* right help line */ x = bowl->block.sx + (right_x+1) * bowl->block_size - 1; y1 = bowl->block.sy + (right_y+1) * bowl->block_size; i = bowl->block.y + right_y; if ( i < 0 ) i = 0; while ( i < bowl->h && bowl->contents[bowl->block.x + right_x][i] == -1 ) i++; y2 = bowl->sy + i * bowl->block_size - 1; if ( y1 < bowl->sy ) y1 = bowl->sy; for ( y = y1; y <= y2; y++ ) set_pixel( sdl.screen, x, y, red ); add_refresh_rect( x, y1, 1, y2-y1+1 ); } } /* check if question mark must be displayed */ if ( bowl->preview_center_sx != -1 && !config.preview ) { DEST( sdl.screen, bowl->preview_center_sx - bowl->unknown_preview->w / 2, bowl->preview_center_sy - bowl->unknown_preview->h / 2, bowl->unknown_preview->w, bowl->unknown_preview->h ); SOURCE( bowl->unknown_preview, 0, 0 ); alpha_blit_surf( bowl->preview_alpha ); add_refresh_rect( bowl->preview_center_sx - bowl->unknown_preview->w / 2, bowl->preview_center_sy - bowl->unknown_preview->h / 2, bowl->unknown_preview->w, bowl->unknown_preview->h ); } /* score, lines, level */ bowl->font->align = ALIGN_X_RIGHT | ALIGN_Y_TOP; sprintf( aux, "%.0f", counter_get_approach( bowl->score ) ); write_text( bowl->font, sdl.screen, bowl->score_sx + bowl->score_sw - 4, bowl->score_sy + 1, aux, OPAQUE ); bowl->font->align = ALIGN_X_RIGHT | ALIGN_Y_BOTTOM; sprintf( aux, _("%i Lvl: %i"), bowl->lines, bowl->level ); write_text( bowl->font, sdl.screen, bowl->score_sx + bowl->score_sw - 4, bowl->score_sy + bowl->score_sh, aux, OPAQUE ); } void bowl_update( Bowl *bowl, int ms, int game_over ) { int old_bottom_y = ( (int)bowl->block.cur_y + bowl->block_size - 1 ) / bowl->block_size; int target_x; /* target screen position within bowl */ int hori_movement = 0; int new_rot, hori_mod, ret; /* SCORE */ counter_update( &bowl->score, ms ); if ( game_over ) return; /* BLOCK */ if ( !bowl->hide_block ) { /* fake a key event to rotate with cpu */ if ( !bowl->controls && bowl->cpu_dest_rot != bowl->block.rot_id ) if ( delay_timed_out( &bowl->cpu_rot_delay, ms ) ) bowl->stored_key = KEY_ROT_LEFT; /* if CPU may drop in one p-cycle set key */ if ( bowl_cpu_may_drop( bowl ) ) bowl->stored_key = KEY_DROP; /* handle stored key */ switch ( bowl->stored_key ) { case KEY_LEFT: case KEY_RIGHT: /* * horizontal movement has a delay which is nullified by pressing * left or right key. bowl::block::x is set directly and bowl::block::cur_x * do only approach this position if smooth movement is set. */ delay_force_time_out( &bowl->block_hori_delay ); break; case KEY_ROT_LEFT: case KEY_ROT_RIGHT: if (bowl->stored_key == KEY_ROT_LEFT) { new_rot = bowl->block.rot_id - 1; if ( new_rot < 0 ) new_rot = 3; } else { new_rot = bowl->block.rot_id + 1; if ( new_rot == 4 ) new_rot = 0; } hori_mod = 0; do { ret = bowl_validate_block_pos(bowl,bowl->block.x + hori_mod, bowl->block.check_y, new_rot, 0 ); if (ret == POSINVAL_LEFT) hori_mod++; else if (ret == POSINVAL_RIGHT) hori_mod--; else { if (ret == 0) bowl->block.rot_id = new_rot; break; } } while (abs(hori_mod) < 3); if (ret == 0 && hori_mod) { bowl->block.x += hori_mod; hori_movement = 1; if ( config.smooth_hori ) { bowl->block.cur_x = bowl->block.x * bowl->block_size; bowl->block.sx = (int)bowl->block.cur_x + bowl->sx; } } bowl_compute_help_pos( bowl ); break; case KEY_DROP: bowl_drop_block( bowl ); break; } /* update horizontal bowl position */ if ( delay_timed_out( &bowl->block_hori_delay, ms ) ) { if ( ( bowl->controls && keystate[bowl->controls->left] ) || ( !bowl->controls && bowl->cpu_dest_x < bowl->block.x ) ) if ( bowl_validate_block_pos( bowl, bowl->block.x - 1, bowl->block.check_y, bowl->block.rot_id, 2 ) == 0 ) { bowl->block.x--; hori_movement = 1; } if ( ( bowl->controls && keystate[bowl->controls->right] ) || ( !bowl->controls && bowl->cpu_dest_x > bowl->block.x ) ) if ( bowl_validate_block_pos( bowl, bowl->block.x + 1, bowl->block.check_y, bowl->block.rot_id , 2) == 0 ) { bowl->block.x++; hori_movement = 1; } if ( hori_movement ) { bowl_compute_help_pos( bowl ); #ifdef SOUND //if ( !bowl->mute ) sound_play( bowl->wav_leftright ); #endif } } /* update horizontal float&screen position */ if ( config.smooth_hori ) { target_x = bowl->block.x * bowl->block_size; if ( target_x != (int)bowl->block.cur_x ) { if ( (int)bowl->block.cur_x > target_x ) { bowl->block.cur_x -= bowl->block_hori_vel * ms; if ( (int)bowl->block.cur_x < target_x ) bowl->block.cur_x = target_x; } else { bowl->block.cur_x += bowl->block_hori_vel * ms; if ( (int)bowl->block.cur_x > target_x ) bowl->block.cur_x = target_x; } bowl->block.sx = (int)bowl->block.cur_x + bowl->sx; } } else if ( hori_movement ) bowl->block.sx = bowl->block.x * bowl->block_size + bowl->sx; /* update vertical float position */ if ( !bowl->controls && !bowl->cpu_down ) if ( delay_timed_out( &bowl->cpu_delay, ms ) ) bowl->cpu_down = 1; if ( ( bowl->controls && keystate[bowl->controls->down] ) || bowl_cpu_may_move_down( bowl ) ) bowl->block.cur_y += bowl->block_drop_vel * ms; else bowl->block.cur_y += bowl->block_vert_vel * ms; /* update vertical bowl position */ bowl->block.y = (int)bowl->block.cur_y / bowl->block_size; /* update check y */ if ( config.block_by_block || config.async_col_check ) bowl->block.check_y = bowl->block.y * bowl->block_size; else bowl->block.check_y = (int)bowl->block.cur_y; /* if we entered a new tile check if block stops */ if ( old_bottom_y != ( bowl->block.cur_y + bowl->block_size - 1 ) / bowl->block_size ) bowl_check_block_insertion( bowl ); /* update vertical screen position */ if ( config.block_by_block ) bowl->block.sy = bowl->block.y * bowl->block_size + bowl->sy; else { /* to allow horizontal movement after the block touched the ground we allow moving into the next block. this shouldn't be seen, of course */ if ( !config.async_col_check || bowl_validate_block_pos( bowl, bowl->block.x, (int)bowl->block.cur_y, bowl->block.rot_id, 0) == 0 ) bowl->block.sy = (int)bowl->block.cur_y + bowl->sy; else bowl->block.sy = bowl->block.y * bowl->block_size + bowl->sy; } /* clear stored key */ bowl->stored_key = -1; } /* CHECK SPECIAL EVENTS */ if ( !bowl->paused ) { if ( delay_timed_out( &bowl->add_delay, ms ) ) { if ( bowl->add_lines ) { bowl_add_line( bowl, bowl->add_line_holes, 0 ); bowl->draw_contents = 1; } if ( bowl->add_tiles ) bowl_add_tile( bowl ); } } /* HELP ALPHA */ bowl->help_alpha += bowl->help_alpha_change * ms; if ( bowl->help_alpha_change > 0 ) { if ( bowl->help_alpha > 255 ) { bowl->help_alpha_change = -bowl->help_alpha_change; bowl->help_alpha = 255; } } else { if ( bowl->help_alpha < 64 ) { bowl->help_alpha_change = -bowl->help_alpha_change; bowl->help_alpha = 64; } } /* PREVIEW ALPHA */ bowl->preview_alpha += bowl->preview_alpha_change * ms; if ( bowl->preview_alpha_change > 0 ) { if ( bowl->preview_alpha > 255 ) { bowl->preview_alpha_change = -bowl->preview_alpha_change; bowl->preview_alpha = 255; } } else { if ( bowl->preview_alpha < 0 ) { bowl->preview_alpha_change = -bowl->preview_alpha_change; bowl->preview_alpha = 0; } } } /* ==================================================================== Draw a single bowl tile. ==================================================================== */ void bowl_draw_tile( Bowl *bowl, int i, int j ) { int x = bowl->sx + i * bowl->block_size; int y = bowl->sy + j * bowl->block_size; int offset; if ( bowl->blind ) return; if ( bowl->contents[i][j] != -1 ) { offset = bowl->contents[i][j] * bowl->block_size; DEST( offscreen, x, y, bowl->block_size, bowl->block_size ); SOURCE( bowl->blocks, offset, 0 ); blit_surf(); } else { DEST( offscreen, x, y, bowl->block_size, bowl->block_size ); SOURCE( bkgnd, x, y ); blit_surf(); } DEST( sdl.screen, x, y , bowl->block_size, bowl->block_size ); SOURCE( offscreen, x, y ); blit_surf(); add_refresh_rect( x, y, bowl->block_size, bowl->block_size ); } /* ==================================================================== Draw bowl to offscreen and screen. ==================================================================== */ void bowl_draw_contents( Bowl *bowl ) { int i, j; int x = bowl->sx, y = bowl->sy, offset; if ( bowl->blind ) return; for ( j = 0; j < bowl->h; j++ ) { for ( i = 0; i < bowl->w; i++ ) { if ( bowl->contents[i][j] != -1 ) { offset = bowl->contents[i][j] * bowl->block_size; DEST( offscreen, x, y, bowl->block_size, bowl->block_size ); SOURCE( bowl->blocks, offset, 0 ); blit_surf(); } else { DEST( offscreen, x, y, bowl->block_size, bowl->block_size ); SOURCE( bkgnd, x, y ); blit_surf(); } DEST( sdl.screen, x, y , bowl->block_size, bowl->block_size ); SOURCE( offscreen, x, y ); blit_surf(); x += bowl->block_size; } x = bowl->sx; y += bowl->block_size; } add_refresh_rect( bowl->sx, bowl->sy, bowl->sw, bowl->sh ); } /* ==================================================================== Draw frames and fix text to bkgnd. ==================================================================== */ void bowl_draw_frames( Bowl *bowl ) { /* data box */ int dx = bowl->sx + 10, dy = bowl->sy + bowl->sh + 20, dw = bowl->sw - 20, dh = 50; /* bowl itself */ draw_3dframe( bkgnd, bowl->sx, bowl->sy, bowl->sw, bowl->sh, 6 ); /* name&score&level */ draw_3dframe( bkgnd, dx, dy, dw, dh, 4 ); bowl->font->align = ALIGN_X_LEFT | ALIGN_Y_TOP; write_text( bowl->font, bkgnd, dx + 4, dy + 4, _("Player:"), OPAQUE ); bowl->font->align = ALIGN_X_RIGHT | ALIGN_Y_TOP; write_text( bowl->font, bkgnd, dx + dw - 4, dy + 4, bowl->name, OPAQUE ); bowl->font->align = ALIGN_X_LEFT | ALIGN_Y_CENTER; write_text( bowl->font, bkgnd, dx + 4, dy + dh / 2, _("Score:"), OPAQUE ); bowl->font->align = ALIGN_X_LEFT | ALIGN_Y_BOTTOM; write_text( bowl->font, bkgnd, dx + 4, dy + dh - 4, _("Lines:"), OPAQUE ); /* preview */ if ( bowl->preview_center_sx != -1 ) draw_3dframe( bkgnd, bowl->preview_center_sx - 2 * bowl->block_size - 2, bowl->preview_center_sy - 2 * bowl->block_size - 2, 4 * bowl->block_size + 4, 4 * bowl->block_size + 4, 4 ); /* part that is updated when redrawing score/level */ bowl->score_sx = dx + dw / 2 - 36; bowl->score_sy = dy + bowl->font->height + 4; bowl->score_sw = dw / 2 + 36; bowl->score_sh = dh - bowl->font->height - 8; } /* ==================================================================== Toggle pause of bowl. ==================================================================== */ void bowl_toggle_pause( Bowl *bowl ) { if ( bowl->paused ) { /* unpause */ bowl->hide_block = 0; bowl_draw_contents( bowl ); bowl->paused = 0; bowl->stored_key = -1; } else { /* pause */ bowl->hide_block = 1; DEST( offscreen, bowl->sx, bowl->sy, bowl->sw, bowl->sh ); SOURCE( bkgnd, bowl->sx, bowl->sy ); blit_surf(); bowl->font->align = ALIGN_X_CENTER | ALIGN_Y_CENTER; write_text( bowl->font, offscreen, bowl->sx + bowl->sw / 2, bowl->sy + bowl->sh / 2, "Paused", OPAQUE ); DEST( sdl.screen, bowl->sx, bowl->sy, bowl->sw, bowl->sh ); SOURCE( offscreen, bowl->sx, bowl->sy ); blit_surf(); add_refresh_rect( bowl->sx, bowl->sy, bowl->sw, bowl->sh ); bowl->paused = 1; } } /* ==================================================================== Play an optimized mute game. (used for stats) ==================================================================== */ void bowl_quick_game( Bowl *bowl, int aggr ) { int old_level; int line_score; int line_count; int line_y[4]; int i, j, l; CPU_Data cpu_data; /* constant cpu data */ cpu_data.bowl_w = bowl->w; cpu_data.bowl_h = bowl->h; cpu_data.aggr = aggr; /* reset bowl */ for ( i = 0; i < bowl->w; i++ ) { for ( j = 0; j < bowl->h; j++ ) bowl->contents[i][j] = -1; } bowl->score.value = 0; bowl->lines = bowl->level = bowl->use_figures = 0; bowl->game_over = 0; bowl->add_lines = bowl->add_tiles = 0; bowl->next_block_id = rand() % BLOCK_COUNT; while ( !bowl->game_over ) { /* get next block */ bowl->block.id = bowl->next_block_id; do { bowl->next_block_id = rand() % BLOCK_COUNT; } while ( bowl->next_block_id == bowl->block.id ); /* compute cpu dest */ cpu_data.original_block = &block_masks[bowl->block.id]; cpu_data.original_preview = &block_masks[bowl->next_block_id]; for ( i = 0; i < bowl->w; i++ ) for ( j = 0; j < bowl->h; j++ ) cpu_data.original_bowl[i][j] = ( bowl->contents[i][j] != -1 ); cpu_analyze_data( &cpu_data ); /* insert -- no additional checks as there is no chance for an illegal block else the fucking CPU sucks!!!! */ for ( i = 0; i < 4; i++ ) { for ( j = 0; j < 4; j++ ) if ( block_masks[bowl->block.id].mask[cpu_data.dest_rot][i][j] ) { if ( j + cpu_data.dest_y < 0 ) { bowl->game_over = 1; break; } bowl->contents[i + cpu_data.dest_x][j + cpu_data.dest_y] = 1; } if ( bowl->game_over ) break; } if ( bowl->game_over ) break; /* check for completed lines */ line_count = 0; for ( j = 0; j < bowl->h; j++ ) { for ( i = 0; i < bowl->w; i++ ) { if ( bowl->contents[i][j] == -1 ) break; } if ( i == bowl->w ) line_y[line_count++] = j; } for ( j = 0; j < line_count; j++ ) for ( i = 0; i < bowl->w; i++ ) { for ( l = line_y[j]; l > 0; l-- ) bowl->contents[i][l] = bowl->contents[i][l - 1]; bowl->contents[i][0] = -1; } /* score */ line_score = 100 * ( bowl->level + 1 ); for ( i = 0; i < line_count; i++ ) { bowl->score.value += line_score; line_score *= 2; } /* line and level update */ old_level = bowl->lines / 10; bowl->lines += line_count; if ( old_level != bowl->lines / 10 ) { /* new level */ bowl->level++; bowl_set_vert_block_vel( bowl ); } } } ltris-1.0.19/src/figures0000664000175000017500000001101412140770047012037 00000000000000 aa ffffffff cccccccc hhhhhhhh hhhhhhhh aaa h a a hhh aaaaaaaa aiiaaiia ii ii i i i i iii ii iii iiiiiiii iiiiiiii iii iii iii iii iii iii hhhh dddd hhhh dddd hhhh hhhh dddd dddd hhhh ccc ccccc ccccc ccccc ccc cc ccccc cccc ccccc fffffff fcccccc fiiiiii fcccccc fiiiiii fffffff c c c c c c c c ceeeec ceeeec ceeeec cccccc c c c cc cccc c c c c c c c c c c c c c cc aaa aaa aa aaaa aa aa aa aa aa aa aa aa aa aaaa aa dddd dddddd dddddddd dd dd dd dd dd dd d dddddd d dd dd dd dd dddddd dddd a a a a a a a a a a hhh hhh hhhhhh hh hhhh hhhhhh bbbb b bb b b bb b b bb b b bb b b bbbb b b bb bb b bb bb b b bbbb hhhh hhh hh hh h hhh h hhh hhhh fff ff ffff ff ff ffff ff fffff fff faaa faaaaaa faaaaaa faaaaaa f aaa f f f f cc cccc cccc cc cc cc cc cccccc cccccc cccc acccca aaccccaa aa cc aa aca acaca aca aca ca ac ac ca ca ac ca ac ca e e e e e eeeee eeee e eeee e e e eeeee eeeeee e ee eee ee eeeeeeeee d caad cc d iiii iiiiii iiiiii iiiiii iiiiii iiii aa aaaa aaaaaa aaaaaa aaaa aa i i i i ff cffc ltris-1.0.19/src/gfx.h0000664000175000017500000000511612140770047011413 00000000000000/*************************************************************************** gfx.h - description ------------------- begin : Wed Mar 1 2000 copyright : (C) 2000 by Michael Speck email : ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef GFX_H #define GFX_H /* SDL's graphical hardware support does not work on my computer and so I'm using self-written assembler functions because SDL's software emulation is _much_ too slow... */ extern unsigned char rrShft; extern unsigned char grShft; extern unsigned char brShft; extern unsigned char rlShft; extern unsigned char glShft; extern unsigned char blShft; extern unsigned int rMask; extern unsigned int gMask; extern unsigned int bMask; extern unsigned char bpp; extern unsigned char pixelsize; extern unsigned int clp_lx; extern unsigned int clp_ty; extern unsigned int clp_rx; extern unsigned int clp_by; extern "C" { void SD_Pnt(void* d, int dw, int x, int y, int rgb); void SD_Box(void* d, int dw, int x, int y, int w, int h, int rgb); void SD_Rct(void* d, int dw, int x, int y, int w, int h, int rgb); void SD_CBx(void* d, int dw, int x, int y, int w, int h, int rgb, int pct); void SC_Opq(void* d, int dw, int dx, int dy, void* s, int sw, int sx, int sy, int w, int h); void SC_Clp(void* d, int dw, int dx, int dy, void* s, int sw, int sx, int sy, int w, int h); void SC_Trp_11(void* d, int dw, int dx, int dy, void* s, int sw, int sx, int sy, int w, int h); void SC_Trp_X(void* d, int dw, int dx, int dy, void* s, int sw, int sx, int sy, int w, int h, int pct); void SC_Clr_11(void* d, int dw, int dx, int dy, void* src, int sw, int sx, int sy, int w, int h, int clr); void SC_Clr_X(void* d, int dw, int dx, int dy, void* s, int sw, int sx, int sy, int w, int h, int clr, int pct); void Gfx_SetClipRgn(int x, int y, int w, int h); }; #define RGB(r, g, b) ( (r<<16) | (g<<8) | (b) ) #endif ltris-1.0.19/src/ltris.h0000664000175000017500000000375312233743351011772 00000000000000/*************************************************************************** defs.h - description ------------------- begin : Tue Feb 29 2000 copyright : (C) 2000 by Michael Speck email : ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef __LTRIS_H #define __LTRIS_H /* ==================================================================== Global includes. ==================================================================== */ #include #include #include #include #ifdef SOUND #include #include "audio.h" #endif #include "sdl.h" #include "tools.h" #include "config.h" /* i18n */ #ifdef HAVE_CONFIG_H #include "../config.h" #endif #include "gettext.h" #if ENABLE_NLS #define _(str) gettext (str) #else #define _(str) (str) #endif enum { /* maximum number of bowls */ BOWL_COUNT = 3, /* bowl defaults */ BOWL_BLOCK_SIZE = 20, BOWL_WIDTH = 10, BOWL_HEIGHT = 20, BLOCK_COUNT = 7, BLOCK_TILE_COUNT = 10, BLOCK_BAG_COUNT = 100 }; /* block mask for the block types */ typedef struct { int rx, ry; int id; int mask[4][4][4]; } Block_Mask; //#define DEBUG #ifdef DEBUG #define DPRINTF(...) fprintf(stderr,__VA_ARGS__) #else #define DPRINTF(...) #endif #endif ltris-1.0.19/src/sounds/0000775000175000017500000000000012233753110012041 500000000000000ltris-1.0.19/src/sounds/explosion.wav0000664000175000017500000013040012140770047014523 00000000000000RIFFø°WAVEfmt "VD¬dataÒ°ÇcÇcÇcÇcÅbÇc³Y‰Dh4L&8$ôùÄá®Ö¤Ñ˜Ë{½i´c±]®Y¬Q¨M¦M¦S©Y¬W«[­m¶s¹uºˆÃªÔÆâÔéæòúü $*$ ð÷ÜíÄá¨ÓŒÅq¸[­K¥I¤I¤I¤I¤K¥K¥K¥K¥K¥M¦M¦M¦M¦M¦M¦O§O§O§O§S©c±q¸{½ŠÄžÎ¶ÚÌåàïôù .>L&\.j5r9r9l6d2\.T*F#0 òøÚìÈã¶Ú¦ÒšÌŽÆ„Á¿¿‚À†ÂˆÃˆÃˆÃŠÄ’Ȗʚ̜͢ЬոÛÄáÎæÚììõ"08@ H$L&J%F#B!B!@ @ @ B!@ <4*" úüòøð÷ìõäñÜíØëÖêÖêÜíàïèóêôäñâðäñæòêôîööú  ",4>F#L&P(V+Z-`0f3n7r9p8f3\.X,T*N'H$D"B!B!B!><860,($         "$&$"       þþøûîöäñØëÐçÌåÄá¾Þ¶Ú®Ö¦Ò ÏžÎžÎœÍœÍœÍžÎ Ï¢Ð¢Ð¤Ñ¨Ó²ØºÜÂàÆâÎæÜíäñêôð÷øûþþ    $&(***(($"               &*,***,.0222200.*&$"   øûôùîöêôèóèóæòäñàïÞîÜíÜíÜíÜíÜíÞîäñèóìõòøöúüý                              "$&(*....,,(&&$"         þþüýüýüýúüúüúüøûúüüýþþþþþþþþüýüýüýüýüýúüüý        "$&&&$$"""       þþþþþþ            þþúüöúð÷îöìõêôèóèóæòæòæòæòæòäñæòêôîöð÷òøôùøûüýþþ                 ""$$""$&$$$""             üýüýþþþþüýüýüýüýüýüýüýþþ  üýþþ         þþþþüýüýúüúüúüüýüý             "$(,,,..*$                 þþøûöúöúöúöúøûüý   þþþþ               þþúüøûòøð÷ð÷òøôùøûøûøûöúöúöúôùôùòøòøòøòøòøòøòøôùöúöúøûúüüýþþþþþþüýüýþþ       "$$$&*,.00.**(&&"  üýøûôùð÷ð÷îöîöîöòøøûüýþþþþúüøûôùð÷êôæòäñäñäñäñäñèóêôìõîöòøöúüý       þþþþ     "&(((&$"      üýøûöúôùòøòøòøôùöúøûúüüýþþþþþþ     þþüýüýüýúüøûòøîöìõæòâðÞîÜíÜíàïâðæòêôîöòøöúöúöúöúøûøûöúôùòøð÷ð÷ð÷ð÷îöêôêôìõîöòøøûþþ  "&(,,,****,,($  þþúüüýþþ     $&$"  þþöúð÷ìõìõêôèóèóæòæòæòäñäñâðäñäñæòèóîöôùúü  "$&$"    üýúüøûøûúüüýþþþþ   $(**(&"      úüöúòøð÷îöìõêôêôæòâðÜíÚìÖêÔéÒèÔéØëÜíÞîàïâðæòèóìõð÷ôùúü ",6>F#L&L&H$B!>80&    øûòøòøöúúüþþüýúüøûøûøûøûúüúüúüúüúüüýþþ            øûòøìõèóäñâðàïÞîÞîÞîÜíÚìØëÖêÒèÎæÊäÆâÄáÂàÆâÊäÐçÒèÒèÒèÔéÔéÖêÚìàïèóð÷øû (,026688888862*"     þþüýøûòøìõæòàïÜíØëÔéÐçÌåÊäÊäÌåÌåÎæÒèÖêÜíäñìõöú                ""         $&$  üýöúòøîöèóâðÞîÚìÚìÜíÞîàïâðâðäñäñâðàïàïÞîÞîÞîÞîÞîàïèóð÷ôùúüüýþþúüöúòøîöêôèóæòæòäñäñäñäñæòêôìõð÷ð÷îöð÷òøöúúüþþ   "$(*,04:@ D"F#D">6.&öúîöêôêôêôêôêôêôèóæòäñäñâðàïÞîÞîÜíÜíÜíÜíÜíÜíàïæòìõôùüý  &,.0222.*&$               þþúüøûôùòøîöìõèóäñâðâðàïÞîÜíàïæòîöôùøûúüþþüýúüöúòøîöêôæòäñäñæòêôð÷ôùöúúüüý    "&***(&$                     üýøûöúòøð÷ð÷òøòøð÷ð÷îöìõêôèóæòäñäñâðâðäñäñâðàïàïäñäñèóêôîöòøøûþþ   þþúüøûôùòøð÷ð÷òøôùôùð÷ð÷îöìõêôèóêôìõð÷òøòøöúøûúüüý                þþüýúüøûöúöúôùòøòøð÷ð÷ð÷òøöúüý    üýøûöúöúôùôùôùôùòøòøð÷ð÷îöìõìõìõêôêôêôîöð÷ôùúüþþ       üýøûôùð÷îöð÷òøòøôùöúøûúüþþþþþþüýüýþþþþþþþþüýúüøûöúöúöúöúöúøûüý   üýúüöúôùòøð÷îöîöìõìõîöîöð÷òøôùøûúüüýþþþþþþüýüýüýüýüýüýþþ                             þþúüöúòøîöìõêôèóèóèóèóêôìõð÷ôùøûþþ     þþüýüýüýüýúüúüüýúüøûöúöúôùòøòøòøòøòøòøòøð÷ð÷îöêôèóèóæòäñäñæòæòæòæòèóêôìõîöð÷òøòøôùöúøûúüúüüýþþ           þþúüöúòøð÷ð÷ð÷ð÷òøòøòøòøòøð÷îöêôèóæòäñäñæòêôìõìõìõìõîöìõìõìõìõìõîöòøôùöúúüþþ      "$&&(&&&&"  úüôùð÷êôäñàïÜíØëÖêÖêÔéÔéÒèÒèÔéØëÚìàïäñêôð÷öúüý                   þþøûòøêôæòäñâðâðäñæòæòæòèóèóêôêôêôêôêôèóæòäñäñæòèóêôîöôùúü     """""          úüòøìõêôèóèóæòèóèóêôìõîöð÷òøôùøûøûøûúüüýþþ         þþøûòøîöêôèóæòäñàïÞîÜíÚìÜíÜíÜíÜíÜíÞîÞîâðæòìõòøöúøûúüüýþþþþüýúüøûúüþþ    $(********,*($"                        üýúüøûöúôùôùòøð÷ð÷ð÷îöîöîöìõìõìõêôêôèóèóæòäñäñäñâðàïàïÞîÞîàïâðèóîööúüýüýüýüýüýúüøûøûöúòøð÷îöîöìõìõîöîöìõìõêôêôìõîöòøôùöúøûüýþþ            þþúüöúöúöúøûüýþþþþþþ                       üýøûöúôùôùòøð÷ð÷ð÷òøøûþþ  "$&(((($  üýöúòøîöêôèóäñâðâðàïÞîÜíÚìÔéÐçÌåÈãÄáÂàÀßÂàÄáÈãÎæÖêÞîæòð÷úü      üýøûôùôùòøòøôùöúöúôùòøîöìõêôæòâðàïàïâðäñæòìõòøúü  (28>B!D"D"B!@ <62*&"   þþúüúüöúòøêôäñÜíØëÔéÒèÒèÒèÐçÐçÐçÒèÔéÖêØëÚìÞîäñêôð÷ôùøûúüþþ   &,4:@ D"H$J%J%J%J%J%J%H$F#@ >80$ øûìõÞîÒèÈãÀߺܶڰ׬ժԤѢФѦҪ԰׸ÛÂàÊäÔéÜíäñìõôùüý        $*.246:>><82,& þþúüøûöúöúòøð÷êôæòâðàïàïâðäñæòæòèóêôìõð÷òøòøôùôùöúôùòøòøòøòøôùôùôùöúøûúüþþüýøûöúð÷ìõèóæòäñâðÞîÜíÞîÞîÞîàïâðäñæòêôîöòøöúúüüýüýþþþþúüøûøûøûøûøûøûúüüýþþ           üýúüúüúüúüúüúüúüúüúüúüúüøûøûúüúüüýþþþþþþþþþþþþþþþþþþþþ               üýøûöúòøð÷ð÷ð÷ð÷ð÷òøöúúüþþ         &.6<B!F#H$H$D"@ <620*$ üýôùîöèóàïØëÔéÐçÎæÌåÌåÌåÎæÐçÒèÔéÖêØëÚìÜíÜíÜíÚìÖêÔéÐçÐçÐçÎæÎæÌåÈãÆâÈãÈãÈãÈãÊäÊäÌåÐçÒèÖêÚìÞîâðäñæòèóìõîöòøöúúüþþ                               $(.2688:::8640,&" þþúüôùð÷îöêôêôèóèóæòäñäñäñäñäñäñæòèóêôêôìõìõìõêôìõìõêôèóæòäñäñäñäñæòèóèóêôêôìõîöð÷ð÷òøòøð÷ð÷ð÷òøòøöúúüüý     "$$"         þþøûöúôùòøð÷îöìõìõìõêôêôêôêôêôèóæòäñàïÜíØëÒèÎæÊäÆâÄáÄáÄáÄáÈãÊäÎæÔéØëÞîâðæòìõòøöúúüþþþþþþþþ    $(,00.,,,,..00.*&   øûòøð÷îöð÷òøòøòøòøòøòøòøöúúü                þþøûôùð÷îöêôæòâðàïàïÞîÜíÚìÚìÜíÞîàïàïàïÞîÞîÞîÞîàïâðâðâðäñæòèóêôìõîöð÷òøòøôùöúúüüý  $(,,..,,*&$"     þþüýüýþþüýúüöúòøð÷îöìõèóèóæòâðÜíØëÔéÎæÈãÆâÄáÄáÄáÄáÊäÎæÖêÞîæòîöôùüý $,268::864.*&"    øûð÷êôâðÜíØëØëØëÜíâðêôð÷öúüý           þþüýöúòøîöìõèóæòæòâðàïÞîÚìØëØëØëÜíÞîäñèóð÷øû          ""       üýúüøûøûøûøûøûúüüýúüúüøûøûöúòøð÷ð÷ð÷îöêôæòäñâðâðäñæòêôìõîöð÷òøôùøûüý       þþúüòøîöêôèóêôêôìõîöð÷òøôùöúøûúüúüúüúüüý  "&(,,*($"      þþöúîöèóäñàïÞîàïàïàïàïàïàïÞîÜíÖêÐçÌåÊäÊäÈãÈãÈãÊäÌåÐçÔéØëÜíâðæòìõòøøûþþ                  "$&((***(&&$"    þþüýúüöúöúöúøûúüüýþþ   þþúüøûôùòøð÷îöêôæòâðÜíØëÖêÖêØëÚìÞîàïäñèóêôîöð÷ôùôùôùòøòøòøòøòøòøòøòøòøð÷ð÷ð÷îöìõìõìõîöð÷ð÷òøöúøûúüüýþþ   $*.2444200.,**&   þþøûôùîöêôèóèóêôìõîöð÷òøöúúüüýþþþþüýúüøûôùð÷ð÷îöð÷ð÷ð÷òøòøôùôùôùòøð÷îöêôæòäñâðàïàïàïäñèóêôêôìõîöîöîöîöìõìõìõìõîöîöð÷ôùúü                    þþúüøûôùð÷îöêôêôèóäñâðâðäñäñæòèóêôìõîöòøöúúüüý                  þþøûòøìõäñÞîØëÔéÐçÌåÊäÈãÈãÊäÌåÎæÐçÔéØëÚìÜíàïâðæòêôîöòøøûþþ                  üýüýüýüýúüúüúüúüúüúüüýüý  þþüýúüúüøûöúöúöúöúøûþþ         "&(*,,,,*($"   þþüýüýþþ üýøûòøìõæòÞîÜíÚìÚìØëÖêÖêØëÚìÞîâðæòèóèóêôêôìõìõìõêôêôêôêôêôêôêôêôèóèóèóêôêôð÷öúúüüýþþ            þþüýúüöúôùòøð÷ð÷ð÷ð÷òøòøòøð÷ð÷òøôùøûüýþþþþüýúüøûöúøûúüüýþþþþþþ              üýúüøûöúöúôùôùôùôùöúöúöúöúôùòøð÷ð÷òøôùöúúüüýþþüýúüøûøûúüúüúüøûöúöúôùöúöúøûúüúüúüúüüýþþüýúüöúôùòøòøòøð÷ð÷òøòøòøöúøûüý         """""   þþúüøûöúôùòøð÷ð÷ð÷îöîöìõìõìõîöð÷ð÷ð÷ð÷ð÷îöìõèóæòäñâðàïàïàïâðäñæòêôð÷ôùúüþþ               üýöúòøð÷ìõêôèóèóèóèóèóèóèóèóæòæòæòèóêôìõð÷ôùøûüý üýúüøûöúôùôùôùôùöúøûøûöúöúöúöúöúøûøûøûúüøûúüúüüýþþþþþþþþþþþþ        ""     üýøûöúôùòøòøòøð÷îöìõêôèóèóèóèóèóêôîöòøöúúüüýþþþþüýüýúüúüúüøûøûúüüýþþþþþþþþþþþþþþþþþþ       þþþþüýüýüýúüúüúüøûöúôùòøð÷òøôùöúøûúüúüúüúüúüúüúüúüúüúüúüúüúüøûøûöúôùôùôùöúöúøûúüüýüýþþ     þþþþüýüýúüøûöúöúöúôùôùöúúüþþþþüýüýúüøûöúöúöúöúöúöúöúöúöúøûøûüýþþ    """   þþúüöúôùòøòøòøòøòøòøð÷îöìõìõêôêôèóæòäñäñæòèóìõîöð÷òøôùöúøûöúöúöúôùòøð÷îöìõêôèóèóèóêôêôìõîöð÷òøôùøûúüüý      ""&(*,,*($""       üýúüøûôùòøòøð÷ð÷ð÷ð÷ð÷îöîöîöîöîöìõìõìõìõìõîöð÷òøôùöúøûüýþþ        üýöúð÷ìõêôæòäñâðàïÞîÜíÜíÜíÞîàïäñèóêôîöð÷òøôùôùôùð÷ìõêôæòäñâðÞîÚìØëÔéÒèÒèÔéÖêÚìâðæòêôîöôùøûüý   ""$&(((&"               þþüýøûøûøûøûøûøûöúôùòøòøòøôùôùôùôùôùôùöúöúôùòøð÷ð÷îöð÷òøòøôùöúøûúüüýþþþþúüúüúüøûøûøûøûøûúüüý             üýúüúüüýþþ   úüòøìõèóäñâðâðäñèóìõð÷ôùöúøûüý       þþúüúüøûøûöúòøð÷îöìõêôêôêôêôìõìõìõîöð÷òøöúúüþþ     þþúüøûöúòøð÷îöìõìõìõêôèóæòäñàïÜíÚìÚìÚìÚìÞîâðæòêôîöôùúü  $&((((***($""   üýúüöúôùòøòøð÷ð÷ð÷ð÷îöð÷ð÷ð÷òøôùôùöúøûúüüýþþ            üýúüöúôùôùòøòøð÷îöîöìõêôèóæòäñäñäñâðâðâðäñæòêôîöòøôùøûúüüýþþ                    þþüýúüúüøûöúôùôùòøð÷ð÷ð÷îöîöîöòøôùøûúüúüúüúüúüüýþþüýøûöúôùôùôùöúöúøûúüüýþþ      þþøûôùð÷ìõìõêôèóèóèóêôìõîöîöð÷òøôùôùôùòøð÷îöîöìõìõìõêôèóèóæòæòäñæòæòæòäñæòèóêôìõîöð÷ôùøûúü                                                 þþúüøûôùòøîöìõìõìõîöîöð÷ð÷òøôùöúøûúüüýþþþþüýüýüýüýúüúüøûøûøûúüúüúüøûöúôùòøð÷îöîöìõêôèóèóäñâðàïàïàïâðäñæòêôìõîöð÷òøôùôùöúöúöúöúöúöúôùôùôùôùòøòøòøòøòøôùöúöúøûúüþþ      $$&(**,02466420,&   þþúüöúòøîöìõêôèóèóæòæòäñäñäñäñäñäñäñäñäñæòæòæòèóêôìõîöð÷òøôùôùöúöúöúöúøûúüúüúüúüüýþþþþþþþþþþþþþþþþ þþüýúüøûøûúüøûøûøûøûøûúüúüüýþþþþ               þþúüöúòøð÷ð÷ð÷ð÷òøöúøûúüüýþþ    þþþþüýúüúüøûöúöúöúöúöúöúøûúüüýüýþþþþþþþþþþþþüýþþþþþþ     üýúüøûöúöúôùôùôùòøòøòøòøòøôùöúøûúüüýþþ             þþ    üýøûöúòøîöèóâðÞîÜíÜíÜíÞîÞîàïâðæòêôîöð÷ð÷òøð÷ð÷ð÷ð÷ð÷ð÷îöîöîöîöìõìõìõîöð÷ð÷ð÷ð÷ð÷ð÷îöìõìõêôìõîöð÷ôùöúúüþþ              $&&&$"    þþüýúüúüüýþþ üýöúòøîöìõêôèóèóèóêôêôìõîöð÷òøôùöúøûúüúüúüúüøûöúôùòøð÷îöìõìõîöîöîöð÷îöîöîöð÷ð÷ôùöúöúøûúüúüüýþþþþ      "$$&&&&&$$            þþþþüýúüøûöúôùð÷îöêôêôêôêôìõìõìõìõìõìõìõèóæòâðàïÜíÚìØëÖêÖêØëÚìÜíàïäñêôîöôùøûþþ       þþüýüýþþþþüýþþ    þþúüøûôùòøð÷îöìõìõêôêôìõìõîöîöîöð÷òøòøôùôùöúøûøûúüþþ                        þþúüöúôùôùòøòøð÷ð÷ð÷ð÷ð÷ð÷òøôùôùöúöúøûúüüýþþþþüýüýúüøûöúôùôùòøòøôùôùøûúüþþ              þþúüøûöúöúôùôùòøòøôùôùøûúüþþþþüýúüøûöúôùòøòøð÷òøòøôùöúøûúüúüüýþþþþ         þþþþþþüýúüúüúüøûøûöúôùôùòøòøòøòøòøð÷òøòøöúøûúüüýþþþþúüøûöúòøîöìõêôèóèóìõîöð÷ôùøûúüþþþþüýüýúüüýüýüýüýþþüýüýüýüýüýþþþþ         þþþþþþþþüýüýüýþþþþþþüýüýúüøûöúôùôùòøòøôùôùòøð÷îöìõìõêôêôêôèóèóèóêôìõð÷òøôùøûúüüýþþ         ""$$$"      þþüýúüøûøûøûôùòøîöìõèóäñâðÞîÚìÖêÔéÔéÔéÔéÖêØëÜíÞîàïäñèóìõð÷òøöúúüüý           þþüýüýúüøûøûöúöúöúöúøûøûøûøûøûöúöúòøòøòøòøòøôùöúöúøûöúöúöúøûúüüý          þþ     þþúüöúòøîöìõêôèóèóèóèóèóèóêôèóèóæòäñâðàïàïàïàïàïàïäñäñæòèóìõîöòøöúúüüý               þþüýúüøûøûöúöúöúôùòøòøòøòøð÷òøòøòøòøòøòøòøôùôùôùöúøûúüüýþþ           þþüýüýüýüýüýþþþþþþúüøûôùòøîöêôèóæòæòæòæòêôìõîöòøôùöúøûúüúüþþ þþúüøûôùòøð÷ð÷ð÷òøôùöúøûúüþþ        üýúüøûöúöúôùôùöúöúøûøûøûøûöúòøð÷ìõêôêôèóêôêôèóèóèóèóêôìõîöð÷òøôùøûüýþþ                   þþüýúüøûøûøûøûøûúüúüúüúüüýüýüýüýüýüýþþþþ             þþüýüýüýúüúüøûøûøûøûúüúüüýþþþþþþþþüýúüöúð÷ìõêôèóæòäñâðâðàïàïàïâðäñæòêôîöòøöúúüüýþþ    þþþþüýüýüýüýþþþþ    þþøûôùð÷ìõèóæòæòæòæòæòæòæòèóêôìõð÷òøôùöúöúøûúüúüüýúüúüúüúüüýüýüýþþ          þþüýúüøûøûöúöúôùòøòøð÷îöìõìõìõìõìõìõìõîöîöð÷ð÷òøôùöúøûúüüý               þþúüøûôùòøð÷îöìõêôêôêôêôêôìõð÷òøòøôùôùôùôùöúôùôùòøòøòøòøòøòøòøòøòøòøòøòøôùôùöúøûúüüýþþ                     þþüýüýúüøûøûøûøûøûøûúüüýüýþþ         þþüýüýüýüýüýüýþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþüýúüöúôùòøòøòøòøòøð÷ð÷ð÷ð÷îöîöîöîöîöîöîöð÷òøôùøûúüþþ         üýøûòøîöèóæòäñâðÞîÞîÜíÞîÞîâðâðæòèóêôìõîöð÷òøôùöúøûøûúüúüüýþþ            þþþþüýüýüýþþ             þþüýúüøûöúöúøûøûúüúüüýþþþþ                 þþüýúüúüøûöúöúôùôùôùòøð÷îöìõìõêôìõìõîöð÷òøôùöúøûüýþþ        þþüýúüöúôùòøîöìõêôèóæòäñâðàïÞîÞîÜíÜíÜíÜíÞîÞîÞîàïàïâðâðâðäñäñæòèóêôìõîöòøöúøûüýþþ                       üýúüöúòøð÷îöîöìõêôèóæòæòäñäñâðâðâðâðäñæòèóêôìõîöð÷ð÷òøòøôùöúöúøûúüüýþþþþ                        þþüýúüöúôùòøîöìõêôêôêôêôìõìõìõìõîöîöîöîöîöîöîöîöð÷ð÷òøòøôùöúøûúüþþ          úüöúòøð÷îöîöîöîöð÷ð÷ð÷ð÷òøòøôùôùôùôùòøð÷îöêôèóäñàïÞîÜíØëÔéÔéÔéÖêØëØëÚìÞîàïäñèóìõð÷öúüý                                              üýúüúüøûøûöúöúöúöúöúöúöúøûøûøûúüúüúüúüøûøûøûøûöúöúôùòøôùôùôùôùöúöúøûúüúüüýüýþþþþþþüýüýüýúüúüøûøûöúôùôùôùôùôùöúöúøûúüúüüýþþþþþþþþüýúüöúôùòøòøôùôùøûüý        üýúüøûôùôùòøð÷îöîöìõîöîöð÷òøôùøûüý   üýöúòøð÷ìõêôìõìõìõîöîöð÷ð÷òøòøð÷ð÷îöîöìõìõìõìõîöð÷ð÷ôùøûúüþþ                   üýúüøûôùð÷îöêôèóæòäñäñâðäñäñäñæòæòèóèóêôìõîöòøöúøûüýþþ        þþþþüýúüöúôùôùòøòøòøòøòøôùöúøûúüþþ    þþþþüýüýúüúüúüúüúüúüüýþþþþþþþþþþþþþþþþüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýþþþþ           þþøûôùîöêôæòàïÜíÚìÖêÔéÔéÔéÖêØëÚìÜíÞîàïäñæòêôîöð÷òøôùôùöúöúøûúüúüüýþþ                 þþþþþþüýüýüýüýüýþþþþþþþþþþþþüýüýúüøûøûöúôùôùòøòøòøòøôùôùôùôùöúöúöúôùôùôùôùôùôùôùôùôùôùôùôùôùôùöúöúøûøûøûøûøûúüúüúüüýüýüýüýüýüýþþþþþþ     þþþþþþþþþþþþüýüýúüúüøûøûøûøûøûúüúüüýüýüýüýüýüýüýüýüýüýüýüýþþþþþþþþüýúüúüúüúüúüúüúüüýþþþþ              üýøûôùòøð÷îöìõìõìõìõîöð÷ð÷òøôùôùöúöúøûøûøûøûøûøûúüúüüýüýþþþþ      þþúüøûöúôùòøòøòøð÷ð÷òøôùöúøûüý        þþüýüýúüøûøûöúöúöúöúöúöúöúøûøûøûøûøûøûøûøûöúöúöúöúöúöúöúøûøûúüúüúüøûöúôùòøð÷îöîöìõêôêôêôìõìõîöð÷ôùöúøûúüþþ                        þþüýúüøûöúôùòøòøòøòøôùöúöúøûúüüýüýþþþþþþþþþþþþüýüýüýúüúüúüúüúüúüúüüýüýüýüýüýúüúüúüúüúüúüúüúüúüúüúüúüüýüýþþþþþþüýúüøûøûöúöúöúôùôùôùôùôùôùöúöúøûúüüýþþþþüýüýúüúüøûøûöúöúôùôùôùôùôùöúøûøûøûøûøûøûøûöúöúöúöúôùòøð÷ð÷îöîöîöîöð÷òøôùöúúüþþ         þþüýüýúüúüøûøûøûøûøûøûøûúüúüúüúüøûúüúüúüúüúüúüúüüýüýüýüýüýüýüýüýüýþþ              þþþþþþþþüýüýúüøûöúôùòøð÷îöêôèóèóèóæòæòæòèóèóèóêôìõìõîöîöòøôùöúøûúüüýüýþþþþþþüýüýúüøûøûöúöúöúöúøûúüúüúüúüüýüýþþþþ                                          þþüýúüúüøûöúöúöúöúöúöúöúôùôùôùôùôùöúöúöúöúøûøûøûøûøûöúôùòøð÷ð÷îöîöîöîöîöìõìõìõîöîöîöîöîöîöìõìõìõìõìõìõîöîöîöð÷ð÷ð÷òøòøð÷ð÷ð÷ð÷òøòøôùöúúüþþ      þþüýúüúüúüøûöúôùòøòøòøòøôùöúøûüýþþ                   þþüýúüúüøûöúôùôùòøòøð÷ð÷ð÷òøòøòøòøôùöúøûøûúüüýþþþþþþþþþþþþüýüýüýüýúüúüøûøûöúöúöúôùôùôùôùôùöúøûúüüýþþ         """     þþþþþþüýüýúüúüúüøûøûøûøûöúöúôùòøð÷ð÷îöîöîöîöìõìõêôêôêôèóèóæòæòäñäñäñâðâðâðâðâðâðâðäñæòèóêôìõîöð÷òøôùöúøûøûúüúüüýþþþþþþ                þþüýüýüýúüúüúüúüúüúüúüúüøûøûöúöúôùôùòøð÷îöêôèóæòäñâðàïâðâðâðäñæòèóìõîöòøôùöúøûúüþþ    "$&(*,,,,*(&"             þþüýúüøûöúôùòøð÷ð÷îöîöîöîöð÷òøöúøûüýþþúüøûöúôùòøð÷ð÷îöîöîöìõìõìõìõìõìõîöîöîöð÷ð÷òøòøôùôùôùöúöúöúöúôùôùôùòøð÷ð÷îöîöîöð÷òøòøôùôùöúøûøûøûúüúüúüúüúüúüúüüýüýüýþþþþ                      þþüýúüúüúüúüúüøûúüúüüýþþþþüýúüøûöúöúôùôùòøòøòøòøòøôùôùöúúüüýþþþþ                  þþþþüýúüúüøûöúôùòøòøòøòøòøð÷ð÷îöîöîöîöîöìõìõìõêôêôêôêôêôêôìõìõìõìõîöîöîöîöîöîöð÷ð÷òøòøòøôùôùöúöúøûøûøûúüúüüýþþ        þþüýüýúüúüúüüýüýüýþþþþþþþþþþþþþþüýüýüýüýúüúüúüúüøûøûøûøûøûøûöúöúöúôùôùôùôùôùôùöúöúøûøûúüüýüýþþþþ         þþüýúüúüøûøûøûöúöúôùôùòøòøð÷ð÷ð÷ð÷ð÷ð÷ð÷ð÷òøòøôùöúøûúüüýþþþþüýúüøûøûöúöúøûøûúüüýþþþþþþ             þþüýúüúüúüøûøûøûøûøûúüúüüýüýüýþþþþüýúüøûöúôùòøòøòøòøòøòøð÷ð÷ð÷ð÷îöîöîöìõìõîöîöð÷òøôùöúøûúüüýþþ                   þþüýøûöúòøð÷ð÷îöìõìõêôêôêôêôèóèóèóèóèóèóêôêôìõìõìõîöîöð÷òøòøôùöúöúøûøûúüüýþþþþ            þþþþüýüýüýüýúüúüúüøûøûøûøûøûøûöúöúöúöúöúöúöúöúöúöúöúøûøûüýþþ                 üýúüöúôùòøîöîöìõêôêôêôêôêôìõîöîöîöð÷òøòøôùöúøûøûúüúüüýþþþþþþüýúüøûøûöúöúôùôùòøòøòøôùôùôùôùôùôùôùôùôùöúöúøûøûøûúüúüüýüýþþþþ            þþþþþþüýüýüýúüúüúüúüúüúüúüüýüýüýþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþ                þþüýúüøûôùôùòøîöìõêôèóèóæòæòæòèóèóêôìõîöð÷ð÷òøôùöúöúøûúüúüüýüýþþþþþþþþþþþþüýüýúüøûöúöúôùòøð÷ð÷ð÷ð÷ð÷ð÷ð÷òøòøòøòøôùôùôùöúöúöúøûøûúüüýþþ                         üýúüøûôùòøð÷îöìõìõìõêôêôêôêôêôêôìõìõîöòøôùöúúüüý         þþüýúüúüøûøûöúöúôùôùôùôùôùôùöúöúøûúüüýüýþþ        þþþþþþþþþþþþþþüýüýúüúüúüúüúüúüúüúüüýüýþþþþþþþþþþþþþþþþþþþþþþþþþþ     þþüýüýúüúüúüúüúüúüúüúüüýüýüýþþþþþþþþþþþþþþþþüýüýúüøûöúöúôùôùôùôùòøòøòøð÷ð÷ð÷ð÷îöîöîöîöîöîöîöîöîöð÷ð÷ð÷òøòøòøôùôùöúöúøûúüúüüýþþ              þþüýúüúüøûöúöúôùôùôùòøòøòøòøð÷ð÷ð÷ð÷ð÷ð÷òøòøòøòøôùôùöúöúøûøûúüüýüýþþ                             þþøûôùð÷ìõèóæòâðàïÞîÜíÜíÜíÜíÜíÞîÞîÞîàïàïâðâðâðäñäñæòèóêôìõìõð÷òøôùöúøûúüúüüýüýþþþþþþþþ                    þþüýúüúüøûøûøûöúöúöúöúöúöúöúöúöúöúöúöúøûøûúüúüüýþþþþþþüýüýúüúüúüøûøûøûöúöúöúöúöúöúöúøûøûúüúüúüüýþþþþþþþþþþüýüýüýüýþþþþþþþþþþüýúüúüúüøûøûöúöúöúôùôùôùôùòøòøòøð÷ð÷ð÷ð÷ð÷ð÷ð÷ð÷ð÷òøòøòøôùôùôùöúöúöúöúöúöúöúôùôùòøòøð÷ð÷ð÷ð÷ð÷ð÷ð÷òøòøòøôùôùöúøûøûúüüýþþ                             þþþþüýüýüýúüúüúüúüúüúüúüúüüýüýüýüýüýüýüýüýüýüýþþþþþþþþþþüýüýúüúüøûøûöúöúöúôùôùôùòøòøòøòøôùôùôùöúøûøûúüþþ                 üýøûöúôùð÷îöìõêôèóäñâðâðàïÞîÞîÜíÜíÜíÜíÜíÜíÜíÜíÞîÞîàïàïâðâðäñäñæòèóêôìõîöð÷ôùöúøûúüüýþþ                þþþþüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýþþþþþþþþþþþþþþþþüýüýúüúüúüøûøûøûöúöúöúöúöúöúöúöúöúöúöúöúøûøûøûøûúüüýüýþþþþþþ                  þþüýúüøûöúôùòøð÷îöìõìõêôêôêôêôèóèóèóèóèóèóèóèóèóêôêôêôêôìõìõîöîöð÷òøôùöúøûúüüýþþ          þþþþþþüýüýüýüýúüúüúüúüúüúüúüúüüýüýüýþþþþ                         þþüýüýúüúüøûöúöúôùôùòøòøòøòøð÷ð÷ð÷ð÷òøòøòøòøôùôùöúöúøûøûøûúüúüúüúüúüúüúüúüøûøûøûøûøûöúöúöúöúöúöúöúöúöúöúöúöúøûøûøûúüüýüýþþþþþþþþþþþþþþþþþþþþüýüýüýüýüýüýüýúüúüúüúüúüúüúüúüúüúüüýüýüýþþþþ         þþþþþþþþþþüýüýþþþþþþþþþþþþüýüýüýüýüýúüúüúüúüúüúüüýüýüýüýþþþþþþþþþþþþüýüýúüúüøûøûöúöúôùôùòøð÷ð÷ð÷îöîöîöìõìõîöîöîöîöð÷ð÷òøôùôùöúøûúüüýþþ      þþüýúüøûöúôùôùòøð÷ð÷ð÷îöîöð÷ð÷ð÷ð÷òøòøôùöúöúøûúüüýþþ             þþüýúüøûöúôùòøð÷ð÷îöîöîöîöîöîöîöîöîöîöð÷ð÷ð÷ð÷ð÷òøòøòøòøòøôùôùôùöúöúöúöúøûøûúüúüüýüýüýþþþþ               þþþþþþþþüýüýüýüýúüúüøûøûøûøûöúöúöúöúöúøûøûúüúüüýþþþþ                 þþüýüýúüøûøûøûöúöúöúöúôùôùôùôùôùôùöúöúöúöúöúöúöúöúøûøûøûøûøûúüúüúüüýüýüýüýüýþþþþþþþþþþþþþþþþüýúüøûøûöúöúôùòøòøòøð÷ð÷ð÷ð÷îöîöîöîöîöîöîöð÷ð÷ð÷ð÷ð÷ð÷òøòøòøôùôùôùôùöúöúöúöúöúøûøûøûøûúüúüúüüýüýüýþþþþþþþþþþþþþþüýüýüýúüúüúüúüúüüýüýüýþþþþ                þþþþüýüýüýúüúüøûøûøûøûöúöúöúöúöúöúöúöúöúöúöúøûøûøûøûúüúüúüúüúüüýüýüýüýþþþþþþþþþþþþüýúüøûöúöúôùòøòøð÷ð÷ð÷îöîöîöîöîöîöîöîöîöð÷ð÷ð÷òøòøôùôùöúöúöúøûøûúüúüüýüýþþþþþþþþþþüýüýüýúüúüúüøûøûøûøûøûøûøûöúöúøûøûøûøûøûøûúüúüúüüýþþþþþþüýüýúüúüúüøûøûøûøûøûøûúüúüúüüýüýþþþþþþþþþþþþþþþþþþþþþþüýüýüýüýþþþþþþþþþþþþþþ            þþþþüýüýüýüýúüúüúüüýüýüýüýüýþþþþþþþþüýüýúüøûøûöúöúôùôùòøòøòøð÷ð÷ð÷ð÷ð÷òøòøòøòøòøòøòøòøòøôùôùôùôùöúöúøûúüúüüýüýþþþþ               þþþþþþüýüýúüúüúüøûøûøûöúöúöúöúöúöúôùôùôùôùôùôùöúöúöúöúøûøûøûúüúüúüúüüýüýþþþþþþþþþþþþþþþþþþüýüýüýúüúüúüúüøûøûøûøûøûøûøûøûöúöúöúöúöúöúöúöúöúøûøûøûøûøûøûøûúüúüúüúüüýüýüýþþþþþþ         þþþþüýúüúüøûöúöúöúôùôùòøòøòøòøòøòøòøòøòøòøòøòøòøôùôùôùôùôùôùôùöúöúöúøûøûøûúüúüüýüýþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþüýüýüýúüúüúüúüøûøûøûøûøûøûøûöúöúöúöúöúöúöúöúöúöúöúöúöúöúøûøûøûúüúüúüüýüýþþþþþþþþüýüýüýüýüýüýþþþþþþþþþþ                þþþþüýüýüýúüúüúüúüúüøûøûøûøûúüúüúüúüúüúüúüúüúüüýüýüýüýüýþþþþþþþþ                þþþþþþüýüýüýúüúüúüúüúüúüúüøûøûúüúüúüúüúüüýüýþþþþþþþþþþþþþþüýüýüýüýüýüýúüúüúüúüúüúüúüüýüýüýüýþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþüýüýüýüýúüúüúüøûøûøûöúöúöúöúôùôùôùôùôùôùôùôùôùôùôùôùôùôùôùôùôùôùôùôùôùôùöúöúöúöúöúöúøûøûøûøûúüúüúüúüüýüýüýþþþþþþ                     þþþþüýüýúüúüøûøûøûöúöúöúöúöúöúöúöúöúöúöúöúöúöúöúøûøûøûøûúüúüúüúüúüúüüýüýüýüýüýüýüýüýüýþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþüýüýüýúüúüúüøûøûøûöúöúöúôùôùôùôùôùôùôùôùôùôùôùöúöúöúøûøûøûúüúüúüüýüýüýþþþþþþ                 þþþþþþüýüýüýúüúüúüúüøûøûøûøûøûøûøûøûøûúüúüúüúüúüúüüýüýüýþþþþþþþþþþþþþþþþþþüýüýüýüýüýüýüýüýüýüýüýüýüýþþþþþþþþþþþþþþþþþþþþþþþþþþþþüýüýüýüýüýüýüýüýüýþþþþþþþþþþþþþþþþþþüýüýüýúüúüúüúüúüúüúüúüúüúüúüüýüýüýüýþþþþþþþþþþþþþþþþüýüýüýúüúüúüúüøûøûøûøûøûøûøûøûøûøûøûøûúüúüúüúüúüúüúüúüüýüýüýüýüýþþþþþþþþþþþþþþüýüýüýúüúüúüúüøûøûøûøûøûøûøûøûøûøûøûøûúüúüúüúüüýüýüýþþþþþþþþþþþþþþþþþþþþþþþþþþüýüýüýüýüýüýüýüýúüúüúüúüúüúüúüúüúüøûøûúüúüúüúüúüúüúüúüúüüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýþþþþþþþþþþþþþþþþþþüýüýüýúüúüúüøûøûøûøûöúöúöúöúöúöúöúöúöúöúöúöúöúöúöúöúöúöúöúøûøûøûøûøûúüúüúüüýüýüýüýüýþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþüýüýüýüýüýüýüýüýüýüýüýüýüýüýþþüýüýüýüýüýüýüýüýüýüýüýúüúüúüúüúüúüúüúüúüúüüýüýüýüýüýüýüýüýüýþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþüýüýüýüýüýüýúüúüúüúüúüúüúüøûøûøûøûøûøûöúöúöúöúöúöúöúöúöúöúôùôùôùöúöúöúöúöúöúöúöúöúöúøûøûøûøûøûøûúüúüúüúüúüüýüýüýüýüýþþþþþþþþþþþþþþþþþþþþþþþþþþüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþüýüýüýüýüýüýüýüýüýüýüýüýüýþþþþþþþþþþþþþþþþþþþþþþþþþþüýüýüýüýüýüýúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüøûøûøûúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþ þþþþþþþþþþþþüýüýüýüýüýüýüýüýüýüýüýúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüúüüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþüýüýüýüýüýüýüýþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýüýþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþltris-1.0.19/src/sounds/leftright.wav0000664000175000017500000000123212140770047014473 00000000000000RIFF’WAVEfmt "V"Vfactbdatab‡‡ˆ†…‚€€ƒ†ˆŒ•š   ™’Œ‡€yvtx{{{xusqpopqtx{€‚ƒ†‡Š‡†~ytokifffeeddddbbdfjnoqqssttttttuuvvxvvtspokgggjloqsuvyz}~ƒ…‡ˆ‹Œ’’””••–™›œŸ¡¤¤¥¦¨¨¨©ª«®¯²³µµ·µ´°®©¤Ÿš”І‚~}{{{}}}{{yxusqqpoooljgfb_\ZWURQPPNNMLLLKIIKLNQSVX[_bfilptvz}€‚ƒ………‚€€~}{{{}~€‚ƒ…‚‚ƒ‡‹”—œŸ££¤¤¥¤¤¤¥¦¨¦¦£ ž›—•’‘Œ‹Šˆ†ƒ‚}zytojebaabbb`][ZWVUUUVWZ[\]`adbb_[WURPPQSVX[\_aeinsy~‚†‹•™žŸ¡£¥¤¤¤¤¤¤¤¥¦¨©«¯³³´´µµµ³²°°°°°°¯¯«©¤Ÿš–’‹ˆ‡†ƒ}xtpljiijllnlkigd`][ZXVSQNLKHGFFGHILNRVZ\`adegjloqqsstssqqqqqqqsuxz}‚ƒ†ˆŠ‹ŒŒŒˆ…€{vspnllllnppppqstvz~‚ƒƒ…‚~{vsolgb_\ZWVUUUVX_ejosxz}~…Š”™ž£¥©©©¨¦¤£¡ ¡£¥©®´¸½¾ÁÁÂÂÃÃÃÃÄÿ¾¼º·³®© ™’Ї…ƒ‚‚€~{xtpliffltris-1.0.19/src/sounds/nextlevel.wav0000664000175000017500000004366212140770047014526 00000000000000RIFFªGWAVEfmt ðUà«data„GèóèóäñäñäñäñäñäñàïÜíÜíÜíÜíäñèóèóìõìõèóèóèóèóäñäñàïàïàïàïàïäñèóèóèóèóäñÜíØëÔéÔéÔéØëàïäñìõð÷ôùøûøûøûøûøûøûøûøûüýüýüýüý        $(,048888840,$     $$       øûôùìõäñäñÜíÔéÈãÀ߸۰׬դѠϠϠϨӰ׸ۼÝÄáÌåÔéØëØëÜíàïäñèóìõìõìõð÷ôùüýüýüýüý         $(,,(             øûôùôùôùøûüýüýôùð÷èóäñÜíØëÔéÐçÐçÌåÈãÈãÈãÈãÈãÌåÌåÐçÐçÔéÔéØëØëÔéÔéÔéÔéØëØëÜíäñèóð÷øû  $((,04400,($                 øûôùð÷ìõèóèóèóèóèóìõìõìõèóäñàïàïàïàïàïàïàïäñäñäñäñäñäñäñäñìõôùøûøûøûôùð÷ð÷ð÷ð÷ìõìõèóäñäñäñèóèóèóèóèóäñàïàïàïäñìõôùøû             üýüýøûøûôùìõìõìõð÷ôùøûüýôùìõäñÜíÔéÐçØëÜíàïäñäñèóèóèóèóìõð÷ôùüýüýüýøûôùð÷èóäñäñèóð÷øû      øûð÷èóàïàïàïàïäñèóð÷øû            øûð÷èóäñäñäñèóèóìõìõð÷ð÷øû  üýøûð÷ð÷ôùøûüý $   ôùìõèóèóð÷øûüýüýüýüýüýøûôùìõìõìõìõìõìõìõìõìõèóèóäñÜíÔéÈãÀ߸۴ٴٴٴټÝÄáÐçàïð÷   $4<D"D"<40000,(    üýð÷àïØëÐçÈãÄáÀ߼ݼݼݼÝÀßÄáÌåÐçÔéØëØëÜíÜíàïàïàïàïàïèóð÷øû $4<D"D"D"@ 84,$ øûð÷äñØëÈã¼Ý´Ù¬Õ¨Ó¨Ó¨Ó°×¸ÛÀßÈãÐçÜíèóð÷øû  $0@ P(\.d2h4h4h4d2`0X,L&@ 4$ üýøûôùð÷ìõèóàïÔéÈã¼Ý¬Õ¤Ñ ÏœÍ”ÉLjÄÁ„ÁŒÅ”ɠϬոÛÀßÄáÌåÐçÔéØëàïìõüý 08@ D"H$L&P(P(P(L&H$D"@ <8840(  ôùìõäñÜíÔéÐçÈãÄá¼Ý¼Ý¼ÝÀßÈãÔéÜíäñäñäñäñèóìõôù (0<D"H$P(T*X,X,T*P(H$D"<8840(  ôùäñÔéÌåÄá¼Ý°×¨ÓœÍ”ɌňÈÃǘˠϨӬհ״ټÝÄáÌåÜíèóôù 0@ L&\.`0`0X,P(H$@ 4(   øûèóØëÀߴ٬ըӨӰ׸ÛÀßÈãÐçØëàïäñäñäñàïÜíàïìõüý 4D"T*`0h4h4`0X,H$<,$ üýìõØëÀß°× Ï”ÉÇÇǘˠϨӴÙÀßÈãÌåÐçÐçÐçÐçÐçØëèóøû$<L&T*\.\.X,P(D"<4,(($  øûäñÌå¸Û¤Ñ˜Ëǔɜ͠ϨӰ׸ۼÝÀßÀßÀßÀßÄáÐçàïøû,D"T*\.`0`0\.T*H$<40048@ @ 80  ôùÜíÌåÀßÀßÄáÌåØëäñìõôùôùôùìõäñÜíÔéÐçÔéÜíìõüý   üýôùìõìõìõð÷ôùüýüýøûøûüý   üýøûôùð÷ìõèóèóäñàïÜíØëØëØëÜíèóôùüý  $,,(ôùèóäñäñäñìõð÷ð÷ð÷ìõäñÜíÐçÀ߸۰װ×ÀßÔéìõ  üýôùôùôùüý 4H$T*\.T*@ ,     øûàïÈã°×œÍ”ɘ˨ÓÀߨëð÷üýüý (H$`0p8xe TÁ/Õy Õv \øpáÔVÎÔ?ÐÉÄ$½²Æ‡ßsö HHv v HÕ*|5N9Á/y 1»þ¡òBåÌÙÔã×páéýêé+ç+çéæì\ø¤¾*“3e7|5Ø-K$ÕH»EúŠôÏîæìýêBå‡ßã×(Ò?ÐVÎ?ÐÔãמ݇߇ߡò*ßW'g;PÁ/y ì¾ söpáÔ?ÐÔ„ÊöÀ;»„ÊYãEúv HHv v H¾y Ø-e7N9Ø-H».üÏîpáúÕÔã×pá+çýêé+çéýê¸ð\ø §Á/N97;N9Á/K$Õ_ söÏîýêéBå‡ßµÛúÕ(ÒV΄ÊmÌ(Òãמ݇ßBå€Jila!=4&ÕÕy y ¾1éýêã×mÌVÎ›È ¿R¹ ¿ãסò¤1_ v _ ì*e7!=e7(ì þ¸ðYãã×(ÒÔžÝBåéé+ç+çýêÏî\ø»ì(|57;7;|5*1ÒsöÏîé+çBåpáµÛúÕ(ÒV΄ÊmÌVÎÔã×µÛ+çÕ;Piƒ_7;(¾1Õb"b"§éýêÌÙmÌVβÆ$½i·öÀÌÙŠô¤H1_ _ _ ì*e7!=e7(ì þ¸ðYãúÕ?ÐÔžÝ+çýêé+ç+çýê¡ò.ü¤K$|5 ? ?|5*§HésöÏîýêýêéYãÌÙ(Òm̄ʄÊmÌ?ÐúÕÌÙµÛýê Tùj±[N9(Õ1¾4&4&§H.ü+çúÕ„ÊmÌÉÄ;»i·ÉÄžÝsö 11_ _ HÕy Ø-N9 ?|54&¤.üÏîpáÔ?ÐÔžÝBåéé+ç+çýê¸ð.ü_ Ø-N9 ?!=ª1K$Õ_ é\ø¡òæìýêBå‡ßúÕV΄ʛțȄÊ?ÐúÕÌÙµÛÏî(±[ËnÈYe74&Õ(4&¾v \øYã(Ò„Ê„ÊöÀR¹i·²ÆpáEúv 1_ _ 1Õ§K$Á/7; ?“3K$»EúýêžÝ(Ò?ÐÔžÝBå+ç+çBåéæìŠôéK$ª1N97;N9ª1(§1Òsöæì+çBåYã‡ßã×?ЛȲƲƄÊ?ÐúÕÌٞݡòØ-ƒ_´p±[7;*§14&K$Õ Šôpá?ЛȲÆ$½i·i·²ÆpáEú_ 11¾y (ª17;!=ª1b"HésöéµÛ(Ò?ÐÔµÛYã+çBåBå+çæìŠôé4&e7 ?ó@7;ª1K$Õ_ ésöÏîéBåYãžÝã×?ЄʛțÈmÌ?ÐúÕµÛ‡ßYã iLrrRNª1y H1b"4&§_ .ü+çú՛ȲÆßÂR¹i· ¿úÕ¸ð»¾Õì4&Á/e7!=|5(ì»\øýê‡ßÔVÎ?ÐúÕ‡ßBåé+çéýê¸ð.ü_ y ª1 ?ÅDó@e7*§HÒEú¡òæìBåpážÝÌÙÔVÎmÌmÌVÎ?ÐÔÌٞ݇ß+ç_ $RXxXx$RÁ/§H _ b"¾v \øYãԛȲÆßÂR¹i·öÀÌÙŠôv Õ¾ì§4&Á/N97;“3K$ÒsöéµÛ(ÒmÌ?Ðã×pá+çýêýêýêæì¡ò.ü_ K$|5 ?ó@ó@N9ï+¾_ ÒEúÏî+çYãpá‡ßµÛúÕ?ÐVÎVÎ(ÒÔúÕµÛ‡ßpáBåþ ?†tþlae7v »¤Õb"§H.ü+çúՄʲÆÉÄ$½R¹ ¿ÔÏî»ì§ì¾b"Ø-e7!=e7(»\øæì‡ßÔVÎ?Ðãׇß+çéééýê¸ð\ø¤§ª1 ?ÜBÅD!=Ø-§HÒ.ü¡òæìé+çpáÌÙÔVÎVÎ?ÐÔã×Ìٞ݇߇ßpáéÕ±[Cz´p®FK$1¤¤K$K$Õ»¸ðžÝVΛȄʄÊßÂöÀ„ʇß\øv ìÕ11§4&ª1N9e7ï+¾v \øæìpáã×úÕãמÝYã+çéééæì¡òþ14&|57;7;e7Ø-b"ìH¤þsöÏîéYãžÝã×(Ò?Ð?Ð(Òã×µÛµÛµÛµÛÌÙµÛŠôN9´p~la“3§ Ò¤§(b"éÏîÌÙV΄ÊVβÆ$½ ¿VÎýêé1H_ 1¾4&e7!=e7(ì söé‡ßÌÙÌÙžÝYãBåBåBåBå+çýê¸ð.ü_ b"“37;N9|5Ø-4&¾1 \ø¡òýêBå‡ßÌÙÔ(Ò(ÒúÕÌٞݞݵ۵Ûã×ã×YãßWov´p—H(»»1K$4&y _ .üBåúÕ?Ð?ÐmÌ ¿;»ÉÄžÝsö¤_ _ v v b"“3 ?!=ª1b" Šôépá‡ßpáYãBåBåBåYãpápáBåÏîþ4&“3|5“3Á/(b"Õ1v »þ\ø¸ð+ç‡ßã×úÕúÕÔã×ÌٞݞݵÛÌÙúÕúÕpá_ ;Pâlió@b"v Hì(4&b"1éµÛã×úÕVÎ ¿$½›È‡ß¸ðþéé» 1ª1!=7;ª1(§».ü¸ðýê+çéýêýêéYã‡ßÌÙÌÙµÛ+çsö¤Õ(Ø-Ø-*4&K$ì1_ ¤é.ü¡òýêpáÌÙÔ(ÒúÕµÛpáYã‡ßÌÙúÕÔúÕžÝ €J'gUcN9¾_ 1Á/Ø-(éé‡ßžÝžÝúÕ›Èß„ʞÝýêŠôsö\øsösöEúé14&|57;|5*y ì1_ Ò.üsö¡òÏîýê+çpáµÛã×ãמÝ+çŠô 1ìy ((4&y ¾ì1v þÏîpáã×úÕÌÙ‡ßYãYã‡ßžÝã×?ÐVÎmÌ(Ò¡òØ-öUƒ_ÅDb"¤_ ìï+|5e7ï+ì.üýêYã‡ßÌÙVΛÈVεÛYãéýêæìæìÏî¸ðsöé1y Ø-“3ª1ï+b"§ì1v ¤Ò\øÏîBåžÝã×úÕãמÝYãÏîsö.üév 4&(K$y ¾ì_ Òsöæì+çpá‡ß‡ß‡ßžÝÌÙÔ?Ð?Ð(ÒÔÌÙEú*ó@ó@4&_ HìK$e7 ?ó@Ø-ìEúÏî+çYãµÛã×µÛpáBåpápápáYã‡ß‡ßBåÏîþH(ï+*K$§§y K$b"¾H¤EúŠôæì+ç‡ßžÝµÛžÝ‡ßBåéÏîsö.üÒ_ §*ï+4&§ÕHÒŠôBåžÝµÛžÝ‡ß‡ßžÝÌÙúÕ(Ò?ÐVÎ?Ðé¾N9 ?*H¤¤¾ï+ÜB®F ?4&v \ø¡òsöŠô¸ðýê+çYãžÝÌÙÌÙžÝpá‡ß‡ßYãæìsöÒ1¾y ¾Õ¾b"*(b"Õ1 éEúŠô¸ðæìéBåYãpáYãYãBå+çýêŠôéHÕ§§ÕìÕ¾§ÕH»Eú¡òýê+çBåBåBåpá‡ßµÛã×ÔÔ(ÒÔYãHÁ/N9(_ ééHK$7;ÜB!=ï+ìÒEúEú\ø\øŠôÏîýê+çpápá‡ß‡ß‡ß‡ßpáBåÏî.ü¤H1111§K$4&K$ìH¤é.ü\øŠôÏîýêé+ç+ç+ç+çéýê¸ðEú¤¾¾ì11Õ¾ì_ ésöÏîýêéýêýêéBåpážÝã×ã×ã×ã×ã×Ïî*Ø-¾¤Ò1y ª1N9e7(é.ü.üþþ.ü\øŠôÏî+çYãYãBåBå+ç+çýê¡òEúÒ»»¤ _ Õy §_ ¤ÒééÒÒ\ø¡òÏîæìæìæì¸ðŠô\øEú\ø\øEú_ ¾§Õv ¤» v ÒEú¡òæìééýêæìæìæìéYãžÝÌÙÌÙÌÙBå¤b"ï+»söŠôH4&|5e7ª1§¤Eú\ø.üÒ v ésöæìBåBå+çýêæìÏî¡òŠôsösöŠôŠôsöEú»v 1ì1v v H_ ¤þ\øŠôŠô\øEúEú\øsö¡ò¸ð¸ðŠôEú» H1Hv ¤ÒÒ¤v _ v »þsö¡òÏî¸ð¡òŠôŠô¸ðépáÌÙúÕúÕµÛ¡ò1§»¸ðéÏîéìï+e77;Á/ìsöEú»§§ì»ŠôBå‡ßBåÏîsö.ü.ü\ø¡òæìé+çæì¡òEú黤 ¤»»»¤ _ HHH_ »ÒéééÒéþ.ü.ü.üEúEú.üþééÒ¤¤»Òþþé»ÒEúsöŠô¡òŠô\øEúEú\øŠô¸ðæìýêýêýêýê¡ò»v \øÏîýê¡òHK$b"é\øŠô.ü §§»\øÏîÏî\øé _ söÏîýê¸ðsöÒÒé.üsö¡ò¡òsöþÒ»»Òéþþ黤 ¤»ÒÒÒÒ»»»»Òéþ.üþþþ.üEúEúEúEú.üþþ.ü.üEú.üþ黤¤»Eú\ø\øEú.üþþEúsöŠô\øþÒÒ.ü\ø\øEúþÒ _ v »EúEúÒv _ _ ¤é.ü\øEúþ餤»é.ü\øsö\øþÒ¤¤».üEúEúþ黤»éþEúEúEú.üéÒéþ.üEú.üþééÒÒÒééÒÒÒééééééé.üEúEúEúþééþþþÒ»»éþ.ü.üþéÒÒé.üEú.ü.üþþ.ü.üþéééþþþéÒÒéþþ.üþþéééþþþþéÒÒééþéééééþÒ»»éþ.ü.üÒ»¤Òþ.ü.üþé»»Òéþþþééééþ.ü.ü.ü.üþþéééþþþÒ»»Òéþ.ü.üþééÒéþþ.üþþþ.üþéÒÒéþþþþþþþþþþþþþþþþþééééééÒÒéééééþþþþéÒ»Òéþþéééþþþþééééééééþþþþþééééþþþþþþéééééééééééþþþþþþþééééþþþþþééééééþþþéééééééþþþþþééééþþþþþééééééþþþþþþééééþééþþééþþééééééééééééþþþþééééééééééééþþþéééþþþþééééééþþþþþþéééééþþþþééééééééþþþþ.ü.üþþþþþþééééþþþééééééþþþ.üþþéÒÒÒÒéþ.ü.ü.üþéþþþþþþééééþþþéééééþþþþéééééééþþ.ü.ü.ü.üþþþþþþþéééþþþþééééééþþþþþþþþ.ü.üþþééééééééþþþþþééÒ»»Òéþ.ü.üþéÒééþþ.üþþþþþþ.üþþééþþþééééþéþ.ü.üþéÒééþþþþéééþþþéééþþ.ü.ü.üéÒÒþþ.üþééééþþ.üþéþþþééþ.üþéÒéþþþ.üþéééþ.ü.ü.üþééÒé.üþþþéééþþþþé.üþþé.üþééþþéEú.üé»þþþþÒééþþ».üþéþéþþþþé.üééþþþþþÒÒéþþþéþé.ü.üéþéÒþ.ü.üÒþ»ééé.üþþéþéþééEúþþ.üéÒþþÒé.üþþééþÒ.üþþÒþþþþéÒþéEúÒþþéþé.üþÒ.üÒþþþééþé.üé.üþÒÒé.üþééþþþÒé.üéþþþééþþÒ.üéþÒéþ.üééþþþé.üéÒþþ»þþéééé.üé.üéééþþéþÒþþÒéþéþþþé.ü»éþ.ü»þééþéþé».ü.üééþéþþ¤þþ»þééÒþEúþé.üééþ»þÒÒþþþÒþ»éþþþÒþþÒþþééÒÒEúþéþþÒéÒþ.üþ þþþ.üé».üéþéÒé.üéþþ»ééþ.üéþé.üÒ.üþþÒéÒþþÒ.üÒéEúÒéþþéééþ.üÒþþÒéþ.ü»þÒþþþééEúÒþÒþéþþþéþ»þþéé.üééþééþ»þ.üÒþþÒéþÒEúéééþþÒéþéþþééééEúéþÒþé.üééþéÒéþþéÒþþÒ.üééþééþéþé.üÒéþÒþÒé.üé.üéÒé.üþéé.üééþé.üé.üÒþéþþééÒ.üé.ü.ü»éþþÒþþéþÒþé.ü.ü».üÒéþþééé.üé.üééÒ.ü.üÒþééþÒ.üééþéþééþéþé.üéEúéþéééþ¤\øÒ.üþÒéþþþéþÒ.üÒéþþééÒþþþéÒéþþ.üþéÒþé.üééé.üÒéé.üEú»þÒéÒþéþÒ.üþÒéþþþþ»éþþéEú»þ»þéEúé.üéééþþþÒéþééé.üééÒ.üþ.üééþéþþééþéþÒéþéþéþÒþéþþéé.üÒ.üÒþþÒþééþÒ.üéÒþé.üÒ.üéþéé.üÒþþÒ.üééþ»Eúéþþééþéþþéþéé.üþééþéé.üÒ.üþé.üÒ.üééþþéþéþÒþþéþþÒþþéþéþéþééþééÒþþþéþÒþééþéþéþþééþéþÒ.üé.üééþþéþ.üéþéþþþéééþéþþþééþþéþþéþþéé.üÒþÒþéþþéþé.üéþéþ.üéþþéþéþé.ü»þéé.üþÒþþþéþéþÒþéþþé.üÒþþþéé.üééþéþéþéþéþéþéþþéþþþéþéþéé.üÒéþéþéé.üþéþéþééþþé.üÒþéþþéþéÒéþþééþþþéþþééþéþþéþÒþþþéþþÒéþé.üéþéþéééþþéþééþþÒþé.üéééþþéþééþééþéþþþþéþþþéþééþéþéþþéþþéþþþþé.üþþþþþþþééþééÒéééééééééééééééééþéþþéé.üþþþþéÒþþþ.ü.ü.ü.üþþþ.ü.üEú.ü.ü.ü.ü.ü.ü.ü.üEúEúEúþþéééÒ»»»»ÒÒÒÒÒéééÒ»ÒÒÒÒÒÒÒéþþþþþþþþéééééééééééééÒÒééééééþþþþþþþþþþþ.ü.üþþ.üþþþþ.ü.ü.üþþ.ü.ü.üEú.ü.ü.üEú\øEúEúEú\ø\øsösö\øEúþéÒÒ»¤ »ÒÒ»»»»ÒÒÒ»»ÒéþEúEúEúEú.ü.ü.üEú.ü.üþþééééééÒÒÒÒÒééééþþééÒÒÒÒÒÒÒÒééþþþþþþþ.ü.ü.üþþþþþþþþþþþþþþþ.ü.ü.ü.üEúEú\ø\ø\ø\ø\ø\øsösösösösöŠôsöEúÒ»»¤ v _ _ v v v v v ¤ÒÒ»¤¤»éÒ»»Òéþþ.üEúsösösö\ø\ø\ø\ø\øEú.üþééééÒÒéééÒ»»»»»ÒÒéþþ.ü.ü.ü.ü.üþþéééÒ»»»»»»ÒÒÒééþ.ü.ü.ü.ü.ü.ü.ü.ü.ü.üþþþþþþ.ü.ü.ü.ü.üEúEú\ø\ø\ø\ø\øsösösösösöŠôsösö\ø.üÒ»¤¤ v H_ _ v v v v ¤ÒÒ» »ÒéÒ»Òéþþþ.üEú\øsösösö\øEú\ø\ø\øEúþééééééÒ»ÒÒÒÒ»¤¤»ÒÒÒÒéþþþ.ü.üEú.ü.üþþþþþþéÒÒ»»¤¤¤¤¤»»»Òþþþþ.ü.üEúEúEú.ü.ü.ü.üþþþþþþþþ.üEúEúEú.üEúEú\ø\ø\ø\øsösösösösösö\øEú.ü黤¤¤ _ _ _ v v v v ¤»»¤ ¤ÒÒÒ»»Òéþ.üEú\øsö\ø\ø\ø\ø\øsö\ø.üþþþþééééééÒÒÒéééÒ»»ÒÒÒ»»ÒÒééééþ.ü.üþþþ.ü.ü.üþþéÒÒÒÒÒ»»»Òééééþþþþþþþþþþþþþ.ü.üþþþþ.üEúEúEúEúEúEú\øEú\ø\øsöŠôsö\øEúþéÒÒÒ»¤ ¤¤¤ ¤»»»¤¤»ééÒ»»»ééééééþþþþ.üEúEúEú.ü.ü.üEúEúEú.üþþééþéééþéÒÒÒéééÒÒÒÒééÒééþþþééééééÒÒÒéééééþ.üþþþþþ.üþþþþþþþþþ.üEúEú.ü.ü.üEúEú\ø\ø\ø\ø\ø\øsösö\ø\ø.üþé» ¤¤ v v »»¤ ¤ÒééÒ¤»ÒéÒÒÒéþþþþþEú\ø\øEú.ü.üEú\ø\øEúþþ.ü.üþéééþééééÒÒÒééÒ»»»ÒÒéÒÒÒþþþþ.üþéééÒ»»Òéééééþþþþ.ü.üþþþþþ.ü.ü.üþ.ü.üEúEú.ü.üEú\ø\ø\ø\ø\øsösösösösö\ø.üé¤v v ¤¤v _ »Ò» ¤ÒÒ¤¤ÒéÒ»»éþ.ü.üþ.üEúsösö\øEúEú\øsösöEúþé.ü.üþéÒéþééþÒ»ÒééÒ»¤¤ÒééÒÒéþþþþþ.ü.üþéééÒ»»Òééééþþþ.ü.üþþ.üþþ.ü.ü.ü.ü.ü.ü.üEú.ü.üEú\ø\ø\ø\ø\ø\øsösösöŠôsöEúþþ»v _ »» _ v ¤ÒÒ v ¤éÒ¤ ¤éé»»Òþ.ü.üþþEú\øsösöEú.üEú\øsö\øþþ.üþÒÒþþééé»»ÒéÒ»¤¤»éééÒÒéþ.üþþþþ.ü.üþéééÒ»ÒééÒéþþþþþþ.üþþ.üEú.üþþ.üEúEúEúEúEúEú\øsösö\ø\øsöŠôŠôsö\ø.üþþé¤_ _ ¤»¤v _ v »éÒ »é» »Ò¤¤é.üEúEúþþEúsöŠôsöEú.üEúsö\ø.üé.ü.üþéÒéþ.üþééþÒ»»ÒéÒ¤¤¤ÒééÒÒÒ.ü.üþþ.üþéééÒÒééééééþþþþþþþþþ.ü.ü.üþþ.ü.ü.ü.üEúEúEú\ø\ø\ø\øsösösösösösöEú.üÒ¤v v ¤Ò»v _ ÒéÒ¤ »éé» »éÒ¤»Eú\øEúþþEúsöŠô\ø.üþ.ü\ø\ø.üéþ.ü.üþéé.üEú.üééþéÒ»»ÒÒÒ¤¤»ÒéÒéþ.üþþþþéééþéÒéþéééééééééþþþþþþþþ.üþþþþþþ.ü.ü.ü.üEúEú\ø\ø\ø\øsösösösösösö\øEúéé»v _ ÒÒ»v v ¤éÒ »éÒ¤v Òé黤Ò.ü\ø\ø.üþ\øŠôsöEúþþ.ü\øEúþé.üEúEúþ.üEúEúþééÒ»¤»ÒÒ»¤¤ÒéÒÒéþ.üéééþééþþééþþéééééééééééþþþþþþþþþþþþþþ.ü.ü.ü.ü.ü.üEú\ø\ø\ø\ø\øsösösö\ø\øsö\øEúþÒ _ »éÒ v ÒéÒ¤ ¤»Ò» »ÒéÒ»ÒþEúEú.üþþEúsösöEúþþ.üEú.üþ.üEú.üþþþ.ü.üþéééééÒ»¤»ÒÒÒÒÒéþééþéÒéþþþþþéÒÒÒÒÒÒÒÒééþþþþþþþþþþ.üþþþ.ü.üEúEúEúEú\ø\øsösösösöŠôŠôŠôŠôŠôsösöEúé¤ »» HHv »Ò¤v v »é¤v v Ò» »þEú\ø.üþ.üsöŠôsöEú.ü.ü\ø\øEúéé.üEú.üÒÒ.üþé»»ÒéÒ¤ ¤ÒééÒ»».ü.üþþ.ü.üþþ.üEú.üþþEúEúEúþÒ»¤¤¤¤ ¤ÒÒÒ»Òéþ.ü.ü.ü.ü.üEúEúEú.üþþþ.üþþþþþ.ü.ü.üEú\ø\øsösösöŠôŠôŠô¡òŠôŠôsösö\ø\ø.üé¤_ _ ¤ H_ ¤¤v _ ÒÒ _ é.ü.üé\ø¡ò¡òŠôsöŠôŠô¡òsöEú.ü.üEúEú.üé»»éþþÒ¤ ¤»» v v ¤»»¤¤ÒþEúEúþþEúsösöEú.ü.üEú\øEú.ü.üEú\ø\ø.üééé» ¤¤¤ v ¤Òééééþ.ü.ü.ü.üEúEúEúEúEúEúEú.ü.üþþþþþþ.üEú\ø\øsösöŠô¡ò¡ò¡ò¡ò¡ò¡ò¡ò¡òŠôŠôsöEúév H_ HÕì1v v v v ¤Ò» v ¤þsösöEú.ü\ø¡òæìýêæì¸ð¡ò¡òŠô\øþþþé¤v »éÒ H1H_ v v v ¤ÒEúŠô¡òŠôEú.üEú\øŠôŠô\ø\ø\ø\ø\øEú.üþ.üþé»v v ¤¤¤ »»ÒÒÒééÒ»Òéþþþþþ.ü.üþþééþþþþþþþþþþþþ.üEúEúEú\ø\øsöŠôŠô¡ò¸ð¸ð¸ð¡ò¡ò¡ò¡ò¸ð¸ðŠô\øþ¤¾Õ_ Hì¾ì1v v »» v v Ò\ø¸ð¸ð¡òŠô¡òæìééýê¸ðsö\øEúþééþþÒ _ _ ¤ 11_ ¤Ò.üEúEú.üEúsö¡ò¡òsöEú.ü\øŠô¸ð¡òŠôsö\øEú.üéÒ»»¤ _ H_ »»»¤¤¤»»Òéþ.ü.üEú\øsöŠôsö\ø.üéÒÒ»¤ ¤¤»»»»»é.ü.üEúEúEúEúEú\ø\ø\ø\øEúEú.ü.ü.üEú\ø\ø\øsöŠôŠô¡ò¸ðÏî¸ðŠôŠôsösö\ø\ø.üÒ1¾§v 11_ _ _ v »Ò» v »Eú¸ðýêæì¸ðŠôŠô¸ðÏîÏîŠô\øEúEú.üÒéþ.ü 1Hv v H11_ »»éþEú\ø.ü.üsö¸ð¡òŠôsösöŠô¡òŠôsöEú.üþé» ¤ÒÒ¤v v v ¤¤¤¤¤»»ÒEúsösösö\øEú\ø\øsö\øEú.üþéÒÒ»¤ v _ _ _ v v ¤»ÒÒþ.üEúEú\ø\ø\ø\ø\ø\ø\ø\ø\øEúEú.ü.ü.ü.ü.ü.ü.ü.üEú\øsöŠô¡ò¸ð¸ðŠôsö\ø\øsö\ø\ø.ü»¾ÕH¤¤_ 11HHH_ »Ò¤v ésö¸ðæìÏî¡òsösöŠô¡ò¡òŠôsö\ø\ø.üé.ü.üév 1Hv v v v ¤¤¤»éþ.ü.üé.üsö¡ò¡òŠôŠôsösö\øEúEúEúEúþé»»Òéé» v v v ¤¤»»ÒÒé.ü\ø\øEú.ü.ü.üEúEú\øsösö\øEú.üþéÒ¤v _ _ _ _ ¤¤Òéþ.ü.üEú\øsöŠôŠôŠôsö\øEú.ü.ü.ü.ü.ü.üþþþ.ü.ü.üEúEúEú\øsöŠôŠôŠôsösösösöŠôsö\øéHÕ¾1¤» _ H_ v _ _ v ¤¤ v v ÒEú¡òÏîÏî¡òsö\ø\øsösöŠôsö\ø\øEú.ü.ü.üEúEúþ¤H11_ v ¤»»¤¤»éÒÒéþsö¡ò¡ò¡òŠôŠôsö\øEú.üEúEúEúþéþþÒ¤ v _ v ¤»ÒÒÒÒéþþþþþþþ.ü\øsöŠôŠôsö\øEúþþþþÒ»¤ v v v v _ _ _ »Òéþþ.üEú\øsösösösö\ø\ø\ø\ø\ø\øEú.üþþþþþþþþ.üEú\ø\øsösösö\ø\øsösöŠô¡ò¡òþ_ Õ¾HÒ»v _ _ _ _ _ v ¤¤v _ v ¤þŠô¸ðæì¸ðsö.üþEúsöŠôŠôsö\ø\øEúEú.üEúEú.üÒ_ 11_ ¤»»»¤ »éééÒéþ\ø¡ò¸ð¡òŠôsö\øEú.ü.üEú\ø\øEúþþéÒ¤ v _ v »ééÒ»»ÒÒéþþ.ü.ü\øsöŠôŠôsöEú.üþþþþ.ü.üþéÒ»»¤v H11H_ ¤ÒÒéÒÒé.üEúEú\ø\øsöŠôŠôŠôŠôsö\ø.üþþþþþþééþþ.üEú\øsösösösösösöŠô¡ò¡òŠôHÕì Ò _ _ _ HHv v v Ò.üsö¡ò¸ð¡òEú.ü\øŠô¡òŠôŠôsö\øEú.ü.üþÒv H_ ¤»ÒÒÒ¤ _ _ ¤Ò.ü\øŠôŠôsösö\øEú.üþþEúsöŠôsöEúþéÒ»»¤¤¤ ¤¤ÒÒÒÒ»¤¤»ÒéþEúEú\øEúEúEú\ø\øEúEú.ü.ü.ü.ü.ü.üEú.üþ黤 ¤»ÒÒ»»Òéþ.üEú\øsösö\ø\øEúEúEúEúEú.ü.ü.üþþþþéÒÒÒééþþþþ.ü.ü.üEúEúEúEú\ø\ø\øsöŠô¡ò¡ò¡ò¡ò\ø¤§¤Ò v v v _ v »\ø¡òÏî¸ðsöþééþ\øsöŠôŠôŠôsö\ø.üé¤_ 1_ ¤ééÒ»¤ v ¤éþEú.ü.üEúsöŠô¡òsöEúþþþ.ü\øsö\øþéÒ»¤¤¤¤¤¤»»ééÒ»Òé.üEú\øsö\øEú.ü.ü.ü.üþþþþ黤¤¤¤»Òééééééééþþ.ü.üþþéééééééééééþ.ü.üEú.ü.ü.üþþ.ü.ü.ü.üEúEú.ü.ü.ü.ü.üþþþþ.ü.ü.ü.ü.üEú\ø\ø\øv ìHÒ.ü.üÒ¤¤¤¤»»»Òéþ.ü\øŠô¡òŠôEú餻éEú\ø\øEú.ü.üþé»»»»» v Òþ.ü.üþé»»»ÒéþEú\ø\øEú.ü.üEúEúEúþéÒéþ.ü.ü.ü.üÒ¤¤¤»Òéééþééé.üEú\ø\øEú.üþéééÒ»»»ÒéþþþþééééþþþéÒ»»ÒÒéþþ.ü.üEúEú.üþþ.ü.üEú.ü.üþþþþþþþþþþþþþþþ.üEú\ø\øsösöEúÒ_ H¤.üþé» ¤»ÒÒ»¤¤ÒéþEú\øsösöEúþÒ»Òþ\øsösöEú.üþééÒÒ»»¤»»éþþ黤¤»éþ.ü.üEúEúEú.üþþ.ü.üþéþEúEúEúþ黤¤»Òéééééééééééþ.üEúEúEú.üþééþþþþþééÒÒ»ÒÒéþþþéééþþþþþþþééÒÒ»ÒÒéééÒÒÒéþþ.ü.ü.ü.üþþþþ.ü.ü.ü.üþþþþþþ.ü.ü.üþþþþ.ü.ü.ü.ü.ü.ü.ü.üEú\ø\øEúév 1H¤.üþé¤ ¤»»»ÒééþEú\øsö\øþÒ»é.ü\øsö\ø.üþþéÒ»»ÒÒÒ»»»éþþÒ»»»Òþ.üEú\øEú.üþþþ.ü.üþþ.ü.ü.üþéÒ»¤¤»éééééééééþ.üEúEúEú.üþéþ.üþþéééÒÒÒÒÒéþéééþþ.ü.ü.ü.ü.üþþéééééééééÒ»»»»ÒÒééþþþþþþ.ü.ü.ü.ü.üþþþþþþþþþþþþ.ü.üþþþþþþþþ.ü.ü.ü.üþþþ.ü.ü.üEú.ü»v _ ÒþÒ»¤»»ÒÒÒÒéþþ.üEúEú.üþéÒé.ü\øEú.üþééÒÒÒÒÒÒÒÒéÒÒÒéþ.ü.üEúEú.ü.üþþþþþþþ.ü.üþéÒÒÒÒÒéééééþ.ü.ü.ü.ü.üþþþþééééééééééþþþ.üþþþþéééééééééÒÒÒÒÒÒéééþþþþ.ü.üþþþþþþþþþþþþþþþ.üþþþþþþþþþþþþþþþþ.ü.ü.ü.ü.ü.üþÒ¤v »éþéÒÒ»»»»»Òéþþ.üEúEú.üþéÒéþEúEúEú.üþéÒÒÒÒÒéééééÒÒÒéþþ.ü.üEú.ü.üþþþþþþþþ.üþéÒÒÒÒÒéþééééééþþ.ü.ü.ü.üþþþþþþþééÒÒÒéééééþþþþþþþéééÒÒÒÒÒÒéééþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþ.ü.ü.üþ»¤ »ÒéÒÒÒÒÒÒÒÒéþþ.ü.ü.üþééþ.üEú.ü.üþééééééééééééÒÒÒéþþþ.ü.ü.üþþþþþþþþþ.üþþéééééééééééééþþþþþþþþþþþþéééééééééééþþþþþééééÒééééééééééééþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþþéÒ»»»éééééÒÒÒÒÒéþþþþééþþ.ü.üþþþééééééééééÒéééþþþþþþ.üþþþééééééééþþþþþþéééééééééééþþþþþþþþþþþþþþþþþþþééééÒÒééééééééééééééééééééééééþþþþþþþþþþþþþþþþþþþþþþþþþéééééééééééééééééééééééééééééééþþþþþþþltris-1.0.19/src/chart.c0000664000175000017500000003473212233751201011723 00000000000000/*************************************************************************** chart.c - description ------------------- begin : Mon Sep 24 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include "ltris.h" #include "chart.h" #include "list.h" #define CHART_FILE_NAME "ltris.hscr" List *charts = 0; /* list of all loaded level set charts */ char chart_path[512]; /* path charts where actually loaded/created from */ int chart_loaded = 0; /* true if highscore succesfully loaded */ int chart_w, chart_h; /* size of higscore chart */ int chart_gap = 10; int chart_level_offset = 0; /* level offset (name's left aligned, score's right aligned) */ char cheader[128]; Font *cfont = 0, *chfont = 0, *ccfont = 0; /* normal, highlight and caption font */ extern Config config; extern Sdl sdl; extern char gametype_ids[8][64]; extern char gametype_names[8][64]; /* ==================================================================== Local ==================================================================== */ /* ==================================================================== Reset charts ==================================================================== */ void chart_reset( Set_Chart *chart ) { int i; memset( chart->entries, 0, sizeof( chart->entries ) ); for ( i = 0; i < CHART_ENTRY_COUNT; i++ ) chart_add( chart, "............", i + 1, 10000 * ( i + 1 ) ); for ( i = 0; i < CHART_ENTRY_COUNT; i++ ) chart->entries[i].new_entry = 0; } /* ==================================================================== Create/delete set chart. ==================================================================== */ Set_Chart* chart_set_create( char *name ) { Set_Chart *chart = calloc( 1, sizeof( Set_Chart ) ); chart->name = strdup( name ); chart_reset( chart ); return chart; } void chart_set_delete( void *ptr ) { Set_Chart *chart = (Set_Chart*)ptr; if ( !chart ) return; if ( chart->name ) free( chart->name ); free( chart ); } /* ==================================================================== Read entries of a chart from file position. ==================================================================== */ void chart_read_entries( FILE *file, char *file_name, Set_Chart *chart ) { char buffer[128]; int i; for ( i = 0; i < CHART_ENTRY_COUNT; i++ ) { if ( feof( file ) ) { fprintf( stderr, "Unexpected EOF in '%s' in entry %i... reading of highscore aborted.\n", file_name, i ); break; } fgets( buffer, 128, file ); buffer[strlen(buffer) - 1] = 0; /* remove newline */ strcpy( chart->entries[i].name, buffer ); fgets( buffer, 128, file ); buffer[strlen(buffer) - 1] = 0; /* remove newline */ chart->entries[i].level = atoi( buffer ); fgets( buffer, 128, file ); buffer[strlen(buffer) - 1] = 0; /* remove newline */ chart->entries[i].score = strtod( buffer, 0 ); } } /* ==================================================================== Load all highscores from path. If not found create chart with one set 'Classic'. ReturnValue: True if successful ==================================================================== */ int chart_load_from_path( char *path ) { FILE *file = 0; char file_name[512]; char setname[1024]; char aux[4]; Set_Chart *chart = 0; /* full file name */ sprintf( file_name, "%s/%s", path, CHART_FILE_NAME ); /* clear chart list */ list_clear( charts ); /* open file */ file = fopen( file_name, "r" ); if ( file ) { /* test if it's new format or old one. */ fread( aux, sizeof( char ), 3, file ); aux[3] = 0; fseek( file, 0, SEEK_SET ); if ( strequal( ">>>", aux ) ) { /* new format: load all set charts */ while( !feof( file ) ) { /* check if next sign is an '>' else skip reading */ aux[0] = 0; fread( aux, sizeof( char ), 1, file ); fseek( file, -1, SEEK_CUR ); if ( aux[0] != '>' ) break; chart = calloc( 1, sizeof( Set_Chart ) ); /* get name: >>>name */ fscanf( file, ">>>%1023s\n", setname ); chart->name = strdup( setname ); /* entries */ chart_read_entries( file, file_name, chart ); /* add */ list_add( charts, chart ); } } else { /* old format: load single chart as 'Classic' */ fprintf( stderr, "Converting highscore chart as format changed.\n" ); chart = chart_set_create( gametype_ids[1] ); chart_read_entries( file, file_name, chart ); list_add( charts, chart ); } fclose( file ); } else { fprintf( stderr, "Highscore chart doesn't exist in '%s'... creating new one.\n", path ); chart = chart_set_create( gametype_ids[1] ); list_add( charts, chart ); } /* test if writing is allowed without changing actual contents */ if ( ( file = fopen( file_name, "a" ) ) == 0 ) { fprintf( stderr, "Write permission for '%s' denied.\n", file_name ); return 0; } else fclose( file ); strcpy( chart_path, path ); chart_loaded = 1; return 1; } /* ==================================================================== Publics ==================================================================== */ /* ==================================================================== Load highscore. If it doesn't exist try to create it in HI_DIR if this fails fall back to ~/.lbreakout and create highscore there. ==================================================================== */ void chart_load() { /* HACK: not sure whether this comes really first to any chart usage??? */ strcpy(cheader, _("Name Level Score")); /* create list */ if ( charts ) list_delete( charts ); charts = 0; charts = list_create( LIST_AUTO_DELETE, chart_set_delete ); /* load highscore */ if ( !chart_load_from_path( HI_DIR ) ) { fprintf( stderr, "Unable to access highscore chart in '%s'.\n", HI_DIR ); fprintf( stderr, "Trying to use config directory '%s'.\n", config.dir_name ); if ( !chart_load_from_path( config.dir_name ) ) { fprintf( stderr, "Unable to access highscore chart in config directory... won't be " "able to save any results. Sorry.\n" ); return; } } printf( "Saving highscore chart in: %s\n", chart_path ); /* load resources */ cfont = load_fixed_font( "f_small_yellow.bmp", 32, 96, 8 ); chfont = load_fixed_font( "f_small_white.bmp", 32, 96, 8 ); ccfont = load_fixed_font( "f_yellow.bmp", 32, 96, 10 ); /* compute size and position stuff of highscore */ chart_w = text_width( ccfont, cheader ); chart_h = ccfont->height + chart_gap + /* title + gap */ cfont->height * CHART_ENTRY_COUNT + /* entries */ chart_gap + /*gap between caption and entries */ ccfont->height; /* caption size */ chart_level_offset = text_width( ccfont, "name.-----" ) + text_width( ccfont, _("Level") ) / 2; /* level offset centered */ } /* ==================================================================== Delete resources ==================================================================== */ void chart_delete() { free_font( &cfont ); free_font( &chfont ); free_font( &ccfont ); if ( charts ) list_delete( charts ); charts = 0; } /* ==================================================================== Save chart in directory it was loaded from. ==================================================================== */ void chart_save() { char file_name[512]; int i; Set_Chart *chart = 0; FILE *file = 0; if ( !chart_loaded ) return; /* full file name */ sprintf( file_name, "%s/%s", chart_path, CHART_FILE_NAME ); /* open file */ file = fopen( file_name, "w" ); if ( !file ) { fprintf( stderr, "??? Highscore chart loaded properly but cannot save?\n" ); return; } /* save all charts */ list_reset( charts ); while ( ( chart = list_next( charts ) ) != 0 ) { fprintf( file, ">>>%s\n", chart->name ); for ( i = 0; i < CHART_ENTRY_COUNT; i++ ) fprintf( file, "%s\n%i\n%.0f\n", chart->entries[i].name, chart->entries[i].level, chart->entries[i].score ); } fclose( file ); } /* ==================================================================== Check if this player entered the highscore chart and update it. ==================================================================== */ void chart_add( Set_Chart *chart, char *name, int level, double score ) { /* add new entry at blind end of chart */ strcpy( chart->entries[CHART_ENTRY_COUNT].name, name ); chart->entries[CHART_ENTRY_COUNT].level = level; chart->entries[CHART_ENTRY_COUNT].score = score; chart->entries[CHART_ENTRY_COUNT].new_entry = 1; /* sort algorithm is stable so first sort levels then score */ chart_sort( chart, SORT_BY_LEVEL ); chart_sort( chart, SORT_BY_SCORE ); } /* ==================================================================== Sort chart with stable algorithm (bubble sort's ok) by wanted value. ==================================================================== */ void chart_swap( Chart_Entry *entry1, Chart_Entry *entry2 ) { Chart_Entry dummy; dummy = *entry1; *entry1 = *entry2; *entry2 = dummy; } void chart_sort( Set_Chart *chart, int type ) { int j; int changed = 0; /* use entry dummy as well so count is CHART_ENTRY_COUNT + 1 */ do { changed = 0; for ( j = 0; j < CHART_ENTRY_COUNT; j++ ) switch ( type ) { case SORT_BY_LEVEL: if ( chart->entries[j].level < chart->entries[j + 1].level ) { chart_swap( &chart->entries[j], &chart->entries[j + 1] ); changed = 1; } break; case SORT_BY_SCORE: if ( chart->entries[j].score < chart->entries[j + 1].score ) { chart_swap( &chart->entries[j], &chart->entries[j + 1] ); changed = 1; } break; } } while ( changed ); } /* ==================================================================== Draw highscores centered in regio x,y,w,h ==================================================================== */ void chart_show( Set_Chart *chart, int x, int y, int w, int h ) { char number_buffer[24]; int entry_offset; /* y offset of entries */ Font *font; int i; char *cname; /* adjust x,y so it's centered */ x += ( w - chart_w ) / 2; y += ( h - chart_h ) / 2; /* FIXME: map chart name (=id) to readable i18n name. would be * better to use gametype id directly in chart instead of name * because then we could skip this linear search. but since there * are not so many charts it does not hurt either... if name cannot * be mapped, use plain id. */ cname = NULL; for (i=0;iname,gametype_ids[i])==0) { cname=gametype_names[i]; break; } if (cname==NULL) cname=chart->name; /* title = name of levelset */ ccfont->align = ALIGN_X_CENTER | ALIGN_Y_TOP; write_text( ccfont, sdl.screen, x + ( chart_w >> 1 ), y, cname, OPAQUE ); /* caption */ ccfont->align = ALIGN_X_LEFT | ALIGN_Y_TOP; write_text( ccfont, sdl.screen, x, y + ccfont->height + chart_gap, cheader, OPAQUE ); /* get entry offset */ entry_offset = ( ccfont->height + chart_gap ) * 2 + y; /* entries */ for ( i = 0; i < CHART_ENTRY_COUNT; i++ ) { font = cfont; if ( chart->entries[i].new_entry ) font = chfont; /* name */ font->align = ALIGN_X_LEFT | ALIGN_Y_TOP; write_text( font, sdl.screen, x, entry_offset, chart->entries[i].name, OPAQUE ); /* level */ font->align = ALIGN_X_CENTER | ALIGN_Y_TOP; sprintf( number_buffer, "%i", chart->entries[i].level ); write_text( font, sdl.screen, x + chart_level_offset, entry_offset, number_buffer, OPAQUE ); /* score */ font->align = ALIGN_X_RIGHT | ALIGN_Y_TOP; sprintf( number_buffer, "%.0f", chart->entries[i].score ); write_text( font, sdl.screen, x + chart_w, entry_offset, number_buffer, OPAQUE ); /* change offset */ entry_offset += font->height; } add_refresh_rect( x, y, chart_w, chart_h ); } /* ==================================================================== Clear all new_entry flags (done before new players are added to chart when game over). ==================================================================== */ void chart_clear_new_entries() { int i; Set_Chart *chart; list_reset( charts ); while ( ( chart = list_next( charts ) ) != 0 ) { chart->entries[CHART_ENTRY_COUNT].score = chart->entries[CHART_ENTRY_COUNT].level = 0; for ( i = 0; i < CHART_ENTRY_COUNT + 1; i++ ) chart->entries[i].new_entry = 0; } } /* ==================================================================== Query set chart by this name or if not found create a new one by this name. ==================================================================== */ Set_Chart* chart_set_query( char *name ) { Set_Chart *chart = 0; list_reset( charts ); while ( ( chart = list_next( charts ) ) != 0 ) if ( strequal( name, chart->name ) ) return chart; /* not found so create it */ fprintf( stderr, "First chart query for '%s'. Creating this chart.\n", name ); chart = chart_set_create( name ); list_add( charts, chart ); return chart; } /* ==================================================================== Query chart by id. If id is invalid return 0. ==================================================================== */ Set_Chart* chart_set_query_id( int id ) { if ( id >= charts->count ) { fprintf( stderr, "Chart index '%i' is out of range!\n", id ); return 0; } return (Set_Chart*)list_get( charts, id ); } ltris-1.0.19/src/config.c0000664000175000017500000002532312140770047012071 00000000000000/*************************************************************************** config.c - description ------------------- begin : Tue Feb 13 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include #include #include #include #include #include #include #include "sdl.h" #include "config.h" #include "parser.h" Config config; #define CONFIG_FILE_NAME "ltris.conf" /* game type names. hacky place to define them but who cares? */ char gametype_names[8][64]; char gametype_ids[8][64]; /* check if config directory exists; if not create it and set config_dir */ void config_check_dir() { #ifdef DISABLE_INSTALL sprintf( config.dir_name, "." ); #else snprintf( config.dir_name, sizeof(config.dir_name)-1, "%s/%s", getenv( "HOME" ), CONFIG_DIR_NAME ); #endif if ( opendir( config.dir_name ) == 0 ) { fprintf( stderr, "couldn't find/open config directory '%s'\n", config.dir_name ); fprintf( stderr, "attempting to create it... " ); #ifdef WIN32 mkdir( config.dir_name ); #else mkdir( config.dir_name, S_IRWXU ); #endif if ( opendir( config.dir_name ) == 0 ) fprintf( stderr, "failed\n" ); else fprintf( stderr, "ok\n" ); } } /* set config to default */ void config_reset() { /* game options */ config.gametype = GAME_DEMO; config.starting_level = 0; config.preview = 1; config.help = 1; config.slow = 0; strcpy( config.player1.name, "Michael" ); strcpy( config.player2.name, "Sabine" ); strcpy( config.player3.name, "Thomas" ); config.expert = 0; /* multiplayer */ config.holes = 2; config.rand_holes = 1; config.send_all = 0; config.send_tetris = 1; /* cpu */ config.cpu_aggr = 1; config.cpu_delay = 700; config.cpu_rot_delay = 100; /* controls */ config.hori_delay = 3; config.vert_delay= 3; config.pause_key = SDLK_p; config.player1.controls.left = SDLK_LEFT; config.player1.controls.right = SDLK_RIGHT; config.player1.controls.rot_left = SDLK_UP; config.player1.controls.rot_right = SDLK_PAGEDOWN; config.player1.controls.down = SDLK_DOWN; config.player1.controls.drop = SDLK_END; config.player2.controls.left = 'a'; config.player2.controls.right = 'd'; config.player2.controls.rot_left = 'w'; config.player2.controls.rot_right = 'e'; config.player2.controls.down = 's'; config.player2.controls.drop = 'y'; config.player3.controls.left = SDLK_KP1; config.player3.controls.right = SDLK_KP3; config.player3.controls.rot_left = SDLK_KP5; config.player3.controls.rot_right = SDLK_KP6; config.player3.controls.down = SDLK_KP2; config.player3.controls.drop = SDLK_KP8; /* sound */ config.sound = 1; config.volume = 6; /* 1 - 8 */ /* graphics */ config.trp = 1; config.anim = 1; config.fullscreen = 0; config.fade = 1; config.fps = 0; /* frames per second: 0 - no limit, 1 - 50, 2 - 100, 3 - 200 */ config.bkgnd = 0; config.smooth_hori = 0; config.block_by_block = 0; /* lbreakout2 event data */ config.rel_motion = 0; config.motion_mod = 100; config.invert = 0; config.grab = 0; /* various */ config.quick_help = 1; config.visualize = 0; config.keep_bkgnd = 0; config.clear_keystate = 1; config.center_preview = 0; config.async_col_check = 0; } /* load config */ static void parse_player( PData *pd, Player *player ) { char *str; PData *sub; if ( parser_get_value( pd, "name", &str, 0 ) ) strcpy( player->name, str ); if ( parser_get_pdata( pd, "controls", &sub ) ) { parser_get_int( sub, "left", &player->controls.left ); parser_get_int( sub, "right", &player->controls.right ); parser_get_int( sub, "rot_left", &player->controls.rot_left ); parser_get_int( sub, "rot_right", &player->controls.rot_right ); parser_get_int( sub, "down", &player->controls.down ); parser_get_int( sub, "drop", &player->controls.drop ); } } void config_load( ) { char file_name[512]; PData *pd, *sub; /* set to defaults */ config_check_dir(); config_reset(); /* load config */ sprintf( file_name, "%s/%s", config.dir_name, CONFIG_FILE_NAME ); if ( ( pd = parser_read_file( "config", file_name ) ) == 0 ) { fprintf( stderr, "%s\n", parser_get_error() ); return; } /* parse config */ parser_get_int( pd, "gametype", &config.gametype ); parser_get_int( pd, "starting_level", &config.starting_level ); if (config.starting_level > 9 || config.starting_level < 0) { config.starting_level = 0; } parser_get_int( pd, "preview", &config.preview ); parser_get_int( pd, "help", &config.help ); parser_get_int( pd, "expert", &config.expert ); parser_get_int( pd, "center_preview", &config.center_preview ); parser_get_int( pd, "holes", &config.holes ); parser_get_int( pd, "rand_holes", &config.rand_holes ); parser_get_int( pd, "send_all", &config.send_all ); parser_get_int( pd, "send_tetris", &config.send_tetris ); if ( parser_get_pdata( pd, "player1", &sub ) ) parse_player( sub, &config.player1 ); if ( parser_get_pdata( pd, "player2", &sub ) ) parse_player( sub, &config.player2 ); if ( parser_get_pdata( pd, "player3", &sub ) ) parse_player( sub, &config.player3 ); parser_get_int( pd, "clear_keystate", &config.clear_keystate ); parser_get_int( pd, "cpu_aggr", &config.cpu_aggr ); parser_get_int( pd, "cpu_delay", &config.cpu_delay ); parser_get_int( pd, "cpu_rot_delay", &config.cpu_rot_delay ); parser_get_int( pd, "sound", &config.sound ); parser_get_int( pd, "volume", &config.volume ); parser_get_int( pd, "transparency", &config.trp ); parser_get_int( pd, "animations", &config.anim ); parser_get_int( pd, "fullscreen", &config.fullscreen ); parser_get_int( pd, "fading", &config.fade ); parser_get_int( pd, "fps", &config.fps ); parser_get_int( pd, "background", &config.bkgnd ); parser_get_int( pd, "static_background", &config.keep_bkgnd ); parser_get_int( pd, "smooth_hori", &config.smooth_hori ); parser_get_int( pd, "hori_delay", &config.hori_delay ); parser_get_int( pd, "vert_delay", &config.vert_delay ); parser_get_int( pd, "pause_key", &config.pause_key ); parser_get_int( pd, "block_by_block", &config.block_by_block ); parser_get_int( pd, "motion_mod", &config.motion_mod ); parser_get_int( pd, "relative_motion", &config.rel_motion ); parser_get_int( pd, "grap_input", &config.grab ); parser_get_int( pd, "invert_mouse", &config.invert ); parser_get_int( pd, "quick_help", &config.quick_help ); parser_get_int( pd, "async_collision_check", &config.async_col_check ); parser_free( &pd ); } /* save config */ static void print_player( FILE *file, int i, Player *player ) { fprintf( file, "name ); fprintf( file, "controls.left ); fprintf( file, "right»%i\n", player->controls.right ); fprintf( file, "rot_left»%i\n", player->controls.rot_left ); fprintf( file, "rot_right»%i\n", player->controls.rot_right ); fprintf( file, "down»%i\n", player->controls.down ); fprintf( file, "drop»%i\n", player->controls.drop ); fprintf( file, ">\n" ); fprintf( file, ">\n" ); } void config_save( ) { FILE *file = 0; char file_name[512]; sprintf( file_name, "%s/%s", config.dir_name, CONFIG_FILE_NAME ); if ( ( file = fopen( file_name, "w" ) ) == 0 ) fprintf( stderr, "Cannot access config file '%s' to save settings\n", file_name ); else { fprintf( file, "@\n" ); fprintf( file, "gametype»%i\n", config.gametype ); fprintf( file, "starting_level»%i\n", config.starting_level ); fprintf( file, "preview»%i\n", config.preview ); fprintf( file, "help»%i\n", config.help ); fprintf( file, "expert»%i\n", config.expert ); fprintf( file, "center_preview»%i\n", config.center_preview ); fprintf( file, "holes»%i\n", config.holes ); fprintf( file, "rand_holes»%i\n", config.rand_holes ); fprintf( file, "send_all»%i\n", config.send_all ); fprintf( file, "send_tetris»%i\n", config.send_tetris ); print_player( file, 1, &config.player1 ); print_player( file, 2, &config.player2 ); print_player( file, 3, &config.player3 ); fprintf( file, "clear_keystate»%i\n", config.clear_keystate ); fprintf( file, "cpu_aggr»%i\n", config.cpu_aggr ); fprintf( file, "cpu_delay»%i\n", config.cpu_delay ); fprintf( file, "cpu_rot_delay»%i\n", config.cpu_rot_delay ); fprintf( file, "sound»%i\n", config.sound ); fprintf( file, "volume»%i\n", config.volume ); fprintf( file, "transparency»%i\n", config.trp ); fprintf( file, "animations»%i\n", config.anim ); fprintf( file, "fullscreen»%i\n", config.fullscreen ); fprintf( file, "fading»%i\n", config.fade ); fprintf( file, "fps»%i\n", config.fps ); fprintf( file, "background»%i\n", config.bkgnd ); fprintf( file, "static_background»%i\n", config.keep_bkgnd ); fprintf( file, "smooth_hori»%i\n", config.smooth_hori ); fprintf( file, "hori_delay»%i\n", config.hori_delay ); fprintf( file, "vert_delay»%i\n", config.vert_delay ); fprintf( file, "pause_key»%i\n", config.pause_key ); fprintf( file, "block_by_block»%i\n", config.block_by_block ); fprintf( file, "motion_mod»%i\n", config.motion_mod ); fprintf( file, "relative_motion»%i\n", config.rel_motion ); fprintf( file, "grab_input»%i\n", config.grab ); fprintf( file, "invert_mouse»%i\n", config.invert ); fprintf( file, "quick_help»%i\n", config.quick_help ); fprintf( file, "async_collision_check»%i\n", config.async_col_check ); } } ltris-1.0.19/src/audio.c0000664000175000017500000001076112140770047011725 00000000000000/*************************************************************************** sound.c - description ------------------- begin : Sun Jul 29 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifdef SOUND #include "ltris.h" #include "audio.h" /* ==================================================================== If audio device was properly initiated this flag is set. If this flag is not set; no action will be taken for audio. ==================================================================== */ int audio_ok = 0; /* ==================================================================== If this flag is not set no sound is played. ==================================================================== */ int sound_enabled = 1; /* ==================================================================== Initiate/close audio ==================================================================== */ int audio_open() { if ( Mix_OpenAudio( MIX_DEFAULT_FREQUENCY, MIX_DEFAULT_FORMAT, MIX_DEFAULT_CHANNELS, 256 ) < 0 ) { fprintf( stderr, "audio_open: can't open audio device: %s\n", SDL_GetError() ); audio_ok = 0; return 0; } audio_ok = 1; return 1; } void audio_close() { if ( !audio_ok ) return; Mix_CloseAudio(); } /* ==================================================================== Sound chunk ==================================================================== */ Sound_Chunk* sound_chunk_load( char *file_name ) { char path[512]; Mix_Chunk *chunk = 0; if ( !audio_ok ) { fprintf( stderr, "sound_chunk_load: cannot load WAV '%s' as audio device isn't initated properly\n", file_name ); return 0; } /* use SRCDIR/sounds as source directory */ sprintf( path, "%s/sounds/%s", SRC_DIR, file_name ); chunk = Mix_LoadWAV( path ); if ( chunk == 0 ) fprintf( stderr, "chunk_load: couldn't load WAV '%s': %s\n", path, SDL_GetError() ); return (Sound_Chunk*)chunk; } void sound_chunk_free( Sound_Chunk *chunk ) { if ( !audio_ok ) return; Mix_FreeChunk( (Mix_Chunk*)chunk ); } /* ==================================================================== Sound stuff ==================================================================== */ /* ==================================================================== Enable/disable sound ==================================================================== */ void sound_enable( int enable ) { if ( !audio_ok ) return; sound_enabled = enable; if ( !enable ) Mix_Pause( -1 ); /* stop all sound channels */ } /* ==================================================================== Set general volume of sounds. 0 - 127 ==================================================================== */ void sound_volume( int level ) { if ( !audio_ok ) return; if ( level < 0 ) level = 0; if ( level > 127 ) level = 127; Mix_Volume( -1, level ); /* all sound channels */ } /* ==================================================================== Play a chunk. ==================================================================== */ void sound_play( Sound_Chunk *chunk ) { if ( !audio_ok ) return; if ( !sound_enabled ) return; /* use first free sound channel and play sound one time */ Mix_PlayChannel( -1, (Mix_Chunk*)chunk, 0 ); } /* ==================================================================== Music stuff ==================================================================== */ /* ==================================================================== Set general volume of sounds. 0 - 127 ==================================================================== */ void music_volume( int level ) { /* not implemented */ } #endif ltris-1.0.19/src/shrapnells.h0000664000175000017500000000613312140770047013002 00000000000000/*************************************************************************** shrapnells.h - description ------------------- begin : Sat Sep 8 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ /* ==================================================================== Create high_res or low_res shrapnells. ==================================================================== */ enum { SHR_TYPE_COUNT = 7 }; typedef struct { float x, y; } Vector; typedef struct { SDL_Surface *pic; Vector v; Vector g; /* gravity */ float x, y; float alpha; } Shrapnell; /* ==================================================================== Initate or delete shrapnell list ==================================================================== */ void shrapnells_init(); void shrapnells_delete(); /* ==================================================================== Create a single shrapnell and add to list. ==================================================================== */ void shrapnell_create( int x, int y, int w, int h, float vx, float vy, float gx, float gy ); /* ==================================================================== Create shrapnells from position in offscreen with the size of bricks ==================================================================== */ void shrapnells_create( int x, int y, int w, int h, int type ); /* ==================================================================== Remove all shrapnells ==================================================================== */ void shrapnells_reset(); /* ==================================================================== Show, hide all shrapnells. ==================================================================== */ void shrapnells_hide(); void shrapnells_show(); /* ==================================================================== Update and remove expired shrapnells ==================================================================== */ void shrapnells_update( int ms ); /* ==================================================================== Brick explosion animations. ==================================================================== */ void exp_load(); void exp_delete(); void exps_clear(); void exp_create( int x, int y ); void exps_hide(); void exps_show(); void exps_update( int ms ); ltris-1.0.19/src/parser.h0000664000175000017500000001412212140770047012120 00000000000000/*************************************************************************** parser.h - description ------------------- begin : Sat Mar 9 2002 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef __PARSER_H #define __PARSER_H #include "list.h" #include /* ==================================================================== This module provides functions to parse ASCII data from strings and files. Synopsis: groupname entry1 .. entryX variable value A group entry may either be a variable or a group (interlacing). A variable value may either be a single token or a list of tokens enclosed by . Text enclosed by ".." is counted as a single token. ==================================================================== */ /* ==================================================================== Symbols. Note: These symbols are ignored when found in a token "" as they belong to this token then. PARSER_GROUP_BEGIN: PARSER_GROUP_END: PARSER_SET: PARSER_LIST_BEGIN: PARSER_LIST_END: PARSER_COMMENT_BEGIN: PARSER_COMMENT_END: PARSER_SYMBOLS: List of all symbols + whitespace used to split strings and tokens. PARSER_SKIP_SYMBOLS: text bewteen these two symbols is handled as comment and therefore completely ignored ==================================================================== */ #define PARSER_GROUP_BEGIN '{' #define PARSER_GROUP_END '}' #define PARSER_SET '=' #define PARSER_LIST_BEGIN '(' #define PARSER_LIST_END ')' #define PARSER_COMMENT_BEGIN '[' #define PARSER_COMMENT_END ']' #define PARSER_SYMBOLS " =(){}[]" #define PARSER_SKIP_SYMBOLS "[]" /* ==================================================================== An input string is converted into a PData tree struct. The name identifies this entry and it's the token that is searched for when reading this entry. Either 'values' or 'entries' is set. If 'entries' is not NULL the PData is a group and 'entries' contains pointers to other groups or lists. If 'values' is not NULL the PData is a list and 'values' contains a list of value strings associated with 'name'. ==================================================================== */ typedef struct { char *name; List *values; List *entries; } PData; /* ==================================================================== This function splits a string into tokens using the characters found in symbols as breakpoints. If the first symbol is ' ' all whitespaces are used as breakpoints though NOT added as a token (thus removed from string). ==================================================================== */ List* parser_split_string( char *string, char *symbols ); /* ==================================================================== This is the light version of parser_split_string which checks for just one character and does not add this glue characters to the list. It's about 2% faster. Wow. ==================================================================== */ List *parser_explode_string( char *string, char c ); /* ==================================================================== This function reads in a whole file and converts it into a PData tree struct. If an error occurs NULL is returned and parser_error is set. 'tree_name' is the name of the PData tree. ==================================================================== */ PData* parser_read_file( char *tree_name, char *fname ); /* ==================================================================== This function frees a PData tree struct. ==================================================================== */ void parser_free( PData **pdata ); /* ==================================================================== Functions to access a PData tree. 'name' is the pass within tree 'pd' where subtrees are separated by '/' (e.g.: name = 'config/graphics/animations') parser_get_pdata : get pdata entry associated with 'name' parser_get_entries : get list of subtrees (PData structs) in 'name' parser_get_values : get value list of 'name' parser_get_value : get a single value from value list of 'name' parser_get_int : get first value of 'name' converted to integer parser_get_double : get first value of 'name' converted to double parser_get_string : get first value of 'name' _duplicated_ If an error occurs result is set NULL, False is returned and parse_error is set. ==================================================================== */ int parser_get_pdata ( PData *pd, char *name, PData **result ); int parser_get_entries( PData *pd, char *name, List **result ); int parser_get_values ( PData *pd, char *name, List **result ); int parser_get_value ( PData *pd, char *name, char **result, int index ); int parser_get_int ( PData *pd, char *name, int *result ); int parser_get_double ( PData *pd, char *name, double *result ); int parser_get_string ( PData *pd, char *name, char **result ); /* ==================================================================== If an error occurred you can query the message with this function. ==================================================================== */ char* parser_get_error( void ); #endif ltris-1.0.19/src/item.h0000664000175000017500000001073512140770047011570 00000000000000/*************************************************************************** item.h - description ------------------- begin : Thu Sep 20 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef __ITEM_H #define __ITEM_H #include "hint.h" /* ==================================================================== Item of menu ==================================================================== */ enum { ITEM_SEPARATOR = 0, ITEM_SWITCH, ITEM_SWITCH_X, ITEM_RANGE, ITEM_KEY, ITEM_EDIT, ITEM_LINK, ITEM_ACTION }; typedef struct { Value *value; /* value of item */ int type; /* type as listed above */ char *name; /* name of item -- duplicated */ int item_id; /* id of item (returned as action if ITEM_ACTION) */ int x, y, w, h; /* position and size in screen */ int nx, ny; /* position where name is drawn */ int nalign; /* align of name: either left-aligned or centered (only if link to another menu) */ int vx, vy; /* position where value string is drawn right-aligned */ int valign; /* alignment of value string */ float alpha; /* alpha of normal font (which vanishes when selected) */ float halpha; /* alpha of highlight font */ int highlighted; /* keep alpha at 0 (will raise to 255 if not set) */ void (*callback)(); /* if value of item has been modified this functions is called */ void *link; /* menu link */ Font *font; /* if set use this font instead of standard font */ Hint *hint; /* if not NULL this hint is displayed when quick-help's enabled: created by item itself */ } Item; /* ==================================================================== Create item. Return Value: item ==================================================================== */ Item *item_create_separator( char *name ); Item *item_create_range( char *name, char *hint, int *val_int, int min, int max, int step ); Item *item_create_switch( char *name, char *hint, int *val_int, char *str_off, char *str_on ); Item *item_create_switch_x( char *name, char *hint, int *val_int, char **strings, int count ); Item *item_create_key( char *name, char *hint, int *val_int, int *filter ); Item *item_create_edit( char *name, char *hint, char *val_str, int limit ); Item *item_create_link( char *name, char *hint, void *menu ); Item *item_create_action( char *name, char *hint, int item_id ); /* ==================================================================== Delete item (void pointer for compatiblity when using with list) ==================================================================== */ void item_delete( void *item ); /* ==================================================================== Adjust alignment of name and value strings ==================================================================== */ void item_adjust( Item *item ); /* ==================================================================== Hide/Show item ==================================================================== */ void item_hide( Item *item ); void item_show( Item *item ); /* ==================================================================== Update alpha of item ==================================================================== */ void item_update_alpha( Item *item, int ms ); /* ==================================================================== Check if position's on item. ==================================================================== */ int item_focus( Item *item, int x, int y ); #endif ltris-1.0.19/src/parser.c0000664000175000017500000005722212140770047012123 00000000000000/*************************************************************************** parser.c - description ------------------- begin : Sat Mar 9 2002 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include #include #include "parser.h" /* ==================================================================== Error string. ==================================================================== */ static char parser_sub_error[1024]; static char parser_error[1024]; /* ==================================================================== This buffer is used to fully load resource files when the compact format is used. ==================================================================== */ enum { CBUFFER_SIZE = 131072 }; /* 128 KB */ static char cbuffer[CBUFFER_SIZE]; static char* cbuffer_pos = 0; /* position in cbuffer */ /* ==================================================================== As we need constant strings sometimes we have to define a maximum length for tokens. ==================================================================== */ enum { PARSER_MAX_TOKEN_LENGTH = 1024 }; /* ==================================================================== Locals ==================================================================== */ /* ==================================================================== Macro to shorten the fread call for a single character. ==================================================================== */ #define FILE_READCHAR( file, c ) fread( &c, sizeof( char ), 1, file ) /* ==================================================================== Copy source to dest and at maximum limit chars. Terminate with 0. ==================================================================== */ void strcpy_lt( char *dest, char *src, int limit ) { int len = strlen( src ); if ( len > limit ) { strncpy( dest, src, limit ); dest[limit] = 0; } else strcpy( dest, src ); } /* ==================================================================== Find next newline in cbuffer and replace it with \0 and return the pointer to the current line. ==================================================================== */ static char* parser_get_next_line() { char *line = cbuffer_pos; char *newpos; if ( cbuffer_pos[0] == 0 ) return 0; /* completely read. no more lines. */ if ( ( newpos = strchr( cbuffer_pos, 10 ) ) == 0 ) cbuffer_pos += strlen( cbuffer_pos ); /* last line */ else { cbuffer_pos = newpos + 1; /* set pointer to next line */ newpos[0] = 0; /* terminate current line */ } return line; } /* ==================================================================== Set parse error string: "file:line: error" ==================================================================== */ static void parser_set_parse_error( char *fname, FILE *file, char *error ) { int end, pos; int line_count = 1; char c; end = ftell( file ); pos = 0; fseek( file, 0, SEEK_SET ); while ( pos < end ) { FILE_READCHAR( file, c ); pos++; if ( c == 10 ) line_count++; } sprintf( parser_error, "%s: %i: %s", fname, line_count, error ); } /* ==================================================================== Check if the given character occurs in the symbol list. If the first symbol is ' ' it is used as wildcard for all white-spaces. ==================================================================== */ static int is_symbol( int c, char *symbols ) { int i = 0; if ( symbols[0] == ' ' && c <= 32 ) return 1; while ( symbols[i] != 0 ) if ( c == symbols[i++] ) return 1; return 0; } /* ==================================================================== Move file position forward until reading in the given character. If stop is ' ' whitespaces will be ignored. ==================================================================== */ static void file_skip( FILE *file, char stop ) { char c = 0; FILE_READCHAR( file, c ); while ( ( ( stop == ' ' && c <= 32 ) || ( stop != ' ' && c != stop ) ) && !feof( file ) ) FILE_READCHAR( file, c ); if ( !feof( file ) ) fseek( file, -1, SEEK_CUR ); } /* ==================================================================== Read next token from current file position where symbols is a list of characters used to break up the tokens. The symbols themself are returned as tokens. If ' ' occurs in the symbol list it will be ignored and whitespaces are removed automatically. The token does not exceed PARSER_MAX_TOKEN_LENGTH. Enclosing ".." are kept at the token. Use file_compare_token() to test it's contents. Returns False on EoF. ==================================================================== */ static int file_read_token_intern( FILE *file, char *symbols, char *token ) { int pos = 0; char c; token[0] = 0; file_skip( file, ' ' ); FILE_READCHAR( file, c ); if ( feof( file ) ) { sprintf( parser_sub_error, "unexpected end of file" ); return 0; } /* string? */ if ( c == '"' ) { token[pos++] = '"'; FILE_READCHAR( file, c ); while ( ( !feof( file ) && c != '"' ) ) { token[pos++] = c; if ( pos == PARSER_MAX_TOKEN_LENGTH - 2 ) { token[pos++] = '"'; token[pos] = 0; sprintf( parser_sub_error, "token exceeds limit" ); return 0; } FILE_READCHAR( file, c ); } token[pos++] = '"'; token[pos] = 0; if ( feof( file ) ) { sprintf( parser_sub_error, "unexpected end of file" ); token[0] = 0; return 0; } return 1; } /* symbol? */ if ( is_symbol( c, symbols ) ) { token[0] = c; token[1] = 0; return 1; } /* other token */ while ( !is_symbol( c, symbols ) && !feof( file ) ) { token[pos++] = c; if ( pos == PARSER_MAX_TOKEN_LENGTH - 1 ) { token[pos] = 0; sprintf( parser_sub_error, "token exceeds limit" ); return 0; } FILE_READCHAR( file, c ); } token[pos] = 0; if ( feof( file ) ) return 1; fseek( file, -1, SEEK_CUR ); return 1; } /* ==================================================================== Skip all tokens until one begins with character 'stop'. This token is also ignored. ==================================================================== */ static void file_skip_section( FILE *file, char stop ) { char token[PARSER_MAX_TOKEN_LENGTH]; do { file_read_token_intern( file, PARSER_SYMBOLS, token ); } while ( !feof( file ) && token[0] != stop ); } /* ==================================================================== Read next token and skip comments enclosed in tokens skip[0], skip[1] (if skip is not NULL). Return 0 if EoF. ==================================================================== */ static int file_read_token( FILE *file, char *symbols, char *skip, char *token ) { while ( 1 ) { if ( !file_read_token_intern( file, symbols, token ) ) return 0; if ( skip ) { if ( token[0] == skip[0] ) file_skip_section( file, skip[1] ); else break; } else break; } return 1; } /* ==================================================================== Remove quotes if any and return result as newly allocated string. ==================================================================== */ static char* parser_remove_quotes( char *string ) { char *new; if ( string[0] != '"' ) return strdup( string ); new = calloc( strlen( string ) - 1, sizeof( char ) ); strncpy( new, string + 1, strlen( string ) - 2 ); new[strlen( string ) - 2] = 0; return new; } /* ==================================================================== Proceed in the given string until it ends or non-whitespace occurs and return the new position. ==================================================================== */ static char* string_ignore_whitespace( char *string ) { int i = 0; while ( string[i] != 0 && string[i] <= 32 ) i++; return string + i; } /* ==================================================================== This function searches file from the current position for the next pdata entry. ==================================================================== */ static PData* parser_parse_file( FILE *file ) { char token[PARSER_MAX_TOKEN_LENGTH]; PData *pd = 0, *sub = 0; /* get name */ if ( !file_read_token( file, PARSER_SYMBOLS, PARSER_SKIP_SYMBOLS, token ) ) return 0; if ( is_symbol( token[0], PARSER_SYMBOLS ) ) { sprintf( parser_sub_error, "parse error before '%s'", token ); return 0; } pd = calloc( 1, sizeof( PData ) ); pd->name = parser_remove_quotes( token ); /* check type */ if ( !file_read_token( file, PARSER_SYMBOLS, PARSER_SKIP_SYMBOLS, token ) ) goto failure; switch ( token[0] ) { case PARSER_SET: /* assign single value or list */ pd->values = list_create( LIST_AUTO_DELETE, LIST_NO_CALLBACK ); if ( !file_read_token( file, PARSER_SYMBOLS, PARSER_SKIP_SYMBOLS, token ) ) goto failure; if ( token[0] != PARSER_LIST_BEGIN ) { if ( is_symbol( token[0], PARSER_SYMBOLS ) ) { sprintf( parser_sub_error, "parse error before '%s'", token ); goto failure; } else list_add( pd->values, parser_remove_quotes( token ) ); } else { if ( !file_read_token( file, PARSER_SYMBOLS, PARSER_SKIP_SYMBOLS, token ) ) goto failure; while ( token[0] != PARSER_LIST_END ) { if ( is_symbol( token[0], PARSER_SYMBOLS ) ) { sprintf( parser_sub_error, "parse error before '%s'", token ); goto failure; } else list_add( pd->values, parser_remove_quotes( token ) ); if ( !file_read_token( file, PARSER_SYMBOLS, PARSER_SKIP_SYMBOLS, token ) ) goto failure; } } break; case PARSER_GROUP_BEGIN: /* check all entries until PARSER_GROUP_END */ pd->entries = list_create( LIST_NO_AUTO_DELETE, LIST_NO_CALLBACK ); while ( 1 ) { if ( !file_read_token( file, PARSER_SYMBOLS, PARSER_SKIP_SYMBOLS, token ) ) goto failure; if ( token[0] == PARSER_GROUP_END ) break; fseek( file, -strlen( token ), SEEK_CUR ); sub = parser_parse_file( file ); if ( sub ) list_add( pd->entries, sub ); else goto failure; } break; default: sprintf( parser_sub_error, "parse error before '%s'", token ); goto failure; } return pd; failure: parser_free( &pd ); return 0; } /* ==================================================================== Publics ==================================================================== */ /* ==================================================================== This function splits a string into tokens using the characters found in symbols as breakpoints. If the first symbol is ' ' all whitespaces are used as breakpoints though NOT added as a token (thus removed from string). ==================================================================== */ List* parser_split_string( char *string, char *symbols ) { int pos; char *token = 0; List *list = list_create( LIST_AUTO_DELETE, LIST_NO_CALLBACK ); while ( string[0] != 0 ) { if ( symbols[0] == ' ' ) string = string_ignore_whitespace( string ); if ( string[0] == 0 ) break; pos = 1; /* 'read in' first character */ while ( string[pos - 1] != 0 && !is_symbol( string[pos - 1], symbols ) && string[pos - 1] != '"' ) pos++; if ( pos > 1 ) pos--; else if ( string[pos - 1] == '"' ) { /* read a string */ string = string + 1; pos = 0; while ( string[pos] != 0 && string[pos] != '"' ) pos++; token = calloc( pos + 1, sizeof( char ) ); strncpy( token, string, pos ); token[pos] = 0; list_add( list, token ); string = string + pos + (string[pos] != 0); continue; } token = calloc( pos + 1, sizeof( char ) ); strncpy( token, string, pos); token[pos] = 0; list_add( list, token ); string = string + pos; } return list; } /* ==================================================================== This is the light version of parser_split_string which checks for just one character and does not add this glue characters to the list. It's about 2% faster. Wow. ==================================================================== */ List *parser_explode_string( char *string, char c ) { List *list = list_create( LIST_AUTO_DELETE, LIST_NO_CALLBACK ); char *next_slash = 0; char buffer[64]; while ( string[0] != 0 && ( next_slash = strchr( string, c ) ) != 0 ) { if ( next_slash != string ) { strcpy_lt( buffer, string, (next_slash-string>63)?63:(next_slash-string) ); list_add( list, strdup( buffer ) ); } string += next_slash - string + 1; } if ( string[0] != 0 ) list_add( list, strdup( string ) ); return list; } /* ==================================================================== This function reads in a whole file and converts it into a PData tree struct. If an error occurs NULL is returned and parser_error is set. ==================================================================== */ static int parser_read_file_full( FILE *file, PData *top ) { PData *sub = 0; char token[1024]; /* parse file */ while ( !feof( file ) ) { if ( ( sub = parser_parse_file( file ) ) != 0 ) list_add( top->entries, sub ); else return 0; /* skip comments and whitespaces */ if ( !file_read_token( file, PARSER_SYMBOLS, PARSER_SKIP_SYMBOLS, token ) ) { if ( token[0] != 0 ) return 0; break; } else fseek( file, -strlen( token ), SEEK_CUR ); } return 1; } static int parser_read_file_compact( PData *section ) { /* section is the parent pdata that needs some entries */ PData *pd = 0; char *line, *cur; while ( ( line = parser_get_next_line() ) ) { switch ( line[0] ) { case '>': /* this section is finished */ return 1; case '<': /* add a whole subsection */ pd = calloc( 1, sizeof( PData ) ); pd->name = strdup( line + 1 ); pd->entries = list_create( LIST_NO_AUTO_DELETE, LIST_NO_CALLBACK ); parser_read_file_compact( pd ); /* add to section */ list_add( section->entries, pd ); break; case '\0': break; default: /* read values as subsection */ pd = calloc( 1, sizeof( PData ) ); /* check name */ if ( ( cur = strchr( line, '»' ) ) == 0 ) { sprintf( parser_sub_error, "parse error: use '»' for assignment or '<' for section" ); return 0; } cur[0] = 0; cur++; pd->name = strdup( line ); /* get values */ pd->values = parser_explode_string( cur, '°' ); /* add to section */ list_add( section->entries, pd ); break; } } return 1; } PData* parser_read_file( char *tree_name, char *fname ) { int size; char magic = 0; FILE *file = 0; PData *top = 0; /* open file */ if ( ( file = fopen( fname, "r" ) ) == 0 ) { sprintf( parser_error, "%s: file not found", fname ); return 0; } /* create top level pdata */ top = calloc( 1, sizeof( PData ) ); top->name = strdup( tree_name ); top->entries = list_create( LIST_NO_AUTO_DELETE, LIST_NO_CALLBACK ); /* parse */ FILE_READCHAR( file, magic ); if ( magic == '@' ) { /* get the whole contents -- 1 and CBUFFER_SIZE are switched */ fseek( file, 0, SEEK_END ); size = ftell( file ) - 2; if ( size >= CBUFFER_SIZE ) { fprintf( stderr, "%s: file's too big to fit the compact buffer (128KB)\n", fname ); size = CBUFFER_SIZE - 1; } fseek( file, 2, SEEK_SET ); fread( cbuffer, 1, size, file ); cbuffer[size] = 0; /* set indicator to beginning of text */ cbuffer_pos = cbuffer; /* parse cbuffer */ if ( !parser_read_file_compact( top ) ) { parser_set_parse_error( fname, file, parser_sub_error ); goto failure; } } else { fseek( file, 0, SEEK_SET ); if ( !parser_read_file_full( file, top ) ) { parser_set_parse_error( fname, file, parser_sub_error ); goto failure; } } /* finalize */ fclose( file ); return top; failure: fclose( file ); parser_free( &top ); return 0; } /* ==================================================================== This function frees a PData tree struct. ==================================================================== */ void parser_free( PData **pdata ) { PData *entry = 0; if ( (*pdata) == 0 ) return; if ( (*pdata)->name ) free( (*pdata)->name ); if ( (*pdata)->values ) list_delete( (*pdata)->values ); if ( (*pdata)->entries ) { list_reset( (*pdata)->entries ); while ( ( entry = list_next( (*pdata)->entries ) ) ) parser_free( &entry ); list_delete( (*pdata)->entries ); } free( *pdata ); *pdata = 0; } /* ==================================================================== Functions to access a PData tree. 'name' is the pass within tree 'pd' where subtrees are separated by '/' (e.g.: name = 'config/graphics/animations') parser_get_pdata : get pdata entry associated with 'name' parser_get_entries : get list of subtrees (PData structs) in 'name' parser_get_values : get value list of 'name' parser_get_value : get a single value from value list of 'name' parser_get_int : get first value of 'name' converted to integer parser_get_double : get first value of 'name' converted to double parser_get_string : get first value of 'name' _duplicated_ If an error occurs result is set NULL, False is returned and parse_error is set. ==================================================================== */ int parser_get_pdata ( PData *pd, char *name, PData **result ) { int i, found; PData *pd_next = pd; PData *entry = 0; char *sub = 0; List *path = parser_explode_string( name, '/' ); for ( i = 0, list_reset( path ); i < path->count; i++ ) { sub = list_next( path ); if ( !pd_next->entries ) { sprintf( parser_sub_error, "%s: no subtrees", pd_next->name ); goto failure; } list_reset( pd_next->entries ); found = 0; while ( ( entry = list_next( pd_next->entries ) ) ) if ( strlen( entry->name ) == strlen( sub ) && !strncmp( entry->name, sub, strlen( sub ) ) ) { pd_next = entry; found = 1; break; } if ( !found ) { sprintf( parser_sub_error, "%s: subtree '%s' not found", pd_next->name, sub ); goto failure; } } list_delete( path ); *result = pd_next; return 1; failure: sprintf( parser_error, "parser_get_pdata: %s/%s: %s", pd->name, name, parser_sub_error ); list_delete( path ); *result = 0; return 0; } int parser_get_entries( PData *pd, char *name, List **result ) { PData *entry; *result = 0; if ( !parser_get_pdata( pd, name, &entry ) ) { sprintf( parser_sub_error, "parser_get_entries:\n %s", parser_error ); strcpy( parser_error, parser_sub_error ); return 0; } if ( !entry->entries || entry->entries->count == 0 ) { sprintf( parser_error, "parser_get_entries: %s/%s: no subtrees", pd->name, name ); return 0; } *result = entry->entries; return 1; } int parser_get_values ( PData *pd, char *name, List **result ) { PData *entry; *result = 0; if ( !parser_get_pdata( pd, name, &entry ) ) { sprintf( parser_sub_error, "parser_get_values:\n %s", parser_error ); strcpy( parser_error, parser_sub_error ); return 0; } if ( !entry->values || entry->values->count == 0 ) { sprintf( parser_error, "parser_get_values: %s/%s: no values", pd->name, name ); return 0; } *result = entry->values; return 1; } int parser_get_value ( PData *pd, char *name, char **result, int index ) { List *values; if ( !parser_get_values( pd, name, &values ) ) { sprintf( parser_sub_error, "parser_get_value:\n %s", parser_error ); strcpy( parser_error, parser_sub_error ); return 0; } if ( index >= values->count ) { sprintf( parser_error, "parser_get_value: %s/%s: index %i out of range (%i elements)", pd->name, name, index, values->count ); return 0; } *result = list_get( values, index ); return 1; } int parser_get_int ( PData *pd, char *name, int *result ) { char *value; if ( !parser_get_value( pd, name, &value, 0 ) ) { sprintf( parser_sub_error, "parser_get_int:\n %s", parser_error ); strcpy( parser_error, parser_sub_error ); return 0; } *result = atoi( value ); return 1; } int parser_get_double ( PData *pd, char *name, double *result ) { char *value; if ( !parser_get_value( pd, name, &value, 0 ) ) { sprintf( parser_sub_error, "parser_get_double:\n %s", parser_error ); strcpy( parser_error, parser_sub_error ); return 0; } *result = strtod( value, 0 ); return 1; } int parser_get_string ( PData *pd, char *name, char **result ) { char *value; if ( !parser_get_value( pd, name, &value, 0 ) ) { sprintf( parser_sub_error, "parser_get_string:\n %s", parser_error ); strcpy( parser_error, parser_sub_error ); return 0; } *result = strdup( value ); return 1; } /* ==================================================================== If an error occurred you can query the reason with this function. ==================================================================== */ char* parser_get_error( void ) { return parser_error; } ltris-1.0.19/src/value.c0000664000175000017500000002371712140770047011745 00000000000000/*************************************************************************** value.c - description ------------------- begin : Sun Sep 23 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include #include "manager.h" /* ==================================================================== Locals ==================================================================== */ /* ==================================================================== Update val_str if not ITEM_VALUE ==================================================================== */ void value_update_str( Value *value ) { switch ( value->type ) { case VALUE_RANGE_INT: sprintf( value->val_str, "%i", *value->val_int ); break; case VALUE_RANGE_STR: sprintf( value->val_str, "%s", value->names[*value->val_int] ); break; case VALUE_KEY: if ( value->grab ) { strcpy( value->val_str, "???" ); break; } switch ( *value->val_int ) { case SDLK_SPACE: strcpy( value->val_str, _("Space") ); break; case SDLK_LEFT: strcpy( value->val_str, _("Left") ); break; case SDLK_RIGHT: strcpy( value->val_str, _("Right") ); break; case SDLK_UP: strcpy( value->val_str, _("Up") ); break; case SDLK_DOWN: strcpy( value->val_str, _("Down") ); break; case SDLK_RSHIFT: strcpy( value->val_str, _("Right Shift") ); break; case SDLK_LSHIFT: strcpy( value->val_str, _("Left Shift") ); break; case SDLK_RCTRL: strcpy( value->val_str, _("Right Ctrl") ); break; case SDLK_LCTRL: strcpy( value->val_str, _("Left Ctrl") ); break; case SDLK_RALT: strcpy( value->val_str, _("Right Alt") ); break; case SDLK_LALT: strcpy( value->val_str, _("Left Alt") ); break; case SDLK_INSERT: strcpy( value->val_str, _("Insert") ); break; case SDLK_END: strcpy( value->val_str, _("End") ); break; case SDLK_PAGEUP: strcpy( value->val_str, _("PageUp") ); break; case SDLK_PAGEDOWN: strcpy( value->val_str, _("PageDown") ); break; case SDLK_HOME: strcpy( value->val_str, _("Home") ); break; default: if ( *value->val_int >= SDLK_a && *value->val_int <= SDLK_z ) sprintf( value->val_str, "'%c'", (char)toupper( *value->val_int ) ); else if ( *value->val_int >= SDLK_0 && *value->val_int <= SDLK_9 ) sprintf( value->val_str, "'%i'", *value->val_int - 48 ); else if ( *value->val_int >= SDLK_KP0 && *value->val_int <= SDLK_KP9 ) sprintf( value->val_str, "'Pad %i'", *value->val_int - 256 ); else sprintf( value->val_str, "%i", *value->val_int ); break; } break; } } /* ==================================================================== Create basic value ==================================================================== */ Value *value_create_basic( int type, int *val_int ) { Value *value = calloc( 1, sizeof( Value ) ); value->type = type; value->val_int = val_int; /* if not VALUE_EDIT create val_str which carries translated val_int */ if ( type != VALUE_EDIT ) value->val_str = calloc( 256, sizeof( char ) ); return value; } /* ==================================================================== Publics ==================================================================== */ /* ==================================================================== Auxiliary functions to setup a key filter. ==================================================================== */ void filter_clear( int *filter ) { memset( filter, 0, sizeof( int ) * SDLK_LAST ); } void filter_set( int *filter, int first, int last, int allowed ) { int i; for ( i = first; i <= last; i++ ) filter[i] = allowed; } /* ==================================================================== Create a value. names and filter are duplicated and freed by value_delete(). Return Value: value ==================================================================== */ Value *value_create_empty() { return value_create_basic( VALUE_NONE, 0 ); } Value *value_create_range_int( int *val_int, int min, int max, int step ) { Value *value = value_create_basic( VALUE_RANGE_INT, val_int ); value->min = min; value->max = max; value->step = step; value_update_str( value ); return value; } Value *value_create_range_str( int *val_int, char **names, int count ) { int i; Value *value = value_create_basic( VALUE_RANGE_STR, val_int ); value->min = 0; value->max = count - 1; value->step = 1; /* duplicate names */ value->name_count = count; value->names = calloc( count, sizeof( char* ) ); for ( i = 0; i < count; i++ ) value->names[i] = strdup( names[i] ); value_update_str( value ); return value; } Value *value_create_key( int *val_int, int *filter ) { int i; Value *value = value_create_basic( VALUE_KEY, val_int ); /* duplicate filter */ value->filter = calloc( SDLK_LAST, sizeof( int ) ); for ( i = 0; i < SDLK_LAST; i++ ) value->filter[i] = filter[i]; value_update_str( value ); /* list of other key values */ value->other_keys = list_create( LIST_NO_AUTO_DELETE, LIST_NO_CALLBACK ); return value; } Value *value_create_edit( char *val_str, int limit ) { Value *value = value_create_basic( VALUE_EDIT, 0 ); value->val_str = val_str; value->max = limit; return value; } /* ==================================================================== Delete a value ==================================================================== */ void value_delete( Value *value ) { int i; if ( !value ) return; if ( value->filter ) free( value->filter ); if ( value->names ) { for ( i = 0; i < value->name_count; i++ ) if ( value->names[i] ) free( value->names[i] ); free( value->names ); } if ( value->type != VALUE_EDIT && value->val_str ) free( value->val_str ); if ( value->other_keys ) list_delete( value->other_keys ); free( value ); } /* ==================================================================== Increase, decrease if range. ==================================================================== */ void value_dec( Value *value ) { *value->val_int -= value->step; if ( *value->val_int < value->min ) *value->val_int = value->max; value_update_str( value ); } void value_inc( Value *value ) { *value->val_int += value->step; if ( *value->val_int > value->max ) *value->val_int = value->min; value_update_str( value ); } /* ==================================================================== Grab input of VALUE_KEY ==================================================================== */ void value_grab( Value *value ) { if ( value->type == VALUE_KEY ) { value->grab = 1; value_update_str( value ); } } /* ==================================================================== Set key value if VALUE_KEY and clear grab flag ==================================================================== */ void value_set_key( Value *value, int val_int ) { Value *other_key; if ( !value->filter[val_int] ) return; list_reset( value->other_keys ); while ( ( other_key = list_next( value->other_keys ) ) ) if ( *other_key->val_int == val_int ) return; /* ok, set */ *value->val_int = val_int; value->grab = 0; value_update_str( value ); } /* ==================================================================== Edit string if VALUE_EDIT ==================================================================== */ void value_edit( Value *value, int code, int unicode ) { int length = strlen( value->val_str ); if ( code == SDLK_BACKSPACE && length > 0 ) value->val_str[length - 1] = 0; else if ( code >= 32 && code < 128 && length < value->max ) value->val_str[length] = unicode; } /* ==================================================================== Add another dynamically restricted key (as VALUE_KEY) to other_key list. ==================================================================== */ void value_add_other_key( Value *value, Value *other_key ) { if ( value->type != VALUE_KEY ) return; list_add( value->other_keys, other_key ); } /* ==================================================================== Set a new name list (and update position) for VALUE_RANGE_STR. ==================================================================== */ void value_set_new_names( Value *value, char **names, int count ) { int i; if ( value->type != VALUE_RANGE_STR ) return; if ( value->names ) { for ( i = 0; i < value->name_count; i++ ) if ( value->names[i] ) free( value->names[i] ); free( value->names ); } value->name_count = count; value->max = count - 1; if ( *value->val_int > value->max ) *value->val_int = 0; value->names = calloc( count, sizeof( char* ) ); for ( i = 0; i < count; i++ ) value->names[i] = strdup( names[i] ); value_update_str( value ); } ltris-1.0.19/src/cpu.h0000664000175000017500000000455012140770047011417 00000000000000/*************************************************************************** cpu.h - description ------------------- begin : Sun Jan 6 2002 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef __CPU_H #define __CPU_H /* ==================================================================== CPU_Data containing the situation CPU has to analyze: original_bowl: 0 - empty 1 - blocked bowl: 2 - inserted block 3 - removed line ==================================================================== */ typedef struct { int aggr; /* if playing aggressive for multiplayer action we punish single lines */ Block_Mask *original_block, *original_preview; /* the two blocks tested */ int bowl_w, bowl_h; int original_bowl[BOWL_WIDTH][BOWL_HEIGHT]; /* set by bowl before calling cpu_analyze_data() */ int backup_bowl[BOWL_WIDTH][BOWL_HEIGHT]; /* this bowl stores the bowl information by cpu_backup_bowl() and restores by cpu_restore_bowl() */ int bowl[BOWL_WIDTH][BOWL_HEIGHT]; /* this bowl is used to actually compute stuff */ Block_Mask *block; /* actual block tested */ int dest_x, dest_y, dest_rot, dest_score; /* this is the CPU result for this data */ } CPU_Data; /* ==================================================================== Analyze situation and set CPU_Data::dest_x and CPU_Data::dest_rot which is used by bowl to move the block. ==================================================================== */ void cpu_analyze_data( CPU_Data *cpu_data ); #endif ltris-1.0.19/src/sdl.c0000664000175000017500000007777712233751177011440 00000000000000/*************************************************************************** sdl.c - description ------------------- begin : Thu Apr 20 2000 copyright : (C) 2000 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include #include #include #include "sdl.h" #ifdef USE_PNG #include #endif extern int term_game; Sdl sdl; SDL_Cursor *empty_cursor = 0; SDL_Cursor *std_cursor = 0; /* ==================================================================== Default video modes. The first value is the id and indicates if a mode is a standard video mode. If the mode was created by directly by video_mode() this id is set to -1. The very last value indicates if this is a valid mode and is checked by init_sdl(). Init_sdl sets the available desktop bit depth. ==================================================================== */ int const mode_count = 2; Video_Mode modes[] = { { 0, "640x480x16 Window", 640, 480, BITDEPTH, SDL_SWSURFACE, 0 }, { 1, "640x480x16 Fullscreen", 640, 480, BITDEPTH, SDL_SWSURFACE | SDL_FULLSCREEN, 0 }, }; Video_Mode *def_mode = &modes[0]; /* default resolution */ Video_Mode cur_mode; /* current video mode set in set_video_mode */ /* timer */ int cur_time, last_time; /* sdl surface */ #ifdef USE_PNG /* loads an image from png file and returns surface * or NULL in case of error; * you can get additional information with SDL_GetError * * stolen from SDL_image: * * Copyright (C) 1999 Sam Lantinga * * Sam Lantinga * 5635-34 Springhouse Dr. * Pleasanton, CA 94588 (USA) * slouken@devolution.com */ SDL_Surface *load_png( const char *file ) { FILE *volatile fp = NULL; SDL_Surface *volatile surface = NULL; png_structp png_ptr = NULL; png_infop info_ptr = NULL; png_bytep *volatile row_pointers = NULL; png_uint_32 width, height; int bit_depth, color_type, interlace_type; Uint32 Rmask; Uint32 Gmask; Uint32 Bmask; Uint32 Amask; SDL_Palette *palette; int row, i; volatile int ckey = -1; png_color_16 *transv; /* create the PNG loading context structure */ png_ptr = png_create_read_struct( PNG_LIBPNG_VER_STRING, NULL, NULL, NULL ); if( png_ptr == NULL ) { SDL_SetError( "Couldn't allocate memory for PNG file" ); goto done; } /* allocate/initialize the memory for image information. REQUIRED. */ info_ptr = png_create_info_struct( png_ptr ); if( info_ptr == NULL ) { SDL_SetError( "Couldn't create image information for PNG file" ); goto done; } /* set error handling if you are using setjmp/longjmp method (this is * the normal method of doing things with libpng). REQUIRED unless you * set up your own error handlers in png_create_read_struct() earlier. */ if( setjmp( png_ptr->jmpbuf ) ) { SDL_SetError( "Error reading the PNG file." ); goto done; } /* open file */ fp = fopen( file, "r" ); if( fp == NULL ) { SDL_SetError( "Could not open png file." ); goto done; } png_init_io( png_ptr, fp ); /* read PNG header info */ png_read_info( png_ptr, info_ptr ); png_get_IHDR( png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL ); /* tell libpng to strip 16 bit/color files down to 8 bits/color */ png_set_strip_16( png_ptr ); /* extract multiple pixels with bit depths of 1, 2, and 4 from a single * byte into separate bytes (useful for paletted and grayscale images). */ png_set_packing( png_ptr ); /* scale greyscale values to the range 0..255 */ if( color_type == PNG_COLOR_TYPE_GRAY ) png_set_expand( png_ptr ); /* for images with a single "transparent colour", set colour key; if more than one index has transparency, use full alpha channel */ if( png_get_valid( png_ptr, info_ptr, PNG_INFO_tRNS ) ) { int num_trans; Uint8 *trans; png_get_tRNS( png_ptr, info_ptr, &trans, &num_trans, &transv ); if( color_type == PNG_COLOR_TYPE_PALETTE ) { if( num_trans == 1 ) { /* exactly one transparent value: set colour key */ ckey = trans[0]; } else png_set_expand( png_ptr ); } else ckey = 0; /* actual value will be set later */ } if( color_type == PNG_COLOR_TYPE_GRAY_ALPHA ) png_set_gray_to_rgb( png_ptr ); png_read_update_info( png_ptr, info_ptr ); png_get_IHDR( png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, &interlace_type, NULL, NULL ); /* allocate the SDL surface to hold the image */ Rmask = Gmask = Bmask = Amask = 0 ; if( color_type != PNG_COLOR_TYPE_PALETTE ) { if( SDL_BYTEORDER == SDL_LIL_ENDIAN ) { Rmask = 0x000000FF; Gmask = 0x0000FF00; Bmask = 0x00FF0000; Amask = (info_ptr->channels == 4) ? 0xFF000000 : 0; } else { int s = (info_ptr->channels == 4) ? 0 : 8; Rmask = 0xFF000000 >> s; Gmask = 0x00FF0000 >> s; Bmask = 0x0000FF00 >> s; Amask = 0x000000FF >> s; } } surface = SDL_AllocSurface( SDL_SWSURFACE, width, height, bit_depth * info_ptr->channels, Rmask, Gmask, Bmask, Amask ); if( surface == NULL ) { SDL_SetError( "Out of memory" ); goto done; } if( ckey != -1 ) { if( color_type != PNG_COLOR_TYPE_PALETTE ) /* FIXME: should these be truncated or shifted down? */ ckey = SDL_MapRGB( surface->format, (Uint8)transv->red, (Uint8)transv->green, (Uint8)transv->blue ); SDL_SetColorKey( surface, SDL_SRCCOLORKEY, ckey ); } /* create the array of pointers to image data */ row_pointers = (png_bytep*)malloc( sizeof( png_bytep ) * height ); if( ( row_pointers == NULL ) ) { SDL_SetError( "Out of memory" ); SDL_FreeSurface( surface ); surface = NULL; goto done; } for( row = 0; row < (int)height; row++ ) { row_pointers[row] = (png_bytep) (Uint8*)surface->pixels + row * surface->pitch; } /* read the entire image in one go */ png_read_image( png_ptr, row_pointers ); /* read rest of file, get additional chunks in info_ptr - REQUIRED */ png_read_end( png_ptr, info_ptr ); /* load the palette, if any */ palette = surface->format->palette; if( palette ) { if( color_type == PNG_COLOR_TYPE_GRAY ) { palette->ncolors = 256; for( i = 0; i < 256; i++ ) { palette->colors[i].r = i; palette->colors[i].g = i; palette->colors[i].b = i; } } else if( info_ptr->num_palette > 0 ) { palette->ncolors = info_ptr->num_palette; for( i = 0; i < info_ptr->num_palette; ++i ) { palette->colors[i].b = info_ptr->palette[i].blue; palette->colors[i].g = info_ptr->palette[i].green; palette->colors[i].r = info_ptr->palette[i].red; } } } done: /* clean up and return */ png_destroy_read_struct( &png_ptr, info_ptr ? &info_ptr : (png_infopp)0, (png_infopp)0 ); if( row_pointers ) free( row_pointers ); if( fp ) fclose( fp ); return surface; } #endif /* return full path of bitmap */ inline void get_full_bmp_path( char *full_path, char *file_name ) { sprintf(full_path, "%s/gfx/%s", SRC_DIR, file_name ); } /* load a surface from file putting it in soft or hardware mem */ SDL_Surface* load_surf(char *fname, int f) { SDL_Surface *buf; SDL_Surface *new_sur; char path[ 512 ]; SDL_PixelFormat *spf; #ifdef USE_PNG char png_name[32]; #endif #ifdef USE_PNG /* override file name as all graphics were changed from bitmap to png so the extension must be corrected */ memset( png_name, 0, sizeof( png_name ) ); strncpy( png_name, fname, strlen( fname ) - 4 ); strcat( png_name, ".png" ); get_full_bmp_path( path, png_name ); buf = load_png( path ); #else get_full_bmp_path( path, fname ); buf = SDL_LoadBMP( path ); #endif if ( buf == 0 ) { fprintf( stderr, "load_surf: file '%s' not found or not enough memory\n", path ); if ( f & SDL_NONFATAL ) return 0; else exit( 1 ); } /* if ( !(f & SDL_HWSURFACE) ) { SDL_SetColorKey( buf, SDL_SRCCOLORKEY, 0x0 ); return buf; } new_sur = create_surf(buf->w, buf->h, f); SDL_BlitSurface(buf, 0, new_sur, 0); SDL_FreeSurface(buf);*/ spf = SDL_GetVideoSurface()->format; new_sur = SDL_ConvertSurface( buf, spf, f ); SDL_FreeSurface( buf ); SDL_SetColorKey( new_sur, SDL_SRCCOLORKEY, 0x0 ); SDL_SetAlpha( new_sur, 0, 0 ); /* no alpha */ return new_sur; } /* create an surface MUST NOT BE USED IF NO SDLSCREEN IS SET */ SDL_Surface* create_surf(int w, int h, int f) { SDL_Surface *sur; SDL_PixelFormat *spf = SDL_GetVideoSurface()->format; if ((sur = SDL_CreateRGBSurface(f, w, h, spf->BitsPerPixel, spf->Rmask, spf->Gmask, spf->Bmask, spf->Amask)) == 0) { fprintf(stderr, "create_surf: not enough memory to create surface...\n"); exit(1); } /* if (f & SDL_HWSURFACE && !(sur->flags & SDL_HWSURFACE)) fprintf(stderr, "unable to create surface (%ix%ix%i) in hardware memory...\n", w, h, spf->BitsPerPixel);*/ SDL_SetColorKey(sur, SDL_SRCCOLORKEY, 0x0); SDL_SetAlpha(sur, 0, 0); /* no alpha */ return sur; } /* * Free a surface if != NULL and set pointer to NULL */ void free_surf( SDL_Surface **surf ) { if ( *surf ) SDL_FreeSurface( *surf ); *surf = 0; } /* lock surface */ inline void lock_surf(SDL_Surface *sur) { if (SDL_MUSTLOCK(sur)) SDL_LockSurface(sur); } /* unlock surface */ inline void unlock_surf(SDL_Surface *sur) { if (SDL_MUSTLOCK(sur)) SDL_UnlockSurface(sur); } /* blit surface with destination DEST and source SOURCE using it's actual alpha and color key settings */ void blit_surf(void) { #ifdef SDL_1_1_5 if (sdl.s.s->flags & SDL_SRCALPHA) SDL_SetAlpha(sdl.s.s, SDL_SRCALPHA, 255 - sdl.s.s->format->alpha); #endif SDL_BlitSurface(sdl.s.s, &sdl.s.r, sdl.d.s, &sdl.d.r); #ifdef SDL_1_1_5 if (sdl.s.s->flags & SDL_SRCALPHA) SDL_SetAlpha(sdl.s.s, SDL_SRCALPHA, 255 - sdl.s.s->format->alpha); #endif } /* do an alpha blit */ void alpha_blit_surf(int alpha) { #ifdef SDL_1_1_5 SDL_SetAlpha(sdl.s.s, SDL_SRCALPHA, 255 - alpha); #else SDL_SetAlpha(sdl.s.s, SDL_SRCALPHA, alpha); #endif SDL_BlitSurface(sdl.s.s, &sdl.s.r, sdl.d.s, &sdl.d.r); SDL_SetAlpha(sdl.s.s, 0, 0); } /* fill surface with color c */ void fill_surf(int c) { SDL_FillRect(sdl.d.s, &sdl.d.r, SDL_MapRGB(sdl.d.s->format, c >> 16, (c >> 8) & 0xFF, c & 0xFF)); } /* set clipping rect */ void set_surf_clip( SDL_Surface *surf, int x, int y, int w, int h ) { #ifdef SDL_1_1_5 SDL_Rect rect = { x, y, w, h }; if ( w == h || h == 0 ) SDL_SetClipRect( surf, 0 ); else SDL_SetClipRect( surf, &rect ); #else SDL_SetClipping( surf, x, y, w, h ); #endif } /* set pixel */ Uint32 set_pixel( SDL_Surface *surf, int x, int y, int pixel ) { int pos = 0; pos = y * surf->pitch + x * surf->format->BytesPerPixel; memcpy( surf->pixels + pos, &pixel, surf->format->BytesPerPixel ); return pixel; } /* get pixel */ Uint32 get_pixel( SDL_Surface *surf, int x, int y ) { int pos = 0; Uint32 pixel = 0; pos = y * surf->pitch + x * surf->format->BytesPerPixel; memcpy( &pixel, surf->pixels + pos, surf->format->BytesPerPixel ); return pixel; } /* draw a shadowed frame and darken contents which starts at cx,cy */ void draw_3dframe( SDL_Surface *surf, int cx, int cy, int w, int h, int border ) { int i, j; SDL_Surface *frame = 0; SDL_Surface *contents = 0; frame = create_surf( w + border * 2, h + border * 2, SDL_SWSURFACE ); SDL_SetColorKey( frame, SDL_SRCCOLORKEY, SDL_MapRGB( surf->format, 0xff, 0, 0 ) ); FULL_DEST( frame ); fill_surf ( 0xff0000 ); /* move contents by border size -1 */ DEST( surf, cx, cy, w, h ); SOURCE( surf, cx - border + 1, cy - border + 1 ); blit_surf(); /* shadow part */ FULL_DEST( frame ); fill_surf ( 0xff0000 ); DEST( frame, 0, 0, w + border, border ); fill_surf( 0x0 ); DEST( frame, 0, 0, border, h + border ); fill_surf( 0x0 ); for ( i = 0; i < border; i++ ) { for ( j = 0; j < border; j++ ) { if ( i < j ) set_pixel( frame, border + w + i, border - j - 1, SDL_MapRGB( frame->format, 0,0,0 ) ); } } for ( i = 0; i < border; i++ ) { for ( j = 0; j < border; j++ ) { if ( i > j ) set_pixel( frame, border - i - 1, border + h + j, SDL_MapRGB( frame->format, 0,0,0 ) ); } } DEST( surf, cx - border, cy - border, w + border * 2, h + border * 2 ); SOURCE( frame, 0, 0 ); alpha_blit_surf( 48 ); /* bright part */ FULL_DEST( frame ); fill_surf ( 0xff0000 ); DEST( frame, w + border, border, border, h + border ); fill_surf( 0xffffff ); DEST( frame, border, h + border, w + border, border ); fill_surf( 0xffffff ); for ( i = 0; i < border; i++ ) { for ( j = 0; j < border; j++ ) { if ( i >= j ) set_pixel( frame, border + w + i, border - j - 1, SDL_MapRGB( frame->format, 0xff,0xff,0xff ) ); } } for ( i = 0; i < border; i++ ) { for ( j = 0; j < border; j++ ) { if ( i <= j ) set_pixel( frame, border - i - 1, border + h + j, SDL_MapRGB( frame->format, 0xff,0xff,0xff ) ); } } DEST( surf, cx - border, cy - border, w + border * 2, h + border * 2 ); SOURCE( frame, 0, 0 ); alpha_blit_surf( 128 ); /* darken contents */ contents = create_surf( w, h, SDL_SWSURFACE ); SDL_SetColorKey( contents, 0, 0 ); FULL_DEST( contents ); fill_surf( 0x0 ); DEST( surf, cx, cy, w, h ); SOURCE( contents, 0, 0 ); alpha_blit_surf( 96 ); SDL_FreeSurface( contents ); SDL_FreeSurface( frame ); } /* sdl font */ /* return full font path */ void get_full_font_path( char *path, char *file_name ) { strcpy( path, file_name ); /* sprintf(path, "./gfx/fonts/%s", file_name ); */ } /* load a font using the width values in the file */ Font* load_font(char *fname) { Font *fnt = 0; FILE *file = 0; char path[512]; int i; get_full_font_path( path, fname ); fnt = malloc(sizeof(Font)); if (fnt == 0) { fprintf(stderr, "load_font: not enough memory\n"); exit(1); } if ((fnt->pic = load_surf(path, SDL_HWSURFACE)) == 0) exit(1); /* use very first pixel as transparency key */ SDL_SetColorKey( fnt->pic, SDL_SRCCOLORKEY, get_pixel( fnt->pic, 0, 0 ) ); fnt->align = ALIGN_X_LEFT | ALIGN_Y_TOP; fnt->color = 0x00FFFFFF; fnt->height = fnt->pic->h; /* table */ file = fopen(path, "r"); fseek(file, -1, SEEK_END); fread(&fnt->offset, 1, 1, file); #ifdef SDL_DEBUG printf("offset: %i\n", fnt->offset); #endif fseek(file, -2, SEEK_END); fread(&fnt->length, 1, 1, file); #ifdef SDL_DEBUG printf("number: %i\n", fnt->length); #endif fseek(file, -2 - fnt->length, SEEK_END); fread(fnt->char_width, 1, fnt->length, file); #ifdef SDL_DEBUG printf("letter width: %i\n", fnt->length); for (i = 0; i < fnt->length; i++) printf("%i ", fnt->char_width[i]); printf("\n"); #endif fclose(file); /* letter offsets */ fnt->char_offset[0] = 0; for (i = 1; i < fnt->length; i++) fnt->char_offset[i] = fnt->char_offset[i - 1] + fnt->char_width[i - 1]; /* allowed keys */ memset(fnt->keys, 0, sizeof(fnt->keys)); for (i = 0; i < fnt->length; i++) { fnt->keys[i + fnt->offset] = 1; } fnt->last_x = fnt->last_y = fnt->last_width = fnt->last_height = 0; return fnt; } /* load a font with fixed size */ Font *load_fixed_font(char *f, int off, int len, int w) { int i; Font *fnt; char path[512]; get_full_font_path( path, f ); fnt = malloc(sizeof(Font)); if (fnt == 0) { fprintf(stderr, "load_fixed_font: not enough memory\n"); exit(1); } if ((fnt->pic = load_surf(path, SDL_HWSURFACE)) == 0) exit(1); /* use very first pixel as transparency key */ SDL_SetColorKey( fnt->pic, SDL_SRCCOLORKEY, get_pixel( fnt->pic, 0, 0 ) ); fnt->align = ALIGN_X_LEFT | ALIGN_Y_TOP; fnt->color = 0x00FFFFFF; fnt->height = fnt->pic->h; fnt->offset = off; fnt->length = len; for (i = 0; i < len; i++) fnt->char_width[i] = w; /* letter offsets */ fnt->char_offset[0] = 0; for (i = 1; i < fnt->length; i++) fnt->char_offset[i] = fnt->char_offset[i - 1] + w; /* allowed keys*/ memset(fnt->keys, 0, sizeof(fnt->keys)); for (i = 0; i < fnt->length; i++) { fnt->keys[i + fnt->offset] = 1; } fnt->last_x = fnt->last_y = fnt->last_width = fnt->last_height = 0; return fnt; } /* free memory */ void free_font(Font **fnt) { if ( (*fnt)->pic) SDL_FreeSurface( (*fnt)->pic); free( *fnt ); *fnt = 0; } /* write something with transparency */ int write_text(Font *fnt, SDL_Surface *dest, int x, int y, char *str, int alpha) { int c_abs; int len = strlen(str); int pix_len = 0; int px = x, py = y; int i; SDL_Surface *spf = SDL_GetVideoSurface(); pix_len = text_width(fnt, str); for (i = 0; i < len; i++) if (!fnt->keys[(int)str[i]]) str[i] = ' '; /* alignment */ if (fnt->align & ALIGN_X_CENTER) px -= pix_len >> 1; else if (fnt->align & ALIGN_X_RIGHT) px -= pix_len; if (fnt->align & ALIGN_Y_CENTER) py -= (fnt->height >> 1 ) + 1; else if (fnt->align & ALIGN_Y_BOTTOM) py -= fnt->height; /* do only set last rect if font->save_last is true */ if ( fnt->save_last ) { fnt->last_x = px; if (fnt->last_x < 0) fnt->last_x = 0; fnt->last_y = py; if (fnt->last_y < 0) fnt->last_y = 0; fnt->last_width = pix_len; if (fnt->last_x + fnt->last_width >= spf->w) fnt->last_width = spf->w - fnt->last_x; fnt->last_height = fnt->height; if (fnt->last_y + fnt->last_height >= spf->h) fnt->last_height = spf->h - fnt->last_y; } if (alpha != 0) SDL_SetAlpha(fnt->pic, SDL_SRCALPHA, alpha); else SDL_SetAlpha(fnt->pic, 0, 0); for (i = 0; i < len; i++) { c_abs = str[i] - fnt->offset; DEST(dest, px, py, fnt->char_width[c_abs], fnt->height); SOURCE(fnt->pic, fnt->char_offset[c_abs], 0); blit_surf(); px += fnt->char_width[c_abs]; } return 0; } /* lock font surface */ inline void lock_font(Font *fnt) { if (SDL_MUSTLOCK(fnt->pic)) SDL_LockSurface(fnt->pic); } /* unlock font surface */ inline void unlock_font(Font *fnt) { if (SDL_MUSTLOCK(fnt->pic)) SDL_UnlockSurface(fnt->pic); } /* return last update region */ SDL_Rect last_write_rect(Font *fnt) { SDL_Rect rect={fnt->last_x, fnt->last_y, fnt->last_width, fnt->last_height}; return rect; } /* return the text width in pixels */ int text_width(Font *fnt, char *str) { unsigned int i; int pix_len = 0; for (i = 0; i < strlen(str); i++) pix_len += fnt->char_width[str[i] - fnt->offset]; return pix_len; } /* sdl */ /* initialize sdl */ void init_sdl( int f ) { int i; int valid_depth = 0; /* check flags: if SOUND is not enabled flag SDL_INIT_AUDIO musn't be set */ #ifndef WITH_SOUND if ( f & SDL_INIT_AUDIO ) f = f & ~SDL_INIT_AUDIO; #endif sdl.screen = 0; if (SDL_Init(f) < 0) { fprintf(stderr, "ERR: sdl_init: %s\n", SDL_GetError()); exit(1); } SDL_EnableUNICODE(1); atexit(SDL_Quit); /* check resolutions */ for ( i = 0; i < mode_count; i++ ) { if ( ( valid_depth = SDL_VideoModeOK( modes[i].width, modes[i].height, modes[i].depth, modes[i].flags ) ) != 0 ) { modes[i].depth = valid_depth; modes[i].ok = 1; printf( "Mode %s valid\n", modes[i].name ); } } /* reset default video mode if none found exit */ if ( !def_mode->ok ) { for ( i = 0; i < mode_count; i++ ) if ( modes[i].ok ) { def_mode = &modes[i]; break; } /* no valid default mode found? exit */ if ( i == mode_count ) { fprintf( stderr, "No valid video mode found!\n" ); exit( 1 ); } } /* create empty cursor */ empty_cursor = create_cursor( 16, 16, 8, 8, " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " " ); std_cursor = SDL_GetCursor(); } /* free screen */ void quit_sdl() { if (sdl.screen) SDL_FreeSurface(sdl.screen); if ( empty_cursor ) SDL_FreeCursor( empty_cursor ); } /* ==================================================================== Get a verified video mode. ==================================================================== */ Video_Mode def_video_mode() { return *def_mode; } Video_Mode std_video_mode( int id ) { return modes[id]; } Video_Mode video_mode( int width, int height, int depth, int flags ) { Video_Mode mode; /* set name */ sprintf( mode.name, "%ix%ix%i", width, height, depth ); if ( flags & SDL_FULLSCREEN ) strcat( mode.name, " Fullscreen" ); else strcat( mode.name, " Window" ); /* check mode */ if ( SDL_VideoModeOK( width, height, depth, flags ) != depth ) { fprintf( stderr, "video_mode: %s invalid: using default mode\n", mode.name ); return def_video_mode(); } /* set and return this mode */ mode.id = -1; mode.width = width; mode.height = height; mode.depth = depth; mode.flags = flags; return mode; } /* ==================================================================== Current video mode. ==================================================================== */ Video_Mode* cur_video_mode() { return &cur_mode; } /* ==================================================================== Get a list with all valid standard mode names. ==================================================================== */ char** get_mode_names( int *count ) { char **lines; int i, j; *count = 0; for ( i = 0; i < mode_count; i++ ) if ( modes[i].ok ) (*count)++; lines = calloc( *count, sizeof( char* ) ); for ( i = 0, j = 0; i < mode_count; i++ ) if ( modes[i].ok ) lines[j++] = strdup( modes[i].name ); return lines; } /* ==================================================================== Switch to passed video mode. ==================================================================== */ int set_video_mode( Video_Mode mode ) { #ifdef SDL_DEBUG SDL_PixelFormat *fmt; #endif /* free old screen */ if (sdl.screen) SDL_FreeSurface( sdl.screen ); /* check again */ mode = video_mode( mode.width, mode.height, mode.depth, mode.flags ); /* set as current mode */ cur_mode = mode; /* set video mode */ if ( ( sdl.screen = SDL_SetVideoMode( mode.width, mode.height, mode.depth, mode.flags ) ) == 0 ) { fprintf(stderr, "set_video_mode: cannot allocate screen: %s\n", SDL_GetError()); return 1; } #ifdef SDL_DEBUG if (f & SDL_HWSURFACE && !(sdl.screen->flags & SDL_HWSURFACE)) fprintf(stderr, "unable to create screen in hardware memory...\n"); if (f & SDL_DOUBLEBUF && !(sdl.screen->flags & SDL_DOUBLEBUF)) fprintf(stderr, "unable to create double buffered screen...\n"); if (f & SDL_FULLSCREEN && !(sdl.screen->flags & SDL_FULLSCREEN)) fprintf(stderr, "unable to switch to fullscreen...\n"); fmt = sdl.screen->format; printf("video mode format:\n"); printf("Masks: R=%i, G=%i, B=%i\n", fmt->Rmask, fmt->Gmask, fmt->Bmask); printf("LShft: R=%i, G=%i, B=%i\n", fmt->Rshift, fmt->Gshift, fmt->Bshift); printf("RShft: R=%i, G=%i, B=%i\n", fmt->Rloss, fmt->Gloss, fmt->Bloss); printf("BBP: %i\n", fmt->BitsPerPixel); printf("-----\n"); #endif return 0; } /* show hardware capabilities */ void hardware_cap() { const SDL_VideoInfo *vi = SDL_GetVideoInfo(); char *ny[2] = {"No", "Yes"}; printf("video hardware capabilities:\n"); printf("Hardware Surfaces: %s\n", ny[vi->hw_available]); printf("HW_Blit (CC, A): %s (%s, %s)\n", ny[vi->blit_hw], ny[vi->blit_hw_CC], ny[vi->blit_hw_A]); printf("SW_Blit (CC, A): %s (%s, %s)\n", ny[vi->blit_sw], ny[vi->blit_sw_CC], ny[vi->blit_sw_A]); printf("HW_Fill: %s\n", ny[vi->blit_fill]); printf("Video Memory: %i\n", vi->video_mem); printf("------\n"); } /* update rectangle (0,0,0,0)->fullscreen */ inline void refresh_screen(int x, int y, int w, int h) { SDL_UpdateRect(sdl.screen, x, y, w, h); } /* draw all update regions */ void refresh_rects() { if (sdl.rect_count == RECT_LIMIT) SDL_UpdateRect(sdl.screen, 0, 0, sdl.screen->w, sdl.screen->h); else SDL_UpdateRects(sdl.screen, sdl.rect_count, sdl.rect); sdl.rect_count = 0; } /* add update region */ void add_refresh_rect(int x, int y, int w, int h) { if (sdl.rect_count == RECT_LIMIT) return; if (x < 0) { w += x; x = 0; } if (y < 0) { h += y; y = 0; } if (x + w > sdl.screen->w) w = sdl.screen->w - x; if (y + h > sdl.screen->h) h = sdl.screen->h - y; if (w <= 0 || h <= 0) return; sdl.rect[sdl.rect_count].x = x; sdl.rect[sdl.rect_count].y = y; sdl.rect[sdl.rect_count].w = w; sdl.rect[sdl.rect_count].h = h; sdl.rect_count++; } /* fade screen to black */ void dim_screen(int steps, int delay, int trp) { #ifndef NODIM SDL_Surface *buffer; int per_step = trp / steps; int i; if (term_game) return; buffer = create_surf(sdl.screen->w, sdl.screen->h, SDL_SWSURFACE); SDL_SetColorKey(buffer, 0, 0); FULL_DEST(buffer); FULL_SOURCE(sdl.screen); blit_surf(); for (i = 0; i <= trp; i += per_step) { FULL_DEST(sdl.screen); fill_surf(0x0); FULL_SOURCE(buffer); alpha_blit_surf(i); refresh_screen( 0, 0, 0, 0); SDL_Delay(delay); } if (trp == 255) { FULL_DEST(sdl.screen); fill_surf(0x0); refresh_screen( 0, 0, 0, 0); } SDL_FreeSurface(buffer); #else refresh_screen( 0, 0, 0, 0); #endif } /* undim screen */ void undim_screen(int steps, int delay, int trp) { #ifndef NODIM SDL_Surface *buffer; int per_step = trp / steps; int i; if (term_game) return; buffer = create_surf(sdl.screen->w, sdl.screen->h, SDL_SWSURFACE); SDL_SetColorKey(buffer, 0, 0); FULL_DEST(buffer); FULL_SOURCE(sdl.screen); blit_surf(); for (i = trp; i >= 0; i -= per_step) { FULL_DEST(sdl.screen); fill_surf(0x0); FULL_SOURCE(buffer); alpha_blit_surf(i); refresh_screen( 0, 0, 0, 0); SDL_Delay(delay); } FULL_DEST(sdl.screen); FULL_SOURCE(buffer); blit_surf(); refresh_screen( 0, 0, 0, 0); SDL_FreeSurface(buffer); #else refresh_screen( 0, 0, 0, 0); #endif } /* wait for a key */ int wait_for_key() { /* wait for key */ SDL_Event event; while (1) { SDL_WaitEvent(&event); if (event.type == SDL_QUIT) { term_game = 1; return 0; } if (event.type == SDL_KEYDOWN) return event.key.keysym.sym; } } /* wait for a key or mouse click */ void wait_for_click() { /* wait for key or button */ SDL_Event event; while (1) { SDL_WaitEvent(&event); if (event.type == SDL_QUIT) { term_game = 1; return; } if (event.type == SDL_KEYDOWN || event.type == SDL_MOUSEBUTTONUP) return; } } /* lock surface */ inline void lock_screen() { if (SDL_MUSTLOCK(sdl.screen)) SDL_LockSurface(sdl.screen); } /* unlock surface */ inline void unlock_screen() { if (SDL_MUSTLOCK(sdl.screen)) SDL_UnlockSurface(sdl.screen); } /* flip hardware screens (double buffer) */ inline void flip_screen() { SDL_Flip(sdl.screen); } /* cursor */ /* creates cursor */ SDL_Cursor* create_cursor( int width, int height, int hot_x, int hot_y, char *source ) { unsigned char *mask = 0, *data = 0; SDL_Cursor *cursor = 0; int i, j, k; unsigned char data_byte, mask_byte; int pot; /* meaning of char from source: b : black, w: white, ' ':transparent */ /* create mask&data */ mask = malloc( width * height * sizeof ( char ) / 8 ); data = malloc( width * height * sizeof ( char ) / 8 ); k = 0; for (j = 0; j < width * height; j += 8, k++) { pot = 1; data_byte = mask_byte = 0; /* create byte */ for (i = 7; i >= 0; i--) { switch ( source[j + i] ) { case 'b': data_byte += pot; case 'w': mask_byte += pot; break; } pot *= 2; } /* add to mask */ data[k] = data_byte; mask[k] = mask_byte; } /* create and return cursor */ cursor = SDL_CreateCursor( data, mask, width, height, hot_x, hot_y ); free( mask ); free( data ); return cursor; } /* get milliseconds since last call */ inline int get_time() { int ms; cur_time = SDL_GetTicks(); ms = cur_time - last_time; last_time = cur_time; if (ms == 0) { ms = 1; SDL_Delay(1); } return ms; } /* reset timer */ inline void reset_timer() { last_time = SDL_GetTicks(); } void fade_screen( int type, int length ) { SDL_Surface *buffer = 0; float alpha; float alpha_change; /* per ms */ int leave = 0; int ms; if ( !sdl.fade ) { if ( type == FADE_IN ) refresh_screen( 0, 0, 0, 0 ); else { FULL_DEST( sdl.screen ); fill_surf( 0x0 ); refresh_screen( 0, 0, 0, 0 ); } } /* get screen contents */ buffer = create_surf( sdl.screen->w, sdl.screen->h, SDL_SWSURFACE ); SDL_SetColorKey( buffer, 0, 0 ); FULL_DEST( buffer ); FULL_SOURCE( sdl.screen ); blit_surf(); /* compute alpha and alpha change */ if ( type == FADE_OUT ) { alpha = 0; alpha_change = 255.0 / length; } else { alpha = 255; alpha_change = -255.0 / length; } /* fade */ reset_timer(); while ( !leave ) { ms = get_time(); alpha += alpha_change * ms; if ( type == FADE_OUT && alpha >= 255 ) break; if ( type == FADE_IN && alpha <= 0 ) break; /* update */ FULL_DEST( sdl.screen ); fill_surf(0x0); FULL_SOURCE( buffer ); alpha_blit_surf( (int)alpha ); refresh_screen( 0, 0, 0, 0); } /* update screen */ FULL_DEST( sdl.screen ); FULL_SOURCE( buffer ); if ( type == FADE_IN ) blit_surf(); else fill_surf( 0x0 ); refresh_screen( 0, 0, 0, 0 ); SDL_FreeSurface(buffer); } void take_screenshot( int i ) { char str[32]; sprintf( str, "screenshot%i.bmp", i ); SDL_SaveBMP( sdl.screen, str ); } ltris-1.0.19/src/empty.hscr0000664000175000017500000000033712140770047012475 00000000000000>>>classic ............ 10 100000 ............ 9 90000 ............ 8 80000 ............ 7 70000 ............ 6 60000 ............ 5 50000 ............ 4 40000 ............ 3 30000 ............ 2 20000 ............ 1 10000 ltris-1.0.19/src/bowl.h0000664000175000017500000001642312140770047011575 00000000000000/*************************************************************************** bowl.h - description ------------------- begin : Tue Dec 25 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef __BOWL_H #define __BOWL_H #include "ltris.h" enum { KEY_NONE = -1, KEY_LEFT, KEY_RIGHT, KEY_ROT_LEFT, KEY_ROT_RIGHT, KEY_DOWN, KEY_DROP }; typedef struct { float cur_x, cur_y; /* float position IN bowl */ int check_y; /* block y IN BOWL that is used to check insertion/validate position/etc */ int sx, sy; /* screen position */ int sw, sh; /* tile size in pixels */ int x, y; /* map position */ int id; /* picture&structure id */ int rot_id; /* 0 - 3 rotation positions */ } Block; typedef struct { int mute; /* if mute no sounds are played */ int blind; /* if this is true all graphical stuff called in a function not ending with hide/show is disabled. */ Font *font; int sx, sy; /* screen position of very first block tile */ int sw, sh; /* screen size */ int w, h; /* measurements in blocks */ int block_size; /* blocksize in pixels */ Controls *controls; /* reacts to these controls */ int stored_key; /* key that was stored this programme cycle */ SDL_Surface *blocks; /* pointer to the block graphics */ SDL_Surface *unknown_preview; /* if preview's unknown this is displaye */ char name[32]; /* player's name playing at this bowl */ Counter score; /* score gained by this player */ int level; /* level to which player has played */ int lines; int use_figures; /* draw a figure each new level? */ int add_lines, add_tiles; /* add lines or tiles after time out? */ int add_line_holes; /* number of holes in added line */ int dismantle_saves; /* if a line was removed the delay is reset */ Delay add_delay; /* delay until next add action */ int contents[BOWL_WIDTH][BOWL_HEIGHT]; /* indices of blocks or -1 */ int pixel_contents[BOWL_WIDTH][BOWL_HEIGHT * BOWL_BLOCK_SIZE]; /* width is always discret but vertical movement smooth needs all pixels of a row for a fast check */ Block block;/* current block */ Delay block_hori_delay; /* horizontal movement delay */ int next_block_id; /* id of next block */ int use_same_blocks; /* use global block list? */ int next_blocks_pos; /* position in tetris next_blocks for mulitplayer games */ float block_vert_vel, block_hori_vel; /* velocity per ms */ float block_drop_vel; int score_sx, score_sy, score_sw, score_sh; /* region with score and lines/level */ int game_over; /* set if bowl is filled */ int hide_block; /* block ain't updated */ int paused; int draw_contents; /* set if bowl needs a full redraw next bowl_show() */ int help_sx, help_sy, help_sw, help_sh; /* position of helping shadow */ float help_alpha; float help_alpha_change; int preview_center_sx, preview_center_sy; /* preview is centered here if preview_center_x != -1 */ int preview_sx, preview_sy; /* actuall preview is drawn here */ float preview_alpha; float preview_alpha_change; int cpu_dest_x; /* move block to this position (computed in bowl_select_next_block() */ int cpu_dest_rot; /* destination rotation */ int cpu_dest_score; /* AI score */ Delay cpu_delay; /* CPU delay before moving down fast */ Delay cpu_rot_delay; /* rotation delay of CPU */ int cpu_down; /* move down fast? flag is set when delay expires */ #ifdef SOUND Sound_Chunk *wav_leftright; Sound_Chunk *wav_explosion; Sound_Chunk *wav_stop; Sound_Chunk *wav_nextlevel; Sound_Chunk *wav_excellent; #endif } Bowl; /* ==================================================================== Load level figures from file. ==================================================================== */ void bowl_load_figures(); /* ==================================================================== Initate block masks. ==================================================================== */ void bowl_init_block_masks() ; /* ==================================================================== Create a bowl at screen position x,y. Measurements are the same for all bowls. Controls are the player's controls defined in config.c. ==================================================================== */ Bowl *bowl_create( int x, int y, int preview_x, int preview_y, SDL_Surface *blocks, SDL_Surface *unknown_preview, char *name, Controls *controls ); void bowl_delete( Bowl *bowl ); /* ==================================================================== Check if key belongs to this bowl and store the value for use in bowl_update(). ==================================================================== */ void bowl_store_key( Bowl *bowl, int keysym ); /* ==================================================================== Finish game and set game over. ==================================================================== */ void bowl_finish_game( Bowl *bowl ); /* ==================================================================== Hide/show/update all animations handled by a bowl. If game_over only score is updated in bowl_update(). ==================================================================== */ void bowl_hide( Bowl *bowl ); void bowl_show( Bowl *bowl ); void bowl_update( Bowl *bowl, int ms, int game_over ); /* ==================================================================== Draw a single bowl tile. ==================================================================== */ void bowl_draw_tile( Bowl *bowl, int i, int j ); /* ==================================================================== Draw bowl contents to offscreen and screen. ==================================================================== */ void bowl_draw_contents( Bowl *bowl ); /* ==================================================================== Draw frames and fix text to bkgnd. ==================================================================== */ void bowl_draw_frames( Bowl *bowl ); /* ==================================================================== Toggle pause of bowl. ==================================================================== */ void bowl_toggle_pause( Bowl *bowl ); /* ==================================================================== Play an optimized mute game. (used for stats) ==================================================================== */ void bowl_quick_game( Bowl *bowl, int aggr ); #endif ltris-1.0.19/src/tools.c0000664000175000017500000002452412140770047011766 00000000000000/*************************************************************************** tools.c - description ------------------- begin : Fri Jan 19 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include #include #include #include #include "tools.h" #include "ltris.h" /* compares to strings and returns true if their first strlen(str1) chars are equal */ inline int strequal( char *str1, char *str2 ) { if ( strlen( str1 ) != strlen( str2 ) ) return 0; return ( !strncmp( str1, str2, strlen( str1 ) ) ); } /* set delay to ms milliseconds */ inline void delay_set( Delay *delay, int ms ) { delay->limit = ms; delay->cur = 0; } /* reset delay ( cur = 0 )*/ inline void delay_reset( Delay *delay ) { delay->cur = 0; } /* check if times out and reset */ inline int delay_timed_out( Delay *delay, int ms ) { delay->cur += ms; if ( delay->cur >= delay->limit ) { delay->cur = 0; return 1; } return 0; } /* set timer so that we have a time out next call of delay_timed_out() */ inline void delay_force_time_out( Delay *delay ) { delay->cur = delay->limit; } inline void goto_tile( int *x, int *y, int d ) { /* 0 -up, clockwise, 5 - left up */ switch ( d ) { case 1: if ( !( (*x) & 1 ) ) (*y)--; (*x)++; break; case 2: if ( (*x) & 1 ) (*y)++; (*x)++; break; case 4: if ( (*x) & 1 ) (*y)++; (*x)--; break; case 5: if ( !( (*x) & 1 ) ) (*y)--; (*x)--; break; } } /* return distance between to map positions */ int get_dist( int x1, int y1, int x2, int y2 ) { int range = 0; while ( x1 != x2 || y1 != y2 ) { /* approach to x2,y2 */ /* 0 -up, clockwise, 5 - left up */ if ( y1 < y2 ) { if ( x1 < x2 ) goto_tile( &x1, &y1, 2 ); else if ( x1 > x2 ) goto_tile( &x1, &y1, 4 ); else y1++; } else if ( y1 > y2 ) { if ( x1 < x2 ) goto_tile( &x1, &y1, 1 ); else if ( x1 > x2 ) goto_tile( &x1, &y1, 5 ); else y1--; } else { if ( x1 < x2 ) x1++; else if ( x1 > x2 ) x1--; } range++; } return range; } /* init random seed by using ftime */ void set_random_seed() { srand( (unsigned int)time( 0 ) ); } /* get coordinates from string */ void get_coord( char *str, int *x, int *y ) { int i; char *cur_arg = 0; *x = *y = 0; /* get position of comma */ for ( i = 0; i < strlen( str ); i++ ) if ( str[i] == ',' ) break; if ( i == strlen( str ) ) { fprintf( stderr, "get_coord: no comma found in pair of coordinates '%s'\n", str ); return; /* no comma found */ } /* y */ cur_arg = str + i + 1; if ( cur_arg[0] == 0 ) fprintf( stderr, "get_coord: warning: y-coordinate is empty (maybe you left a space between x and comma?)\n" ); *y = atoi( cur_arg ); /* x */ cur_arg = strdup( str ); cur_arg[i] = 0; *x = atoi( cur_arg ); FREE( cur_arg ); } /* replace new_lines with spaces in text */ void repl_new_lines( char *text ) { int i; for ( i = 0; i < strlen( text ); i++ ) if ( text[i] < 32 ) text[i] = 32; } // convert a str into text ( for listbox ) // // char width is the width of a line in characters // Text* create_text( char *orig_str, int char_width ) { int i, j; char line[256]; /* a line should not exceed this length */ int pos; int last_space; int new_line; Text *text = 0; char *str = 0; text = calloc ( 1, sizeof( Text ) ); // maybe orig_str is a constant expression; duplicate for safety // str = strdup( orig_str ); // replace original new_lines with spaces // repl_new_lines( str ); /* change some spaces to new_lines, so that the new text fits the wanted line_length */ /* NOTE: '#' means new_line ! */ // if character with is 0 it's just a single line // if ( char_width > 0 ) { pos = 0; while ( pos < strlen( str ) ) { last_space = 0; new_line = 0; i = 0; while ( !new_line && i < char_width && i + pos < strlen( str ) ) { switch ( str[pos + i] ) { case '#': new_line = 1; case 32: last_space = i; break; } i++; } if ( i + pos >= strlen( str ) ) break; if ( last_space == 0 ) { /* uhh... much to long, we'll have to cut a word into pieces ... */ last_space = char_width / 2; } str[pos + last_space] = 10; pos += last_space; } } /* count lines */ if ( char_width > 0 ) { for ( i = 0; i < strlen( str ); i++ ) if ( str[i] == 10 ) text->count++; /* maybe one unfinished line */ if ( str[strlen( str ) - 1] != 10 ) text->count++; } else text->count = 1; /* get mem */ text->lines = calloc( text->count, sizeof( char* ) ); pos = 0; /* get all lines */ for ( j = 0; j < text->count; j++ ) { i = 0; while ( pos + i < strlen( str ) && str[pos + i] != 10 ) { line[i] = str[i + pos]; i++; } pos += i; pos++; line[i] = 0; text->lines[j] = strdup( line ); } if ( text->count == 0 ) fprintf( stderr, "conv_to_text: warning: line_count is 0\n" ); free( str ); return text; } // delete text // void delete_text( Text *text ) { int i; if ( text == 0 ) return; /* if ( lines[1][1] == 'e' && lines[1][0] == '<' ) printf( "hallo\n" ); printf( "--- deleting:\n" ); for ( i = 0; i < line_count; i++ ) { printf( lines[i] ); printf( "\n" ); }*/ if ( text->lines ) { for ( i = 0; i < text->count; i++ ) if ( text->lines[i] ) free( text->lines[i] ); free( text->lines ); } free( text ); } /* ==================================================================== Get type and prefix from string: type::prefix Set both pointers 0 if failure. ==================================================================== */ void get_type_and_prefix( char *arg, char **type, char **prefix ) { char *first, *second; *type = *prefix = 0; first = strtok( arg, ":" ); second = strtok( 0, ":" ); if ( first == 0 || second == 0 ) return; *type = strdup( first ); *prefix = strdup( second ); } /* ==================================================================== Replace any existence of character old into new. ==================================================================== */ void strrepl( char **str, char c_old, char c_new ) { char *pos; while ( ( pos = strchr( *str, c_old ) ) != 0 ) pos[0] = c_new; } /* ==================================================================== Counter with a current float value and a target value. Approaches the target value until reached when counter_update() is called. ==================================================================== */ inline void counter_set( Counter *counter, double value ) { counter->value = value; counter->approach = value; } inline void counter_add( Counter *counter, double add ) { counter->value += add; } inline double counter_get_approach( Counter counter ) { return counter.approach; } inline double counter_get( Counter counter ) { return counter.value; } inline void counter_update( Counter *counter, int ms ) { double change; if ( counter->approach == counter->value ) return; /* change relative as for big scores we must count faster */ change = ( counter->value - counter->approach ) / 2000; if ( change > 0 && change < 0.6 ) change = 0.6; if ( change < 0 && change > -0.6 ) change = -0.6; counter->approach += change * ms; if ( change > 0 && counter->approach > counter->value ) counter->approach= counter->value; if ( change < 0 && counter->approach < counter->value ) counter->approach = counter->value; } /* fill part of an array with random values */ void fill_int_array_rand( int *array, int start, int count, int low, int high ) { int i; for ( i = 0; i < count; i++ ) { array[start+i] = (rand() % (high-low+1)) + low; if ( i > 0 && array[start+i-1] == array[start+i] ) array[start+i] = (rand() % (high-low+1)) + low; } } /** Fill integer array @bag sequentially with @bag_count bags of tetrominoes. * Each bag contains all tetrominoes (BLOCK_COUNT = 7) randomly permuted. */ void fill_random_block_bags( int *bag, int bag_count ) { int i, k, l; DPRINTF("Filling %d bags of 7 tetrominoes each\n", bag_count); for( k = 0; k < bag_count; ++k) { for (i = 0; i < BLOCK_COUNT; i++ ) bag[i] = i; for (l = 0; l < 3; l++) for(i = 0; i < BLOCK_COUNT; i++) { int j = RANDOM(0, BLOCK_COUNT-1); int t = bag[i]; bag[i] = bag[j]; bag[j] = t; } DPRINTF(" Bag %d: %d, %d, %d, %d, %d, %d, %d\n", k, bag[0], bag[1], bag[2], bag[3], bag[4], bag[5], bag[6]); bag += BLOCK_COUNT; } } ltris-1.0.19/src/menu.h0000664000175000017500000000741012140770047011572 00000000000000/*************************************************************************** menu.h - description ------------------- begin : Thu Sep 20 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef __MENU_H #define __MENU_H /* ==================================================================== Menu ==================================================================== */ enum { MENU_LAYOUT_CENTERED = 0 }; typedef struct _Menu { char *name; /* name of menu -- duplicated */ int layout; int x, y, w, h; /* layout */ List *items; /* list of menu items */ Item *cur_item; /* currently highlighted item */ struct _Menu *parent; /* parent menu */ } Menu; /* ==================================================================== Create menu and center it in x,y,w,h by menu_adjust() later. ==================================================================== */ Menu *menu_create( char *name, int layout, int x, int y, int w, int h, int border ); /* ==================================================================== Delete menu and all submenus starting with root menu ==================================================================== */ void menu_delete( void *menu ); /* ==================================================================== Add item to menu. Add item::menu to children list if ITEM_LINK. ==================================================================== */ void menu_add( Menu *menu, Item *item ); /* ==================================================================== Adjust position and size of all entries according to layout. ==================================================================== */ void menu_adjust( Menu *menu ); /* ==================================================================== Select menu: clear current item and set extern variable cur_menu ==================================================================== */ void menu_select( Menu *menu ); /* ==================================================================== Show/hide all items ==================================================================== */ void menu_hide( Menu *menu ); void menu_show( Menu *menu ); /* ==================================================================== Update alpha of items and modify items according to event (if any) ==================================================================== */ int menu_update( Menu *menu, SDL_Event *event, int ms ); /* ==================================================================== Select/unselect item: update menu::cur_item und item::highlight ==================================================================== */ void menu_unselect_cur_item( Menu *menu ); void menu_select_item( Menu *menu, Item *item ); /* ==================================================================== Go one valid menu item up or down. ==================================================================== */ void menu_up( Menu *menu ); void menu_down( Menu *menu ); #endif ltris-1.0.19/src/manager.c0000664000175000017500000007057012140770047012242 00000000000000/*************************************************************************** manager.c - description ------------------- begin : Thu Sep 20 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifdef HAVE_CONFIG_H #include "../config.h" #endif #include "ltris.h" #include "manager.h" #include "chart.h" #include "event.h" #include "hint.h" #ifdef _1 #include "levels.h" #endif extern Sdl sdl; extern Config config; extern List *menus; /* list of menus from menu.c */ int menu_x = 30, menu_y = 180, menu_w = 260, menu_h = 280, menu_border = 16; /* default region where menu is displayed centered */ int cx = 350, cy = 190, cw = 260, ch = 200; /* center charts here */ int vx = 350, vy = 420, vw = 260, vh = 30; /* version number of url */ Menu *cur_menu; /* current menu */ SDL_Surface *mbkgnd = 0; /* menu background */ Font *mfont = 0, *mhfont = 0, *mcfont = 0; /* font, highlight font, caption font */ int gap_height = 2; #ifdef _1 extern char **levelset_names; extern int levelset_count; extern char **levelset_home_names; extern int levelset_home_count; #endif extern int term_game; #ifdef SOUND Sound_Chunk *wav_menu_click = 0; Sound_Chunk *wav_menu_motion = 0; #endif /* some items we need to know to assign name lists later */ Item *item_levelset, *item_set; extern List *charts; int chart_id = 0; /* current chart displayed */ extern char gametype_names[8][64]; /* ==================================================================== Hint strings for the menu. ==================================================================== */ #define HINT_ 0 #define HINT_QHELP _("Enable/disable these quick hints.") #define HINT_CTRLS _("Set player controls and horizontal speed.") #define HINT_GFX _("Here you may customize the graphical appearance of LTris.") #define HINT_AUDIO _("Audio Settings.") #define HINT_QUIT _("Get back to nasty work.") #define HINT_NEWGAME _("Setup and run a cool game!") #define HINT_ANIM _("If animations disturb you you may turn them off.") #define HINT_DISPLAY _("You may play LTris either in window of fullscreen mode.") #define HINT_FPS _("If you don't want LTris to consume all of your CPU limit the frame rate.") #define HINT_SMOOTHHORI _("Horizontally move block either tile-by-tile or smooth. This is just eye-candy and doesn't effect the moving speed at all.") #define HINT_SMOOTHVERT _("Drop block tile-by-tile or smooth.##NOTE: While tile-by-tile allows you to move a block below a tile multiple times you'll only be able to do so one time when choosing 'smooth'!#See 'Advanced Options/Collision Check' to improve this.") #define HINT_HORIDEL _("The less delay you take the faster the block will horizontally move and the more sensitive the input is handled.") #define HINT_VERTDEL _("Delay for vertical movement when using Down key.") #define HINT_CONTROLS _("Left/Right: horizontal movement#Rotate Left/Right: block rotation#Down: faster Dropping#Drop: INSTANT drop") #define HINT_PAUSEKEY _("Key used to pause and unpause a game.") #define HINT_START _("Let's get it on!!!!") #define HINT_NAME _("Human player names. If you play against CPU it will be named as CPU-x.") #define HINT_STARTLEVEL _("This is your starting level which will be ignored for game 'Figures' (you'll always start at level 0 there).##Each starting level up adds you 1.5% score in the end!") #define HINT_PREVIEW _("Enable/Disable block preview.##If disabled you'll gain 15% score in the end!") #define HINT_HELP _("Shows guiding lines or a shadow of the currently dropping block so you see where it'll hit the ground.##This option has no penalty/bonus.") #define HINT_MPMENU _("Some multiplayer and CPU settings.") #define HINT_HOLES _("A line send to your opponent's bowl will have this number of holes in it. The more holes the harder it will be to remove this line so you should choose a low value (e.g. 1 or 2) for long multiplayer games.") #define HINT_RANDHOLES _("This option controls how the holes in the lines are created when more than one line is sent. If the option is on, the holes will appear randomly for each line. If the option is off, all the lines that are sent in one go, will have the holes in the same spot.") #define HINT_SENDALL _("You'll have to complete more than one line to send any lines to your opponent. If this option is enabled all lines will be send else one will be substracted.##If disabled:#3 Line send -> 2 lines received##If enabled:#3 lines send -> 3 lines received") #define HINT_SENDTETRIS _("If this option is enabled your opponent will receive all four lines of your tetris ignoring the 'Send All' setting.") #define HINT_CPUDROP _("This is the delay in milliseconds the CPU waits before dropping a block.") #define HINT_CPUAGGR _("The more aggressive the style is the more priority is put on completing multiple lines at the expense of a balanced bowl contents.") #define HINT_ADV _("Some advanced options.") #define HINT_CPUALG _("Test the CPU analyze algorithm in cpu.c and give an average score for a number of games.") #define HINT_VIS _("If you turn visualization off the results will be computed faster. If you turn them on you can see a general game behaviour and judge the algorithm by this behaviour.") #define HINT_GAME _("There are basically three different game types:##CLASSIC:#The classic tetris game. Starts with an empty bowl and goes "\ "as long as you make it.#FIGURES:#Each level a nice figure will be added to the ground of you bowl. From level "\ "7-12 there will be randomly appearing single tiles and from level 13-... there will be whole lines appearing at the "\ "bottom of your bowl. Fun!#TWO/THREE-PLAYER:#Either play against other humans or CPU. If you complete multiple lines they'll "\ "be send to your opponents according to the multiplayer settings you made.##"\ "And in DEMO you can see your CPU do the work. So relax! ;-)") #define HINT_BKGND _("If you turn this on the background will change every level else it's always the same.") #define HINT_KEYSTATE _("If you enable this option the keystate of either the 'Down' key or all the keys are cleared so you can't accidently move the next block.") #define HINT_CENTERPREVIEW _("If this is enabled the preview in Two-Player is centered in the middle of the screen instead that one is drawn at the bottom and one at the top.") #define HINT_COL_CHECK _("This option is only useful when 'Graphics/Drop' is 'Smooth'#"\ "(In opposite to 'Tile-By-Tile' the block is inserted as soon as it "\ "hits the ground giving no possibility to move the block below another "\ "one.)#If you set this option to 'Async' you may move the block below others but "\ "on the cost of slight graphical errors.") #define HINT_EXPERT _("In expert mode the most unsuitable piece of the "\ "current bag (a bag is a set of all 7 randomly sorted basic pieces) "\ "is dealt out next. This option only works for single player. "\ "There is a 50% score bonus in the end.") /* ==================================================================== Callbacks of menu items. ==================================================================== */ /* Disable/enable sound */ void cb_sound() { #ifdef SOUND sound_enable( config.sound ); #endif } /* set volume */ void cb_volume() { #ifdef SOUND sound_volume( config.volume * 16 ); #endif } /* toggle fullscreen */ void cb_fullscreen() { manager_show(); } #ifdef _1 /* delete set */ void cb_delete_set() { char fname[512]; /* do not delete file */ if ( strequal( _(""), levelset_home_names[config.levelset_home_id] ) ) { printf( _("You cannot delete '%s'!\n"), _("") ); return; } /* get file name + path */ snprintf( fname, sizeof(fname)-1, "%s/%s/levels/%s", getenv( "HOME" ), CONFIG_DIR_NAME, levelset_home_names[config.levelset_home_id] ); remove( fname ); levelsets_load_names(); /* reinit name lists and configs indices */ /* reassign these name lists as position in memory has changed */ value_set_new_names( item_levelset->value, levelset_names, levelset_count ); value_set_new_names( item_set->value, levelset_home_names, levelset_home_count ); } /* adjust set list */ void cb_adjust_set_list() { /* reinit name lists and configs indices */ levelsets_load_names(); /* reassign these name lists as position in memory has changed */ value_set_new_names( item_levelset->value, levelset_names, levelset_count ); value_set_new_names( item_set->value, levelset_home_names, levelset_home_count ); } /* set cpu difficulty stuff */ void cb_cpu_diff() { switch ( config.cpu_diff ) { case 0: config.cpu_delay = 3500; config.cpu_rot_delay = 100; break; case 1: config.cpu_delay = 2000; config.cpu_rot_delay = 100; break; case 2: config.cpu_delay = 1000; config.cpu_rot_delay = 100; break; case 3: config.cpu_delay = 500; config.cpu_rot_delay = 100; break; case 4: config.cpu_delay = 0; config.cpu_rot_delay = 100; break; case 5: config.cpu_delay = 0; config.cpu_rot_delay = 100; break; } } #endif /* if hints where disabled hide actual hint */ void cb_hints() { if ( !config.quick_help ) hint_set( 0 ); } /* ==================================================================== Load/delete background and create and link all menus ==================================================================== */ void manager_create() { Item *keys[3][6]; /* player control keys */ Item *pause_key; /* pause key */ Item *item; int filter[SDLK_LAST]; /* key filter */ /* constant contence of switches */ char *str_fps[] = { _("No Limit"), _("50 FPS"), _("100 FPS"), _("200 FPS") ,}; char *str_cpu_aggr[] = { _("Defensive"), _("Normal"), _("Aggressive"), _("Kamikaze") ,}; char *str_help[] = { _("Off"), _("Shadow"), _("Lines") ,}; char *keystate_names[] = { _("None"), _("Down"), _("All") ,}; char aux[128]; int i, j, k, l; Menu *_main = 0; #ifdef _1 Menu *options = 0; #endif Menu *adv = 0; #ifdef SOUND Menu *audio = 0; #endif Menu *gfx = 0; Menu *game = 0; Menu *cont = 0; Menu *cont_player1 = 0, *cont_player2 = 0, *cont_player3 = 0; Menu *twoplayer = 0; char *lc_gametype_names[8] = {gametype_names[0], gametype_names[1], gametype_names[2], gametype_names[3], gametype_names[4], gametype_names[5], gametype_names[6], gametype_names[7]}; /* load graphics and sounds */ mbkgnd = load_surf( "menuback.bmp", SDL_SWSURFACE ); SDL_SetColorKey( mbkgnd, 0, 0 ); draw_3dframe( mbkgnd, menu_x, menu_y, menu_w, menu_h, 5 ); draw_3dframe( mbkgnd, cx, cy, cw, ch, 5 ); draw_3dframe( mbkgnd, vx, vy, vw, vh, 5 ); mfont = load_fixed_font( "f_small_yellow.bmp", 32, 96, 8 ); mhfont = load_fixed_font( "f_white.bmp", 32, 96, 10 ); mcfont = load_fixed_font( "f_yellow.bmp", 32, 96, 10 ); #ifdef SOUND wav_menu_click = sound_chunk_load( "click.wav" ); wav_menu_motion = sound_chunk_load( "motion.wav" ); #endif /* add version to background */ mfont->align = ALIGN_X_LEFT | ALIGN_Y_CENTER; write_text( mfont, mbkgnd, vx + 10, vy + vh / 2, "http://lgames.sf.net", OPAQUE ); mfont->align = ALIGN_X_RIGHT | ALIGN_Y_CENTER; sprintf( aux, "v%s", VERSION ); write_text( mfont, mbkgnd, vx + vw - 10, vy + vh / 2, aux, OPAQUE ); /* hints will be displayed on menu background */ hint_set_bkgnd( mbkgnd ); /* setup filter */ filter_clear( filter ); filter_set( filter, SDLK_a, SDLK_z, 1 ); filter_set( filter, SDLK_0, SDLK_9, 1 ); filter_set( filter, SDLK_KP0, SDLK_KP9, 1 ); filter_set( filter, SDLK_UP, SDLK_PAGEDOWN, 1 ); filter[SDLK_SPACE] = 1; filter[SDLK_ESCAPE] = 0; filter[SDLK_RETURN] = 0; filter[SDLK_q] = 0; filter[SDLK_f] = 0; /* menus are added to this list for deleting later */ menus = list_create( LIST_AUTO_DELETE, menu_delete ); /* create menus */ _main = menu_create( _("Menu"), MENU_LAYOUT_CENTERED, menu_x, menu_y, menu_w, menu_h, menu_border ); gfx = menu_create( _("Graphics"), MENU_LAYOUT_CENTERED, menu_x, menu_y, menu_w, menu_h, menu_border ); game = menu_create( _("New Game"), MENU_LAYOUT_CENTERED, menu_x, menu_y, menu_w, menu_h, menu_border ); cont = menu_create( _("Controls"), MENU_LAYOUT_CENTERED, menu_x, menu_y, menu_w, menu_h, menu_border ); cont_player1 = menu_create( _("Player1"), MENU_LAYOUT_CENTERED, menu_x, menu_y, menu_w, menu_h, menu_border ); cont_player2 = menu_create( _("Player2"), MENU_LAYOUT_CENTERED, menu_x, menu_y, menu_w, menu_h, menu_border ); cont_player3 = menu_create( _("Player3"), MENU_LAYOUT_CENTERED, menu_x, menu_y, menu_w, menu_h, menu_border ); twoplayer = menu_create( _("Multiplayer Options"), MENU_LAYOUT_CENTERED, menu_x, menu_y, menu_w, menu_h, menu_border ); adv = menu_create( _("Advanced Options"), MENU_LAYOUT_CENTERED, menu_x, menu_y, menu_w, menu_h, menu_border ); #ifdef _1 options = menu_create( _("Options"), MENU_LAYOUT_CENTERED, menu_x, menu_y, menu_w, menu_h, menu_border ); #endif #ifdef SOUND audio = menu_create( _("Audio"), MENU_LAYOUT_CENTERED, menu_x, menu_y, menu_w, menu_h, menu_border ); #endif /* create items */ /* main menu */ menu_add( _main, item_create_link ( _("New Game"), HINT_NEWGAME, game ) ); menu_add( _main, item_create_separator ( "" ) ); #ifdef _1 menu_add( _main, item_create_link ( _("Options"), HINT_, options ) ); #endif menu_add( _main, item_create_link ( _("Controls"), HINT_CTRLS, cont ) ); menu_add( _main, item_create_link ( _("Graphics"), HINT_GFX, gfx ) ); #ifdef SOUND menu_add( _main, item_create_link ( _("Audio"), HINT_AUDIO, audio ) ); #else menu_add( _main, item_create_separator ( _("Audio") ) ); #endif menu_add( _main, item_create_separator ( "" ) ); menu_add( _main, item_create_link ( _("Advanced Options"), HINT_ADV, adv ) ); menu_add( _main, item_create_separator ( "" ) ); menu_add( _main, item_create_action ( _("Quit"), HINT_QUIT, ACTION_QUIT ) ); #ifdef _1 /* options */ menu_add( options, item_create_link( _("Controls"), HINT_, cont ) ); menu_add( options, item_create_link( _("Graphics"), HINT_, gfx ) ); menu_add( options, item_create_link( _("Audio"), HINT_, audio ) ); menu_add( options, item_create_separator( _("Audio") ) ); menu_add( options, item_create_separator( "" ) ); menu_add( options, item_create_link( _("Back"), _main ) ); #endif /* audio */ #ifdef SOUND item = item_create_switch( _("Sound:"), HINT_, &config.sound, _("Off"), _("On") ); item->callback = cb_sound; menu_add( audio, item ); item = item_create_range( _("Volume:"), HINT_, &config.volume, 1, 8, 1 ); item->callback = cb_volume; menu_add( audio, item ); menu_add( audio, item_create_separator( "" ) ); menu_add( audio, item_create_link( _("Back"), HINT_, _main ) ); #endif /* gfx */ menu_add( gfx, item_create_switch( _("Animations:"), HINT_ANIM, &config.anim, _("Off"), _("On") ) ); menu_add( gfx, item_create_switch( _("Move:"), HINT_SMOOTHHORI, &config.smooth_hori, _("Tile By Tile"), _("Smooth") ) ); menu_add( gfx, item_create_switch( _("Drop:"), HINT_SMOOTHVERT, &config.block_by_block, _("Smooth"), _("Tile By Tile") ) ); menu_add( gfx, item_create_switch( _("Change Background:"), HINT_BKGND, &config.keep_bkgnd, _("Yes"), _("No") ) ); menu_add( gfx, item_create_separator( "" ) ); item = item_create_switch( _("Display:"), HINT_DISPLAY, &config.fullscreen, _("Window"), _("Fullscreen") ); item->callback = cb_fullscreen; menu_add( gfx, item ); menu_add( gfx, item_create_switch_x( _("Frame Rate:"), HINT_FPS, &config.fps, str_fps, 4 ) ); menu_add( gfx, item_create_separator( "" ) ); menu_add( gfx, item_create_link( _("Back"), HINT_, _main ) ); /* game */ menu_add( game, item_create_action( _("Start Game"), HINT_START, ACTION_PLAY ) ); menu_add( game, item_create_separator( "" ) ); menu_add( game, item_create_edit( _("1st Player:"), HINT_NAME, config.player1.name, 12 ) ); menu_add( game, item_create_edit( _("2nd Player:"), HINT_NAME, config.player2.name, 12 ) ); menu_add( game, item_create_edit( _("3rd Player:"), HINT_NAME, config.player3.name, 12 ) ); menu_add( game, item_create_separator( "" ) ); menu_add( game, item_create_switch_x( _("Game:"), HINT_GAME, &config.gametype, lc_gametype_names, 8 ) ); menu_add( game, item_create_range( _("Starting Level:"), HINT_STARTLEVEL, &config.starting_level, 0, 9, 1 ) ); menu_add( game, item_create_switch( _("Preview:"), HINT_PREVIEW, &config.preview, _("Off"), _("On") ) ); menu_add( game, item_create_switch_x( _("Help:"), HINT_HELP, &config.help, str_help, 3 ) ); menu_add( game, item_create_switch( _("Expert Mode:"), HINT_EXPERT, &config.expert, _("Off"), _("On") ) ); #ifdef _1 menu_add( game, item_create_switch( _("Slow:"), HINT_, &config.slow, _("Off"), _("On") ) ); #endif //menu_add( game, item_create_separator( "" ) ); menu_add( game, item_create_link( _("Multiplayer Options"), HINT_MPMENU, twoplayer ) ); menu_add( game, item_create_separator( "" ) ); menu_add( game, item_create_link( _("Back"), HINT_, _main ) ); /* twoplayer options */ menu_add( twoplayer, item_create_separator( "" ) ); menu_add( twoplayer, item_create_range( _("Holes:"), HINT_HOLES, &config.holes, 1, 9, 1 ) ); menu_add( twoplayer, item_create_switch( _("Random Holes:"), HINT_RANDHOLES, &config.rand_holes, _("Off"), _("On") ) ); menu_add( twoplayer, item_create_switch( _("Send All Lines:"), HINT_SENDALL, &config.send_all, _("Off"), _("On") ) ); menu_add( twoplayer, item_create_switch( _("Always Send Tetris:"), HINT_SENDTETRIS, &config.send_tetris, _("Off"), _("On") ) ); menu_add( twoplayer, item_create_separator( "" ) ); menu_add( twoplayer, item_create_switch_x( _("CPU Style:"), HINT_CPUAGGR, &config.cpu_aggr, str_cpu_aggr, 4 ) ); menu_add( twoplayer, item_create_range( _("CPU Drop Delay:"), HINT_CPUDROP, &config.cpu_delay, 0, 2000, 100 ) ); menu_add( twoplayer, item_create_separator( "" ) ); menu_add( twoplayer, item_create_link( _("Back"), HINT_, game ) ); /* all keys used */ pause_key = item_create_key( _("Pause Key:"), HINT_PAUSEKEY, &config.pause_key, filter ); keys[0][0] = item_create_key( _("Left:"), HINT_CONTROLS, &config.player1.controls.left, filter ); keys[0][1] = item_create_key( _("Right:"), HINT_CONTROLS, &config.player1.controls.right, filter ); keys[0][2] = item_create_key( _("Rotate Left:"), HINT_CONTROLS, &config.player1.controls.rot_left, filter ); keys[0][3] = item_create_key( _("Rotate Right:"), HINT_CONTROLS, &config.player1.controls.rot_right, filter ); keys[0][4] = item_create_key( _("Down:"), HINT_CONTROLS, &config.player1.controls.down, filter ); keys[0][5] = item_create_key( _("Drop:"), HINT_CONTROLS, &config.player1.controls.drop, filter ); keys[1][0] = item_create_key( _("Left:"), HINT_CONTROLS, &config.player2.controls.left, filter ); keys[1][1] = item_create_key( _("Right:"), HINT_CONTROLS, &config.player2.controls.right, filter ); keys[1][2] = item_create_key( _("Rotate Left:"), HINT_CONTROLS, &config.player2.controls.rot_left, filter ); keys[1][3] = item_create_key( _("Rotate Right:"), HINT_CONTROLS, &config.player2.controls.rot_right, filter ); keys[1][4] = item_create_key( _("Down:"), HINT_CONTROLS, &config.player2.controls.down, filter ); keys[1][5] = item_create_key( _("Drop:"), HINT_CONTROLS, &config.player2.controls.drop, filter ); keys[2][0] = item_create_key( _("Left:"), HINT_CONTROLS, &config.player3.controls.left, filter ); keys[2][1] = item_create_key( _("Right:"), HINT_CONTROLS, &config.player3.controls.right, filter ); keys[2][2] = item_create_key( _("Rotate Left:"), HINT_CONTROLS, &config.player3.controls.rot_left, filter ); keys[2][3] = item_create_key( _("Rotate Right:"), HINT_CONTROLS, &config.player3.controls.rot_right, filter ); keys[2][4] = item_create_key( _("Down:"), HINT_CONTROLS, &config.player3.controls.down, filter ); keys[2][5] = item_create_key( _("Drop:"), HINT_CONTROLS, &config.player3.controls.drop, filter ); /* for each key all others are restricted */ for ( k = 0; k < 3; k++ ) for ( l = 0; l < 6; l++ ) { /* restrict all other keys for key( k, l ) */ for ( i = 0; i < 3; i++ ) for ( j = 0; j < 6; j++ ) if ( k != i || l != j ) value_add_other_key( keys[k][l]->value, keys[i][j]->value ); /* restrict pause key */ value_add_other_key( keys[k][l]->value, pause_key->value); } /* restrict controls for pause key */ for ( i = 0; i < 3; i++ ) for ( j = 0; j < 6; j++ ) value_add_other_key( pause_key->value, keys[i][j]->value ); /* controls */ menu_add( cont, item_create_link( _("Player1"), HINT_CONTROLS, cont_player1 ) ); menu_add( cont, item_create_link( _("Player2"), HINT_CONTROLS, cont_player2 ) ); menu_add( cont, item_create_link( _("Player3"), HINT_CONTROLS, cont_player3 ) ); menu_add( cont, item_create_separator( "" ) ); menu_add( cont, item_create_range( _("Horizontal Delay:"), HINT_HORIDEL,&config.hori_delay, 0, 9, 1 ) ); menu_add( cont, item_create_range( _("Vertical Delay:"), HINT_VERTDEL,&config.vert_delay, 0, 9, 1 ) ); menu_add( cont, pause_key ); menu_add( cont, item_create_separator( "" ) ); menu_add( cont, item_create_link( _("Back"), HINT_, _main ) ); /* controls player 1 */ for ( k = 0; k < 6; k++ ) menu_add( cont_player1, keys[0][k] ); menu_add( cont_player1, item_create_separator( "" ) ); menu_add( cont_player1, item_create_link( _("Back"), HINT_,cont ) ); /* controls player 2 */ for ( k = 0; k < 6; k++ ) menu_add( cont_player2, keys[1][k] ); menu_add( cont_player2, item_create_separator( "" ) ); menu_add( cont_player2, item_create_link( _("Back"), HINT_, cont ) ); /* controls player 3 */ for ( k = 0; k < 6; k++ ) menu_add( cont_player3, keys[2][k] ); menu_add( cont_player3, item_create_separator( "" ) ); menu_add( cont_player3, item_create_link( _("Back"), HINT_, cont ) ); /* advanced options */ item = item_create_switch ( _("Quick Help:"), HINT_QHELP, &config.quick_help, _("Off"), _("On") ); item->callback = cb_hints; menu_add( adv, item ); menu_add( adv, item_create_switch_x( _("Clear Keystate:"), HINT_KEYSTATE, &config.clear_keystate, keystate_names, 3 ) ); menu_add( adv, item_create_switch ( _("Center Preview:"), HINT_CENTERPREVIEW, &config.center_preview, _("Off"), _("On") ) ); menu_add( adv, item_create_switch ( _("Collision Check:"), HINT_COL_CHECK, &config.async_col_check, _("Sync"), _("Async") ) ); #ifdef DEVELOPMENT menu_add( adv, item_create_separator( "" ) ); menu_add( adv, item_create_action( _("Test CPU Algorithm"), HINT_CPUALG, ACTION_MAKE_STAT ) ); menu_add( adv, item_create_switch( _("Visualization"), HINT_VIS, &config.visualize, _("Off"), _("On") ) ); #endif menu_add( adv, item_create_separator( "" ) ); menu_add( adv, item_create_link( _("Back"), HINT_, _main ) ); /* adjust all menus */ menu_adjust( _main ); #ifdef _1 menu_adjust( options ); #endif menu_adjust( adv ); #ifdef SOUND menu_adjust( audio ); #endif menu_adjust( gfx ); menu_adjust( game ); menu_adjust( cont ); menu_adjust( cont_player1 ); menu_adjust( cont_player2 ); menu_adjust( cont_player3 ); menu_adjust( twoplayer ); /* set main menu as current */ menu_select( _main ); } void manager_delete() { list_delete( menus ); free_surf( &mbkgnd ); free_font( &mfont ); free_font( &mhfont ); free_font( &mcfont ); #ifdef SOUND if ( wav_menu_click ) sound_chunk_free( wav_menu_click ); wav_menu_click = 0; if ( wav_menu_motion ) sound_chunk_free( wav_menu_motion ); wav_menu_motion = 0; #endif } /* ==================================================================== Run menu until request sent ==================================================================== */ int manager_run() { SDL_Event event; int event_polled = 0; /* event occured? */ int result = ACTION_NONE; int ms; /* draw highscores */ chart_show( chart_set_query_id( chart_id ), cx, cy, cw, ch ); /* loop */ reset_timer(); while ( result == ACTION_NONE && !term_game ) { if ( event_poll( &event ) ) event_polled = 1; if ( event_polled && event.type == SDL_QUIT ) { result = ACTION_QUIT; term_game = 1; } /* fullscreen if no item selected */ if ( event_polled ) { if ( cur_menu->cur_item == 0 || ( cur_menu->cur_item->type != ITEM_EDIT && cur_menu->cur_item->type != ITEM_KEY ) ) if ( event.type == SDL_KEYUP ) if ( event.key.keysym.sym == SDLK_f ) { config.fullscreen = !config.fullscreen; set_video_mode( std_video_mode( config.fullscreen ) ); FULL_DEST( sdl.screen ); FULL_SOURCE( mbkgnd ); blit_surf(); chart_show( chart_set_query_id( chart_id ), cx, cy, cw, ch ); refresh_screen( 0, 0 ,0, 0 ); } /* check if clicked on highscore */ if ( event.type == SDL_MOUSEBUTTONUP ) if ( event.button.x >= cx && event.button.y >= cy ) if ( event.button.x < cx + cw && event.button.y < cy + ch ) { #ifdef SOUND sound_play( wav_menu_click ); #endif /* set chart id */ if ( event.button.button == LEFT_BUTTON ) { chart_id++; if ( chart_id == charts->count ) chart_id = 0; } else { chart_id--; if ( chart_id == -1 ) chart_id = charts->count - 1; } /* redraw */ FULL_DEST( sdl.screen ); FULL_SOURCE( mbkgnd ); blit_surf(); chart_show( chart_set_query_id( chart_id ), cx, cy, cw, ch ); refresh_screen( cx, cy, cw, ch ); } } ms = get_time(); menu_hide( cur_menu ); hint_hide(); if ( event_polled ) result = menu_update( cur_menu, &event, ms ); else result = menu_update( cur_menu, 0, ms ); hint_update( ms ); menu_show( cur_menu ); chart_show( chart_set_query_id( chart_id ), cx, cy, cw, ch ); hint_show(); refresh_rects(); event_polled = 0; SDL_Delay( 5 ); } return result; } /* ==================================================================== Fade in/out background of menu ==================================================================== */ void manager_fade( int type ) { if ( type == FADE_IN ) { FULL_DEST( sdl.screen ); FULL_SOURCE( mbkgnd ); blit_surf(); } fade_screen( type, FADE_DEF_TIME ); } /* ==================================================================== Update screen without menu itself as this is shown next frame. ==================================================================== */ void manager_show() { set_video_mode( std_video_mode( config.fullscreen ) ); FULL_DEST( sdl.screen ); FULL_SOURCE( mbkgnd ); blit_surf(); chart_show( chart_set_query_id( chart_id ), cx, cy, cw, ch ); add_refresh_rect( 0, 0, sdl.screen->w, sdl.screen->h ); } /* ==================================================================== Update set list when creating a new file for editor. ==================================================================== */ void manager_update_set_list() { #ifdef _1 cb_adjust_set_list(); /* hacky but shiiiit how cares? */ #endif } ltris-1.0.19/src/list.c0000664000175000017500000002427112140770047011600 00000000000000/*************************************************************************** list.c - description ------------------- begin : Sun Sep 2 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include #include "list.h" /* ==================================================================== Create a new list auto_delete: Free memory of data pointer when deleting entry callback: Use this callback to free memory of data including the data pointer itself. Return Value: List pointer ==================================================================== */ List *list_create( int auto_delete, void (*callback)(void*) ) { List *list = calloc( 1, sizeof( List ) ); list->head.next = &list->tail; list->head.prev = &list->head; list->tail.next = &list->tail; list->tail.prev = &list->head; list->auto_delete = auto_delete; list->callback = callback; list->cur_entry = &list->head; return list; } /* ==================================================================== Delete list and entries. ==================================================================== */ void list_delete( List *list ) { list_clear( list ); free( list ); } /* ==================================================================== Delete all entries but keep the list. Reset current_entry to head pointer. ==================================================================== */ void list_clear( List *list ) { while( !list_empty( list ) ) list_delete_pos( list, 0 ); } /* ==================================================================== Insert new item at position. Return Value: True if successful else False. ==================================================================== */ int list_insert( List *list, void *item, int pos ) { int i; List_Entry *cur = &list->head; List_Entry *new_entry = 0; /* check if insertion possible */ if ( pos < 0 || pos > list->count ) return 0; if ( item == 0 ) return 0; /* get to previous entry */ for (i = 0; i < pos; i++) cur = cur->next; /* create and anchor new entry */ new_entry = calloc( 1, sizeof( List_Entry ) ); new_entry->item = item; new_entry->next = cur->next; new_entry->prev = cur; cur->next->prev = new_entry; cur->next = new_entry; list->count++; return 1; } /* ==================================================================== Add new item at the end of the list. ==================================================================== */ int list_add( List *list, void *item ) { List_Entry *new_entry = 0; /* check if insertion possible */ if ( item == 0 ) return 0; /* create and anchor new entry */ new_entry = calloc( 1, sizeof( List_Entry ) ); new_entry->item = item; new_entry->next = &list->tail; new_entry->prev = list->tail.prev; list->tail.prev->next = new_entry; list->tail.prev = new_entry; list->count++; return 1; } /* ==================================================================== Delete item at position. If this was the current entry update current_entry to valid previous pointer. Return Value: True if successful else False. ==================================================================== */ int list_delete_pos( List *list, int pos ) { int i; List_Entry *cur = &list->head; /* check if deletion possbile */ if ( list_empty( list ) ) return 0; if ( pos < 0 || pos >= list->count ) return 0; /* get to correct entry */ for ( i = 0; i <= pos; i++ ) cur = cur->next; /* modify anchors */ cur->next->prev = cur->prev; cur->prev->next = cur->next; /* decrease counter */ list->count--; /* check current_entry */ if ( list->cur_entry == cur ) list->cur_entry = list->cur_entry->prev; /* free memory */ if ( list->auto_delete ) { if ( list->callback ) (list->callback)( cur->item ); else free( cur->item ); } free( cur ); return 1; } /* ==================================================================== Delete item if in list. If this was the current entry update current_entry to valid previous pointer. Return Value: True if successful else False. ==================================================================== */ int list_delete_item( List *list, void *item ) { return list_delete_pos( list, list_check( list, item ) ); } /* ==================================================================== Delete entry. Return Value: True if successful else False. ==================================================================== */ int list_delete_entry( List *list, List_Entry *entry ) { /* delete possible? */ if ( entry == 0 ) return 0; if ( list->count == 0 ) return 0; if ( entry == &list->head || entry == &list->tail ) return 0; /* adjust anchor and counter */ entry->prev->next = entry->next; entry->next->prev = entry->prev; list->count--; /* check current_entry */ if ( list->cur_entry == entry ) list->cur_entry = list->cur_entry->prev; /* free memory */ if ( list->auto_delete ) { if ( list->callback ) (list->callback)( entry->item ); else free( entry->item ); } free( entry ); return 1; } /* ==================================================================== Get item from position if in list. Return Value: Item pointer if found else Null pointer. ==================================================================== */ void* list_get( List *list, int pos ) { int i; List_Entry *cur = &list->head; if ( pos < 0 || pos >= list->count ) return 0; for ( i = 0; i <= pos; i++ ) cur = cur->next; return cur->item; } /* ==================================================================== Check if item's in list. Return Value: Position of item else -1. ==================================================================== */ int list_check( List *list, void *item ) { int pos = -1; List_Entry *cur = list->head.next; while ( cur != &list->tail ) { pos++; if ( cur->item == item ) break; cur = cur->next; } return pos; } /* ==================================================================== Return first item stored in list and set current_entry to this entry. Return Value: Item pointer if found else Null pointer. ==================================================================== */ void* list_first( List *list ) { list->cur_entry = list->head.next; return list->head.next->item; } /* ==================================================================== Return last item stored in list and set current_entry to this entry. Return Value: Item pointer if found else Null pointer. ==================================================================== */ void* list_last( List *list ) { list->cur_entry = list->tail.prev; return list->tail.prev->item; } /* ==================================================================== Return item in current_entry. Return Value: Item pointer if found else Null pointer. ==================================================================== */ void* list_current( List *list ) { return list->cur_entry->item; } /* ==================================================================== Reset current_entry to head of list. ==================================================================== */ void list_reset( List *list ) { list->cur_entry = &list->head; } /* ==================================================================== Get next item and update current_entry (reset if tail reached) Return Value: Item pointer if found else Null (if tail of list). ==================================================================== */ void* list_next( List *list ) { list->cur_entry = list->cur_entry->next; if ( list->cur_entry == &list->tail ) list_reset( list ); return list->cur_entry->item; } /* ==================================================================== Get previous item and update current_entry. Return Value: Item pointer if found else Null (if head of list). ==================================================================== */ void* list_prev( List *list ) { list->cur_entry = list->cur_entry->prev; return list->cur_entry->item; } /* ==================================================================== Delete the current entry if not tail or head. This is the entry that contains the last returned item by list_next/prev(). Return Value: True if it was a valid deleteable entry. ==================================================================== */ int list_delete_current( List *list ) { if ( list->cur_entry == 0 || list->cur_entry == &list->head || list->cur_entry == &list->tail ) return 0; list_delete_entry( list, list->cur_entry ); return 1; } /* ==================================================================== Check if list is empty. Return Value: True if list counter is 0 else False. ==================================================================== */ int list_empty( List *list ) { return list->count == 0; } /* ==================================================================== Return entry containing the passed item. Return Value: True if entry found else False. ==================================================================== */ List_Entry *list_entry( List *list, void *item ) { List_Entry *entry = list->head.next; while ( entry != &list->tail ) { if ( entry->item == item ) return entry; entry = entry->next; } return 0; } ltris-1.0.19/src/hint.h0000664000175000017500000000520012140770047011563 00000000000000/*************************************************************************** hint.h - description ------------------- begin : Sun Jan 6 2002 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef __HINT_H #define __HINT_H typedef struct { Text *text; /* contents */ int sx, sy, sw, sh; /* screen geometry */ } Hint; /* ==================================================================== Load/delete hint resources. ==================================================================== */ void hint_load_res(); void hint_delete_res(); /* ==================================================================== Create a hint. The passed x,y position is where the end of the Sprechblasenspitze is. Contents is converted to lines (duplicated). ==================================================================== */ Hint* hint_create( int x, int y, char *contents ); void hint_delete( Hint *hint ); /* ==================================================================== Set the background on which the hints will be displayed. ==================================================================== */ void hint_set_bkgnd( SDL_Surface *bkgnd ); /* ==================================================================== Set this hint as actual one. If NULL was passed no hint will be handled. ==================================================================== */ void hint_set( Hint *hint ); /* ==================================================================== Set hint to this position. ==================================================================== */ void hint_set_pos( Hint *hint, int x, int y ); /* ==================================================================== Show/hide/update _current_ hint. ==================================================================== */ void hint_hide(); void hint_show(); void hint_update( int ms ); #endif ltris-1.0.19/src/gfx/0000775000175000017500000000000012233753110011312 500000000000000ltris-1.0.19/src/gfx/f_small_yellow.bmp0000664000175000017500000007246612140770047014766 00000000000000BM6u6( uM M Vž¢V¢¢vÞâ~îîRžžZ¦ª~îò^²²RÚÚRÚÚNÒÒ6’’:–š~îî~îòVÚÚ~îî  ‚òò RÚÚRÚÚRÚÚRÚÚRÚÚRÚÚRÚÚ  ~îî~îî~îò~îî Vž¢VÞÞ VÚÞBªª~îò~îò‚îò~îò~îî~îî~îò~îîRÚÚRÚÚ~îò~îò~îò~îî~îî~îîRÚÚJ¾¾næê–úú¦þþ¦þþšöúV¢¢zêî~îî¦þþ¦þþ‚îòzææ¦þþ¦þþ–öö~îò~îîZÞÞRÚÚ>¢¢VÚÞ~îî~îîfÊÊnÒÒ‚îò¢úú¦þþšúú~îîfÊÊFššRÚÞRÚÚnæê~îò~îò~îîRÚÞ~îò~îî~îî~îî~îî~îòRÚÚRÚÚRÚÚJ¶¶V¢¢ ~îî~îî~îî~îòRžžZ®®~îîzîîJÂÂZÆÊRÚÚRÚÚRÚÚRÚÚ~îî^²²Ržžzââ~îînÒÒ¦þþ~îî~îî~îòbººRžžRÚÚRÚÚRÚÚZÞâ~îî^²²~îî~îî~îîvÞâRžž~îîzææ~îònêê6’’>¢¢bîîzþþVââ~îîV¦¦V¢¢ŠÎÎ~îò^¦¦~îî~îî~îî~îîŠÎÎ~îî~âæV¢¦RžžŽþþ~îî~îòZ¦¦RžžzîîRÚÚRÚÚRÚÚRÚÚ:––6’–^ââvêî~îî~îî~îî~îî~îî~îò~îòzââRžžbºº~îòªþþV¢¢jÒÒVÞÞJªªNÂÂ^æêRÚÞ~îî~îînÎÒZªª^ÞâJ¾¾6’’:–šRÚÚ~îòzææV¢¢V¦¦~îò~îò~îî~îò~îò~âæRžž~îî~îò~îòvêî:––6’’:žžRÚÚRÚÚRÚÞ~îò~îòRÚÞfÊÊRžž~âæ~îòV¢¢rêê:šš>––nææ~îò~îòV¢¢~âæ~îò~îî~îî~îòn¾Â~îî‚îò6’’RÚÞRžž6’’VÚÞRÚÚB®®6’’ZÆÊRÚÚ^Þâvêî~îî~îò~îî~îî~îò~îî~îî~îî~îîRÚÚVÞÞ~îî~îî~îò~îî~îî~îî~îî~îî~îîrêêVÞÞ~îî~îî~îî~îî~îîjúúRÚÚ~îòRžžVž¢¦þþ~îîŠòò:–šRÚÞVž¢¦þþ~îî~âæ6’’ RÚÚ~îî~îî~îî~îîRÚÚ~îî ~îî>¦ªRÚÞZªªV¢¢~îîn¾ÂvêîRÎÎvêî~îîvÞâ~îî~îò’öö~îò~îîVÞÞVÚÞV¢¢RžžV¢¢Z¦¦~îî~îîvêîŽöönþþŽööZ¦ªŠÒÒªþþŽööf¾¾~îòrªª¢úúV¢¢RÚÞVÞâþþþ‚îò~îî~îî~îîzêî~îîBªªRÚÞ~îî~îîªþþnÎÒ~îò²þþ~ææRÚÞRÚÞVÞÞjæænÎÒRžž~îîB®®VÞÞ~îî~îò~îò~îîf¾¾~îî~îî6’’RÚÞV¢¢~îò~îîRÚÚRÚÞ~îîb¶¶zêî~îî~îî~îîrÖÚRžž~îò6’–NÒÒ~îîzââ~îî~âæ~îî~îò‚îòf¾¾~îîRÚÚ6’–ZÞÞ~îò~îî~îî~îîRª®RÚÚRÚÚ~îî~îî~îòRÚÞRÚÞ~îî~îî~îò ~îî~îò~îò~îîzêîRÚÚ‚îò~îò~îò~îòrîîRÚÚ~îîV¢¢¦þþ~îî~îîf¾¾Ržžb¶º~îîNÒÒRÚÚZªª¦þþ^²²¦þþ6’–~îî~îî~îî~îî~îîvêê^ÞâRÚÞ~îî~îò~îò~îò~îò6’’RÚÚb¶¶žúú~îîvêîVÞÞ>––~îòvÞâ~îòV¢¢~îîRÚÞZæærÖÚZ®®V¢¦rªªzêî~îò~îîJªªŽþþ¢þþ~îî^¦¦Æþþ¢þþ~îîRž¢ÞþþrâæRÚÚRÚÚêþþÆþþ~îòzêî~îîf¾¾Vž¢:šš~îî~îò~îò^®®~îîbââRÚÚRÚÚnÎÒ~îòRÚÞ~îî~îî~îî~îî~îî~îòRžž~îòV¢¢:–šVÞÞRž¢~îî~îòB®®RÚÚvÞâzêîRžž~îî~îîV¢¢~îîBªªZÆÊVÞÞ~îòvÚÚ~îò~îî~îîV¢¢ZÞÞ:––~îò~îî~îî~îî~îîjææRÚÞ~îò~îò~îî~îî~îîZÞÞVÞÞRÚÚRÚÚVÞÞRÚÚ~îò~îî~îî~îî~îî~îòRÚÞ~îî~îò~îò~îî~îîRÚÚvêêVž¢V¢¢ ~îîšúúRž¢RÚÞ:žžRÚÚnÎÒšúúRžž¢þþ JÂÂ~îîRÚÚ~îî~îò~îî~îî~îî~îò~îî~îîZÞÞRÚÚB²²>ž¢~îòrÖÚjÆÊvÞâVÞÞ:––~îîvÞâV¢¢Vž¢~îò^²²šöúRÚÚnþþ~îî~îî~îîb¶¶–öönªª~îî~îî~îò>¦ªZÎÎ ®þþ^®®²þþºþþ~îîzââºþþ~òò:––RÚÚŠòöþþþ†òòvÞâRžžV¢¢Fšš6’–~îî~îî~îîšúú®þþnÊÎRžž‚îò‚îòRÚÚbîî~îî~îî~îî~îîvêîZÞÞ:––RÚÞ‚îòzêî‚îò~îî~îòV¢¢~îî~îî~îîNÂÂRÚÚZÆÊ~îî~îò6’’VÚÚZ¢¦~îò~îò~îîZ¦¦^ÞâRÚÚ:–š~îî~îò~îòRžž~îòf¾¾VÚÞB²²~îî~îî^²²~îòvêîRÚÚ~îò~îî~îòRÚÞRÚÞ‚îò~îò~îî~îî~îî~îî~îîRÚÚ~îî~îò~îò~îî~îî~îî~îî~îî~îî~îî~îî~îî~îî~îî~îî~îî~îòvÞâbîî>–šV¢¢vÞâVž¢Vž¢ªþþf¾¾~îò‚îòRÚÚ6’–RÚÚRÚÚbââ¢úúRžžZªªzêî‚îò~îî~îî~îòRÚÞRÚÞ~îò~îòRÚÚ‚îò~îò~îò~îò~îîRÚÚ6’’6’’B²²~îîV¦¦RžžV¢¢^ÞâRÚÚjööjþþVÞÞBªª>–šFšš~îò~îî~îî~îî~îî~îî~îò¦þþRÚÞjúúvþþb¶º~îòVž¢~îòz¶¶zêî~îò~îîrîî:––V®®nÎÒŽþþZÞÞžþþ~îîV¢¢vÚÚ²þþªþþÒþþŠòöžòöv®®nªª~îò¦þþªþþNÊÊ:šš~îîªþþâþþ~îîV¦¦Vž¢RÚÚ~îî~îòŠÞÞzîî~îòzººVÚÞRÚÚvþþVÚÞjæêZ¦ª:žžRÚÚRÚÚRÚÚRÚÚRÚÚzêî~îòzîî~îò~âæ~îîvÞâ~îòfÂÂjæêRÚÞZÞÞV¦¦~îî~îò>¦ªRÚÞRžž~îî~îî~îî~îònÎÒRžž~îòRÚÚRÚÞRÚÚ~îò~îî~îîb¶º~îî~îîRÚÚVÚÞ~îòRžž~îîzîîRÚÚVÞÞzîî~îò~îî~îî~îî~îò~îîVÚÞRÚÚRÚÚRÚÞRÚÚ^Þâ~îî~îî~îî~îî~îîRÚÚ~îî~îî~îò~îîVž¢nþþ:’–Vž¢~îî¦þþ~îò~îî~îîvúúnþþ:žž~îîªþþ~îîRžžZÞÞRÚÞ:––RÚÞZÞÞ~îî~îò~îî~îî~îî~îî~îî~îî~îî~îîRÚÚ ~îî~îò~îî~îî~îò~îîRÚÞRÚÚvÞâzêîrÒÖfÊÊV¦¦Fºº¦þþb¶º~îòjÆÆVÞÞVÞÞžþþRžž~îî~îîRžž~îî~îòrªªzââ‚îò~îònÒÒjòò~þþ®þþV¢¦²þþ¦þþ~îîVž¢®þþ~þþ:––~îòêþþŠòòzêî~îîZ¦ªFššRÚÞ~îî~îò~îî~îî~îîšúún¾Â~îî~îîbººZÞÞRÚÚB®®6’’júúnþþjúúVÞÞ~îî~îî~îî~îîRÚÞ~îî~îî~îî~îîn¾Â~îîzêîVž¢~îî~îî~îî~îî~îîb¶ºzîîRÚÚRÚÚRÚÚjæænÎÒ~îîZÞÞRÚÚRÚÚZÞÞ~îî~îî~îîzêîzêîZ®®Ržž~îî~îî~îînÎÒ~îî~îînææ:’–RÚÚRÚÚJ¾¾6’’VÚÚfææzîîV¦¦V¢¢~îî^®®~îî~îî~îîRÚÚ6’’~îîV¦¦~îîRžžn¾Â~îî~îî~îîvêîRÚÞVÞÞ~îî~îî~îî~îîZÞÞRÚÚVÞÞ~îò~îò~îî~îî~îî~îî~îîRÚÚ~îî~îî~îî~îîV¢¢nþþRÚÞNÒÒ¦þþV¦¦zââªþþ~îîRžžRÚÞŠòòªþþrÖÚn¾ÂRÚÚ:žž~îî~îòRÚÚRÚÚbâæ~îî~îî~îòRÚÚRÚÚZ®®~îî’öö~âæVž¢6’–rÒÖV¢¢~îîV¢¦B®®RÚÚ¾þþnÎÒvÞâ~îîVž¢b¶º~îî~îîrªª~îî~îîÆþþb¶¶fòò®þþ~îîvÞâºþþ~îòV¦¦vúúºþþ^ÞâV¢¢žúúþþþ‚îòV¦¦V¢¦V¢¦RÚÚRžž~îî~îòVÚÞV¢¢nþþRÚÚV¢¢V¢¢~îîRÚÚRÚÚRÚÚ~îî~îî~îî~îî~îî~îò~îò~îòjææRÚÚ^Þâzêî~îî~îî~îî~îî~îò~îò~îîRÚÚ~îòZªªNÊÊRÚÚRÚÞ~îî~îîvÞâ¦þþ¢úúV¢¢B®®Šòö‚îòV¢¢~îîRÚÚ~îîzêîRÚÚRÚÚvêî~îî~îîRÚÚRÚÞn¾Â~îîV¢¢¢þþVž¢‚îòJ¶¶V¢¢~îîrÖÚ‚îòzêî6’’RÚÞºþþ‚îòV¢¢Ržž~îònªª–öö~îî¾þþZªªfòò‚þþªþþRžžžúú¦þþ‚îò~îòVÚÞjöö~îîV¢¦~îò¢úþ~îîjÆÊf¾¾râæB®®RÚÚ~îò~îîbââV¢¢júú:––VÚÞnÎÒ~îî~îîV¢¢~îîRÚÚFººRÚÞ~îî~îî~îî~îò~îî~îî~îîbââ~îî~îî~îî~îîRÚÚ~îîrÖÚV¢¢RÚÚ~îîšúú¦þþ¢þþVž¢zêî~îî–öö¦þþ–öö¦þþrÖÚRžžZª®~îî~îîrêê:––6’–RÚÚRÚÚ^ÞâRª®RžžZª®~îîŠòöªþþ¢úúvÞâzêîV¦¦RžžJ¾¾~îî~îîRÚÚRÚÚRÚÚRÚÚvêî~îî~îî~îî~îînæêRÚÚRÚÚRÚÚZÞâZ¦¦zêî~îî~îîZªªrÖÖ–þþ¢úþfÂÂ~îîzêî^²²:’–6’–nþþZææ:šš6’’6’’:–š~âæjÒÒrÖÖfÂÂ~îîRžž~îî~îî~îî~îînÎÒzêîVÚÞJ¾¾6’’6’’RÚÚ¦þþ¦þþZª®f¾¾~îî~îîn¾Â¢úú~îî~îî~îîÆþþÞþþ–þþ^ââNÊÊnöönþþZææ–úúzîî~îî~îî~îîŠòò¢úþ¦þþ¦þþžîºzªªv®®–êê~îî~îî~îî:––RÚÚÆþþ~îî~îî~îî‚îò~îî~îîRžžV¢¢vÞâ~îî~îî~îî6’’:–šRÚÚRÚÚRÚÚ~îî~îî~îî~îî^Þâ~îîšîîRÚÚ>¢¢RÚÚRÚÚ~îîvÞâRžžrÒÖ:ššRÚÚRÚÚRÚÚRÚÚZÞâvêê~îî~îî~îî~îî~îî~îî~îîltris-1.0.19/src/gfx/back0.bmp0000664000175000017500000002122612140770047012722 00000000000000BM–"6(jH`ë ë 1,bZžJ*†tBŠJžK6†^Ò6›CtBš!WO¹ Zº†bVž4uE¬*–2†Î:’$‡ CŽ%jÀp LZ©J *’6D¦/^¦%L.†^Çx6ŠEŽ*zR¤V±3zf¹BœV:Š>’=«.Žš"V°>‰ >•(tÑ F•^2K¦ 3mF†Ê7h¯CV£^ºR°4‡ï"xDˆ D>ŠT¹R˜Fš6Žwæ.~,S:ŽR &b¹FšNFŸ>¢:–b¯fÈR¨"6J’>–$qN :†&fDz >›D~È>‹<‚Vº#\ª2Š^qVš`ÂE¦F2Ž`B–,]¯(T—gT V°R°T0\ R°Rª&`Ç#K~~B”0lÑ6–Vª#jÊC€ TF«5u:Ÿ,l,f¸ >(qÆ&[ :’)[œR;!bÂ.Š&R…[±J£g:ƒÞ1’1—ZÂxU¹Lª:¢=~J™\²`¸R¤!L„ BˆV° :–&xO—F¢N fÀ$\±F• Bš*‹.‚$vÞN°ZA&1  D¶6~.u :ŠaÎ.zFž BŸF”,b°:†>ŽB– 5už$L˜V¨&&F€N¤Z¸F‰LqTa¾1ÀÅÑÈ£œÏÞ7’ÔÂé‹/ 9/è|UÍÍH~s¿¾"ÖŸ« /sÛ ֵ¾B,~~6‹ ô~¼s‘r,ù>=}|ù‘S^Ù,óØs…‘í9š`//N/wè9ñs‘ªÂWzzlªÃI¡Ê7\|‘ ~/ÛH…[~Ûrr/……öÖ¿/HH9à9‡¾Ì‘‘‘C‹˜ªªªÙñ9w/íù3¬=-Ÿ8/CØËDíN…s9z9…9šwØ9íSí///w9˜6;~˜}r^ Ýä’fEÔ[…s^ í‘ ~s…w…‚~r9,w//6Ñ6~…9sr¼wÔ.‚6˜Ôǘ‘¼w8T Êu¤¬=>/N‘SVÒ1óؘssVu í8zNÒ…Vš9NÛs‘[~W¼ªw8W¼CEï¡<4™&G Û|‡šíN~~¼s8r…Gl/sw9/é~˜.,sw íñwscѼ‹~~[¼ss‡ííˆØ‡ùò€µ ‡N9Bo!N…W˜s[Ùssw9Ê9w`/éšñéè˜[ª~ôê9VÂ6 \º¡†ÕE˜…‘…Ø…[[Ã…Ûš˜–wSHšÛrñ[·èNwÛ·^‘‹,˜s,Vw9s†oS‡ƒoçÛjŸùw8/wwÛ!Bƒ˜Ã;V¼swsw/ÛV…šw…[…,ss[[~–~ªwG˜C~Ð4ûóûœEÐ su˜íó8H[ô[9b·ôéN ƒ &~GCà‹wH/w^s‹6,ýcèÙINTbb!„†hç[|8Ts|bí!/CWWCј‘C6è,Ù.‚˜Â~~;Ú;¼C˜¤SùCrç<Ï#c sGx%osà s/9[[Ôs 8^9à˜–…^‹//šÑ‘6^wà,s^SÕoír`1ØœˆNs,rbw/ÍBØT9à ±CcWC;ª…Ùc ~ôªc[Â6CC;–CWÌ|Ô˜ª\‰a”bäçS˜99š|Ê – ~é…ªwV†9î9/ÙÚs~wrswšVàsÙÔsrVÛsN/Ûʈçˆçˆ 9 s9/H/2‡Bs;WÃÚêWé|~é¼ÔÙ~I~CǪô–ôFC Ø|,ô\²äƒaEÐÚ8buwšsª; [GC~Wcè!8Òszàs,99,9îÙ^ÙÒ9¼ ÙÑ·,ñ˜//è|…H9%5Ì"~‹} WÂÚÂw,Û^‹Ñ;}Úª~·¼¼ôCÃSNHVô×dꎉЅ‡8rw9¼ª~)ª Â~ÚwHÊ!8ó‘r9&wîV9‘w‘/Nw ñ[s~¼·ªÃ±c¿ô¼…wwÛö5¤Ÿ~Ô‹¼ª˜~~……N ^Û9èC;}Cª·sscIjIí §ã— ¡Í¿ñNNÛ/‘àWWÔ~˜|[ÛTw1`/obwÕê šè88w GÍ9H9…Ô&ªl[ô[…~˜…6ÙIHw¤|…V;‹cÙ˜w‹…s‘´íÛ6ôW¼Â˜‘^‘Û.~–éñTr¼ÇŽm™¸aµš9S`š8·6~;~;}Ô,/HNs…ww/Vu89wNTí9bwù"¾T/H9^‹˜è…Ô˜6¼,·,wwNHUSÔV,Vwå¨99îToNÒ!†wà[–||ÊšTÕV‘~ `î‹ÈŠœŽã—c|rˆØrw~…˜ª;êôs˜|Í‘s9//9ub88bØTšíØ25ùØwT189N^˜ ‹;è˜^sswsà/sHw,9bã]8 ´íˆT´Pu9^~……8ubuuÊÒVNb ~ £‰²Þf¹jÂ8! ‡9rC~ôÂW[GwØùËÇ  /ÕN8´Nu !ƒNHö¾Ì%w 8í ! /Âc‘~^6Âs^^^/Ù/…Sw9ººººuí NboTN1/‘sÙwNî8T í9Û8ur˜Õβf’ä¼9ˆÒí Nј,…ÂwbuÊÍú|˜[9ÛÛ/šSÛ|[  Ÿ èsNšS| éô ªCÃW‹˜,s^l‘ÙÛ/Ø Ùí wHr… Nwè‘ô[˜|Vw//Hñ‘/Sª|abÒºAúCªÔ/9ýz¼Ú6˜`9uÍ22Gs…wrÕšVÛw9¼ªŸ i>~‘9í wNNN˜~6CC˜C W‘és^/r/ssÙw/wGs˜GG[‘ s à,… /ssHN öª|V}IÞ®î·xE);}ª¼ öNÚéô¼~~,Ås/N9sN8uˆ¨ ˆbNwéÂ…ú˜Áµr9´wÛhØou,ј‘¼‹·…‡NH8brö‡íb…‘3GCôc w/wííT8‡ÛTwNwš…/ñÂú,˜rwS‡2‡¾öË~99rä„VÇPþ4ÉIªÒ^6,ss·˜,^9Ñ&î b ØíØTTTwNÛè,è~ôW˜Cúú[Û#Tbí zr^^˜‚‹˜Ù[/rùrr2w‘…˜|=-KâÄ©j~ Hw22¾2¾ŸÖ|‡˜,Éûóˆ/hM{¸œ]›ÑbÏzê¨ Nå /På êÏP4ƒ!êåˆbÕ´N8swÙwxÛ`ol&Òob!uƒ/b ^&ÕobˆóRxØóÒê/Ì"•p)_cuxoˆƒ!%2R¾rÕ! ÏïÉ”Φa7M’hVÕ1çm0ã]Pº4Žºmï°dðødÉ­ð4mL­°°É°ÎÉdŽÎ]ޏ4v<ø4øðøøÎã‰L­ï°L²ûd<<ïÉ4Lºû*››ñ×yxhƒ²m< vï0ÓmLÞþaZ†0õ²‰›ZX™XX’™™A7¡þÞ¡$¡Y¡ü$¡þ®®$—aßYnßQ®$7ü’$$’¡Q{¡ß@@þ—¡þ¡{7YY7{þ’¡þaQ{A®™X¹ZE™®¡——YßYYa’7Qü{$Ë55€ÌÙjp -== ¾Ì_••(@@{@ZQ$nnQQ—@Qß(@Q(QQ(@@MQ@(QY@QQ$QAE†@ïÉÕ›ÞaY(@—(ßß@@QQßQ$ß@Q@Q—@—@QQ@n@Q¦ +„”PçŠ ðmmvLŠ ¦ŠÎ ¦LLŠ ++°vŠŠd¦ ¦vvΊ ø ¦¦°É‰º”¸(Ò6þ+Î ¦ŠÎ¢dðÉð­ÎððøŠød¦ŠðÉLm+ïvÎø ¢¢­]û4örÿ•òÍÊóº4]V `ºó4ïgÏPPäÓ´ÕêuPÏ㈈ê] bNÏäêçdìì¨u#óg¦‰’?ü¸„Ž!ê캄êˆ]êÏäϺ†äÏ4]00bê4ï+gdû0g/šíwË_â=)=H8Øí9sG~9%‡Øo!ó lšÛÛN}ªwí 6·NÑ~Tw r†í;èí¢*†sý®0Ê^,s9ÛÕ‘ªªîb؇Êwz´¨Nííw^ÛVs^ƒ8ç„çbƒ 9H‘¿=€â€|Tr/^ô€}H/9؇sw&¼CC¼W ÚÃôôWÂCÂ9w¤||~,6!‡q@²†z —ÊS‹ªI,…}‚Âw´àV‘.8Û·swÒ‘š·6·˜,,îzÙs‹~\~Û/| ž-= NTT…|€ö/r…ÇÛ/š‹˜s/WGC[[[Â~Gô}~ N /[}ôƒƒTËÏnäê8…EšèÙ‘˜…,~ñIÂ[ ,Ù9˜~~/.‘S…š˜éÙªWCI[.…é s¼ÿ«w Ö) €»1Ø8ÒË•€B8//~`íÒ‹è‘ ,w[¼/´ƒT˜˜…VTºBror˜ÂÙÛíBûã“ŇH~ôÕ‡8í9/šwñ–ôÂñÙwzšz,š9/^‘/^·HBT99N‡…[¤r/1|>ÆCWÐVØØ!¤G•2ØN …,/8¼ô·98šF… º„ …Òûƒ‡¿Û9s…;˜&bwîìE£?ª|wN/‘^; 9Ûٯ¼ّ9Ð|íýÛsNÕ/à6/íBwí892_¾2 >8Ø>Ç¥òùV‡Ø/ùp€Ç…9‡/s~~;C~cÒV}ô9²ºw|HûqöÌ|WC Û !Ôy]™çŽÞVWsr‹}:à ˜lVWªcw/ öN~CNwÔªÛTo8Øí|öÌ"¾Å ‡ wwsªC;˜w1Ûw G˜~HØb/ š¼Ô‹ ;ݘÔÂ;ÚN|/obbs¾¯¯ íƒÛÚcê†ý·LÀGW à ':à ¼6,˜s‘w3Ö2öCÂÕwª‘‘rbTB……ÌÖrùH¼V o!b~ wó!Êç89`b í!0`Û‘W~àª;–CCé`ˆ4äNíwíz 9NN9,¼wTÍ C¯J“W£*‚ÝÝôCC^9Ù~c–˜˜,Ù 8T¾"qj98…||oT/s[ñ>ŸŸ s‹w´ƒxB9/wƒ!ƒN9,ÛƒíÛê†ê/Úcz^Ô;C~… ubbíØuNwwr r^‹/ƒˆuOž&¹C£E1VWWÈ;‹N8w/^;¼–‹‘àw8=µØˆ[o!ÔH9/swwéCCô)G±ÙS Tb`!í‡w‡8TG9b9ooÊíV! TzNw‘éš6w^…9s…s8rÛ^˜‹ Hí1[ÈC†¡¨¼‹r“IâÃW/Û99CC¯WCéwØNù% Ûrr2)i¿‘s…zs|Ûw‘TÔàš‘T` o uo‡ö9r…[ /T/b8!ƒ/#Ò8N88B9Nw;¼|2%rsš‘;‡‡8,C?m—u/?.ñO)ËC^ÚÂÂÂ~Ã;…ƒw‡íTTN "Ë¿ù•Ÿ9/…/N99w wè~,rwT9b8 î8‘B‡V[˜èsbwšííˆo‡`ˆb wNèsV~sùÖÌ…N4`Bíu1´)ô­‰²ã’çØ[[Úª–ª ô‹/8rôÂ/NíH,rw|wUПÖHñsww…wT8Sr~¼‘sÛwíí!wê´šíØrs9,é…ws9w‘N9íš/b8ØÊNr9~¤ú¾µ|‘ͺÊTTTz¼)ݺL$fØ2Ñ‹ÝÃÈÈ[ÛH|Ûwš«/S9S ù9¿j|‡‡wN`…9N`T S9ší Vs´^îxèNw‹˜……‹[écÙšNèh8bwˆrww~öÿù¿~¼†ç`www‹ÃȲ’Ó‰Þ„DrbVls} ªÙçûí Nwl,/š‘wš9|˜[G¤«wVNÙ`bw8ñ|N…H šwP1†^1/z/è…‘~~é~,‘w9 8 ˆ ƒ‘…V2¾G–Ù탅;wsѪÈ—†oÕÞüwÙ9˜ñ~zNÓ4w &˜s/NÛÕ9…w9ñ[‘s 99rboš/Tw‘l/9Û9/N9N9wrØw‘9è‘‹˜CÃÈC–WwíbÊ9í¾‡…/r8rù9…Vzs ÂÙ,/VCobrT¹ë_|î18 NÛê N‘·~^šIN9zzw,‘NwwN!óí/ww N…Ô|w…S`híb8V/| uÛš‘Ô; Wª s˜r‹lÛ,w9Ë2HíwwN,‡˜Ô·ô;ÂSí`/ŸdŒ1sË#`µÿÙ4o`s9T6,‚.&Vs‘/9wsw/sèíTwuíí99/8,Nw9/bT9#NrTÒNHw î,˜éà ; Ô˜wr|[àr"%r!NTíÒ/sw9cwóºoÛÍø7mêíbE‡ò)Úè0!Øsš,‘˜ÙI…,9s99,Ùz`IVwbboTw‡r``9Sè~/H9%íÛwËö28/…,6CÃÂ[£GÔ|Ûs Cÿ̾ùuˆNÍÐ×s 1çzš%ó„T˜U­M°@bÍ2Ÿ|[‘/b‘NsÙʇ‹¼Â[Ô‘Ô9šî9ls9¼szrTr`ísb//TNÙT982…9‡‡8b¾¾ØTšÛéÚé“W…ÚÙš|Ç}‚>i"Ë||HVØ[ÐsʃTØBˆb/CWã7*óÞó2 …¼>ô)|s49ñ˜s,s,s|‘N/~sÒ‚sbNbwšT/VbÑ6 9×Uùw9…9¾µrwšwÊ àà‘ÔN,Ô/[~F¼ŸŸ¾%Û89" Ç 1ƒw‘ T… ÷W]ßaº4R%HGÇ=ÆR*b,ª[‚~|Ù‘Ù~˜|~‹6VNT/8wrêbw/ 8N‡yÌÍHww sH"ö…/šI…9wl~w,8bèÑÚ¼…¿ñsw[‘Р»`í[C áK´‰qØBH,¿€Äž¾"q éÔ6¼~˜¼~èÔ6^;Ô~9/9ÙšÛˆTè9è rÛs w…Nss…HÛ9ñwNNNl/8wš`Tšss‹è…¿íwí…[~>|Ê‹wzcW`{PÞRƒórùéÔ¬=ÑuíÊ6ÂÂIà^c^‘~‘ôW˜ª~…ÛV/9s/uwNÛs‡|SH9|šzN/è~,šs……I8šzí†Øwu8N/‘¨s/8bí/s^Â>= =íswíuuuÂ+(äŽAwZPÝ; ÙI9¿ùù…N1,઼ÔÚ;‹¼ÂW;ª‹ÚÚIsš99/´Nî8oƒb``8ˆPTwå´1/ 8äóÕDóƒ„ìƒåÓb!ˆ0Ï!`b¨T[ 3)~ƒ`´bº<ºêÕ­L‰†™õ†¨6·‹s]4ºVwíÊ åNz·VèÛ·zså·Û^^·‘‘¨ê8¨í0TƒƒïÉd²gа²+ð°+Ž„mÉïÉûf*û²mÏ޲dv+<­L4Ƀv*Ï”ÉLûø+º]xmQfƒˆüõ*4¨m†ûLï­ÎÉmv40ìb0ìäb0Ž]]޲ïäL޲ä­ï]{¡þþ¡¡$$$—{¡A¹®$ß’™Z#7¡{A®YMß7M${$7{{{7ßQ’—Yþ${’¹¹QAz!—œ’—AAA®þ$nþ¡¡¡Q$¹¹A™Z“Z’A’™®¹ü’$7¡ü¡A¡›Ê×Ý??I?\››?ÆÝ\\hq_µÁÁÁ52ÖÝW?DU›³Õx³U׫&ëh›xUU«Ê6ò&Iws›Q›?×KpÇ\¸ReŒ\òKæž:âKžžžâ¥â¶KžWÿjcjú¤òújwE“~C ;ȪÚŪ“ª,™A™ö[G;sÅžÃ;NsÛ™EI ýZZ¹lËlX†b```Ûàc^J£¼yàñ#9úÚp÷ wÛ1ä¹í¼C““ K::âÈÈ-÷pKp÷Úà F;)jª”9†R¼‘[Ôu’hUDœ@®†r|³x.?JÚªN’¸ü’²ƒû†Aäƒçxý†&‘×ýÒI‹.ZÔ‹‘Iy™´XPh„Sx1¹q@q Ê9ÛEÛÙ ¹††ˆÞu™\ZX/홺SÍ™þ¡ÊxþíUh#À!VÀVX[J–žK˜À hEoEÒ8›ox¹XàEVj[Ý^6XIÑÀ\ÀZxEXl‡,#†ä’†E´wl8íoüb7”ÒlII‘«‘#TuêjÁI¬,ѹφEî Kž-CòËÐcÆéjÝÇÃKáâžæ÷F€;Ä)k Ä¥KCj F ;C)Æ¥J€¬¼ý£€§¶æÄÈ‚öyH|Ì K»È)¶ââ©§»òI IÆFp ÇGF|ÿÐ~G‹I–?Ò4Pm†ýGF)–ÐÙÕzxIcî£WG;FOÈÇ–;)j;|¾»µú[;ÆÔ£IIÇI£èj˜WÔé\&&PcôÆ'Çè&oxrÐôÇCj¯ôK¯)F¯ ÇñèIôcjúIjòUÔ˜@@ßYd $²aQßM@((((ß(@—®Q@QQYßß(QnQ(nßQ(@Q@Q@@(QQ$(@@QQQ(Q@Q@YQQQQQQQ$üQ@Q{QQ—QQ@@—QüÎd¢ *Y#8d¸ïŠd¦ø+LЦ ŠÎdgÎø­ðŠŠøÎÎЦ dd­ððøð­ðÉÉðøŠ+ðððvø¦øÎdø+ddvΊ­LÉŽLLd¦Š d¦ddgÎgvgmðdL­ˆÏ0,&7ïx¹v‰hSwƒb4]gûgû<dºgP¨Pƒ´bbˆ!b ê´¨´´bPîzT88!oʃ0†0ƒç0Ϻbˆƒb40!åÏÏ4ÓÉ<äûº”Ïb0ƒ´N| /éäãê¡Ya›~Wô89…S 烈íb049/Ô¼[6Ùšs/…‘[~ÙàÑ,s[9w¿ÌùrN/89`ÛVÙ/ NˆwxB9N̤óí ÛV/ÛíÊ`ƒo!`b`oˆˆ 8Òîs;Chb‰Î^àï’èªÚrVé~/í bÙ‹N8u V.~‚…˜[swñÛs…VN9HÛ6‘è‘,…9˜,UËTíÕ‘šs| [¼…s Ö¤_89TèswIxíTÊˆØ ùÊ1ˆT`îw9ÛÙ;¼å´~I—7³Àì¡I}[,ç;~‘o/~CÑ·TT‹^[jNV‡//wà ‡/……wàsNz^s^NS‘öÌT9V ‘Â~[C[[[‘/s¤ú)w88šw˜s,w8í8w/ÍËrN,š9w9^^‘N^šÔ¨ç«E„’Ð,˜šqƒ…U‘B!bÂ~‘o sªà,sîu¨^å´îV`wS/NÒV‘/^‘sB2TT´T^sš |GUN/ñ9|Ÿi>HwT9Û‘Û` ƒ8T888í…Ù,zC˜,¼Ñ~w…Û^~cENSÒP#xSsNºq «ƒˆó8sÙ `ˆ˜Ù…NzÕ^^´//TuS1UÛ s·^‘6wšHwH8ÛzîNzr"y%µ‡Ò‡,……|ùíç`T9S1`T Ø!/í…‚c¼~Ùs~‘…^ltris-1.0.19/src/gfx/back5.bmp0000664000175000017500000016246612140770047012743 00000000000000BM6å6(ððáë ë  eZR©š•‚},*(ujb@:5ÓÂÀ‰zrǶ±QF>™Š‚À®ªvnUNImbZ¥–‘µª¥}rj´¦¡Ž†]VMëÞ܈zzxnn964-&"…†±¢kegmjhc]_ ‘’mb^NB:æÖÔynf•†~aZW42/rb^'"XNNvsàÒÑrv´ž¢xrre^YKHL¬ž¡’zzrf^Œ‚‚’zu•ŠŠ†vr€nfÝÎÍϾ¹?:;ƒrfWFAjfŽ~z™ŽŽaVZ~v­ž™5.3`VV›‚~$"©–šl^V_NN€zv®®5+%¥––bNIfa„rjš†zH::“~‚fZW¡Š~ŠvzkVQtfb¥ššÕÆÂ‚rnŽ~~~nj#4**HB@‰vv†zv”‚zDFD¢Ž‚ĸ·–†‡j^Z­¢£XJB¨’’]RJ‚kb’‚~¦’†ZVR;6;PB>Šzv«–’%&(±¦¦nnzfb½²°•‚‚sbZŠŠ—~ztffrjg{jblZV:26(("&µª«‹vr‰~{A6.‡rnj^^p^ZŽvnH:5¡ŽŽ“~v=2-ZNBƒnjQJE5.,mf`„rrkZR¯š–‡vn˶¶A62´žžªššyjfjRP¬––." \NFš†~³žš£ŠŠaVR¢†‡š†‚J>:}rnƲ°ûîëynj•†‚.&'ubbŽzr=22fROxjjjj·¢žYROJ>>WJJš‚‚§ŽŽŠrr\NJØÉÈwf^”~~PFBžŠ‚J>6»¦¦·¢¢Žzvͺ¸`RNœ††XJF--.ŸŠ†ŽvvhVVlZZ’~z°ššXFFr^V`RR#fVR™Š†;.+¢Ž†£ŽŠ{ffufZо¿È²¶%®’’'""PBB¾ª¦cRJ¿ªª–‚~vb^»¦¢¦’ŠŽŠ@><^JFOFFGBF{vzlbbp^^A66§’ŽŸ†‚dVN¼+·ôIÝØÝרAÎðßÑšÊYÃéþձ`‘z§t!4ó:¼’¥…fBؽÉf]œ"aBÂÖÐæÎ™àü¥ó6àm:Bû’ãŸþŸqÒƒ…Õ§½™4`àцóŽ'¿išIäÖ~¼±1vú""ûIô'@#ÜsȇA‡‚íÿ”@rrp¿—µDclllÞlµÞK·ô Ñx—¢†'š¢p>|yy‰ø t4ïð‡&àXN@©è·|*ÿMžðõÿb™ï]Ø%¥±7Œ7…£3îäN§t!•5§fÝ¥Ïqz…"'9ùø‹¢I¸`fbz:ó£¾`ˆ‘Øn¸ÂÃþÂÉz¼:¥äÂÃÉ•qq!aààýþïÚ§`nbàqÚþîî/¬ŸÚÅ5Ò…——­,`CàÕï•FzBß)qfÙ4Ña¶¥aF,ó91úʼÊM+"'Ôš1ú­¢›ê¢ßS”Ìžû¹a…©ÊÑžÓ@ ”Ì©pMš·yyÞly÷lDµ›enÑÌ”"œv1ÁödK ,g™¹{  &ÒtT‡’°µêÌÿ\ˆÓ…Žf¸)ä"Ø…œYØ6ú…X¤ÐÎØÁ½55óï{!¿,fÒfŽf¶7L.ö‹›úˆ´`û™§¬Ãf䱜g:„™¼n]ƒqÒ¬ÅØqÃÉÃãý¬ƒ¯ŸŸÂ¯±g¶ï¬¬çç}¬qͬ¬¬‘Ž1¥×¥5àƒf:afÁxbŸ{g™Ùýà`~7,±œ 1Ýú†¿œeI‘1‘'ÓÓpSí@—Q·üëÀe+Ø‘Ynx#ˆ6íí6n¢DDè÷è‹·ê|굊託  MM"ôŽC!¾¾¯sUh„Ë–‡në‰IßMž’1OóÉAÑä¥]'ØÁÆ‘‘ÚR¤qt¥…ttRÒãÎΑÝœ¥‘EÃ/•¼ú0zŽÉgÙ½¹ýýz~]fb,¶Btt#¸Ùï5ÒÃq{®§§§J5ÖÂÉÖÚÍÉßÒÚÄäqͲÎà£ÚîÎé«3tà¶~•7F94G!¶†’ó:3!ffîÕãóï8±†¶,œ¿v1"'šYnz\ˆ‚õáDcKêÞÞ|w©Ì°Ì°Ñ)´ÿžÿ á*·I'ÝöÓú'ÓÑÓ”›¨*áMå""OPo§8A Ï8ÙÙÏ`tAð‚1ؼPƒA)ˆ†1YYWØmCƒ¾ƒî§f[~Χ• —MO]àCL/Pî//kP4f~¯• ®¬ÂÙ™5`¥¼5f`gج§§Ú•Å[ÃÎÚÃ5ÉÉÅÙ~Öqï{P²ì£ÃŸÚîÎR£®éé¬ÕàÒàð¯{FßxššFžn34¿tqÒ5®¯OØ1O±r2¿1""ö±bA’‚žíSQ÷D÷µy|ø©rrí66h‚MžÿÊü°v¿œœš¢eÆr"nÑ¿n"M1åMp6œ7,CÒÂýÒÏò 4 Õ“þ–“U‡Ê10GÒýB±¶´±±¥´ÆI.5¾Ù!4Òt¶±½Ú~`m.­†±‘03çÇkæ<æÍŒCo¯bhG²¯™ÅÉÕãt]úãà f5óÎ…½ýGÍ£¬ÂÃLæ¡Ú~½`ˆÆ]A~®ÒÏÃÚXEÁÊݽ5Ãé/Ú§¶t½)ß™½)…~bf­M°ˆ…ši>Ï]Õì¾§ìÎΆe´´ ,±´ØÆ¢'‡A¥‡ž˜˜@Q*èDÄrp"1­’ÿž©ÆrÆÊÊIM?pÌ”üprM6MÈå% "e0CkÚÕà9C3o²{™;ð\Ý> móU¶]']©,90LŒ¶ƒ[ïƒÙ[!ƒf5+­†%'†!Rv,/çÍ5X5™`±:5« ®ÕÂÉÅ:ðgýÕïÒqó5Gm`zmÒÚ£¾¾Î²²ÎÒBU,±Y’ÉÕgt ¬tØÀešÝœ•ÎÃÎÎÍñ{ÉïÉ5Ï’ä †ôGOv2wx3ƒàÐ ý²ÎÎÚ…ÝÝI¸ú)Ýë»)  ;såÿ˜íMš›©1%‡Èõ—¢W#+’¥åMMYžYnpM%% M](¿,ù}_¥½hLC.Læ~ ¹¹sM’Ûù¥±z~` ]¶aà¤-¯34P•…bÉ5fÃR±¥ˆ­Ý2+Á>†_<îÎq}•´û)ÙÉ«ÚýÕàï…ÒJÒÒtÒ~Ö]a…Åf½:É•ãƒïÚÎ •a¶4:AÅbƒƒ.zg,0œ­zÚ¬ =ñRÚPã¾B5±±œG¼7aÔ ±`¥:Õ¯§¬ƒqm"Ýäfƒ"0û­bNÌí hUÈåžMžMp#¥gb㸛ÁM]…åå‡??Ü]?MMÈ6‚Mb%Ä>¿´!•g, 07LL!çÂÏ ý&UEX!5à]~99óafC²}5ƒófïý~~"Ø5±"­±´,«PÇ$Ç ì²ÐÚ¶¬¬Ú£¯~ãÉ5ý8Åzz`:t `F`~ÒÙ§ãÒÃÃã’½4`AJäïÉÉ£ÃqfÚÕ¡æÇî§ãƒ¶5àý®Ã5…E+üYú´EêôÑÁÕÒÒÃÕÕÕ45b¶7.,~äUȇU˜ r­ˆ‚‡?Mp˜¢°e.!7©ÓMM)‚~ ;žÈÈA)äN’ˆ]MÝ ‚?‡QD‹ºôô i,ú†"L-ÇçéX7ƒmqmÃçoR93ÚXÂÚÂazbgU3•,9ŽmatàÙtÉïÂÉŽo¡_ì{ñ¡æææ=¡Pîîî/§ïBÖïî{ïÒBÏ5gff,~´b~zmÙ{Õ5ÖÕ¸ãÎãÚ•~ðäÒq¾ããÉÉñÍÎoÐÎ 3mf±¸IØ…™ÕqmèµešëÆ+0‰*Äè>ëÉÂïÖÒÒ« :ØûA`‡’¦”èŠQ"šÓÈ%åå Q°' ]‡]ÈØ ?zU™A’b`¥)]]Ü;U˜èêôi›*”åHø ækmƒƒmqLÃÎîÚƒC¡ÇçÃqîPÚmfBà¶fgPG:Í{m«Ú¾Ÿ4§²_ÎÃ«î ²Ð ÐæÐ«®é²ŸÃà «¯fz:b`±¥]´bzÙÉÕ¯Ö•Òɯƒ•﫟ÕãÙA4}ó‡þ«Â¯5ƒ3¼šÊØúa!à…¿Ñ'pYˆûû~9¼ôf¥–ÿ\>*ê*ÀnäA½mÏ~Z fïªÈr ¢—#1œ6Ü‚‡‡‚‚6%š(*À¥M tAåUhËÖA%]b±&F¹;;‚>('¶œe›èiåÌ|ÄKú55ƒ¾ ¡ ÐÚ•P²Î/qβì«Õ™…:]ûmz~…¼¼’:àïÏÃ5{tb´ÎÍñ§{Úξ{{«ÚR«ÚýŸÍŸ ¡¡²Ÿýýmz``A"]±~BBÉÉÕã¯ÕÒJ¯ÏãñPìãóó)•½Ò®É´ ‘Á" ±œ­p°°°Qp‘Ö¬t ‡8¥ ©\»Á¸`bÈ;ÏVÏ – ­¢—Ìp#Q "´"']] ‡‡?œrÌŽ%)A;ÙÏ  )‚×’`‡‚‡F&ÙB¹&¹™z¥š¢œŽ'1¢”Ó´1*ÔE޶Ò{//β²²²Í§ŸÃÃÚ§ÎÍÕþƒ)…ä½~ûÝ~fz4ó½Ýb««£ÉÒã•ÃÒ„Ù:σ««ÃÉ ¶¾«ñìì•]´¼]¥,gO´±]`5Å5q §Ö¬à~ÂÙñÚ«3Ï0m´]:tÉï5„Òm!­Êe—­b:±ž™Ò«ì‚ÙÕ `6›MÈ;“‡ÿ©pM\Ü\’F¶VFU%]1nåši ¿ú‘‘~UU;6åh `A–¹ UT AðÝÜ``b`zzF&UzB’ôØn]n'å#D|(ú7L£§Õ¯ÉÒ¬ããβÍÚ¬ÖÅUÖ~ɧ/æÂ½ƒ•bz¥™G4fä` ЧÂÉ`hÕÒÕ¬ÒÖ:BthÙ5“T~ä:t:±‚,f,±~~%´¥J„AÃÚÏÙ¬ÙÙf~™ƒ¶,ò4O,b •þû%"…abÛ#b &`]UtÒÕ¬F]±Ï%MM;È‚åÿ©ÆÑÿÓÆ ¢WÌÈÏtÿ©6)žÿY)­ö·cc·+&¥ˆ¥±n´UbhF¯8;‡‚¥;‡ðÏ– U¯ bÏÏÙÿš%`zb]¥e· 7ãÚãÉɬý§ÂÂÂÖ5þÏ„ÉÉ5ÂqP-ÎéÂç!àa~™ò¸fÚÃ~„zÒ!ó&ÙB,`U™Az¥¥¥ä…]ú"œ¥½´U`œ´z5®ýÖð{Âä~Ét‡¥zaóGîÕ:ïnƱ!f™äXAA™‡U ¥]T¸AhãB.[UMåž™?ÜÜ‚å xnåÿpå”Q”dÊM :A’)¥,g1èDèöG±Ó)AbAA`&ï–ÖAF¹‚@S»½¶hzA™ÏÏF``ƒ¯ª? b™;߯6z'ewm¯qÉJÂ8Ùï¯t¯óóJþ5þÕ¬ÚP¡ññ«Ÿìóóz¼`¥mnŸñ„JÂà¶5f~b~;UzÏ;™b`:¸±¼;¸±†¥±,b¼b¥…±‡UÕþ¬§§•«BÒÙz™ä½)×­nz9R"¼"ÁŽÆnÉÉÉ´~Ï–AAThhGÏ×’Af5‚Ñ@‚‚ž‚‚ÜÿÌÆM;: Ièèr©dÝMM"™¹A‚ä¼´ù‹i,¶`±…JÕðAïhApMȘžð„:`&ÙÏÉhÙÖä½5h¹†¥ßÿ\Õ‡™“ާÃÙÒÕÖÙÉf¯ÉÂÕÏzþãÉÕ¬[ÉXéP¡æç¾5¾:]bFˆä"¼òî§þ¬ãŽBFU;;b ¥%´œ%±ÈÈ¥F%% ¥]¬Õ{ñ ¯–¶Õ:AUmgb`ÑÓ`ÙÉJA¥wü°ßb‡FFU]5f&G%&6ˆ‡¾òT?ªÏ bFTØS­Æ\@©ž’ÈA;I1›ü]õM‡ÏtU6ʰÊ'ê'ûû!޽¥´B~ÓˆtAň#r’ðÈUhb`g™8U–hh;Ë„ÕÏA:zÎβ<ñ…ôôE!þJJJJþþJBtɯÒJ„ÙÕ8½ÒééÎ ²æÐ«éìì¥Úƒ] B¶&FUU`;¥]¥U´´¥È6"M¥]]¥¥ð‡h`Èg ªã«ñ{{Ρãð]¯4~~mtÏ`BØŽà,½ðÏú±;;T`ÅÉg–ßU:b ”p˜ àˆ\ˆ\ȩߞ©xÆMÝ¿(ôô¢IšÌp'M’ßTJÉbÝ´´bGó„É~´•Y»ä¥MA)ˆÿÿ’UhÙ™:hÏ8™Ž:`à¯Ùh–¡¡Ð²P ¡×Àv¼ÃâªJªJªJïÕƒ 5„[Ï™ÙÕéÃ;ñ¾«²æ²«Í¯Bz¥]%b;bb™`™AU;¥È‡b]‡6))]]ÈU¥;:UžÈÅBzÙÙ¯ÕòŸ§¾Ã¾{¬ÉÅ•¥™ŸÚBïz1­Ñ±ANÁ•¬Å~¯ãB&ÏÉz,G=¢—¨ pÊ©­pÌ—ÌpF’\ˆÈM6’Æ©ÑÆ©rrœeú'†ÝY"¿pÑ6Aˆ©‡ᛚgãËË{U84BA];ˆÆÿMÈ¥UàÉ;`Fà¶&–,%¥)& âËì¾Í PæìÇ(#¿…¹¹ÖÏfÒýý®ã¬Ëï–£L®Úé«£éÚP £• Îà5¯»MnY‚A™A%bUb‡¥;6´b%% `%A~,5ï&ÙJËïϯªãòýƒÂJâ{ïÂqÍŸŸÒ½tƒ4Ú¶Å´¼b`b…–ÎÕJŸþqýýýtF¼Øàk%¿eex6px¢°ÈÈ ¥UÿÑ]M’"]ü¿%œŽ¥%6ÿ¥‚©©r1œfI¹ýŸâþAòÈ ‚¸™È?‡F¥]òF zF¹ÙÏM]5Ëý= ¡ Ð é+EØA™88¹8Ïhã{éÃýÕzÏÅ8ç¬Ãñ¾ì쟟ξîÚÚÍàÏó¯U`U  ; `b¥‡¥´U¥htF:‡M¸]?Ïï&hïªïªtÏÙ„™8“AB„t¯ã¬Ùɲ{ý™Âïɼ¥±ƒó¯ªJ8Οàҽř tÒ•0g¼à…Ñ ex”Ûˆ)û’nppž‚’zU; Ž™`z Bb­´]’™´"6 ­íˆ;ˆM%vš´@È Jéª\ ÿSM? F Fh;Sõ:È‚¸ðˆ)’";Fìñ²¡Ç ²¼~;“–8U ¹¯Ã¬q§Ÿ«ÃÕJª4{Îլ{¬ÂÂ8ñ–ÉÖÃ]b;‡]Ab;F;]¥UBzFFz ¥%bFh`½‡‡™UÏFUAAF–:AÖ™É{þ8ìîq¬ð8¯5ð‘´FûY¸ˆ„Õ¤•f‘:ŸÉÙ!b"‘n´´±"ÊÊшðû䜥)pT]:Źٹ–„B,;]ð;~„‡SNˆ™`‡â %%å 'š’©ÿÈåZ˞ܘ ˜í‚žV? h‡ˆßѱ);`ððÈ%)"%%‡¸Uð{{ñÎ{Îî PÐ9¿a{{{{{uò{«¾Ú¾ñÎñŸÕÏãÒÂ鬟{éÃã{ãÖÅÖãÒÕ„ðÏÏ ±;¥àB‡¥UzBBzU,:U F, ,±¥;;z ``; ¥]‡YÈ%¸¥Ï¹ÂãÂýÉîŸJÉɬÂ5f´ÆÑß:¬¹ïz 4ÊÊÌÓB~ÒÖzmó§ÎÕŽú'œ¿rö¿¿å6;ˆ¯`Ù;‡“~sží‡b™–A5ªâSíAh–; &%¢­6p˜˜M;\˜M˜Üȇžhs‡ ˆÓ—ö” ™U`b b%z¹b;Ïññ§Ú² îÅqO5Ú«««¾¾¾¾¾²Ðîñ«§{ÂÙhÏÕÃãŸý•55Ò¯ÉJJÕJÉÃÕ~Jz`Èß±´¥;FUU% h&::±%,:‡´: %]’n],Ï;:™¹Å~8¬þ龟®þ{•Ðñ4m'¨xB‡6]­ëvÝQÿb„ÚýÎ ìý{qm•¶´œO´œ,O,M‚\¶ÙZ¹„„T×ðð»ð½’&ï–8ý«ýT’»ð™Aí‚M?#ÿåMÿíÌrížpM‚‚í‡;?ÿ;UÊèxЇUM] :ïÂþÒÙñPÐq¤Ÿ¶´++ú}îññì «éÃÚ{{éãÃJï¾ÕÉý§Ú¬ÕqUf5ïÕɬ丙TbF  ¹Ï™±¥ Ž`; ‚]‚"¥‡]A`  Ï:å´6]’õp’8?JªŸÒ5~5½fÉý²ÚÖÚÃWH>~tÒÝ…,'À1wÌn¶ÕòJ¬§L/ÍÒŬR5û543La55…ÑUÒÉþÏ~™¥AÕs“8h8‚]A«z©#pxÿžÑ…† í¹U¸Æ‹‹›—Üíp\Èž×™¥)íÆ—µn› ÌÿU‡ð™:hh–h¹½¯Ò¬§LqŽeÔ2!ͫͣéýéééãÎî£/Ú{{ãâããòÕ{¬h–Ö¹„~Ïhâï„  –ÙÏÖ8ÙÅ A;`:``¥]‡]‡;b™;™ Ïz A…ÿß% UATJ“sTJŸ{«ãðÅ«ÕïÂRÃÖÉ•ù7´0óUÓû¯t‘]èѶ«Õý¯ªýïããÃÚý Ÿ£Ò~±)zFéÉ~½B4óàâG¹–hª8A\ UÆ—í%Èž¢———žhÏö訛#M‚‡ˆS’A’ÁípÿÿÌÄ(›WèQ¦8hªãþþã•ɶq4¤3 ,(ÞwùC«Ú®þÚÚ¬§qÚ§/qéý¬âóþïþ¯¯FÙ¯&hï¶hU¹8¯¯ÏÉ– ÏFhBhF™bb%¥]‡ð]‡È¥™;‡½ BÙ–Ï å­]™Ëòò¬òĬΧý®8ÉÙÖAÝð™a!œô"&¦žË–5œ—ôhý•ÂÕÚqÙ5¾ÚýéÚ¬§4Ÿ~\fÈh¶ýï:)¥hŽ:Fh™`¯5¹–ààÿÆÆÿõ*ụ:ÏÊ—À©]“;‚Ü‚\üÿMMœ+ÄDyDµèü½½;¶`¯²GªaÉ~•4^kG1°ô‹ G¾£ÚÚ£«§§ý§ãq¯Ò¶ÙhÙ8ÏÙïjBb¥:&Ï™–Ïïï™;UF¹  ™UÙÏ`b ]%%™;™A ;¥%¥™Ï„hþãFÕ¾{ŸÃ«¾Ë¬â8£ÎÉý¬É8GŽnÁ‰|ô#˜óUUJ™{¾!QQô~ÒòqÎìŸÕä[ƒ.ÏÖz`)ØÈÒˆbtàÕfafn’;ÙÕªÕÏ¥ˆ;hb‡È Ê*º°\‡¥ØNM‚Üÿžˆäÿ­­’M´"‹DDĵµÁ¸tªòtÉgb¥`o¡-Ç€%2›ÝC§£¾ŸŸãÒÕïþBÉÙÏ–Ù–b` ‡¥ ÙÉF&ٙŠðA~UU`‡ ¥6;bzF`Ïb``´%¥;b™Ö⯠b ¹Ë{ŸËý«{{ÕÏŸ{Ò5;"´+á蚎"±;hââJ„’5f4›š—ÊÏ4ï¬ Ã†'"…,óf²ìÕ4ä’¥,,àGãB)):ïÕÒÕ`& b ¹È&­>á·’íM ;ÜÆõžåAMõÿ\@ÝY凇n1ú>µµDèêèÿ%F:Ï~JÎRóBbŽæP=$ŒX>‰œ4§¬ã4•ÖÉ5ïztzÉÏÉUU:U bbb%b ¹ï&BÕ¯8¹™Uzb¥  bb¥` bbbb%´´%¥%6¥¥?` “â®þÉhÖ„Ë{ì¾ýÕ„J&f,¸»ˆN±%© —+¿ ÌUÂ~»p;"}f¼x"Bm&Õ®¯,f9G"úC ÃñîãÎÉ~,gÒƒ¾ÐÍýÙٶ®ÕýJhÕã JApAÝ·›·èØ¿Ìí܇sí×íM;™‚’½]Ë{ª8ªm7 ‰|èµêÆFUU;ïhïF{4tÙ! Œ=…dv&JàJÖBÙf–8:Ï:–: FB:b5ÏÙ„þ8Ï™‡A ¹¹BFbA;:%bU;¥¥"n6"6nY)]fF–„Jã„ A‚’;ÃéýÉFÏ™¥‘’Óš¿i 1MѰÁü—èÑÉà¯h6’š¥4äqÑÑ]t¯ÙɃmaO Gm]]Ã~8½Òqòq¤4ýÚãÕ§qéÚ§ÎÉ=ÿ#»í@ž‡%e·K÷üÝ#@ž;;MÓ?;–ÏAb¯Öâ¾â–{Ε!'¿èµšOrpG¶M’UUóÕû‘= Ð9¿vO½ÅJ8ÉFUzghz¹FFFzF„™~–¯ýU8h¹8™s¸~zÅU:`‚]‡]""bå†66%MœA 8É„ÂJÈ@S’ˆ;U‚AFhÑYQ·ÌüQdüô·‹Á™¼í6Y’)q.™´]´ƒ§þ¾¤É…£Úͤ@;hã£Î§î£G«ýýŸ¬þq{¬¬Ÿ{¾AÓ"Ñ]’ˆ’A܈¥Ê÷Þêc#ÿ;;å™û;– A &Òƒ\sJAA®¬é§……öƱM6"& u:‚»«ÏïªTúa €£û¸kó~¸äÝ`z`FF h ¶ mt Ï¹–þòýÂ8™ªþ“Å8–U8Ï;]‡‡%‡"M1;M''"œ6n61]¥n ´à`F&zAA;‡;]A™™™YáÄêÄ*Q¢Û‰H(eöÀHü‘0ã¶û¼m5éh'ùIa§hã¬R¶ãÕ1~£/îÃÚ£«ý¯ã8ÈUŸuòÕ®Ã5Ø`¸È;;‚Z8F¥w‹|l|#¿ˆØ~ÒÂâþÕU¹“h8ëëû™U;¹ËU™‡6Æx Mj ¯ÖÅr© bzJƒãýqîRë',m®É88Õ™fÏï5AfÖà!ãÕ¬ÒÕ5ÂãÚÚýýýâãýãJ8¹½™™Ù‡)M±]]±6]´;’n¥%††¥6M1YMœ%œ6%;U`‚U±;ð;`‚ˆ)…)½,F¯hˆúD(i((š ê"´02e´~CYÊà}Ãì)0€'¥4qqÎGzØ¿eñÚéÕ•ªýòðJ™‚ÿMÈ`UË5}•Õ¥‡M¹;J§aÀÞ‰r']ŽFϬ¬„¹ªhsTÅû~äs;‡\‚;¹¹:&1¢ŠÌ©´bAòýÿ©» JãÃéÚãqÎIÀú4=tÂ{ÂÉããÕ5ÕÕaðÃ{ÂÖÉ®Ÿý{§¾ìñPì8h®ª5UUA‚%‡n­¥‚]ÈžžM‚]]ž­‘]MYß6"ÿ©Ñ;;’]¥UÿˆMðÏTöÓ×ר…¸àh?M"'"eºè>0Uzfm,1¸RfáÛ•Ã¥à¿3Ÿ! §•b"…Éqé{ÚéòãâJ Ï;UU%‚‡TÉÅ8–ÕËzˆ»‚A‚™tz±ø|#¥óò8™Ï™T‚bAÙÙ™™ï½ h×ð‚‡8h]](——píF;‡‡–„G¾ÂïÒÖmÒØøa}5É{{«„Õ{Õ8ýÒÅ~•Ú§qqà ÍÍ{ãq§¾ò„Ï„„Ö ™ð‡´%'’]ATA8„„‡‡’Ó@ƈ±]M©’…F:Ž ¥b`ž¥~U™zÕÕf…¼±†1”¥s¹‡’ØIÁô1v+E ht1Æ¥6 þt­ÓÙÕÏ…X3•™¶¶ì²ó£ É´FB5®§Ÿ§{ &Õï¹~–%?& 8U½ÂŸÙþF¹;‚sh„ßY…À@ Z©S  U¥TTÏ˶ã¬óÖÅÈUâÏZ™’mF è›—Qp –;‚;U{{²é«ƒƒm~a:{®þéñÍ£îήÍ{tÚ•ÍPPΧÚì=PG4hb Fhz`;UBY­ÿ];UAAF;]ÈˆÜØ»õžU;,; b6FUb‚¹ ¯òÕï8¥ß"`zˆz å¹ÿÙ"óàÓ]¥[ƒm.ûââ,&~FËq’ˆ’,Ÿ«&]¸P5G,•f5§ï]BŸ¬ãŸãqJ¯¯Âà¯Ù? h™`‡5ÉÕŸ„Õ„8½¸‚¥M‘,úeß­ˆÆ©@âà¯Â¶ÕýƒŸ¯ý–ò¹Ë¸¹V; ¶à´úöê­"Æp©? ¥ÿ—í¥ØAGÚRq!¼ftÎÚÚÎñÍ« ÍÕÚ{§ÎG£ÎÚ§{ÃàÕƒä`fÉ Ï:™AbF¥M¥MrY~ªò«ñ&–ï¹Ö’‚ð‡™„¶¯8:ï’;hJ{ïþïõ@p\Ȉ»\\’’ `½~Õ5ý[~Å ¹ò~±hÕñ¾Ù¥]&½5…óz),ŽzhÅÂήM]„¹JãÏ8ÉË{þï™ h™A8ÒýU–8’¦½þ–™F`a,ÊÌpÆ©–àÙ¶4{¯Ÿ ¹«ÕÉA’‚žhËf´"Êú¥6p# M´—è——@¿M¼,…úEƒÍ ý§ñŸ£ ÚìÍP§!{qà¯ÒÕzgg ¥¥n´´]±&MA];Ȉƈb–¯ÕÕòªýˬ¬5ÙÏFýGŸ„sUË T’ˆ))ÈA‡;ðYÜSžÜ‚U–‡'û×ûXq ‚ª¾{¹N%’n7•5žs;pÌMˆ¥óÚéÚ 4Ã[J¾ïV™J{{Õ–ÏU ZF MU¥V88Ås{–ª„™¸ÖÒïhÏ]6Ì›#ÊÓ@¶fBɶÏ~à8–™Ï„ ;¹Uý¾à%F‡Ò8ÅûÆÊöIüÔ+±v—WI…'Áا•ä~J®X{ýÚŸ{Õשּׁ¬¬®a½]ˆˆYÆn6 hMb6‚ØÁ‚&66M­’b™’™‚ó{ñì{Õãþã‡\ˆ‚™T™8“„JtÏϯFUBh‚s ™ÜU‚]†±…~XËÿ°rBà\fn¼RJõA‚ÌáŠ*¢—©îÎ hZ «Ë¸5ÕïzAã{8„½–¯ï5ÕhýÉM‡È;Ü~¸JAãÕ5A5ÃËÙãz)5"še ´ݽÅ4ƒfäN\ÿfÕAÚÖÉ{  ;ˆbB? ––“–þÂ,¼úeII+´4ôáÁؼI,´É¶`:AãÕ{®þÃÃ55þ¬Â®¬B"­Ñ­×ÓÓ"¥ ¥`ˆ¶Gf&ýãÑn¥,ÿ­È U;‡Täûؘrí©©‚;?A™™JÂòÕãÒÒÙb]ƒ§ã¬üüÊÊ×:FaG¾JÕGFt]߇Õ;fBà4ˆ”]ŽÝcµKè)V = €BËý¹;¥g‡U äU;ÙɽqŸ5ÃÕzäÓ±¼I'n%h{Uõ;ÕóJÙ¾ÒÙ¸N©­]J¸“5®ñB†aLÛoìýsªuâž\U6–™¯È“Us{ý{Õ)ˆ±‘);ËïhUëbttã88U T;‡„ÒòÙÒþÕþÕþþJþýÂUíMAÿíMž¶~ 6M+†93 MÆ×¥]¥ÑÝß‚‡XÂ55¹¹ Ts 8É⾟ÃJJ„Ö½ÉÒÒû8 ÆÓ—û…¿¥`{¬Ÿþ:Vˆ‡Éf¶§¥~à­`">µDKêD›Ì—°ípЍ©FýÕÈ"b™UA5¬ÂÙÂÒÒ¯Âà¶~hF"ˆAãÈ\ˆäFâ&5ýÕÖ¸’(›¢eÿ¸]ÈÂããBý £Ò43à@ûžÜ ÈUÈ¥‡]b Üs¹¦ð£«É:¥ÆgB–h¬ )~8ýÕ¯Ë5ËFUÏÏ5¬ÃìÃé{é5TJh{Ãâ™~™½A È;íwQ‰Án;eë WØIßÑNëü—ddÀE¸¸ÅïÉ„ÒÃó ÕÕéò⪫ýžˆÿ»\þªŽØ6™zF)Á„Aä5þàMF ;™´AÕ4™Èˆ4MrƿʺèyÄyê÷÷d›d]rQá—Y à±­@ÜãËìó4ï¯ý8ÕàÙ4Ö½bð©ÿܸÓMÕïïÒ§Ò7à0#Ô"†7F’½ÒƒÙï£qéͲ@ÿ\ÿ?žU©Æ­—­ ‡s’©8ËAz Ñßh8ïhJï5tFÕ ò¯¸ðâï„hïÉÕÚŸ«§£ñññãã5Õ5™F~ƒ¶‚ìËÊdè‰öõ©»Ø’W”Ó’+ÝÀ›¨Þ÷c›Á2öE.fÉq«Ã«§Ú{™;{%U;‚\~ û’.ŽFqŸ\Ïãר,h¶ÙÙt¶ÏØÏ½ó ­Qö yKKÄw'ØÁ6ÿ1 ÌI´òh4ÚŸãͧB5ͧƒÕŸÚñÂ8h¶¥’ Æ1%„þÙªqã8qR9O7ú……ùà6­&ÚÒþ{J™FtUMMÜM¶àÁQÌ©©#áž™% ªÉ ò¶4NÏ ò8;žÈ àÏ88Ÿñ£ññìÎÎPÍìÃÐÚÏ!5]ì ^!×N’eºöÝöë©WSWüÀÁºá›*÷K¨è‹H|èê(Hdºw¿"ýŸq™J«ˆh zª†´à²4tØ:•§ä½Éð rÙ5þþAbãÖ½ÏÈ­ °Ê­Ê|KKeù'pÿ'Ýݱnó]’ˆïFýïÏ–þý˪ÕGòÃJòéâÕ‡”F‡È¹ ªýŸÖÚý4Xq`½Ø™±7¼b5ÉJÖJ{Ñ:¶Ž4¥޶ F]"µáÈÿ°ˆï & &‡ûý~žÙÚþª™Ü‡8„ÒÎګéé¾Ú{§ ¬qÍfk3B:@”©©#üüWWW°·ü@°»Ûë°WdêK¨Þ÷èèÄèÄ*He°'¥ëØ!¾hÑóF]–óŽ´…5ƒnƒƒä¯ÍA×°Y Ì©š¿p™òÖJaq§ÀÑ6gg"¥%'ôiün~h‡ÿ ê6h¶F Ah™AãÙ™¯ÙhJªËýÕ*Ì™“ÜU;JÕ§ãÅT½éÃ5½"F•5\ØýË Æ’–ï¹&Ù:)ƒ´‘x6±Ìc´ežìâZàð»—ºÓ­)‡¯ªÉ®¹‡þG{{§éÃÕÃãÕéÂÃÃÃ{J™;ßúÁeÊ­¥õ©p#—H¢>—¨·dWdº·ádè*·áá‹Þc·d(·c¨Hdœ¿öØnØ…t´°hÙ:±±ŸãÛ†bƯ0#è©1,h4ªâ£¾ñ§8ïh‡)6;ïh‡Ž F%ݰU–U‚©Á›µ·°ÆˆhÕb\ &J–¹U– ©;„™\x'Ù‚„AU U ï×hÕÈFË‚;Y¥ftÏï¹F?;ˆð5–ƒÃhÅ\},¥W#©Ê›÷.d·ûtȹf™  ‚‚:¹¹8“™U8ýòÒÙÉã¬ÕÃã®Ã„þ¾Ð „; áè¶0”@Ó#—èc¨º”¢·á·Hc‹¨¨¨á¢ºQ‹¨êÞüøWdºWº(N‘à¶Ž¶aa´I!¶±, :óB¤ÊQá AtF¥ÊY%"¥x»ÑãéñÏñ„þ5¹8–ïïÏhÈM¢Z?»ÿ]芩h;à4B™UªhU âMÑp”Ì U– V, Äð™¹A–h‡8–  ‡F‚½’¹®A™ÉV;M;™ã¹òJ:ðN•.0z¥—|Kè·Ô¶¿K‹\Ë8®Å™f~,n`JÏäÈ™sË{ò™™Ö¬ÒãÃé®JÃãVËéZ“ÜpÌèc›'e›¨Qí —ècKHW”á·QQdQd›áüW·ÞèèÞ‹º>›èáÊQÞºôŽŸÕÙï¯~²/ââ™JÚûŽú'"¿`«ãt‘"­x­np»ÅýþÖäþÒÉÒÎýÓ”¥ááëYˆØ]¿Qê·ú¼fn%j;UãÕþ{J¹ ;6ÓÊ™¯àÖ5Ù5„¸þª–ˆ‚Ùz{¬™Ùt’AŸÕ®XÚÎJãj? ¹™ä¾A¹–VeF©'KÄÄKè|'ùêèQí™T\T™&6òàˆ¹¥¹–ŸåsܹÙ5駬ÃéÚò¬âuT‚õcDc÷K·›ö°…ë¨cKÞÞdºd¨‹·¨··(º>>d÷÷llÞ‹dêc|ršè÷HÝà{ïh¯Ï)!¶BˆÉ4!à¶a~q5®F'ØÊÊœ­YYÑÓÛ]™FqäÅïÍ«äÑ©öpÑ]xDxY¥:~­ºd‘…¥½4´×™„ýý{Ÿ„ž‡žÓÀzãÕq§¬„®A8ÕãAˆ‚)Uß55¸Ï]§55ÃýéɹåÈ Jb•ÉAžsJ` v>êKKµlÄÄ÷e´›—põ@ ŽgÑÈ4ýˆ™„&ª;;\; –Òïqý§«ÃÂÅ„þð\”¨c¨lÞyd‘f×W÷÷Þ·‹KèKèÞÄè*èHêylyylµyÄ‹rÆá¨‰xØ&GýþÒó…äm± 6Óö±àÉJã~~z~¥B:ßßxÔêôš‡–‚ˆ’¯¯ýF%6M66‡pppSSž"À¨ÀÕˆÏ4hÏ„ªâÕžÌÓšä_Îïý¬AÙ™‡A¼–¬Íó{5zÚ…òòËïhh~ðsh¹T¢Û¸Ÿsÿ;‡ðgÌ— "À0ÝKyµ·èf‘ö* ˜ššM’‚ðÈÈ™&ËMÜ‚™¹Aϸ֧²ñ§ Í{JJ™ÜÌQ÷yÞy>ÑöüèDµlµK÷Þ*KèÞcDDê÷yµÄµyyyyyЍ—á¢ÛNØU¶ PýN%­±óv±Pò{„ñ£þûõðÏý™õ½~NºyµÄ|x;‚©žÜ‡™Ùò¥‡)M6ÿžíSíÆYd±…•Í~ÚñŸJ–J58–%)MpÓˆý²=qÃñÅþª–~;‡{¾®ÚŸÙ4¥]Ùª‡#?¹“âFB±¥±F¹íž;ÿYøcQ1†¼Àw2Fœp´Å` vM’`’]‡ ’AUB;ÈÜ:–„“ÒÕÉJÎÐÚ®þâZjVÈ”··÷÷êÞyy÷Q·÷÷µyDµ÷cÞc÷DDµÞ÷µµÄyyyy÷ÄllQWÑ@̰@ˆJ„âJΕÁØ´¼G‚T5ˆ„ã{“‡pˆˆ×ÈÑßû+|y÷cõ´%r©ÿ’\ÿ’’ÓÓ©rrž\íÿ\rYÆ,¶5ƒÚ58ÕýâÉ;Ö,M6náe¿t½ó¾8þ™„ââJÏU’ˆÈ{«ÕÒ•`¸¥;©‚í Ñõ`BAzóóB¥A&‡ÿ‚MÑ"©¨ë¥~¼" '¶,’™Ö½`6ïâ È™;““þU:Ͻ:8¹ã§£§ÎçΣZñ«–T»»¸ÆQDyl÷÷÷Dc÷D÷cµyµµDyy÷µDDDyDyl÷÷Àb;Üíá°ïâ¾¶]ÎR¼ÀX}7ûxm,JGâ;žUðÈAb’‚ˆíå± I(µµ›Ñp”\‡ðÈ\p\È‚MÜíõíží©Êáf7ݬXF{óhªs?´¥¨d"Ì…b×Û°’ÅAÏ;6M®ÍÍããÏÑä;MÆÿMr̈Ø5ãt#‚ ‚ÿ™Ñ°Ñen);`\~¸Ý‡;UhªÖ¶AT„„¹–JAð™J`àhªÉ¾²²_ÇÐÚÃP«² VU‚’Șá·ê÷÷Dcèc÷c÷µcèèè·áº—Ѝád·êcè*Dy÷l¨å‚\”ˆ•ÙãbƒRm‰^LƒƒÛVhížíÿp©ž`6M̘†Ž0 À·Qš´Ý@Sÿ@̰ SíxpíÜžííípŠ*"•~ƒF± M\;ˆÀ©ªÏ@ÊÊx"hðÁ\ûÅU ]  ‡íX Ðî]bt¤B~´ÑßNÓ¶ï¸]‚MUz…‘±bAÖ™™âh¹U„ãòï`ï–ãÂ5ÏbÙÏþÃ"¥A{G¾ñÎìî=<оñÃ;íÜ‚ðð˜#Óx·èDc———¨cµ÷Q—WõØ’Øp MY°¢›ºê÷µ÷c”¸™AíõÏf¹¶fqäØamP úkŒÕž‡  ˆ”Ìp”ÌÌ˜Ñ Ìrff¤aO´ÝÊ‘ØØÛ뻢¢©Æ pžrpÌ”p˜”DŠcꆕ§=4¶¥’Mÿ—B¹)´Àº’Ï4™b’þhÒ¯¥’¯Ú£ §Ú5Bao!!Ž"…IØÆtÖŠȹðzBà4{{ª8½h;¹U ™ &à`Ë õTŸÕãþsÁ"؃§ÙÒÂLÚ§Í죧“‚ís’‚¦‚ÿè÷÷QMžží”—”ží\TU¹UÈÈÈ‚ÜÑSÁS@ÓQµèµèëï–Ë«4tãÖÕGb±î,À!Ðó‡8?‚;–‡˜ p*ŠÊ"œÆ‚]F¥A";\rÆ© @p©ÆíÆÆ©]Aß Ó©°"ôµF¹“Jû“‚‚©ß]¶FM:àϬ¯rtTÂS]ØÇ²tÕ²Ÿ8Ö~„~,­ÝàbÅU&BÙÒɬ ¹âŸŸJ¹¹zzA@prˆ\–T«JU«Õ8ï\©„JhªsrضoÂÂ5é¾PçñçÐþ;–“‚ž»‚# ——Q”܇s‡ååååÜ’‚;;T‚T‚ È\ÿß߯ ’Á¿ŠDèÁBڲ3JÉãzƒ¶ƒÉ+¼J“ žíÿˆ‚ž#Ñá©Ê›úØ´"ȸT‚È´¥"MžÿÿÆÿÜ‚ÿ©@õp©rÑ©Ór úÔDµÌ%‡¹AJÖþ5ˆÿßpÌÓf•ãÂ5®ŸéJFÙ‡¶]äf5ÐÍÎaÚÙÂÙãÂÉ5®Gà’»ÖÕBAˆ™ïÏÙ 4È™žA8–žíûû äGýñÕJ AU „;;;‚’rBÐæÇP{ÃÚ£ÎÚ¾Z„“så‚íõSÑÓ©n];ss?ss‡‚ž“UUA;™;;‡åMÑÑÑÑööxÛÀ—weúB4;ž)GŸÃÕÉ{5™ï{²Ž~àì«–‚©@p‚M#Ær´ö°xÿ´h¥UË™b‚žMY­ßˆÿ ””@ž]ÿ°”ƈSÓÿ+ú ‰µyvåUJ5§ÃãX; p—°YU8Ö~¬{Ú§%M©ž¹½fƒóŸ ¸5PÉ:ÙÂ5½ý«]ãÏÂþýuÕý¾¥q¯ªªJò¹„Ahhzއ ™Ï‚BhUBÏ™ð:ïàJs‚’ß°ÀaP8§{Ú¬5éÃ{Ÿj嘞Tžˆ‡ÿípå‡È‚‡;s;;s‡UTðTs™AT;™ÈžSÑ­6œ+ššö7ú­Ñÿÿp£¬ÂJëäðòñ;)5G¹ðˆÿp pM;©rÊÊ`ÁÁÊrzFË„ý„;¥)ˆžíßÊpÑÑõ°ºá@Ì—” pp ¨*·÷µÄyH¥tÏ8ò{Â8‚ÿ©1(ÓÖÂþ½Ï~™6#°#b‡™¡Í¬Âì5h{§Åþ{§é®¾Ö•§£JÂËã „)»U ÕÕËÕ„ý««hÜAïh‡#YÆž–™™ãï8;‚‚MI°¸m䙽¬éý¬þã{Ësíÿ‚ˆÜ’pžíSð‡åÈT‡È;U¹“¹U¹¹;;T‚’ˆÿÆÀ+Mhxüô,O]  žÛ× ã˾ãããTUh WÁȇ‚©˜x”#@ÿ]…”Æ—övIY#ƹª; bAÈžSíp@@##@Æÿ#xÌ”Ì@p°µµKµÄÞy°¥Aþªý™U "´##Ê"& #©íÜ6xrѶ`óÃ88Aqã8ûÐñÍý£é«ÂãÚìã ŸéãJ–ïbˆ~ÑëÙÚ5~§ÃJÏUð\»F¾ á°”ˆAïñ˙܇ FȽ¥½¼Èؽãý{ÉãÂVh“‡žžž‚‚‚U“ÿÈÈÈȇÈȇU ATsAA;™s;;‡È’‚…b´aÉÅÁd;AFª¹¯Èý`N—¨—”Ó ”°r’)tZ¶’ÆQ”ršÌnð½Aû™™;ðž»\ßíÓ °Ì”ÌÆ©Æp@°°#düeºcµlÄM´òJýªŸÕ 'Ê¿ÊÁ¯òˆÓ¢*x6Ìr½fïË„Ÿ¾“{«ËBq¬¬î§þÉñÃ{㟾„¹¹–ýÉ×”+Qü\\ˆãþ„8«¯Ù™)„]ßÓÊžSÜ „â„;’ Ù½`½úØÏ‚Uñ²²¹„– ‡ååž\ð;?–––‚TÜÈÈÈ;;;™  ;‡;U A;U UBOó™~¼À·ë~: ¹ªJ` M‡»‡h8JåB…ëdêQüßnrÊxÓ­Mó§òfûÌ š,]U™‡ðð\Nž@##°x x Óp©ÓÓ#Ì”>ëÛÀèylµ›”Óxÿ {% ©ßðs¹h™íÿMÈÿrYÓ]½{ÅþªŸªìãä8â„J¸]ûz`ؽ™8“¥½à""MÁ)þìÖââËÈU8 ;) ßÈ’ɶJ„Tðȸ?È; œ‚A8ŸðSÈ™U‚ÿMžÜs;;8U“U?‚’‚A™U ;™U’ÜÈÈ––™;¼šÑNÖƒ¼¼'h™ð’8½Uh)UÈ©ÿ ÿ)°Á…¼… ©'"ûÑ©Ñ&Òt7"Qp ’s™ “‚©Û\Ñ©ríÑr© ©Æÿ’©NÆ#p¢÷èyÄ>Êíõð?AU%pÝ­­ð܈s¦žžÜœ©0þªžJÍ–ã ÕÕÕ{§£¾®ýþ4…~fÖ8–‚B§g´ß5ÖãÂ{ñJ㽦;™íÿ;¹‚™ïãȈð“FU äaúØMUŸ8T\ØÜ  å‡;å𙇖“hsU™Èð‡;™? ;  ’ž“ÚÙ‚xÆ+šœrã888ð™hðA„½ž]¯Ï ïzÖðUAUÈpQ 09Ž,Ñ#¢n½?  sÿÿžÿ\Mˆÿí©©ÊˆžMMÆ©rxÁWcµlµQ©°xú]z„`ž¢šš×ðܞ܇Mr¥Ñ¼¶A;8Jh®Ÿ««é¬{ÎýÅ««¾ìª–U?ÙJÅÅÅ£² ªh;„Õâþ8¹8Ÿ ¬É½ð™äÅû½ÒÙF“s‚TU„ÅÉh&:aØÚA/¬?¹h &È™ððð‡ Ï¹8㹂’;U™f™“™AØ™¯¬8ãÛI´,ƒïï&&tª¯tÕª–õíM,% Ù¯¹UÜA‡„A]1***­ìÒfäÓ—ü+ú]‡“ðž‡?Mž‚È;rMßÑÑßYpá' ,%'üêµDDµ èºÌÿU¥¿Æíˆžíž;6ÿ’ÿífðAh{{þªã¬Ãqq¬þþÕñÐ ìâ{Ÿ«®8ýŸÂß 8þýýÕÉ«{ˆÒ~™„™þÕÖÅ•h;ˆ;;™JJ„– h±ú²®ÎÚþA–uã’û™b~¹UAð¹ A‡½A; ‚™Að–U8Jª™’ÑÓ¿ü؈4Ú3f,Ù8 ó•Ï„J; JUð;–‡hÕhŸ¹sª’a"iµQYÂϱnʰM UåMMˆå‚‚‚MMÈMˆrQ1†¥…Æ›DµêèÓ©ô·ÌÊ"žß©­Óp¦Ü\ž¹‡‚M]r”x ÈAJŸŸãŸ58„ÕýÚÚÚ =ìξþŸì Ÿ{ýŸ{h’‡ýŸ{Õ{¾hªŸ£ƒ¾ î« «ñŸJU¹òÕ’ TA–“{â– &f,£î¬®ÃZðJÈØÿ FU;AUfÏ–™TAT½¹8;JŸ„–8ª&™ÝÛÀ…ØÝû`šIÏ ªþ8™‡íå BU™Õh:A„Jì“{~ãbŽàvr*·šù~A)¸­ eš¥ & ˆˆ‡åMMå6]’6]‚b6*—ëÆ+eèèw¿¿—I¼n #rÆrÆr'ží\‚p°ˆhâB;¥…ú­’ȹJÉþÕËìÍ£Úì²ìéªh ªŸŸªJÕ{{ Ÿþ8„¶ð™ý«Õþ{UJÕÚɧ¾Õ{²h;JÃÙ™Tþ„„AZª–)r¥:J¬ã{«?„™hÉψÀÿ"™U¹8–8:ªÉ“¹¬JþJÕþ{þÙÉûN¢+,†±~…1ôšÙ„âUs‡; UïÙï;8ãJAUã8GãóŽàŽ êeY¼¥ˆßn+òÙ½‚žMååÈ‚‚:;AÙ &&0À”ÁØ'—eô¿e+¥ÏMÿ­© ˜pÿÈ»p–ÕF¶&g™ïòéý{ã8ã{{ª8ÖU‚ä™™Jñ¾™A™JUäA ï﫯’ÈÕ¹„G…qqÂ’hhâjˆÜ;¹F¯ÂJJ«ÉË:óëQ]ATÉJÖJðð¾¾¹\#©’‚È~U™™¹JɹJ˯„âÖJþÉâý–ÃóÖÑ”"†àà…¥Ág`¶U{¹“h FUB§§Ù~„ {Õ;8â‡J‡ˆ± 1Ô*Ä' 9¶:´" ¥ï;‡]ÿYØ’ˆÜ’ˆ’’ÏÒ979•Ø@‡~ô|·wú†U,±ä»©#Ìå6’ˆˆõ°Ó‚¯¶hð&ãþãã„U™¹ÏU‚ð‡`h™AJ{¹Ëh\@ÛÈ;’´%% BU¥bŸ!}û”ˆ’Øð™A:ƒý{5ÂñŸ{{ƒ!ôpU5ð™ðsí„J™;AA\’A™“8–¹8â{⪪ժÂãŸ{ ‡Ï«•GW#rt:±FàF8ËJJhåsÈ:…t²Jh¯Ú«âAz’A——vV1 1Ìê|wœ"t¬Ø­#á’A½f¶±0f :Ö™U½;‡AÖ!qÚý&F†‰Ø¼Ö±%™Uð’ß©M‚‚Ü’M­Ñíhò{fû’¯þh㪹ï;‡U ‡)‚ ™Asþ{Íɸ½Ï¥û­rrÌӢ̈%U¯™û¥m4¤¥ØÛðB)Wtqڃç«ÚP^‰dèèüAˆ¶ÙU\ÜT¸ð’T88UA™8Ö„J„þŸñ«ŸÉãÏh˹„¯–tAäñ„ûQr:Ϫ¸™åFòàËýé–ÿpÈxÁa&Z¶««;U p‡*QQ ùödè*èQÑ´™T…­xxׯ¶4GLìàÏÈ;Az‡ÝqìÒÙB¶2eØ~5A¹™ –UUÜÿžÜ‚Mûˆ#ÿAàà„Ö’BhÉÕˆ“‡AÈðA;‚¥ÙãÏÕJý ŸŸãÉÒÉa¸†˜# Æ"´5¹ `É òR4Ï¥z{A¦–¾ÅÃýÕÃæì²^¼‹ÞK‚ ãÈ;Uÿs8Ö½Tb Ï8–hhh¹8â{Ÿ«þË„¹–âÙÈ’»ø†Ž™ªhÆr# ËÕsår#%¥Ó䯯ÙÒ«ó™Ù5ƒ]›*±fA´Ê·µêÔ| EÏgfß»¥Â~;B«ÍýªËª~`ƒÉÅ~ƒJObñ¾§4YM7GO]b]¥ –äð‚p˜ÿpˆ‚TA\ˆÛ¢Ý%M6Z{É™±¥A~ÖÉUÏþâ˪f`ÕfäÚ§Í ¾ÂJ8™~:)™:A¾Ÿ¸‡ûϲ¾«ìGà «Õ{Ú«¶Aé§Ÿ/Î ^KKl°;{ì¾ìãf™ðð™8–8¹‚  8Åã„ɪÄþhË“–«¾G{ã¥F™8úØ;VªFF`ß— ¥tﻞ%´1,n”ÝB¸\û\ÒÏÕ85ïó1 ix’ftbÀwöÔÄêêúYó ó½`¶:`;òŸ«{zÕ{¯þJٟβï)²a):Ù5¸ž‚;; ‡žíSð¶ÏˆÛ¢Qp˜’;½fmB~5ãâJ8JâÃãÕ„~•ì£G™¸–¹™8–5JÅ~ŽAØf™B«óÎÒtÒÒ¯¯É&¹hŸìͧ£ý’þ®ÍÍΤà>µÞ¨°’{«¾Ã4&:™™™Å8 ‡ß\ˆä5ãÕÙÏA–ïJhÙñ Ç<ã:UY6UñŸû ™ ™`F *¨©1'xÿFMp´bY¶°¢Æ]B¯¬ÂÒ„…´¼´]tfBB¤}Ý(|èÁn":qÕÙ™6zATÉÕ]G§q¾{Ãéã5éã¾àF¥!=ìJ™8ÉÖðÈ‚ÜÜžÜÈ’©S:þ…¸À%¼MUýÕ{«{{{8™hËòýÕ„J{h„åAÅËÃÚñý;àÕïãÙq½Ù)ÏÙ ÉÏ]ÿõxþÐ Ú ²™Ù¾ PÍâ2DÄ¢ÿ¹Jý®Ò±bb–hJU;]6~~~:%¯ ïã„bzÎÇGnÁ¿¥Bƒ²ÅÉ{¯ –ã;U]x¨›#'nbÛÛf`n¥ó!bÓݬA„5½‡ÙO]aFÏ55®ÃÎûeº¿úb,±¶Ù™ÕòªJ5Òa5ƒJ®Î£ýJéñÃAÚî ®ÖÃÕ“;T UåÈžÿ\;¶ð),Ê¢ÝAûï„„ý§ÂãJ¹“5Jâ Ÿ–hÕË;ÈsÃ{¾PŸƒÏbtÐÏï4î«4ý`ðØ ¢©©ÃîâÕm]A®é£Ÿ5’0 KlDáÓ’sÙB rðUÅU;zhBb~œ'¥ŽÏÙb¶¶__І±² )týG–ªýfÀ¨|ô M û @ß"û¥B¶ûˆ¶¶þ5ÏïÉ5¶ãÉÕ®þéÉYOi´°M)…ð5BtUbBÕÙ„Gq¯Ò®f®/Ú®«§ÃÒŸABÕ™ƒÕÎñÖ¡ìýãV¹hs;‡M‡)‚ÉÂ’Æ¢#e—ᨩ:Ú§Òã«Ëh8 Ï™âª¹UT8;U–{Ÿý§ÒÎz…²4ÙÅf¯ÕaÍÒÖ‚p­%»AŸªA»žýñìã®ËïgԵĵ›pžS\TÿMM‡~™™–™~ ~´óàO´´0´ }!kÇÇæÐ<æ} ^P$(Êf,¯âhVu¹;'W0hhUãF¸Ónzûxß••Yn,ó5Å5Ãç{¾GÙ§«Ú§Í§¬ÏY>h†Ó+Yh&ýÕJƒ.~Â秬է–°:Ù`BÕ„ÚÕ{þ8JÕŸ“?‡‡UT»:×°cÁEÀè̥ٙؒ¸ˆˆˆ’û’’’­#xˆÜ JÕ¬««Õ5¶Òf45¬ÒìP²Ñ½;žb: ¯;Ö  ’­`–ìŸËßf1HyKµè— @õNJþUˆU ¹ ;¹;ð]$-=k²¡PC3!kP$<€_$<==Qi'† j“?‡ÿ‡;ße%¶ýó•Ù’­½ÙõÛBvÊØ~þÂéqÃÃý«Ÿ¬{ãã îìJÉþÙ—öÆ M0‡àGã–JJULR¬L!LqéÚññŸþf'†±ä䫬{;ãJ;T„hs ðž‡„ðÏtÓ—*Àeö*ë佨ˆûMßÿrrrݿƒ߽5hòhhÕJ5ÏzóGã4ÃÕ½B™×fïÙ«{t¹T’Ü™%‡ÜâŸ{þªÈøµµè—pÈðJuJT™¹Ï`âÕþÏ0 æ-__-¡C¶Lk-¡oæ_}¡æ¤å(9s?h#©‡­ÑhFTò£R‡45ž’Ù± 4!ɃÕÕýÃñ«ñΟ«=¡§ÚÕÚ¬"ÆÁúN]àzÈA„B:Öm§Õ•ƒ®ÂÍÐÎý®Õb7G´ãã¾Ú¾ÒÂ{S’Üõ‚å‡b¶ xõ?¥ôö0‘‘iÊ]’ˆ)]ѩѭn"1vÁ~~Åf Ë™û–¬§ñÚÚG Ÿïð\ÆxÆnààtŸt í’™ˆÈÈU‡r’Ù«–Aða…lyê*¦™ŸŸj{âhB&˾¾ìÍCÐÇÐ$3ì$ O0k^CÇÇ- ²î²61M ¥© #ÿ])ˆ¢ú0:‡;‡"7zAA5XÖÕ¯ãɧ5•5òò{²ÃPî£ç£§Ÿ£ŸÃãRzûÝÀ…+"©S’ÏzÖAãm3gGà Ÿé¬½Å0O3•²¬ŸŸò–“;;Tž@¢¢”Ó¥‚ÈM?F‡]…­Ñ‚’6’Mˆ'Ýv­š©ØœM­ß;ó„ Ï]‡zíÓh„„A™BY p°ß #›À×)ß]]Ts;ÕÕï]ˆ: ÿ»‡‚;0øÄlµ·á·Å]ª ñв²q €ƒ!³o²æP€=-G…X€L!€P¤æ_²£6M%pÌUÈQ'´ÿ’ø±&t¯ëØh"]ä5¯54a4•ƒÍqÎýÕÃÎLîÚŸ§²ŸýA¡Pat±"]9’"¸5qƒfa•:Ò§X¡´ö¿º›aξ ìJÅ⹓ˆ¢”’Æ©)bõpÌ;fó,I¥nш)M­r"M'"œF]` žT&È)±ÿ##¥Fzh –\©ß";,©…¶ïïÆ#©?;ð™;8ò`‡Fßמ’»;¶ŽÀµKÄKyÄ*WÀ­_$=Ðæ¡ý§~mæ!oXRP€æÇì<Eo9CR5ÚÚqñ²q1œÆAe ]]põSõ°š&6'Ó;™BÙtï£ Ú¯§~äƒLâ{8ŧÍîÃÚý„§5ÉÎ ÉàmÉ]amFýBbA]ƒqÎPÎæ¶]ÉÒPšô›+° 4Å„J«Vh žÌe¿Yrx@6ÿ»#””bqGF;pnMhY­Inn…fFó!&¸ fÈ;ðÑá¢Ê¸™ãN’;þ ؽ¬Î¥‚Ü‚;{¹Õƒó™;¯™Ïˆ\‡V¹:ù‰lKµÄ‹‹·h ²P-Я•Òîæm/oŒæk-Ç}$Y¼CC39q£ÚÍ¡ÐîÇ­gäÜ~;Ì©íx’ÿQx]óÒ"MzF„f{§¶ãÒ~ÖÂqÎþþÕÕ; q:ztËïtÎBämtßF&Ùû×΀ Íɧ¬Î4v›(r1 9²Ž‡’ –‚\žÓ—ÿÿ©ÿï’Æ@ºÓ™òJ“­¥‡´bb:™1ˆ"…¥,B5¹& ÙJȈTÏ™‚ Èíx©pÿž‡¹™GñŸÃÒ¬ýÕã‡T{ò¹T í©‚íÿ‚ssU„þ55Õ.ø|ÞylllÄ蜲ñÚîP¬ÚP-çƒ!Œkææ-æŒÇÐì¼C0Œ}oP!à5q•²¡!5əשˆ¥AxÿÑ¿ÛÁ,¶Ï4‚`6ÙÒÚ~tBãƒ5Ém•{âŸÅðÎ{§t¥™à¾§¶•mÉÚ££ÍFˆ%¤!‘†Ð3ÒÍڬ,eô…ƒa¿4,)’ð ðM‚ÿÌÊ"’M‚óÕ™,Û¨”Á»¦™I6bÈÿ‚)±¥])ð`ïïˆðûí\žˆ‚Ï™¥ÈB±6M@”»ûðÕñ²î§¬!óg]„h¹žÑ”Ñ;@°ˆ©\‡¯ý®5®C7,(ÄKy‹Äèe•ã{§þJルîLŒŒæÇ<ÐÇ=O¥M°ÓÝLk$G~Õ®ÚÕ Îã¾qÅÜAAðS‡Ñ¢Ê9&hÏhh™ÏÒÉÒÍqPÍìPÎ{™‡A¸ƒ'¥‘ŽÏGŽ¥’gtð~Øû¸% ’"]ƒ7¸‘~BîÅÒÏîç¬9'°!~úD(v6 ;?ðž’A`b]’t ¯ËÈ]w÷µ°W—íp©6’ÿ]U~~`¥ä5®®––‡’]ØU‚J:h bz6©Y;Ù™™¬ñìšQ¥’í©M :h’;ÈÜ#ëƒÕJòÂïa2HKlÄlè]ÃÅé£ýÂÒqƒ¡}ŒLkÇ--Ç< &UuUÁ^€Ç$€LÂì¶m•Ò¬éLÍã;™Õªïhž°Ê',G þ„Å韯„t8«Ç//hI)+gØ¿œó`߸ˆ¼…¥’Á¥´FM¿BGRî¬~z何¬î>œ91šQQœBÙ MžU5ÖJ: &ïþïÏ]µ÷·+%Æ]¥];):Õ•¬ã“{{JþbžF‚ˆU™ßbzU‚b;;`F%È{ì^†w—¢@©¿ÿ»í©ž‡#‚SÁËþ„UAœ¿K|ÞµD÷+ŸþìAf:4…CLŒ9æ-kÇ$<¸ _Gïú7Ç<怬®ƒ{5ƒýéŸþ™hã„„™™´û+E]²ÎÍÚ§®~äãÕØ¸Â•¥"´¥ÛÀ]†ßÑ…Bàƒ7±79¼ŒRï’r¥ööo×ûfXÒ4Ž5b‘šš1"GC˜åÏ–885JzÕBËò{ MèK|Á¶M´h¶bƒýGý¯ÒÕ5þ{Ÿ¾âA`UäÙªAÈÙBA„TB à&YÆ¿Á(Ôv‹>e··*›—èáx‚66'°ð8¹jË{g'L‹lDèÉýþ~z™f4àk/<ŒPPço§PæÎ¡,70Ç-Ç_Gã‡`F hòÕýh’6`¹ãã5ÓÓöúw.qÃβΣ5Ú¹{ n:m«Î §Ö~…Ž}3R…f•çÎG]4mTŸÚUðÜ»ÑYÊe±¶óF}¡P€34¶f´,ó" ´ß)þ–“–~¹–ª„‚sؽhš*cÄ|ÄøgA½É®Uh&™„8J{é„þýðAAðò«²Ï™É;ˆ½"+aŽ š|ê·̆…ô|èÔêKKlc·º›d@œ”¢È{¾þ„Òg´HêÞK.}Ú®´°xY07oçLk<ÇçL!mƒŒ3óÎ}qùÇ_Œ¶4h; ï¬JþÒ™¹¯„~´À­CاãG§ ÐÚ{쟲ЧäT¬qÎÎÎÍ£! ¡ ¶ä½•ÚJtqtÆÁ¥‡;) á—Ê­°¢ô°‰xš­"t àU°¢v±°Ý’%U«ãÖ’»pÿpSSᢰÓf~Ie›>ºö´ÝSû5à5ÒAÙý„T858ûÅ{Ò™ØU¹ã Ùïý–UMÊ›elK‹÷‹xg,)Æ+Á>lc|Óúöd#–"" U“â«ÃþÒ¼‘wÄ*èœÐPÖpÆYÛÓRÇ9çkÇk<Ã=æìÍ! ^<< &85 ’] Ïþã&hïïÙ¸¼4…§Í•¾ÎУìîîÐñìÚÙÖÖƒÚñ ƒ§P²3É:¶ãÚAˆÑÀrÆ;:‡©°Ó"¿À(á›Q*¨áÁ]¥\©”ü¢&r—·]h:¾ò‡TM\»ˆ‚——¿n½ð’~~¼û[4h‚­Øm5Ù¯{«â“J8–’’‡’žžUªã„½ÙóàIšèÞ|ÞylHEûíž…ƒ®­>èc ,ÂhÏáY%n’–ŸÃé§§ÎÎ5œ>µ·÷ôç왂TA¥"fOR3æk$-Íkk$Ç…¸Ø¬•vk__Çà`ÙÏ]M’‡&ªþŸ«¯;ˆOh•§Åƒ§PÚ£qÃq¬ý¾ qÃXÅÉq§§£îî[«~m´Ýާ§û’¥Ó+1 UïÙ]I­:]ÑIÊÁššÀ>Ê¿"¥rWÆÊm,0õÆÃ§¬ÖÉ ‚pn"¿¿ôÓ¸~`ƒñÚ®uÕχpÊ¥7–ãªóƒ{Ÿh™AA¹h‡ Â«²Ð¯½J8– i*Äô(êèÄD·M»’\ÿÿz¶,"‚“âq•gàbˆ]­xÖÕËþ8®ãf~O'iêKmGƒ«sÜ“ð PCP9-ÇÐRƒC¼G-¡mƒ3C=ÇÎŽhF 5–ÙïŸh,åœóÃÕ¦GGƒ5•–Uït•¬Òàãqƒƒqq²t!BØ)m'BÿÌ”rUTA´ûÊÆ¿1O"´Ž,,]ØMÿ¸±¿ØnaÙÖ’…ÕÖþãË„Õf±À›¿"Y§z{ãªhnÊ¥Ÿï5™™ òòâF–ªhJ„h‡x̰’ØÃ5¹;"š(e1ÌM¢”pM˜p©©©¥]ÌüAýã ãÏ`qBõÀ;Õ«Õ55É4OŽ1¿šœf5=h?ŸGæ À‰22|‹Äô ›(+Ê¢ žð’™8¹¶ÕgݛĵÄHèDèH>h Ó*+ó þgò§ìÎÍ{ŸÚXÎ {[LŒ}a9m~Ï•5[m^<$Ð@x)…¥ &%&–5’‡ÙÒ‚‚ÖfïÒh~äT"’xxû…ŽƒÎîƒf«²£§îƒÂɽïJó§â™Å;íp å‚M ÑrŽƒ §¯ ´n# ©Ñ©\™UÆÓYÊš,R{⮣£ó_=G{q§Åïƒìqƒ×õÿˆY’í¥©°Q—Iöë”—S–òòÙ~Uð»žM ’ˆ‚ˆÓÓÆØ”Y›öRÝêÔ¼f±ˆr‡bzFA„Éòf‘؉Køœôè|ô¿ôA2‹ØïËhðÖq~Ò¾ò/}ÒŽ¤îÍñâó77a´%ÕÕq•R^3ÐÇmn­û&¥bFA~hBÏh&„5ffiãŸ{fbÕ1p1"Á¸ŽŽmqæîqͲìƒÕq£ÃÚ£ÕàÉ¶Ï `Æ;Bȇ‚rÿ%MÆÑïýÙhY6rÿr]`hÑÿ"^îâqÕýìÒóÒ{ò@ÿß©:ÒÏä"‘+W¢eüHá‹‹K|›*— °@È:]a…ÆÀ@…äžSx@\ˆ¿öÆœ¼"œWሖ–T‡ÏÕ™™ÏA Ù–&™]¥e·i øêÄô´´¿,”’ãh:±àÒâ LÚq•mì4RCC€k² ƒóóàCm¡Pó€à×x¼Ž ’U¹óþ:ãË&¯þÒ•ÃÂ5ïb,š•àPÐPï5ÏÂÒýƒÅ ï™¶ÕUM‚ˆåU'Y­‘b½ Žr]ßÓÆ%­Mˆ`¶‚ Ô¿àƒØ×ˆ½,¸7˪ –‚\SSNE×Ñö›c÷·dcÔ·‹ÞÄ(ôô”›À0ˆQá”Q—Àpÿ©x’´ˆÓá;rA`&­º©™„¹A‚8‡;¹:ht–¹ÜÿÑöÀö2ø2wÄšvšQŽaŽIÀã`û.ã~ƒR€GÚ¤m^ççæk<¹Ïgfa[oó_ÐàM]M±gó±‚F]Uïý«Òf5¯Jóã±à¶,fãïo P½f•æ¤Î[£Ãþ•ã¶ïì§F`È©bÜÿ’±åˆ’½’”©ž‚žšFg)ÜABhF›ŠÄdWÀ'°dxüšf1︒NÆß›á¨÷ÞcôÁÀ|Þ||ešÊvÁÛM—áèÀ…úØ6‚ˆˆˆÊ@"­p`bb6nÏËs’‚™8„5ÉÕBÿåÿ‚ IiÔd‹µµêiè›eà°èóà¸Õ¯ËÉ¥4^!æŒmXç-æùC"ž±f`gƒ! _àÁ¢ 6± :´bFÙ½A™™qÏÙÕÒ{«¯Bì [`Rfƒ§Õ•Â5gÕG{q§ŸGFäÙÒt!à ïU:M;;©#M"@°ÿßnÊ")¢ 'h¶‡;U A(·DÄ躿¿¿x°a­Æ)ÛWÁèdê÷è›ëÁI"ûöÁëôeÀô>v†úØöK›r'M’»ÈMž)MÓÊ­šQ]ûí% )U~õÛÜhÕÕJF&UMÿÿƆ¼+i‰èÄèêÄ|DÑf‰>M.],;J‡zgà€ !¬…Ý.L EßMÑn,/4hßGÇ€ƒ"šepng ð;Ùò Ù¶ïÒÕXmÃÒÕ8„¹z«Úï}àÕm•£ÎÚ•§:άéÚàý¶f¯!’ÌM;U™‚Ñÿÿ)1p "‚\Ó ÏòGÿ°µê‹ècK(ôw··ÞüÀd·dꋺÊ'’ÝÝM"±"ÁáQ°‘üK||Ìš­Ñÿ’\”©žðð‡,n¢ôµ¢’M¥™n'›WÛ]Æâ♄A:ÙMÑešv‹K‹yêÓ´KÔ‚Žó*WÅ&ŽR}Ðq™ÿ ºº¿’]:Mˆˆf²3,…¥ƒkÐ ¢°ÑFï™ÙAŸ£8ÙÏÕhGÚ®q§5§îƒzq§®ƒƒî§äÚÚ~™tÃtÒý¯5ã5x”ÈU´&"p+¥G´ÌpžžíÌ F¥Uˆ) ÿʵµyĵÞiŽú·ècèÞK›‰>+I1''ØNxë;\íí‡È6ßn)ÝÊ>·eMåå%ܞȦ@žA)ˆ…ÑcÄüÁ` ÈÔĵHe¥Ñ—ÁJ pð;–;r‚%rÓ‘1%1ÀKlKyêµ—gÞáY¶´'ÁAU¯Aà,"Xäíž p #— û@¥U´z0¡ àUÖð@@­mg¯ ¯–)bÒtઙ´Ö®¸ÅŬÉÒðb™Ï5¬{óäÕÚñ}óó"'mÎÃî×ÝÝnMM ðUAó™äf¶;\ü ßÌg϶]zÑ¿yK÷llÞ›e¼~\—·yHüINøÁ6‚bÈ)QÓ` »S’]ÿ»ˆM܇‡U;ÜÿM‚’õëӚʿ*ÞÞê>1?%šµ*èô›á¨'°Ýg:½’ž¸]ÝÝ’‚%ž6"¿>yÞÄ,ŽÔÞ”\•Õb!¼¶R™ÁÆÑžMžžð‚ž;™‡ž”@U gFFŽG!¸‡mzÑÓŽýbß™h¶;z5ƒmzÙÒÉ8A5ãÕ8Éàq8`ï¶Ùミ•q¯m¶34àq§¬ÅÙ]Æß‡ ;AŽGgB§3ƒMßž# ‚ˆA:&‚#xèèy÷yÞHüÓ”xÝee‘ ÝÝûúÈÜ’A —‡`;\” ¥È‚ß~ŽFˆÓM‡ÜSrÑ’Y—›öH¨‰×bbÈ]eÞÄ‹À¢d—r]¸±É¼)n×È™~`]ÁnÈå]0E‹ÄšÝÔš]„ƒÖqB¥¼¥Ø»xx ‚;¥È‚½U;M\ppÿÿnzf¥:t¥zó¥­x¥ ª™zÎþ×)¯t554óï¯ÉÂÏ~Ù§àÒqP²•ƒ~fzýî ²«É§P040ÝÑ]¥‡F)t¥4•RòF M]áY]𠇈© eôcÞ‹yDê+¿¿ÆMn´n)]ƈ)’’Üœ#O"Á]¼ÆÁÁ­á·QdÀ¢dQ··‰öØ’e*áe¥A¥::]ÁÆ‘­"ôdcêáx\m¯óó‡¦ —áºÑ¯zчg,ŽŽ0w|í‘…E؈×Ö8¾{ÈÏUTžõˆMMðž¥t–ÙÈ;ȇȞßF4B5ÒmØbÕ™5ï„Uz½`¯ãàJɯ¬ÒÒÕ4ÂÙó~`ƒ£t¯ÃÉãÒÒÒ•ýî΀Ӕ#‚U;TU¯F)g,9$_GâÈ@ÓSh†á© %‡’ÓÑÛÁ‘ÝüH›DµµôÑׯä‡& ¥6;™A’¥©¿­öûú+©* 4 W·K÷ÞKKÞ蛚eQü”xõËâSxÁˆn±I›eÓÀÝäz¼™zذ*ÆvÓ»~¬´ Ñbà7ø›ŽëÏRnÁx’¸¬£\‡¹Tÿ ”íõ’Æ]n‘¥,?h?‡™;;;´6MÑb%¼Ž¥¼ ó!¯4 Õ;‡zÎó UɃ¬ƒÏ54«Ÿó~ÏàïÅb¸;`aÕΣŸé{СPÎQpÑíˆ~5ÉóÏ,¶kú-òÑß)’ 4]F’’í]]ˆ)ûÁe‹|KD—Ó"%Z’]Ïz% A™ðžS\ÿŠá”託Ê1>*Á×ÁÁe((öÝÁ(ccdQš¿ú…ßSÁU–8A)ûØI¥¼dݼn @Ñ)×’±)Æ#+fÛx¦]'¿M™,šÑ™Û[¼¿†û‚ˆ½Öý  Mr»˜í#±à…N¥ ;Z ïF)¶,¼,)Æ,Ž~bBϯãððà™àÚ!f:ïã{ï5ÉàÏfB~™~h½[ý4•{¡ì²ñ &¥]°©A8 ýYØ…±NAF%‡b:•¶Uë,àFÙÏ~qà’¿‰èY%U‡`àÓ]h¥„äž’M—·”öÓÊ*ê°Ø%61M"ׯÁÝÝüc;U``È“?;sT)ðˆ‚°ü¿]Æ@­nn…ú"†Ó1xºx+ižU9Ž7ÝØÅÏ7:4¶t´‚ˆpp‡%­M ‡à’¥U ,ò²ìŸ h:±­ÓÛØÉm'6~Õ`™h‡tUbÕãããýŸ§anˆ¥¤:ÏÙ5z55àa4}îPÚÚqŸñ¾„Ü)‡ˆMžM,g{Ú!5Ŷ§%Af&UšF~ ¥¸F4•{b1+ÀÀšbbÈÿI úpä™’\äðܽ¥"ÌM©Qèx;så@ÿžíÿ‡‡`J8hU8¥\žˆˆM’;AMIº6YÊÓÊ¢e1Yn"œØ°xœ ÔÔöÉÎ/ÙB~¥ò««•¶gÒzÝÿ'­Y’"Ž?F‚ªÿ­´ ìì4ãót%~ß’Ó@6]zïÏâð\F&ïˆÆxˆt~Å&É~fY9¶¶¤htGÚý¼ÉfÙ5¬Ž Èˆ™:&UˆÑ]g bgJÍ™q••.X‡Uzt¥Ù´M±BïŸOˆA„¯ú¥…ØzFð” eM†4FûÖ UUž’U‚nß1­]MQÄ(­’í‚sÌ#ȇÈ;„hJJ¦]‚žÈ‚;–¹UMM,(¢š,"'¢#1œš­"±F¥"z– O>¦ý!½’55¯œ]5g…Ø"úÀëZhuhò ™òò„{ ìJ,h :ÏÕU’xeÀI9t h¥%ÕU™ª¥´¥ßѬÅX•ûØÐ} [Âé5Âqé£Òú±‘ä;åhíüÝö'1MM h¥­]h¶::Ï~~]…±FÂJ¶¢­%óGf¡Â5/㟄U ‚Ó—°ß’BïMûÏh‡F–‡Už\ÿžÑ©e›Q ßMA‚õ\’ð`ÈAþ„ÏUÈðÿððUt ~ï~0r*该û¨á[ÁšM± ¥Û©žÕà¶´›(ûÃf±¥h~ 8h 1ýýÕf,à¶à°@!²ýΫ²§¾Õh –‡&à hh„¸öº1OU;MßíÙ~ ]f{¯ãý¯´7ÇÇÐ_Ð €}^}ÎҬì´[/Ðþÿ\@—Þ››ô1š——Á)ɧ§ÚÚz§Ò5]±7bB4 óŽt¼¤G–U‚Æ1´MU;ˆžžÿpÿåF–¹å‚È¥¥nÑÊÊÑ ’ˆ™‡‚‡’ž‡ß° –ýJTTU8™‡`U™Ï]A,‘Þ·gü­0…p¥íÿ–UÉ]ʺš~×G"Žà.±±¶Â{ñ5àz~×¥îqŸÚŸïãìó¶Ï„B™ g¶;™ÛÁü9,,U ÏŸ¯‡ F ¡•ÒãB༭ŽGó^€kkk}ÎÒÂÚR/ŒÐ5;;©¢÷ÄÄê* 1M"¥Ò£oÕã±’•óÖGÏfYn’û¸ó¥xëI¼ú O]%;g"]IÀxÝß%žÿ™¹ÏÏÈÑž‡b]ßM“‚íT b’¥]‚È„„J„“U„ÕÕþT Ï8Ù™½´%†1*·eÕò¥¼±¼¸1á6Æ™ Jà `%~~Áa00ô00~´'nä´Mnt]]€îýL¾ «4G«ïÕà¶zÛÑ,þË Êê>àäUÏãã«òtfqв¤!²G ƒ9•±à"'"´3<-_ÐΕ§óg ò»°··›>›eÁˆ’ˆn´,~~`ä:zB£ì´`¸Žgˆˆ¢¿š>ÊŠÌ #@…,''Ê—Àx+ÿMn‚s?‚‡‚ˆÜäÅ™žž‚ðST&z;¥ÿ¢x;hþÉ–þJ„T5„– âÙn…f…ºèÊhâå´]Ø]¥#°6ïÏãä϶'µ(iúú¼¼øwºÀbb¶…`qƒÍqóþÕ–ÕòÕ™;È”Q> @´",üd 7ì:h™Ùã˯,g~ùfuFó0,¼µÄ|‰'ù¶óP²447a¥Û—Áx@xÀ’ˆ¸Ýrˆ´,)Na ñî ïmìb`zó G4]”]†Y¿ šêµ›(”°üd>·ºÝE>ëíˆÿ\’p—@Æ hÏb~–?‡‚™\žbzV:©¢\:™J¬â8ÖÖ;Ï ™ÕÏF,Ø´†1>…ȇF6‡61—6¥Ï™ÜÈX5Âó!0i‰KµÄÊû1i'¸û´´¥´Îq]’ýý¬{ï&F]Bï& bƺÞH+eš1"´*Ý.¥ngó;Ñ¢ÌedÞ‹êèd··dè>Ê(è*Ôê>›üÝÝ""1x"YÓrr#½ä½×b‡Èbb´àÐzòÎÂ8Ù:¶0§ïÚ`Óúg1+'2w||#eáè·÷yKÀô¨dYÑÈðMÈtÙF bޱ‡;ØÁˆ¥gÆ6 „ªÕª ¹ªJ¸TT™™U8Ï5­,OŽe"­0´6)™ #™]ûÏ®5§4vøÔ>K|Ķ,YFœn¿",{¾mY¶Ãòq¯z¶¶])ȱår——ºÄÄ|>œ>I1M ò6°š›èèèÞè苉ÄÄ‹‹yÔKèèÄ‹|èr±°šô#vô¢6M©:%`ðª"Eúfޝ§ÃÕñ}à€4\:GÓØaœv7E¿­ÓºÄÄÄ÷Þl¢­Y’YØÑûUh eœ s%È6e1YBAbÙï™Å¯„‚ÿÈ`  ™`ï\­ |›bœ,"H±" r],Ùó¯FïatØg!4+70Ô‹ ¿%•ó†zÏaI%eÿm™Ãó`½Õ¬Ã¯’‡ ±&  %Ñ¿Ø+K*#úp áÆ —Êiôiôi(|ôedÄKœ"Þ*ÄKÄú1ü(—Q—še´MM&&bðÏtzÆÀÓ½aͯqÐû±óA™5ƒŽ‘zBfê›w>>#e¿ëºêKµèêw+M%¥ˆf Ù;pYr›Êr%"++,¥]Ê;8ÏAhãUF¥]™F’)ÒG¶´±´›Ô´1š0±¼œ1";{ª„4P²ó}a¶’¼7Ž'|œiœhb]ž '"¶{¥:íÒà¶ß–à `]f ÿÌßUM# Qê+,†NåÜ#—¨Ôö epß)×pÌ››d›êK·ÝÈÜ#èlKèµêe‰è·*r'MM6ÿ"fhtÏAhAÙ~ú†¼Ý¸5G¤7ÊÝ`…ƒ•ÎÙð%BóF(‹Ô>Þôô|øöºêd(ê‘"¼¿,5¸ABfäÁÁ¿I1­ÝÓ­'~Å5¥A]]×\¼`Žg%aOÊÓ¼¥Y×´5†ÑGÐ'ú­(ú,aö "†ú"'*ÀW¼oβñÂÉ¥>%1’Ò97i(ƽAžü0Ø"¥×8â“ "¥äzF–F"FÑ×p»íÿ;% F#*µ÷>‘š#Æecyè>IÆÊpö@Àx°›èc‹·|weô%‡Èpc‹|*èÔôÌêdÌöšíˆÆÊÁ¼±a&ý8þ™ÒÙgƒû½•7,a+²¡ÚÖØûa4‰|w‹|Ôš+Áš"œØÆ—´Ù…~B¶O±´%´n]úûÎ 3ó)äÙb’z´"ƱbÑ­z’nû]b¥ˆ3Í3R~I,޶ŽÝ1´†±´OôèWøÀ5ÚçPaÖÂô›¢…BCŽ¿|è›#M66I0m؈ÙðÕ¹;È‚M¥`å#pe—­M ÈŽF?%pèµi0´e›è|>IšeÊö@eʰ̗›ÄÞHwH"ïªè÷*èèá›Qde>ô(ÀNIß©xYœ:Õt&A,¥œîf4¤Žf G•ÍæÊbóàgë‹|‰ÔÔ*v´´v11''e¿mÉÙÏÕóF†%qÕ…~g¶!àz¼ð±¥’Bb"Ó)±±¥,,,b,`b«¾¯ïƒGì4!´­," Oô,7—QüšÑÆÉ®ÕOrÊ,zmùO"*K*ü]:¸%RtŽh„A‡¹‡‡6rÆ’Ø š1‘%YÓÓÆÿ]h–žá*Dè>êKµèl‹>>>‰üÁú˜p Hè|wšý–ÿ°Ó11 ›dác¨HHQeˆ"ÆY…:;ÏÏ%:g!¡àR3a]:q¡ìÍͧî§Ó…¯ÒƒúÁeÔÔ(Ô|(ØI‘Yö¿Ø,4¶Ï]àœ…'MfqÎé§BÓNó¼ÙãT`ä]…A¸’™zÏ䥥~f:Öîî£~ŧ¬¯f`ó4I†f´OÝÓa¶:m´"vÑã8ÅmŽŽgbYa¿Ôd›Ñ%%œ9¿¶ GUsð‡6rш\r11>Ê­Ó­ßš@íÌÿKÞÄDÄyKÞKc›šœ"ÀQ>'?šÌšÁÄÄ(šh8ª¶mÒ„A’íº*cµ—¢Á’Ø’ÿÁú,:]`’’¥~¸g!¥´¶G !~ë¸mfÉ¯ó§® n`ƒ{f]7àà,v|êöM"¥û†œÕÍñA’ÓØÑÊØfÕ{ã4àa¥¼g,aÕq4ãm5A:Ï!fÕ7´]’~¯¯ÂýÎήÅÅ~Âó¿ºIg7•¶±¥¶3§ƒ!aàO¬¬þÉ6¶`X×X90Ž,Øœœ'´±,6ËUòË; %’ÆõÝMœ1œr­nn¥±1ë°° ”ž?ÑKèèDlDÞèše¢ÊYMrÁ1†Ø+Ôwù,ƒªýªU&ãÉ~ðü*ö‚ˆÓöam0\ð"å]¸¥­ÝY….9}¡¤•ݶ•aÉ£_4Æ×m•Ž"%Žà iêü‘’¼B±tht{§]½¥'rœ:¬5~f~¥~óbï˯ÚÙ¾ƒà{óRýó¼:4¬ÕÚ²¡®¬Î§¬ÂÉØ¢¿Žnɧ§¥`Ùý & ʇɮƒóˆffX5fàOn¸†1Ž&t’]ð¹?h;YÑS)Ï6%6'ÓYÓÀY]¥e¥ží‡Æ¨d|‰eü¢—ëi—**ê*èèô©­ßœ'ú!¤ÎŸ{¹UTF¯“;“U"ÿr´Ü‚\n†^CU‡M]1¥­ÓÛY4Ÿàã…¸f5§§•ýMÆÒ±%V%]£!…e|iœ~…¸¥bq«§û%"û]óB55"I­¼•ƒÂã~ÃÒ¬«Õ§ïJÉ«ýJ¬þ8ÉÚ<ÎãÍ£¬Ã¬mCó¼…¼[5ýÃïJBýœpS~ýó¶bmÚÚÂ5ïB½:5û6 MåF;È;ÈžMð`‡È±±n­Qš¿ˆn'FgMÿMÓá(>>'ú…Ûx6œ†Mrp·öYÿMU,,P^£ŸA  Vh˪JF–ò?ȇÜrM0GóAU%±¸ …YƼ…!ƒL£!£qBƒ½Úñ¬&¥Û‘´MF4G£§§qƒóŽŽÒ5ÉfÕ™{ɪ¯Aab]gtÏÙh´%I`ïÙãqý¾ÂÉΣ®Éä5¶J™î£ƒ`¤ñ/¬Ò¤¤P§ãÚ£îýã!ƒRƒ½§Ã§Õ£UÕU †MUïP,£¡Ã®ƒf´É}£•±,Y6ís‡; s;%6:bÙh‚Ñ] >D21šnž\\\]pp­ÓÑ)‚]MSx—Ê1Mr­]ȇ‚Ýœ'Cté¬AÙãqë͟òþ™A`6M+Ê×~ÎÒ•J0…Y"0aúiC,mÃXÃÕ&Ù~ý5™ŽózÑ",'Ø,^=_ Ð Ra±tÒ¾Ú¬Ò¬ÒÖ,¼¥Ö„f~!aˆ¸Ò§§¤ƒïÒÕ«Ÿìóa¸Ø¸~äf«îPÃ㬃5mggÒ„Ÿ{é§¶z,";F4b¿"­#(›ö’û¼'m‘×ï½£ÍX&uòfCG3u ‡‚Èðž‚åå‡?T;MUò¹Ùò© MD›r1%’r;žpÌpppxÿn6]žrÓÊ#x©’M6È¥’‘v¿O9Ç_ÒA`ÙqÒã²ñ™~–™¥p'Ó¼`0~´I¼…,óŽk烧q3äÅãÕfþŸòò1Æ´¼'ä,! €¡¡P¬qGó[«Î{Éftï¯:‡ãqÉÉ•à¶{{b~¬ÃÍ4ÒPÍæç½5f×N¼ FïÙÏÕýã¸Áöš¥¶þ/L§Ã§•5¸]äb´ŽFú0+¢)[Á1"(eQóÉÍî²ì ñXB–;‚Ü‚ž‚MMžÿ pž&;õx©”áp¥”—šI"fA)xQá— Y]ÈAÈ’’’Mn]¥‚åÈ%6]̵+´^^m`U5C!CùìÍâÏ‘Æ0±07,´±4tOî3 ²ã•£Ît`Õ5ï5b´]nÆWë’›š[ͬ͡•zbú¥™É«/4¬¬ïf±±5•ƒÙh4ÏÏ„Õ`bzzƒÒGŸŸ«{ Pqf•à™’fïf§ã½¿+ÊW¿Y ýîС¾ÚÚ£Ú••ƒÏûYŽ´'—¶}‘%ŽùúèIG!q{ýG}¾ƒ58ïÉ Ï’õ°»r˜˜»@”ŠQÓr—ŠÌY6 ‚pp À1¼g4°á pÆ6`%¥6¥ðA’A‡MM6å‚‚È6èÔè>ø2œmF±6¸}Œ€àÖ¬¬fÒf0{4&´ótÉÒƒÉ,0ƒ}•ãf9Ò:UBýï¬fFÿ‡àzBó,R¤_--î£}æ²É×ðÕG£«ý¯:tàÙÖÏ5B5~~¶t´±B)`ÉÉÕ½Õƒñ qÏÏÒ•Õb¼ÕÏ~~5ƒm!,œa/¡ÐÐÚq¬É4ƒ¯Õ`±C,+ØŽ ('û½É¯ÒÕã®BA¹Ÿ«„\Ì@år ÿžÆ›ô—Qö)"6F‚’­ëe› ±ÿ´6nÈ™A‡¥’ÿ’"’Ü‚‚)ð’™ðcÄ>>‰›ö' r6I!< ó:Õã5㤯qæRŽCPîÍ~§ ¶ƒO´aÖÎÒ´óààÒÒŸÙhG4ƒ¤f¼^R€PoîÐÐPÐÐî¡_¡ÎÎÒÉãýÏ5¾ƒƒÏÅFf5z:]O¶±BBÕÙT5þƒÖ5§£Ò~ä")AbAþÚ™Ïî¬qÒLPÐÇ$=PRóm¥`tÖÕ£É@µÀëN'¿IèºÀˆªÕ˯Ã!ãqÉ¥:óB¦ÛYß’ÿ¿šŠ›e—'] ï¹ ™Mr——#™È‡¥ ¥’ Õ™` bUU%   ‡AÀèvúdêÔ(š š‹|2L}[Ò¾îóP²PÒRP _¤£ÍP¡ñfûFÙF¶m¶¤BàGÎïãŸ4±BÚýÚ_ÚÃîÐСÐ_ھÚÃJ5¬ìàt8ÉÉf:g`b~™¥A:ŽÒà•Ò•5ÖÒqq§qƒ5û¼a•à4ÎÖJ™éÍ®5mà¶,½½r݈ˆA8à†w­1ˆÛ1µêdd”Æ:F¯qqÍñf’äÕ¥\pížMÆ@—œš±pYn]U;åårQ—­B¥)`t:zÈÏý ÈB È¥`t&h™Öäiö¿à¥'èvœQÄKH¿OfÕ®P¡P£²$_ÎÃÍî£éq§ÍPqà~:®Ý½ †]"]ûßbBà¯ÙÏ»…R ÚΠΣîîìÐPÐÎÖ¾PŸ{Ͳ £¬JÂÉ:`,´ "ÈŽB,¯¯4`Ò¯¯ÃɬÉ5ãÎÎÚÃògìFAƒýhþÂLq…Áš'0!z1i—ë¥ä½zbnmÅ®ûY,êêKcëÝ;:Ïm5ƒ4h½ï~ðr©pÓÆ1ô†% ­‘¼1¥]U™U;%hA %&ïÙ;UUbA™FVgF 5ÅÌ›'…‘ årKÞwi"¶ƒqÚqq§Î¬§Ð²Îq•σ•fÍìJAªúàŽ¼b±ûÅýÙhz:.ýé§qÂýé§é§¯ƒ¤5LÚÍ£ýqÍ ²=²Úþ5z:±…¥†]ÙbzÙGýÒþÃþÉÂqÍPÚ¬,B],àƒ~tBt5óq90+­'"­IxÀ”'¿š°¦ï8Ò¤o}…ÎÅbØedÄü1©nÙF¼,¼±™ïƒ™Ïõˆˆí"¥ez:A6´]™bAÏU)™]¥6ÙÙAþUÏzË™½bÏÏ`™BUzFUA Ï „A—")UUM%ðWdµôùmî£ãþzBÕƒq£q¬ªh¹Uřɾî$Íã®5ÃÉÉ}5bfRzft¥! ÃþÒÙÖÒýïh8Ï„Õýh–UAËGb]¼~b±f ±`´bgg5{ìq8ƒïÖ¬ÅÕóC†¥¥BïÒ¶f¶aàà)ÝüQ›WIz¹?  ‚hÃì¾ÎÃ¶ßÆ"6´W¢QF`Ž~¥±™]bÕý ` %A b½:]ÀÈßÿ‡ ‡) `AÈ;;‡‚ U&¹ ¶––ï’ÙFï¶FUh`FzÙïïJÏ r , rÆ%ä¸À¿à{ÕÉïÂãþóÕÕÒÏ8¶ÒÏÉÙ¯mÎ<¡§Ãþñî󕃕…’Ù: ŽØ¯Â¯~~½™ÙÒÒÒ¯ïz: Ï™bU:z]]¥f~ú,O0b`:5¬ðÂãÙ8¬~ÏAÉäzmÙó^3mm~É•ä¥f1"ú~±¼¼,g`~; F ×‡[5ï¶’\ˆ) :לÓ×€;%¥¥±~¼A—TÙãŸãB UU™`B¥–™¹Ù¹AÏ8AT™Ab)bbϹFB¯™™t¯AU:BU™Fh–ÏϹÏÕª; ?ÿ ™~¿vŽCÒ®®JÒ½5„„5®&â¹ããÉqÂééΡîæÎƒL¸]É~¸ˆ7]¥ ñ•ýãà•ÕÙF ™U:™± b]]±¥…]""œ´f¥b‡)¥™~Å58«ýؾ¸Ù™Ã)b’T´fo²ɼgúÁfRû, Ïb6%:b‚;Èð–Ïb;\“8ðTbng'×^,,´]]]6]û™UÙFýt¥––ïï‡ä;8„¹™8ŸŸ¬– &b™AU tƒÙÏ8T™Ö–ÕÙ–8ÏÙz,Ï– ™;Ùza±Ý×½Fhڣø+¿ùóƒÒÕÙƒt„ÉÉ8ïïïzÒX5ƒÉÕ5Ÿ¡¡ÇP{J=ýðÒïïï,]gƒñÒBïBÏïB`½%¥b` ,±%´´%; ¼%´b%%± b±¼ä½~™Ë§ñ{Õm¶ÕϽ~äNøûf4§q,]]’Æš)ÏhtÏBÏ8U&: ¯¶àƒ‚;¹h„ã &Ž'1±F¶ŽB±úM1‘1‚zh™ª¹M‚ȈÑß×–U Éh5ò]Ï– ‚%¥b`F `A;Ù&FϹ:ïÙbÈ™:™–`U–B:`ƒza¶BÉ{²Ð_Íöe m§ÉïÕ¯¯tïÙÃÒÒï85ÏÙz®§Î îîPP_ÒPÚf•ãÎ0]]~0z5U:BFAbU;¥åœ6±´¸œ¥±Og,´~`™A 5J¬ééÚ ÎB§Òä~ÉÏ„½gÑÿG,´ä5±]›¢Ñ"ÈAU`Èð™hhAÙ£R5½ZG{ñÒ8JFàO0š+â ´……6"±n’¥‡Õ™Õ¯`ððä ™ÙâþðSÈÕ¯ð&zBzû"6‡¥¥‡‡AÙ:&¯85Ïãý–bﯖÏïªh Úm55Â/ ¡ =€ÎÐ @°i,•ÉÉÒfïÂf„ÕJ8Ë„¯–¬ŸÚΣéΣP¡ÐÃPî5fû '´œˆ’’™:b;bA]‚%´;])È]1œœ"]b;È¥ûØ]fzf~™5Õé« é{ìÎÃÖTB :ÏÕÒ„•¼ú7…¸½ØMF™s¹Ù Â]% JïB]ï¾Î¯``Ò!3ìÏã "…JØ­]½…4 6]G–h¹tÉzïÕ&U–J;Ï– ;å]]È)bËÙ–5„„8„ª¶:½Éh&ïïÉF±bƒt•ñ¾ÐPîСGŸÐÇ™›šúÅ8A `ÏÉãÚ«£ÕýàïÉﬧÃÃ飣P§§ÚæÍý{ПÉ,9­"¥%;‡U;]¥‡]%´]‡  U:5z:5ïï¬ãý{B¾£ýÎ{§`tÚ~ŧ{f7Øn­ÉÿÆ8«„hh8ïɕmÒÙ§£•qŸ£L/¸7!fmýšï¾t¥’äzÙã)ÿh¶ãÉýÅ~Ž•4¯ËãutÕïUA;~Õä:;™b…%]]‡Ï8Ù¹ïâhªþJïh8hï–:`` C7Ãç/çÍÐî_=² Ÿ˜iú±™ÉÉÉï¯Õƒ{ª«h55ÅãqÚ£éÎÚÎééÎÃÉPÚ§ÒÂŽàó"±]b ;¥™U‡‡]¥¥b`` ±‡´`ÏþïÒƒÒ¯¯ÂïÂÂþÉÅÒ5–5„§ñ{5Ïã{¶Òãóó¥],¥~5:F AâîɬÉmŽz5U¯&òÒÍL®••XÀº'T&!'*Ì8Ö588Õ§Ò¸ÿ´`M¹ËýÕb¥`U;È\5ÒƒÒqäÖ™;™U;)6;¥Éàà5–Ï&¯hJÂÖÂÉþhA¥ffƒ:h,zBóXÎæçÎîβ==ÍDzû+fÏþJòh–Jç§Ú££Îý¬ƒ¯ƒéÚÚ¬§{¬q•âJ Õ{ñÕzÏÏ™AA½];z&]]U¸  F¯ïFÈ"]] &Ï::ÏÙ™‡‡™z¯:™FfÖãþJ§{&ä½Ò¶ð~äó`:5~éÍìÂJ¯–¹8‡©ž’`Õó[fïÙ"rá#Ü G"ê|IÒƒŸ«ýqŸq0O9¸ú¼:t!Žf¥"5Ö5{Õ¥ÖýàÏb%%´¥¼¶tB5Òýh¹Ïh„ÙÂÂ5ÂþÙgB&ffBtýÒ}ÍÚÚÚÕ«P_ŸÎF´óÚý«{¾{òŸñ Σñ«5Ù5¬ý駬qq¬ýÃÕ&88JJþJh8:b‡‡UFÙUȇFthBÏ™ %%b  ´bUU™™™F™A™AÈ`;A  J®É„Ú«•ãÙÒ™ˆ’"û]’Õ£ã–ÏbÏþ‡’;ˆb£ &h6%Ó‚Góev!ÎG¬{¹5£¡ R4:¸bhzà bɬڧ§ƒ3²"´ÈßrM†%¶•Õ„þJ„hþþfÅïÂÒ„Bt7¶ªÂfï§ý§ab5}=²ìî{Í ý,m]7Í¾Î«ì ¾¾ìî¾ÚŸÃÃÉÉà¯óâ駬ìÉ5ÖhÂþh„Fþâ   ™Tž::%U ™Ah FgghF±´b™UUÈ"6%)b¥;`FÙ¯ã{ÕPά5qq¬ªÕB]ÑÑf]¥`Õìо™;ABz´ÈMÈû`Ú Ï ìà¶Må–CŽ7GïÉfƒÃÉÉÂÂÉãqÒý²Ÿ¬¬ýÒ¬{Úñï~’íß­YMpš+,Ú{„ÉËÕJh¶5,B•ãhÏfÒ•ý„ŸìPŸ²¤•¾PÎÎУéïR†°Á…€îìîñ «ãÂà{Ú§§•{ƒýŸq¬Â§{ýÃþÙ~¹J8ïÖ–U“ ’%``;b`:ï¹AJ:`:;;6;‡b™UUAU±;]¥5Èû;U8¬¬£þ§™ÏÏhìæ Õ§ƒBÏtϸäÒ„þJ–™ðMM‡;?’:;¦ÿ‚BBFó6´‚‡ÕOiœ2ô'~&ŸÉ§[ÉÂé®ÚÎÍ{£ÃŸÂJŸì{ÃÂã«ïˆÆß)6©eš¿¿]¯¯ÉÖ„™ð™:±`••¯¶hÈûýñÂéîÎЫ£Ú§{•5Ž•Ÿþ•ãnà!(*e^L§§Õþ¾âý£Íî Ú¾qýýÒþ¯ƒÕ¬Ò¯¶Ét¹Ï„UÏU–zÕ¯ï5ÏÏÙÙzFz:Ï;U¥`ÙU n))n¥¥b;U ±b]Yÿ’]%)ˆžs™T½¹Â§§z¸¶¶™5~¯ Õ` ì}ÚfЬãþ¹ðžM‡‡–ðÈ™»ÑÛðGýG™ÿ%M;ïó´i›vnA]@Né£î飣£ÃŸ8òÃhJé–ËÒÕï]"n­­"œ6¼Žϯ` bzɸm¶¯z6ä¬îŸ£ñý²£ýqGGƒÉ¯q3à´Ó—|>C3ÎÍŸýý{Ÿ{q••Ã㧃þ¶5ÉJJ hFhzzï¯ÏÏ„ãïUÏ:zFhBF];TUz ´b‡È‡]¥™¥Ub½~–ÙÙhB ÈY"È  ªª8VÕãÕ JtÅqàfz~tàɼ¶ý ffh–z`™A;A;F ?T¹È È)M4‚ðbMM„6y굊%œÑÛûÚ£Úý§¬¬éɇ„–Aíˆ;ž™U¹Õýâٙ𒒒M­­­û´::hhòýãÙ¥a   ƒŸÃÚ£ÚñŸÎÍìÒÏÏ~;z¶àk$¤](d¼!Σ£§¾¾Úq¬ÕÒÖ5ÙÉÖ8ÙJh¯~¥ðÏ™:h;;`  `bb z:g¯F;™™6)¥];%%¥‡UïÙF`‡TþË{ò¬{ý®¬Ÿ«ÃþÏŸÏÏBϱ5ïàýfäßYû]„ªJ“h   U‚A`FˆG :"žAs e>µŠ rÊ0ŸÚé{é¬Âq¯–ÈsÈðåÙ;™“{8„T\’;¥¥%%œn­"± %±BfÏ™U¼bb™éßիãÍî£ „ƒÕg,€ Ç¡PÒ2 mÚq§£Õ–ÏïÕÒB¯f~ff hUÏb™‡™ `&hhïþ¯Ï™™ Ùzb; ™¥‡Uz¥¥;È™™%:z´¥±‡bU;A` ™ÏÕÕ¹™™{ŸŸé{¾{{{þ~ÚPãÒ•Ùþ•½ð’¥t:`ˆ—°”pˆÈJJ„VFjF¹Uz;áž; "a“„¹¥¼ø|*á%¼aafý¬Ã§Îìâ“UF ;¹ %„;þþ{òËý™F’©¿±Ž]¥`ØŽfzg¬ÎLPó¾{²ý«ý¬§ÚPqq«Ï¬fmoçÇ<çó(¼Cƒ¯ããÂÏ5ɽïza:F´F™ ;M™Uz: th„ËÕ8™™b: 6‡;™;U:™û; :  :,6¥];UbsU ÕþþÅ™J8Ÿ«ËýÕããÏ™Õ ñãòþÙ¯ð ]ˆ»MM`bbð‚;ðˆðýqŸ•qƒB½½Jã ©¢Ñ)Ȧ¯8~ýÃÙW°"•Ȫ¶J¾Ÿ{ò8JÕJG™U;BÈUýhÕÉð‚‡U¥rÑ'rÆ­1MY'¼"…,AäG~amP§{þÎýÚ{q§ §Ù~U•ÚÉÖ¶ƒm^¡æ=vœ7f8JftÙzFÙFÉÖÏ:´bBïBz`ä‡5ÕhïU ÏÙÙ‡‚‡UUBBU`   `UU%´¼%¥¥¥]"%U%¥:ÙÙ„ãÕqãý–òGìì£{ªJÙAAâì ï;U&™ï ;‡ TïU½JƒÖ¶à™™Jªt,rM¸¢Ø¸8¯¬ãÚ7‘ݱzˆ™Ë˪òª8J8ªÚÂÕ ‚hF%¶¬â„ªhT¦¯BÓÊÑ'ÿšpÆ"n)ÕÕ~àþ5¥ÃÍͧþÖz¯¯44{ÙïÂý¯]­ØqPŒP,"Žfï½]™~f:az&m¶zÅ`:BÕtËþhJhÉ™8ϹÖÏU½B‡%Fz b%]…%b‡]]´œå11M1åYM)];F hÙïÒ¯ÒþÕŸ{ãþU‡A &Ï Ùh   h–âï–ýýÏ{FFhÖtÚŸï!4bzéJÏt;ÜUÏ)™ãq¬ÒÚ`Ó”Ž4¹UÉâòhÖòò™¹;;`b‡Èýðãh‡™ óMpxrM%n"')~¾Î¶4 ¶ý5ImÃÖq§É3m4Í•ÙÒ™ÉóÙfz5!ÍP¶šO}Pa`±¥],Bb½BÂÉ:aƒ¬ƒ{fBÏɹ¬¬Õª8“;hÕËÖ  : `` b¥]¥;]’ˆMM]¥]MYn%†œ†¥nˆ)]b:™¹ª„ïÏËÉ5ýããÕh8 ÙtAðàâ’ÿ¥b±z, 8–¹þ8Ï;–ïâïÖG•àGäz¸¯8AUU;„þÅmfÒqŸýÃ9Yü䕃ϽhŸŸ® „¹“ýÙãz‡ˆb¥]\])ˆ4ïË™’ ó ßÓßM¸ :b†)8Õ«îóÒBÅq½…Éé/§ÃÕã¯ýG¡ó¶™ŸãÖ JŸ«ÃóLÎF#1 ,•¯þ¬„ÉÕÉ:BÒÏ¥¥Bó4ã4ýÃ8¬§¾ ¾Ÿ«âþ hUb¥b]Mˆ];%]]6"%%"'M111Mn%U;;U¹¹Õ5~ÏÕ8ý{h;ðˆ¸ ÑßY@S:„™™5Jý;‚ト„Ù£¾«J½½5tó–Õh~JããÕGÕ{Ÿ¾éÕ&t~¥ÏÙ½f¥¥zàthÙÕtÙ¸ˆ’¥A]×~¶Ï™ÜžÕÕïð%6’"å’])Žq¾ÃÚ®BOà¾ÒfoÎLé8Ú¬¬™ûgGŽƒÙP²ýhªªÕ¬ÒïÉG+Ž/îJÕòý®„¬{®Ïã¶b:{ŸfÖ§Χ§{ý«ì¾JïãÏ;6`YM´%?)’]6)"%1œYM’Mbb%‡Øð’½’\‚ï;‡Tï‡`&t‡‚ˆ©ÆÑí\pS Ah¹zãóËý²ªË„Ï ûïazØ×b`M­M"ãÒ“¬q§£ §ýŽ5`ÏÕ¸¸û¥‡)ûU¯¯ÕÂþÕ¾ft`B׈)‚ž@Ý:ïªb?])‡A]]]G«¾X§¯t§é{±Œ/ÃãÒë«Ã"g`Bqî _ ²ì{®„5É"v,ŸÕ8¬Ú§¬é£éÂÚÙa²¾ñ{«Í ²P£¯ƒó¯FϹ٠U ´MßM]6¥nˆn¸]ȸ6)‚žÿn66MMMM¥;A)M…)…tãh¹Tíí#@Mž@©6“AˆˆÿÜðïï ª‡{ò5„ðÛSNAÕfÊáU8J–ª «ÚÕ88ýòÏAþÒf½ä'¸7¶4£ãÂýòà53•Ò ãýÂ¥)…ÑMpÜT¯ýh5hh,z%ˆ1²ãã8ŸmC–„[~q• ñÍ£ìT†1")¾q в Îq!Õm´![é{ã;ξŸŸŸÏ• ýΣÎÚŸ/qq®t U‡Ù:½AUzˆnn­ÿM)6%F“––UT‚»@ rˆnnnnn:tt: ;)M6`h¶{ýU™ðSˆ»‚’ÑíYÈ–ïãhh“ž~‚ tÈ;UnÈU]AÏýäðß)ÙÏ;¥ Êz¥™ò„UUóþòÒ5½™ðȔݥͧ°'{¾ý¾Ÿ“¯8®mmý®£ýþ§¯±˜—Y ÜT8“ˆ'†`zh6¹«Ÿþ5X!•¹ªØƒ¤Í§Î〠A8ð§ý~7´`fàƒaón¼…!PîÍ PÍÍÍÚñîΫ£L{Õ¯ï¶ h]z% b,`g¹È:`È?rr]™U““JýÏ™A‡ˆ\ÿ‚ UB~……:)þ„ïªhbÈM‚’\×’ˆSܸÜM)È" ÙUÕãÕ½AUJU¥±?1°­¶–ÈU‡ªâFJAýýâUJJãÂzÙ;fÙ:h™Ñë¿´U~n‡ïq®§¬ŸâÖ„ÎýG Vâ{JÆ›p ðs?;61vÓž`ýÃT™…!LŒ3½5RRÚÂÂÖm}ì㟽Ö5fØû…]¸úÑÓØ"]n¥1:ƒÍÎÚL§qýÚ£/ ¾ééŸý¬þƒ¯&:È¥;ž)]ÈbbB`Øß )© ÿÈÈȹ¾ñòJ–ï¯z¹ Ù4{ÒzhÒA™s„8“\»í@pß’ˆSSÿ’ðžž))M¥ ™ãÕ ïZ„z™6­›¨á\ð;UsF;È;âË„–„„™¹ª{òò`bðA„™UAÑQš¼FŸÈ]„ÕŽâþ8ZðUYáW¥g~UUT,FFU ´Í{®A‚wúCŒ9k¶ŸÕ. ÍÂ5Ïm¶ÒaÃJÉð\;]’žÿß"û‘…¼`Éq¬ÒÃ{ìq§•§¬ÖÖ®®®Ëª“AÜ’žp ˆ"rY6¥;U:ú±¥t&MÈ™`B`B]AýÕŸñã¯ïýŸ{ý“¸Üs8TTˆ’ðÈû’¥b¥ØÿMÈÈððAðAς߂ˆ‡M’hþãJ“U‚ÿÓÌ—DQž`ËAªU–Å ~½ã¹U„„Õýh’ÈÈ]’Ù»#QèÓY’¶¶•ÖˆÝÕö;UÜ]rá YnŽ´f,Ï s– ;`"9ÃëÆë¸o!ŒÇkÐì–!/§¼[®Ò¬«U‚‚]A)¥:%än¥B[Õ{Õ¬qLì¬þþã®5É®¬þ«ã™»©žÑ»°Æ–F)M&]‡ß­4k¶à`‚]]ž©6 ´bb~¯Âýà¯Ö™½ûä‡å’T“¹Ëªþ{¾¾{hF:™ Ï ™\””ÌxMU:½™–A\ž‚0Yá ÒGG¾–®Ãþýï„„¹–¼‚©ÈT]’¨—Ó’5ïãfÏ•±ýþUþˆpÓ? ´¶óha`ÕtA–þ]ž1+vùLéã¹zÑÀùoçç}²Ð§ï~Ï{}Ò:Ú¬„ã––UAMˆU &ýàRƒ4fÕL§§q¬ÂÒÒ5[ÂÃé鮄®{㙂TÖ’È È:U’ÑÿÑžðݸ^b×ݼ:¼ú'­F%¼XX"’’¦Ñ×\ðÈ™?Ë{«ãJ„þï„„8ï`MÜó&™\‚¹‚‚]’ÿ’~„ª„~A™AðAB‚¥’zJëFA‡Ï„îÍÂJãþÒâÙ]ð ]¸ä ó& 6­¨·…fAäótŽˆÏþ–â¹AM‚Ñ`Åã•t•„ð8ã„™så?äÀw7Cý8ãGÏNWö+XŒŒ/kB5¶•Âz•]ƒ,: hJŸŸ£qC!ƒ¬q¬ÕÙï5ÖÒãé§ÃéÚòòJ  óï¯ðÏF™ˆzhÈ¢¨·üÁÝ"ˆ@pY˜rƈûØ¸Ø 0OBÒ5~;Ù J8ýéŸÕÂÕâ8‚žˆ°íˆˆ’ã{b`™™8JÕ5:ï–hJ˹A88ªË4Ž6%ȈÝ`‡T¬Pîý¾òâ¯ÏJ;;Ï„Ÿã;%ÿdê+])~Ù’äãËŸ¾{5&]@rr¥®«¡ƒ®ÂÅ5J„‚åÿ‚'Ô‹ú.é£ Ð§Â±ú2ùŒP}ǧÉäÖï,hÒØ@¥C{•ƒÒƒ«3É0f¶¯¬¬þ5¬þ555JŸ£§§ÎîP²ìýãòã 8z¥Gò¯ï ˆ@üHÀ+xõ»Á°WÓÑ;\Mxüücè(­×ˆBtƒÚ¬ÚãéŸ{{éÉTˆÑ©©ížAïãã™™8Ëþ¹ÖþJ UJ¹JãÕÂ8òò«ýhå‡h5Ö5¯„¯¯§{q§²Õ¥&&z½ËG™t¯h&%‚È·‰†O±Rz~ÙF¹ŸG“xÿˆí¢Q#xÑýͲJÕ£¬½sã½%‡åNK|¿7CÃ5¾¬§Fg± 9æ-æ!Òƒ¯ÕŽûB‡õxëÁ¼½¬P«¼ÙÉÒÒt55®§þ®éÂ~~ÙÉÎP/£ÍÎÚÃì ñ¾ñ¾¯8™ÐìGïTÌrÿW‹HøÁÛ¢@"­°°Û@°°—K÷÷‹e›ºßûû¿Ý¼¯ó£ÃξòJ88™“– U;~¹þÿ8ŸÕâÉJ8hËã£{Ÿãý¹ï~ÅÏf5îL¬Ãó8ÖÕJ;ûžàòh‡‡Ù™M;‡>ø"4¶…4ãÒþÏË5ï‡]1—(Ê´5¾ÐÎòJhþâÃ[½ðåÈšÔl2.UÈ59!U]û‘'XP²Õ½»À@SN\ÈØA™×~{5`ˆÝÝ¥¼,Ùa:5G¤¡¡²çÍé¬q{¬îîé§Úé{{£éÕ{Ÿã4ï¥7^aû×Á—ˆ©p°—뺢áü@ü—ÁÛWWáÞcÞ޵ꋷèèKê‹Kx+òª:5zÕÂt‡AÈÿA ‡AhàɹÂýýÕJªþÃÚ£Ú{ÚÚJ¯¬ÂϸòÏAÒRàtzÕª8ÏÕãJŸh¹ß+Ê´h:G«„„²Éï;„ϸ‚¥—(Ê¿¼bˆÏÈ»ž~JþJ~Ùs‡È­ê‹2}ŽUN•m!ì¯5~¸zûð8JJÉð:A¹h8ÏýÕŸ«ÃGz,ó§™É5z¾ã§îæ²ÎãɃéÂÂÃìJ5{²î¬„Aäº>ww½N¥õS”áá‹H°W·¨WxÀõWüºH··á·*÷c·dKcK·döENˆ`¼]z’ïÏãòA);’‚;åå Ë{ã–„„þJhìñý{Ο« ÎýÖ&Òóƒý ¯;hfYÀ`ˆ™5FÙÙ¯¾ìòËÏÙò8’ÓMpr, ’ƒÂAf4 ã¶FAÈAÑš Æ@AÑ@°SUÈžÙh\;šKKæ G.¸ùÏÃã£îó}§Ð£{Î PîñqÚÏËÕ–tà§ÉÎ=Î4½ÉaÉ•a5[5ÉÂéÎîîñ{Ã5鬬ÃÃÉýþÃîŸU‡™‹dø7ݺ¢À#áá¨c›>—á‰dd·è¨¨¨Qá·ÞÞdº‰·‹·›üöe 'ë©xÊëN×…fA Ï–Ö‚íÈ;ð\Sxõû¹–hªþË£îÚ¾²{é¡Ú§5B¬ÕJþÕh¯Ò5äN ™hªÙËŸñÙ5fÕBsAˆ©íM—Dá6Ž`Õf¸ýU  Mõˆ™Bnn¢Á¶ h¥¥;ŽBãÙU’)¨|ŒÇŸÁmRƒÚ£Î{ÉÚÍ ¾Ú£Î«§Ã¬{þ„V¶ƒÕq{£ £§£ó«•ƒ½½Ï~ÂÂÃ鮬®ÂÉÃÒtýéþ®Õ{éÕßþ½ÿ”Šcc›ô›*ê›]ÁèµêDº>Hd·èèQ·Qdºº¨K·êKHöÀ‹ ʨ¨ºØö>”#MÓÜJ¯½Ü»@M‡;;½’]ÏÖUÏ⫾«£ï5ÃqŸ£{¾ŸÃýÃJÉÕ™ŸŸÉ½þhÙïãÃãqË{¹;hªJÙÿ#xpë÷D·a~²¬ïûnM %׸´Ó'ABÙ–;‡`5äzžÓl2o€â~EC4qƒ_ÎÐÉãß§ý{«£ÚŸBÕ88½Ïƒ{¾ì£Õ„XÐÚ¸¸5ř֬/ά~ÉýÒÏ®Ãã{âòâJªj8‚sQèyK÷ê>‘M"áDÞÞy·ººd··ºdd›ü°µèèDê>‰èDºö›D·K—Q°ÀWxÝ‚™½ÿíˆí‚;‡;U]]ÙªããýGìÕt`¾²ñÉâ¬ýÒ5ÉÕ5Ë˧qÅ~ÈhÕËGXÙã¹A¹8Ï&;Sppüáüè÷›´gqª8±)±)ˆ]@¢Æ,`ãAUhãýÙ`U&FUؼ+è>9ó ÝEOƒ•P$=_Âã;ÃÂÃ{¬®Âɾ–h–ŶzBƒ¬ П£²Î{{qÏ’~Ã{¬®ÚÍŸÉÉÂ8Ò£ {«Ÿ–™JJ‚Ü—÷D÷cµdú¼©cè|ècè‹·‹¨‹cèê··‰HèµDDµcKèèô'ʵx¢ÊÊ¢ÆrØõ»\‚)‚M íM‚ÈhýÍ⯈S’5{qÏýñéÚÉ®¬þɬÂþËJÉ£ ®~s––Ù•£{½¶™¯ÙhZB]ÆrÓ1œ|*>­]ؖ٠¯:Mž× ›Ž"¯þ5JþÃ{¬‡‚‚ ¥5tމ|2]È…+±O.f! Ç-Õ§ýÕýãÖ~ffhâÕþÖúm:zF¸f5Â¾Í Í=}¬XÂLPæ¡PX[Â5[{²ì{«ìŸþ8“˜¨Ky÷KDµc¢ÊºÄ÷yÞèèc÷ÞKKKÞddèµDDµµDµµèÀÊQxxMWäúä¹ËãÕBð‡‡A¯Ú• b‡àãÙU`b¸:5~5ÂJ88–™8„{„¬{ŸÍé8?UU„¯ÃL[™ï8thÕâhÕ‡@ÓN Žøy¿fA8`& Jh™\õ­º—Ê`¥É„Aþâh‡Ñ@”~4Pwr’I+E¼7à^ €{B4óaÉÉ„¯¥ïïñ¹ð‚¥]]%¶t•t~5ýÚƒÉý£ÎÚÚÚ/î<¡Î®®Ã¬²¡éJVâò¬Už °ºÞl÷÷÷µcŠ÷èµD÷÷D÷¨‹÷÷Þ÷KyDµÄDDÄDĵµ›ÌÌrx¥ÓQá™"ðB;ð];Õ{GVÈA&&UB :¯BÙ’¯ï8JT5J¸~~ÉýËÕª™¬ñ{Ú;8u¾¹\~ÅU¹Ë8{Õþã Tíí—°¢dKê·8h„{ìhóÈÿõ"š°n¶â–\íT‚ÜY”Ê­~„¾ŸhÀ‰ÝÝØ'afRó%¶Òâ ŽBÒ™å;AÈbzà4t¶àþz™fàÚÚ¡ŒÎææÇæçLîæî/¾ìŸÚ²«“?˜Ü‚@Šè¨DllÞyyy÷yyµµ÷llyDµ÷Dµµµ÷yy÷÷yyyl÷µÀ’M ºÛ ’’#Mÿxr©œM¥z¶ãóf]66å%†6 8„’\™„þJþÅJ„þªJJJ„„§îÎ5þ£ÃÉX8Tþ„–ãtû¹`ÝÆ÷¨÷÷ÄĵÊ` ƒAÕ¸»úÝÁö©ÈïÕÛxÌ”¢ˆ]©‡Uâ¹J5ëwÁIöÁú¼ŽŽƒGòÜ ÿÕhÅ™&%±{{„ȇÿ6;¥AFA`¸ûÉï55ÉŃ•!ƒƒççæPæ<¾ìPìñ¬s‚‚åÜpá—·Þ÷÷÷¨·¨÷D÷÷÷yDDµµccµ÷ècµDDDµyµµ‹Ñ‡TÜ#ë×¼]pÈA#@”Y]%)6…,`6M6MMå"¥h ÜϹ¹Ë5ÂÕã®þ„Ö²ñýÕýýãà ŸÚ¾ý®ýý„ð;AðT]¼É@À›w›Äµµµ›Ø¹ã¾ò âÑ¿#©Mò¯‚í©Æ Ñÿˆ’Õ„ã§ãÏ`¥]‘¥…¥J«¾Õˆ ¶ &zU¥†fÃÎÕ ?]Mß’‡]‡]¸™B;½Ï:Bz~……aLq3éÎ//ÍP£þTž‚s܂ܞNغáDD¨Àõ°——¨èè÷cèQáë@°áá°x”HQèK¨KlÄD÷°í‚åp*è%%;%‡ 6­Ø……ˆß)6MMMMM’]b™8{ìÕ¸„8–˄h˪UUýì P²²î«¬®ÕÕ™®x‚`T:AxöWºIedµyyºSUðܪ úÓ©¥ð‡×»ˆ6)p%­:ðÕJs;¾Ÿ¹’¥]"¯Å5ÕñÚÕJÏhÖ™%Èäféã8™„¥\Mb‡) t&àÕÒɱg±n¿ø+L¬[[XÃÚP;²ñ“’åžåžÿÿrÑèèŠáp‚ÈÜMÜÆ@°Ìxƈð;™‚»íž‚MÑÓÀÀÀw·c'ÏÙ“ÿáp­g]]`z’YíMMn]6MM]‡å¥)ˆØ"]¥FŸýþ¹;„Õã««{¬âýJ˧§Ÿ{ì쟟ڟŸñâ;ËË»©pÿ’ÆëxÊë° (÷D÷yè¢Ì#pÿÈA :%Êrð\\\\žˆMMn) rF8Ö{ªh U?†´ƒ&8§ÚýJÅ;A™U´¼Aq§¬™:&6%Uð¥f:~ä’Ѹ¼…¸LÍLÍq//ç²ñ ñJ“h“åM˜@Óá” ÿÈsss?s™ÈÜÜ‚s;;;s‡‡åÜžÿ߯ÁÆ+Á*|Dè­5ïªÿQÌÓU–)Ñnˆ6’’‚""]±%]6]"û¥Üï«ñò ŸãâþòË®„“ÕãÕãÃÒJڲͬ¬ÃÕþì쪟þ»íÑMÓU×Ó%Ýš °èyÄÄ·#íííUTh  %rÊxÀ‡ð\ÈÈ’ÆM´´œ&&’¹Ë{ÉÕÙ™¥’’bBÉBÚîJ8¹ïÏb;`B.̈́͡‚ z;¥ –¶½Ït™UäˆÈß×àÝ^¡Œ¡Î΃XÚ飾Ä?‚MžžMíß’’sÈs“;ååÈåÈA‡È‚TÈs;‡žÿžÆÆ©ÑÑšW›DŠ(¥àÙ ÌÌ­ˆqJ¯5Ü¥Ñ6'%%]’…bF±%´†……¥­6)㟾㫠ŸÕ‡™™ÙFU“„hªÕJÅJýÕ5ý«ñ² ìhžÿM©Ñ”Á´…­>cyyyÄ*QÌíÿ?ÿ]’ÛN»»õ¼ nß——MbAsã«§¯bz’’‚`a®«J8„¹ÙABùçæçãb"]U`™ï`¼™fäØUþþJ¯òÕ)R}9fX•/ê®Õãé8žpžMð ØÛ6È‚‚È?såÈs;U?™;;TTTð’MrrÝr©Êeô'1¼g:thMœ],¬£h–;Ü´%?ÈÑß"œ ,,†­Ý",¥˯þ{âþþhAðð‚“T™–ÉqÚýãéÃÙJãÚñì «ýAˆ­Y¥YÿQ±åÑdyyµKe›yWëú@pÿYn’Æpðíõí` t­rpÓ5¬®JÒ¶b¶A ´±œ,[«ÕÕâ8~U™UA´¸¤//XÙ;% `::¸:z½Ò{ñŸòÉ5É×,CmI…½Ú•XãþÕ¾âð‚‚‚žžåx;S‚‚ÈTsåT;; U™A?UUU;s;U‚íÓrÿ¿ÑY"eO,œ‘'6FÆÓ­ðq®5É™;’M1±ÑëÝû’# œ1­1í‚bˆ–;8®•Ÿ{ã“ ;ÖÈþ–þ§¬5Ò¬®ÒÕýÚý²G‚’YÈMMn‡*QÊMnÀ‹yKHÔ'Ý'W¢ûÝÆØÁÓ°ÆÓ\ÿ‚°Õ{®™Ù~hF" þãýª]bMF¥¼±†aLJJ558ÉBb]ØÒé„™U™~™UU8z4îþJøz5¸äM:’ rŽ5ÏÕÂUsÈÜÜž‚;s?–“SÜ‚‚s‚‚U;;;™UUU; s–T;sžÜ)'MF¶ûöÄ|OŽØ]ŽïÌYÙ–ª‚™`]¥´]"°—'Ì——¢üêüxÓ]4a¶à/®5ò“¹„«ÍÚ•ÅäÙ ™FËïïÙÙ:Õý¥U‡ÈUËJÏ…(Šd›++H·2E%exˆz)­ë:ûÑ@ÓÑûnÿˆ]”S»q§;Õ–™¯ýŸJâò’],´±6†Ø‘ù^ÒXXþJ™~b¼ß%à{Ö¹FhïÉ5东•æÉÒ²¾ýÏbÈ~Fžn±ÉÅh––’\ÈžÿÈU¹–U¹È‚;UAÈ™–U‡‡;;UUU™È;%È%& GhhUöêo& e…4ó½`ààªhJ8äÈ%]’ÆÓš—QxÑÝe@@ÛI­×"Ÿ¼ØÚGÎβ² ã¯ÃýB~’äb`ÏÙÏÏ%;¹ ´"þÉÂÒ±±¼úÁÝ…Á(eeš],¥¼]% xʈ)‚ˆ’M ˆx5ïò ˆˆÈ„¹Õò¯ÏÙ– ,f¼½Ým§ƒÂJþÖBÙ6`q¾Ò ÙÙ®~¥…ûÅÇ3„ï5þ„ƒtAâU:–]´ ðT@Tž;ÿ;‚‚;U?“8¹A;;]ˆÜ™; ¹;ȇ;™;È––U:;~1F]ßšiŽ 9XnNØ™‚™™–h–¶¥Nxáº1°››Àœ´¥:‡»Ê"ˆÆØ¶’×Ò =² ¶`¯qóÕBhUAF ÈA%&ÕÙ™ð‚ú)‚¸„qàƒo4~´šŠár±Žb`~‡ó U\ˆžM‚寻žN\’,ï¹;ähýUã„A8¸U" b6z~ÙfÝ5Ο{ɬÕ5Ù¼,¯§þÉÏÅÅfÙ:ý²ÎÍ/ÉÒ¶f~„Â]•5™¥¥’ «Âäs“;;‡ÈÈ;U¹ª  “s‡;È;UU™ ;Ü6ÈM„ª–Èrn+ÑÁF,x©QÔwôeöÝ©°°ß™½þ««ãíWÓÁ©'û­ÆØešÓʈA;)Yfú¥¥]@݈ˆ¥z¥äƒ•¯ýòÒªq¯ÏóÕ¹àtb%%`~A53Ò®9œiiY¥z½Ï½‡T‚ð©ÿÿMž’ä‚©Ó#Ñ¥ Ï¯™‡~ÏϹ™T™Aˆ%M±]½fÒma¤ì²éããÒɶ,:àÒÒÂÂÉÉÉÉ„ã•ÕÚ~qŒ£8ÃþÂ5ƒ4ïfÙ¬T–¾ìT;‡66‡U¹8“ UhÕ;\‚    U 8™ž]ðAþÕÕM©ÆÑÊ´…€ÎfGrŠQ*ô>039]Ñu² U"%)Æ@Sÿ\NWÁ+ÊшÜ]œˆ6‚\È’Ý]úß],’\¦’ÚýAS\™¥hˇAJ¥FgÏïÖûÅ£Ÿ{ƒfA´ùŽ,%]f¼ÅÉTååsÜÜí@ÿÿ&‡žx¢¢Æx ð¯J“™‡;¯{{ËtbFŽ]ïÃmÎîŸãéÄïBg¥Bլ쬮ÂÉÂÕã«~/_ýÅÕ¬~„Åàý²Ð«ÂÚÃJ¬Aª\s;U %;“8¹ˆžU–UA‡AA¥A;;A ™ªþËÕðÜÆÝö'´ìвó1*á*QQ*e†màÏãŸ8™È­p©ÿ\p·µcè·ëÛ¢ @© ž)"ÑÑÆI…)¯4à™Æ°S]ªÈãJ :GŸ?ò&±É¯Å5ÂΡ{~’†ú%U\\‚‡;‡åíÙIá])‡¹Ëñýþ{þ™A8 Ébà[½§£ýéÕÏf`ûfƒÃýqìÂÂÒïÒ•„•…Ð =¤ãÎÕþäïÒqP/çÚñæòžTA–‚´;J–UF;;sss;ss hÙ8ÉÖÂ5äÝNÝ+ ­~qβ € åQŠ*êêÛ¹JUð‡©MåÜžˆžxcè›eÀëÿpÈ žˆ©Ñ©‚M»ß5G×¥)ˆ]ÝS`™‡‡; ÙgÕï;:4Ÿòý4ÒÃÃΣqŸ0ض=a´,5Öû?å;‚TÜÈÜÑÆˆòb‡´vѶ;AJ¯ÉýªŸñâþþ8zÒ¸,¶m[aƒ!¡£®Ã5Žb{ƒÃÃq¬ãq§ftý[XúŒ^-ìÂîq¬ïØ•Ï5ýÚJÂq J8ìj‚Sí‚;B–;“UUJª¹¹h8––¹“–âì8Ö¬J@°Ó%¿'¸Â§«ÐÐ=ЖžáQ*‰E¥¹™Ù¬:Ñ©M± ™s‚©á*¨·cK2YF%Èðíÿ)¥»N[F¥¸¼)¼~™ò4B™¸¸:zÏ&Õ„z&þŸÕý«£ÚÂÃýmÃòz¥ PfÙÕ~É~Å8Us傞6MFhƥƷö>—WEÉâhJýŸÃJ„–; ¹ª&;Ïï B¶G€¡Lªh ¶5ÍPqéÒ㣠ÂBÈfXXk<Í«qfÚ{Ù½þ~ÂÃÙ䄾–Ë=«;\ˆ’ˆˆ¸™ AU ¹&¹JãJ®8Jþ„ãJý;zF¯™WWI‘´m~™Âþãý§ì²ì{þS©Àë,¥…~Ø~XØû6¢w2úמåí”ccèµ(ŽhðAÜMïÙØØûÓe°­´Y´]´ɶU–òïÒÒX5X:mÒ²ÂéڧßÉ4•f¥fÎPPäÚæq«Õþ®8U;‚:‡ÿñUxÌŠôÝÁøcÛm{J8Å™È%UUFzض7¶îÎÐ{ZhF"ÑÅ®ãA’~zZÙ™g¼oæ’f5ɃÚ&b•ÒÕýÉzì²é{8ð“~Aðs : ‡ ¹hJhÕì{ŸËË„JãÕ«ýþ„–8 ¯ÎÁ¢¿­Žò„{¬JŸ²²òâ z¥…›I Æx°S@SÊ›lK›”‡‚å;í°Qµ|F4mOûU–UÕ5ff~aˆ¸xÓ†¥"ˆÑ"&ÚRAzþÉÃÃÒ)X¬f¤ÚÚÉÉÕň¸f~5ÉïÍ««¬~ðUýŸUM;M:ÏØ¶à Q*|"d¨”™]‚M’ˆ\ÝßM’Ñn¥tf¥7à!æ=ñFŽÀ·‹>WN­ºÊWWIhB:Ž[²zØa¶É£ÒŽà®¯ˆ™Ã Í_ þ;“¹;ȇzF“„h„U5{¾ñéJJ5„ㄖA`ìÕ§¢Ý­~L㬟® ² « G1…'±p@—cQÌ©‚ *÷訂“hV¹ M›Š2+i>Wÿ`´¶ýqÃìÒãà¥xÑ”¢Ñ1]Y…{ ˃ɯ5ƒqÚ4qéé£ÎÃfbN¯½~t„ãý®ýh’’È‚™’ F©p;bû›ºœ'I—dëMMM’n­ÆÿM66%ÙY,mf_Íì™´êDÄèüšöÊ­pnÏ«ÒÉ…Iƒaf4•Òa’:4Õ¼…Ýqβ<¡â8ð‡`¹–„hªÂ®ã{Ë„{ªª8Ù¹Ëó;` fhÓÀ'.®Í{£_Ðþ„ééJJ8û”@ºÌ#”—#˜‚”Dè›K¨”?;ss8–˜µµÄK|°žÆÛÃãËÖ„ýé¯ÅŸÏ°Ir1Á]Rà,th`™bÚ§R•㫲ì£Òý½~É•ÒřãŸì§éÚsÜܩᗩÿ:Ȉ™B%œI "š­'6MY1nˆ­­+­úûØ’Öa¥ŽqçDz¯]¢èÄĵ·µ·°Ê›° 4ÕÙÕ½Æûg7b5Ò§àó‘"h]`™Íé¡=ì J„h8;ð’ȇ;8JÒ®Â5h¯8ÕU;Jƒ{ã¯MÈ\ÈƸm/²Ç¡ ²Ã“éñË;ÖÖˆ~ü#SžžT‚Sír©Qc¨·á‚;;sU–ÜcµKÞèQ¢¥ÅÕÒþãÉñ{ã¥Æ¿Á¥nx4´àf½Ãó¶q•ñÎÍLÉ~aó7mP•«{«{ÎÕ5U‚ÿr©rÓxí¶žxpÿsϱœ,Ê¿]"MMnM­ÝÑ''©']")û 5g¸7!î==ì°cµÄÄ‹'†°#Ohïþ–A”~¸ú§ó«ý¥’ØØÕØÃqPîв²¬88½‚ˆ’ÈbUÙtzzf½¶ËïÙJ–Ëò¾Zó{t–hUú"Ý9^ÐÇ_îÚÚ„ã§Ú×ä§™¹h;ÜðžpSM‚ ¢QºØB™žŠ÷cDÞ·÷*ºØ:5þâz4:Ò P¯½Æ]¥tä×6´U¶•Ã5!ÒƒƒÚ¬Ú®n"­xx—¼ìŸñÕ„„„™;—QpMÝÆx]©Üÿ——)g¶4`ÑnYM%,U’ß­6ؼŽtãÕfnØ,tÂòÎP•×lÞÄy|yDHMŽ rhF„hÕþö>~"5ÒãÚB\…™Åû5Ú/Ρæî ªh™‡T%bb,¼fX5–J5Ù __-h‚M©ˆ6¹<±9‰i!$€Ð_îì¡ýâ«ý8ã ½™žSxÌõˆÿÿ%"”K+F Ÿýþ„\ÌQcy÷÷‹›Ì)ȱ¶BŸÐÖ«ó½¼ :¯•t;))a¤ÍRqäð¯î²Ør—ô·Ø„ýìòÕòÂ8ÿí”r­Æ 6ÛS@á@{ÂÙÊû~’6&±×Ýn­, :ÙïƒÂ•z]úŽÚÚ ¡ì¸è÷cl÷H>wѢюUËâò4OÇffA®Õ{…AÕþ~~qñ ì{V¹¹BBBFœ1I…g‚P_ k ;ß’%à¶R_^|>4kPPÐξÐÇ{ ¼bÚaS@×TS”@õ˜í&¶]¨'hÙþJu;Ì·ÞyÞê蔈]  ^9m²¶½aŽ`ƒ•™~:F ]5qÐÍÍ}ÅR•§Úäè'œ,`ÜðþþTˆÆ”©­­M˸sž›¸¥È;‚)™œ%"`È]‡b"]¯¹„TðÿÑÑ¥hz¯Òqζ+ µ÷KlÞd݈ׯz~BÉk<„J5¬Úf½P§¬¥ýñãéÃÂì ¾ã™A †€ÇkàO gƒño$G=$ Ë–Ït²¡¤=k0|2-Ðβæîì{—ÝëW”·Q#í˜SžTsðF&ÿ¢czq8þ¹ÕºyÞÞlÞÞ‹IfÉÉÉqït¶mf0qÂÎ{…"¶±Ø"¤ÇPñŸãŸ ¾à—›6ޱ'†G6)\‡–ÿˆžßˆAU‡A©¶Âþý‡QDê@#ÿ]Ûn%6Y@n`F)\‡™„ÉUÜ“‚)­œ:™A¬Ã’Æ…ö—‰‹yèÄêöÝ’f`fÙ74Œ_€h8ÖÖŸ¤AÖ§§ûƒÍÚ¬é§æ²²Ð=ìïA™… ÇÇÇ- 3îRP<_--ÇÇ_Ð_ã¤çO PçÐÚ² ÐÎçÍýWÌxž\S#@¦\\‚U¹‚ð 71QQ—°UòþÕË;ZËTücycd>m5ÅÉÉΣÒzb4tããÃ~­‘™ggÂÒÂï•ì¡£5ŽØÁ99Žè#ž6U TAsA¹`Jª“¹í1Hyèè>1À°n"M‡&‡‚hâÕJãªÕ„ï%6ÈqãÝú'šeÄKèÓÿ½ÙBÙÏÅh,47Ç£Õ®ÉÒP£5Îî´ŽRPÚÍP-¾Ÿ=Ÿ¾Ÿò7óÐk<æP³•Î}}-Ço <<¡_² P΀a.^¡<æÍÎî_ÍìâÜp‚Ts‚‚??s;sÈþð&tn6ˆ‡þò{Ëþjþ“ðp¢º>·cêüØfÉð:¸Ý"…3±¼×ÀWÝúØ`ˆ¼a4mäƒìq5ÅÏÂÕà}Žáõ…9QèQ"¥Ù ÿ¹8¹8“–„ÃÃÚ–ôµ+±¶,%z±‚bóãýò“8ŸìŸâ‡ä`z`~ïf¶ŽzÝöe‰µ›Ø'±Ù5~¥~;±,¶$ þXÂ~qЬÃLÏÝûÚ=«Ã{§ÚЫ²Ð^_=P$Ç^_<L¤¶Ç!€ÇÇç^!P ñ²ÎäÛ…,nÉó¡îÎÃL§8ýñ¹å“s“¹ZJ¹AJJ5ý§&&’ÂJ¬¬„™“sÜ݉|wIE……¸]´fÉ3¥´4¶))™,6Óf¡}[¬Ïf5ÒƒFŽId¢¼O›4zÿ‚;ÙJh„þþª®ýA™  "—êÄ÷|(Á¼"àïFý{&Õï8–„{ŸÉã{‡%™&–ÏÏ]¥ óqG1+Ýød±M±]Ï;;;%à3€²éɧý•¡G¬§)P²Ð¡Ç¡¡ýÃ= ¸Í €mRo_ζ)næ!9æ<ÐçÎ3P¶îÚïÚC/¥¥Gî§ÍÍÂÉÉJË“ss???–þ8“––È8TÕóAõ@ð™U™T8J8¹““¹:]ÊÁœCÝAƒ²¡Úa¥z kfÝû)°B`ݨQÝ~ft• oóó:z àWž\Uï8¸\\\\’ˆ#@©pzMÓyd‹º¥%AÈÿMÏ È ã„„„8U{Ë¥‚b„ï¶:\„FÙO’‘Øßä¹FIüÆ¥¸B¬™;]úÁmÒÖÙ¤ƒƒÚ§¬3¥4ñÐæ_¡_Çîé¬4ko!LR}€<-GŒY¼mkóóƒÎP§q_=kV½~ˆ;Õ{éÚ£®ÃÚÃJâJ‚?;¹ËÕh8hJ ðØû84ò]@@°@\’™ªâÕ8„{ãÍófŽ ÇPG,ƒ{mÉ£ñÆg%ר'ÁÀÀÝ’Ø‘…C4à4ÿ‘aÛ°Ø"‚Ÿ£ý Ü\»íÿ#Ìšz ’6'œÁÝt s#]¯ÕÕÏJýþT„Jð’„¥’Aòàðó¾hAà!Õχ‚Ê¢ÌÑ]Ï5È;FŽ 1fmÒÉC4à¤G΃Ã~fŸP¡²/P$P~ÖÎ3kk!L}ækP $€¸öoÒýÒ¶§¾¾ñ<-+ˆ:¥ÜSÿ1†ÀQ);ñâËÙ`×»r'Ì'rI´))¯!¶BÕòhˆíÑ:b™{{{ñ{ÕJãUð™U™T  hýý8;ユÏU\˜M1IY™:‡ûÜ?r'úÁ!Îtfޱf ¯ÅÍPÍÎÚŸLq{5{Ð=9€Pæ--_æ€Yणګ«{Ÿ€$>HºeÈØÈ¢ °,±0ºÁÕÚÒÉJð ‘¿ø‰dÀû~GÍ{««¹zˆ°6GóÒ¹AAâŸJ8„5ƒ5ún1m]Ó±F‘04¶ÏAˆ `´IÆNS’‚ž %¥àgz´òtfttqqß§Ãî/ÚËþ{&€ !çæ-$Œk^•NÁ0oŒî²jÉ==eùùù!^9½Å½X„UZ PéýÂýÒ5ññÖÙA;ðÜÏER5£ýÏ]MÉ3¤!ÉÉÚ[J™ï•3ì•¥66­à±Ýш©ÌíÖ½;¶™ÿ)ß­ð\Ý×¼ ¼‚í;) ßn’1Ø´¥’¸£½ÕÚì[qÃÙóa+øÁÁÝû™É’s„8tzNöfƒÏ;™ïý„‚‡¹h– ]6f"­Y°·¢©ÑiQešY©™òFÆ1eá”Nƈ‡‚0±ó5¯ýƒÕý{G½{ýÚ{[Ãé& ƒ~k3=ŽÇæ-dz$- ´ääÀ¢a^æ_F5<_ ô'>ÀØ0~É¡ ¾G_¡ ƒÅÙ¬ýñ£ÒÕïñâÖA8ÁÎPq㯂M½5…¥5Ö¯«ÕãÕàCÒƒ´Œ9Æ#ÁMÌÌû5Â’‡Ñ¢ÿf,]a74à’í”ÌÿrÁ¼•!~û´gPñÍΫLŸq«qm!9!£Ïò£–‡ðM\àà% ª¹AAð߇T’ðA?¹UbhÿÆ´†¿'­ÔµÔ(Ì#Q xxe(º+Eü̈;5&¥ó:¶§àÕƒƒ¶qéãã„ÕÈUŽù9o>ô¿wô©°)°·èÔµy‹ÀÔ—(]"za5 G:ÉþÂJÒ¥t)ƒ¶===‡S–M­r¥3¡3Çæ--<4 €ìP!ækо h??QdÝÝ¿¼Ž¥Ïý\¢×!}óÒÕÖAË{58®¦­—ú,ÚÚÚf±ÍÍÚã~GŸïÖÖþŸÉ~z`B)ÓxhU‡sÜ #ÝpFGj´:1¥¿ÆÓN¥È]¢x¼`´°Q1ƒ¬Â笲{ãÐÒÒ£nð½Å{â?ÿžíÑ­ÑÝöµ‹üWü #)&hÕË6ííÈ ’#‡ ;ú>Ô(("ºdô×èceèèeúúö"%aX¼óRzzfâÂãÂý’m´±“–‚žÿýa^ ç$<3P<< ƒ.ƒ¼ùæ€ì _Ç?VtžëÛ¢›g~8ðˆ;𠝕5¥Uã„“Ë&õpØ'FŽùmЀý£Î̓ɀ€ þ«Úýmt:¸½¥ÿ ¹‚ÜM%r¶ ¯ãå6˜ppˆ»­’ 6rÿ‡O^Pάçý~¸ÉÃã£:ÑNNN‚žÿ”*Š*èd‹KKèÞK·°”¢ A½;SÌQᢢëNÛ#r;U½úeÔ(>ôúv›š¿evI'ø—­,¥~~"à´tAéþ„ÕB),ä`a^óŸ¹;F <3CLoXm R!<O'…9o¼7æ <¡¡ uZV’©Q‹(QêÊÖò“TðÝ73tÏJ®¯þþÅÕâÙ@Ø0^Î ÐÒ{²PP4œòãq§XÉÂa¥:B¶àÙ½å‚;;Üÿ"š%Ù‡ïU6‚ÆÓÿN× `z4`žb')t££¬5~Û”Ó´`?hŸj]Ñ­ÓW—º|÷|›ºddèKÄÞ‹vv>>°‘'”·eÆ×Ø\ˆS‚NÿØÓʺ(|šM¥¥ÁûÏ;ÿ"Ñ'­Ó”’Ùɯ)zh~É~mó7¥gòã½f+4ÍÇñ£•ŒPGæ/.m}¤~¾z9ææà4ó€=¶PÐÎ<¡¡=‚”ÓM#— †fòhh¸Æ˜&ŽÖ~Žb`ÂÕƒBAB5Y]¤aRççÚm3²¤§ï!ÒãÕÏ4ÎÕ`4ƒÐC™;ˆnA‚]6Æ"±YÝÛž‚O±Mr’AïB ··‰+""ÆW”+Ý­œ¸ð™]ÿ°áQ·÷ÞÞH›Á‘1öHøiÝÝ+1še›eprMœ‡ð»‚ÜpÛ­¿üew(1±´~]f&bÆØ­nÑ''’޶B¶¶™’à4aƒÉÒ¶äƒý{tƒ3__Ρm礼9ÐÚ„ã_²^G €_4-!XŒÇ-æ< tÀÌSM ¨¥Ž~Ï™;ª­eŽ}¶NšÓAà•ÃÕfR½4{Ÿñ£f~z¤§Ú£•LÍóƒf²=G`bžíÌ6nÑÿˆÊW’’x”+œ:UzA ™ÊÞÞèêdºÀÊ›üÁNÁx°—›á‹êê·>‘+NM­©´r+eQ”,rQ*(¿ˆ©‚Sí‚M%©šÝ‹¿´ œÁöõÁÑn‘Y1]¥b5Ù~:: h¶`Òã&¶4:tÃq£P²Po=oÕ4¶§ooaØfì²Ú^oÇ€Œ=Q´I÷êyK·èêHi2­×ûSÆ……Ñr nÑW—Æ%Ì*DÌM6‚žÜ’©@M%í…·c>ÝÑ]%]ÝK¨°ÑÝ­]:ޱ±:Ùb~z Btz`.ÖÒà•½{㧬 § ç쟕f-LP„•4îŒ_$Œ€Ç=R^Ro$¡kÇà Ïψ;’°èN«hþããh¥ëöó4ÒÙó¶Gó•£Õβ§•ÕÕýq¤}Ò£§Ò§ÒÂéJÒÕɱr¢\%œ]Ñ”Æûý¼e>‡@ÿ©["¥5t`r—ĵ÷ÄÞÄÄê±óØKc‹ê·ô+ie ´"ð‚‚#áÑ¥]Óˆû0fgMž’ÿS—rȇ‡Ü’ßßM˜ ÆÑp#ݨ‹Ky¨Æ;`ÞÄKHëÁng±Ñnzfz…¼´ UBmÏaƒaàzƒßŸ«é¬Ã§Îo_ ÐòtG£amb™&â9€ææ-!€,Ž5…ƒ3R€îÀ Ñp픈¯ât)ÿ©ÿ)`Àë´r©ÿ‘Ñ%¸xºü+±œšÈÙ%O,:•JÒ]´4 ¤Î¡}.0k-}"')0f±´¼CGPoI}£q§§ÍÉà=3¬É{ý££û¬ªþJÖäg¥¾ÂTfBÂXÉÉÚÂ5¯ï5[[J &`%FàBƒ•ñã{££¡²!Nèürž;hïÏgOfжœ $Í~¥+Y"±~]üf S©ˆ]ß"n1Ìe|yèe1¥“ªÜʇ UÙ8?žÿMQ÷›êšššÌµüWM1­¿'"Iú¿>ccÛûAU¥)ÈÏÈßnˆˆMUÝd­MM©šn¥­) %¿1nÿ%𢔇’1ôe])4&¯ÂÒÙɤÇã´ÁÀÝ I'¿1¥¥~f0´fgCom¸îƒÂ§ÃûÌ)ó zÉɯãÖAïÒ§Õ¬z\fgBñGFb«ÕJþ/m A8Ϭ[;:U% ¶òqÒ«3Pî¡Ïɧ•t´"œÑ ÜBhmRb]¥‘àñˆ\û¥š zÏð UÅ¥Ø+›èb’ߎ¥:ˆ]™`‡žÁ—º+ÌrQècd‚¥¥Ø×ßÛÿnY‘ÁÓäÖ–™8äM)ðAð; `¥…·Ê ÆÊšvY'p"°ÌA%'°7 ¾{ó4t½¶Ÿ¶´ØÛºº°šr"¥¥´¥"]]0!Rž«Î¶ƒzUë°¸à¸ãFtm:½AÂÖt:´~f§{ƒƒÒƒ§ŸÒ~I¶¶zhþ½ä :ÏFÙóGRPÍÎÚ3Íì¶ ­íÑÿYÑ’b™•&ƒY¥¶g¥A½0b,àgópß ¯F;ß´4GmÛ°úºM ;žp…''&žUUåÿ‡UÑM]M'››µ*Ó)n)­Êë@×ÈT¹T8––™™ÈˆMž’‡‡AA‚ž¼°°­¥nNÁ'1ÿ"‚%1ÅïÙ0š›M­U¬¶4B)a•,%ðÿž]YÓÝëÊ]û×ß­©ÿYYÆ×%~ݶbbÏ’™»Ý°\aBŽ,´zBÏ~„Ö’ÜÖ&ðÑû™¶òÙÙ•þ™ØÝCR[«¬ãþÒãÒ5ÙÕŸ£t§ýÒɇ];h&™Mí]5:Öã§ÉóGó`ã{ää’):ÒftÏû´::t¶´œ5Bƒb±…ÀØMÈžá÷À' òb™ä¶‡z ¥™‚’SMMÿváQ°Ø‡ÿß‚Mß’)È’88ª8;ÖTÈ‚‚’ðz&Öb™¿›‡A¿º1ÿMÈrT¯ó¶'vë­Ïh…¼,±¥]Žh`Mä ¯¥Oœäf:b±F)]]Y­"…t’䃽t¥z:F)©”p%,&Žó¯8È`Bý)ÿpÝ™É~8qà]+^CÎÕÚ¶XÒqÃÉ„Âqû’½5~ï’‡ U‚’b´…II™ ÏAóBz~ˆz]™mf`zfÓ±¸B•"Ÿ¶½àƒÒÚ¼h%pßû"'1%Žß’Ü ˆ’AhFÜ划ðpx—ÀÆ)û‚‚‚‚’äûÜÿ»„ýã„ÈÈ™„™~Tˆ‚ AA  ,"Qèè)U“º´†©A,œ°Ü\hÙ•z¿(Ù;9'œ4¶b:7±àB™¶†]5f))¼;ßM¥]ˆYzÿ]U´´F¶&¥:M"7´…×Û럣™;ÙÙ5])zJ5ÉýGúÇ Ð=oRG•ƒ{4ÍûB5fÒžrQ››dÝ¿ú~ذ”xÑ´ÙÉËÉfÙ~ït¯¯¯ˆÑ´¶Rƒ oÎàz~Î^•A‚; F1œMí©’MßÿíU¹–?¹T‚s;;MßíA~åÈ™U;AM­Æ™þ„ÉA:ㄪUT8Å`‡Ab †|d`hŽå6¥¼­ºp’]¯8h™äfØ´ÌU) 7œ%&gó, ؼ:J4à±btðˆˆUÿžb~¸É:ˆÿÿ¥±4B Ƞ𚎎,b;™ƒ§8T~¥3 àfýÖÕ~ÁXÇ< ækkkPoÚ£!X¯ÍtçÇGUžÓ*èµ|*›¢ÊM‘pÁn¾=¾•GŸz&ýfð±[ØÝ¸î!1n´b¶]zÚ[×­ß]z4n"Êe—p©’M]ž‡;– ‡ÿxÜÈU’¸ðÜÿÈ–:‡‡™"öÛ¸Â5Õm;™ïþAAã¹ãh\‚ ± |*º¶òñUb`"±úföá6%Ù§ Å85Ž]&Fš2fb…ve>°)ht&´¼~ä’Ø‘ÈÆíÿ¥ :)pë#% ¶4hvè Ž½¶„{¬Ò•±!€PóL§ïfóaúo7¥UŽk-$ÇРΤ!mq4ŒÎ–¥üè|*||Ô‰ÀYœY¥´5½,¥½5§¯4Bú"N]Ø¢dÑeÁÁë°Øüüüë+­öHÀØe­©6ÿMMÓßߥA UψÑȸˆMFh ÏT—˜  ãþJÅ8J;Ah“¹A…%­½.÷ø…ûþ†6b‡’x­)ähó¸½É[Ƀf49 ôÄÄ(°ûi…¥™¶a´6Mÿ Ý¿"¿M‡M’‚; ]årr (Àú"F?s#'´RhAJJŸ{þ®¼àG!4RóG7ùgްwú7!^€-ÍÚGýŸ«¥# —e #ÊÁrp16åÈ­…!3ýâÎ5 Õ[Å5•ó§°]ßÿ”Mrºê(ôÛx¢d¨÷*de+›—MrMn’©­MtB6¥g:%‡ˆ™’ÓBAÏg©v± „òþþh;¹ïsðA‡Ï¹àB9IÈ,¿‘¼]ˆ™¥]œY¥bÏNÆ]N5þqì/[úÔwÄµè ±, 6¸~¥ˆBð’MÁÌ"ÿ‡B xÿ] åšœšÊ1dtFXÉU–T)eeeši#r'+¿œ—|||‰2¿Ý]b`:BY‚Ñ¿©ÓÓ"]¥MYåUA`¡•ÍýÅÂmh:•3Gˆ,´%2ô‹c Æx·è·|µµŠ1ˆM¥;h MFB¥™ 6¢6]]œM%z%ÉF–¯¬T×A%A;¥ bàˆŽ0>ê1g1p¢r FFÝn]AÏ~:bz~û¸óašvÔKie¼!óF¥Ž7Žg~`]bUÈ@´,'r'nM”Ó)°eÊ Q÷‹Ôi ]›Ó”mÐàžÀÞè*èŠ*ŠŠµµè(*Šèèµ|i¿¿›xá>—ÊišÌÿžx…~ ˆð™Vÿ×…•mÏãîà~ÎÚ¥àaNˆg´,Ì1¼ÝöÑMIeº(|èÄ|ê˜])ð)hB,È­œ·árÝ'´)´±­ÓŽ:’­nÏ þ`U¯¹’È)B ` ’,{a¥œ,*+Ø]±´¼0n¿'10§qX5£ÎLÒG•¥m9ŽF^>i gïÕY¥]fààg:F¥ðÿ ,%1rœ›°ë·”á›ÌšrDÞ‹CöNüIÓpÊ”#›è›üQ¿è|èÄi*ŠKêèK"úô>¢›ršrßßÈYg¶ÙU™V FUnWÝ´óqt/ÐRq35»:àóØût(eivi”º¢šôèKô**1ešb¥t%žW]°pØ+©'Æ1¥¸©…œ66FÏz{,ÿˆ‚]Ñ;hF`@ó ¤œ†¼*e,ö´´b´"† ›eˆ`ÎÃî¶.ßg¥Æ¥,C9ø|wöN™z’×°%g´’b¹™;‚rÓfp©x'­ú¢D›pô·K.øä;©——(öš¿ÀØY"Në°· Šêc÷d¿"êĵ2v|*ô'16Mžˆ…,mFð ™;Ï)ÓÝß™½Œf/ÛÛÕfAàƒó™Žò¶šÄK·ëº(+Áº›°>e1†úxœ‡ ¿úú0"­ØÆ,ƒÚý§f"fœ"È;bA‡6%S@¥%ˆMU±U ãPÎm†r©g,m¸+†’ú¼± QºëÒP€²•ÙzgÀüÊ] "9a+‰µ—Áð¸]ÁÌôš1Ø1] MM\íFÿW¢›ÝrÆÑIÓrMðØWcµKw0Ýš”ˆ”·dÁeÊ@Á»Ê”Wá·÷H·||+öœ‡š›DÄ*deÀêè*> rrM’N©p†±þ“Zh†m^±ˆb]ƒ~ÊÁ` ÉžBÒÉ‘|ø|ºK|Ô>v¥'%'++ü°n ;ÙÙïïŽf±¼g±¼§ÎÚÚfû¸F%]ÙB] ©‡"z±)%± È•ÍŸ•9•óÙq'…O±"ÁêÁfödÁm™zfRäÀ—Nz&Žù7>‹Ê)¼]"1Iv%±œ –;ÌÌ~û±,"n"Æí’Ñ­  ;Ï¢Kyµ>1,‡pÿèÞèÔE'šÛÁëöxWüQc(è‹‹i(¿“ ß·Kè÷·>>dcwe—íMrpe¿1±´à5â‡~fG²É4RÉ´Ràà JbÛ~Ã{+ÄÔe›·HÔ|·¢Èš´š­"Ó~¤ïÏÏýïû¥¶4îó~…xÉטּ¯]"‡U™U%Y],±  ¥h]`«²ƒC¸4 hB•¬Ž,v‘…´Oe9‘IÁüÅ•Bz~Ž bwKš1´]g†¿'"6 %âÕ xõ`×Ápÿhȇ#í¿ÿ‚–j¹VdêÄ>v´¨cèH‹ºÝá—šÝÊše ÄÄèÄèÔÊZ&Æ·>À·èÞ···ü›QáÆˆ)©'%±Fh U  g:Lðý¤×à¤}ЕÐÍ㈈àéè|Ältris-1.0.19/src/gfx/quest.bmp0000664000175000017500000001001612140770047013076 00000000000000BM2(*EÜ   ÿÿ:&â1ª1!¡*’Æ¢þ$„²‚Ö"b jZÖbNª*%PM:ÚêêêG:¨N:Ê!@fVÖbVn<.›N:æþÖþ®’þ:&Ï6*‚>&æN>ÀbNæ‘nþA6’LBšøÒþ:6^26ÂRRRVJ¦S>îfB†±Œþ^NÎ^Jî:*§B6šjZæ!8F.ê""".L=¹jVânb¾+&a*—bþF.îTJ–Þºþ?/·~jêRF¦1(kŠvòC; ZFî<.§JBR "J>štVþ¬€þ7)”"_NÛ&LB–6zjÒ‹fþcVÅ>.²bNfA-À†V¼G*þþþþVJªG>”9-‡V:ýÒ’î:.“J:²:"êh\´D0ÆJ2ò6.j&XH¿ŠRþ*Ž¢zêê¦îJ6jfRòH4ÚF6†ZBöyZþ D5¦C6 J>¦†Jþy^þsFþWGÌUF·`O¼.*&D>&ònjnrV†^Jä6)œN>Þl\Î’vþE5ÀE:’(xA2² rþÌœþZFò‰jþF–nÆE;‹Àœþ¡yþbJöþîþF:ž6.ne=þ*"ZJ>¢Ü°þ‡_þVJ¸>6n@2¬L>«aU²1%†"²jþÁ”þVJ¢iBþ%"B¥†þJ2ûRF¬H6ÈRB¿D6¸Z"þÚ¨þ^.þ†ZþNB F:šQBºXCê=3€O6éX>þò®þH:®nJþΞîV2þ­xþiNþ]Fü¾Žþ=2dTÍL6îH4â‚Vþô¾þ>6tE6¬Fþ‚`þ;2xTF²C-ÜTBÌA2ŸA68(°1+a—rþ>2”iFþ[NµWGÒSBÆ\Bþ-(XI:¢L@²XDÚD0ÍQF¡E%þþÞþOB­B6–Þ–þ*&*VBÒVFÆŽvþF:–qRþJ>žF6²M.þybýT6þ F&&L<Æ8,ŽdJý>6z55555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555 55555555555555555555555555555555 UUU 55555555555555555555555555555 USQU 55555555555555555555555555v––_ÓS 555555555555555555555555vEØØ–_R$ñi 555555555555555555555555vER–ÉØ#ñ¹ñëÜi 55555555555555555555555 â_$ñÉÉë¹KKóë¹ùU5555555555555555555555 ÓØ_çñ#ë¹ãŸó11¼U5555555555555555555555 ØØ¹¸›ÜÜóŸŸã{ 555555555555555555555 ÉÜëóB1›Ô¢€¢¢U 5555555555555555555555UÜܹ›{ŸNäWŠ€ÊU 5555555555555555555555 ÏÜN›¥¢ˆN¤0º & 555555555555555555555 1¥zy€¢Ð¤0X07v 55555555555555555555555 U°Ô¥€W kd³²Ù 555555555555555555555555 v ¥dô ààÖÖŒ'555555555555555555555555 x0Êßî8Ú 555555555555555555555555555 U”ŽŒ.¤þú55555555555555555555555555555 555555555555555555555555555555555555555555555555555555555 5555555555555555555555555 U 5555555555555555555555 Uù› ÌwGkCƒ 555555555555555555555 âÊ’áý¾¾-÷"w"½ãjU 5555555555555555555 z++öòÆL¾LLÛÛ۾ݮ ; 5555555555555555555 ü4™á}VLÒ¬‘Í-ÄÝ<Ç¡ 5555555555555555555ƒ‡ÕÕe¾ò}MöÛ·"µMl‘ÇÇ 5555555555555555555 fADö÷\õ}} M Â†pí )5555555555555555555 rqð®òÃÝMÎÇ•U 555555555555555555555 P+he¯}—?-~ÄÎúU 55555555555555555555555U(4Æ“‹w÷Vš][ 555555555555555555555555Uk/tá¾÷õѬǚ[U 55555555555555555555555 CÕh¯÷aáÁl<Äb 55555555555555555555555 åýÅòLw}‘%]… 5555555555555555555555 :tÅwVÛMMM¿oú 55555555555555555555UÚLLLòò~‹µ<ì5 5555555555555555555 Uœ¾aÃLÍé]é©, 5555555555555555 J»òáÑ¡M´|lYU 55555555555555555 U#õèÁª—ªÍ~ÄVnsQU 555555555555555 UQê“%¡Ä“a"M‹L ùU 555555555555555 UI8"õÓ÷<-“öaý¾rùU 5555555555555555 UR\LõÁöáÅ"÷¾a=§ 555555555555555555 ;=ý\aýý}žahÕZFU 55555555555555 Oàèõ¾}ƾ}ËrræXF 55555555555  UÙ„¾whýt+Õræ±Z0x 555555555 UU  a™Ë/r‡ææggg@C 55555555 Uâ£>F  O»»r‰åZ±@Xx 5555555 žŠTgâ 5 Ó‡æîæg@³ÐC 55555 mºWÊ Ö@x 5 U2åPÖÖÙôô¤¤¼U555555‚Nˆ{Ôô7ï¼ 5 CßÖû .7¤ÐÐzzU55555 Ó°¦¥ˆ07Ð.F 5 FXÙXô7kÐÐy× 55555 þ¢¦êzˆˆäHXWâ 5 U²ïôÐä¤À×› 55555 Ï^°{×Јº0xUUR7H¤¥¥zcÜ` 55555 ­*ó×ãã{zäÐHC  _ºÀ×ê×{ccCU55555 U_#ë¹ã1N×ÔzN6 Ó¥¥×ã››¸›ëQ 555555 jÉ›¹›cNŸ{cN×ëFUUUë{°z›¹›1óóÓU55555555 U_K¹ÉÜB›cë1z¼xâ¸×Ÿ¹¹1¹ñ¹$v555555555 SÉ`ë*1ÜüÜë×zÓs›ãñ¸ëÜÜBñs3 5555555555 xÓØKñÉÉcc븸¹ñü¸ç¸#_Óv5555555555555 UQÏ$__#K#§§ó*ó#¹ó¸ñEƒ 555555555555555 UUœE fçŽ$9f«E:ƒv 5555555555555555555 UUÈ6J6ÈU 5555555555555555555555 55555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555ltris-1.0.19/src/gfx/logo.bmp0000664000175000017500000025423612140770047012713 00000000000000BMžX6(ghX  """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!""""""""""""""""""""""""""""""""""""""""""""""""!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"""""""""""""""""""""""""""""""""""""""""""""""""""!!!!!!  !!!!!!!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!  !!!"""""""""""""""""""""""""""""""""""""""""""""""""""!!!  !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!  !!!""""""""""""""""""""""""""""""""""""!!!  !!!""""""""""""""""""""""""""""""""""""!!! !!!!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! !!!""""""""""""""""""""""""""""""""""""""""""!!!  !!!"""""""""""""""""""""""""""""""""""""""""""""""""""  !!!"""""""""""""""""""""""""""!!!  !!!""""""""""""""""""""""""!!!!!!   !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!  """""""""""""""""""""""""""""""""""""""!!! !!!""""""""""""""""""""""""""""""""""""""""""""""""  !!!""""""""""""""""""""""""!!! !!!""""""""""""""""""!!!!!!   !!!"""""""""""""""""""""""""""""""""""""""""""""""""""!!!  !!!"""""""""""""""""""""""""""""""""!!!   """""""""""""""""""""""""""""""""""""""""""""    """""""""""""""""""""!!!   """""""""""""""!!!  !!!""""""""""""""""""""""""""""""""""""""""""""""""   !!!"""""""""""""""""""""""""""""""""    """"""""""""""""""""""""""""""""""""""""""   """""""""""""""""""""    """"""""""""    "D;6\JDw@9qD=uE>u=7m?9oA:p>8b95X-)G+ !!!""""""""""""""""""""""""""""""""""""""""""!!!(&<3/O2.N1-N3/P62S73T62S73T2/O1,N40R95W95W61T2.Q73V83W72V3.R1-Q3.R3.T3.T40U3.T0+Q1,R4.V72Y:4\:5\2,T1,T4.W60Y1,U+%O)$N-'R0+V1,W2,W4.Z82^;5b:4b71_83_71`71_72a82a60`1+\-'W0)[2,^4.`4-`2,`4.a!8 !!!""""""""""""""""""""""""""""""!!!1,W8/q3+m.&h( c$_ RZ) g8/vC:ƒ@7€;2|>42(t>5@6„;2€=4‚<2‚7-~9/5+~9/‚:0„9/„9.„;0‡;0‡:/ˆ>3A6C8”A5‘;08-‹@4’J>œ";  """""""""""""""""""""""""""""""""""""""!!!'#DB5˜:/‘8-9.Ž;/=1‘A5”C7–C8•F;—D9”C8’?4Ž=3Œ9/ˆ9/†;0‡A7C8Ž?4‰:0ƒ5,~5+}4*{2(y2)w0'u1't3*v7-y<3~/  """"""""""""""""""!!!/*T92o5.k6.k4,h3,g4-g3,f1)c,%^(!Y*#[-&]/(_0)_0)^1+_71e>7k3,`5/b71b4.`2,]2-]4._60`2-[71`   """""""""  #3.VOH~OHƒF>yIA|3,fIB{JC|B;sF?wD=t=6m?9o;4jE>tLEzLEzKDyLFzE?m4/R- !!!"""""""""""""""""""""""""""""""""""""""50QJCtHBrB;lC=nICtKDvG@rMFyE?q?9lA:mG@tKDxICwGAuD=rE>tD=sCxKC~ME€MENG‚H@|HA}NF„KDA9w=5tA9xD<|F>E=}B9{C;}JB…JB…F=KB‡JA†H@…JAˆMD‹NEŒLC‹JA‰C:ƒA8‚E;‡H>ŠE;ˆA7„5.c !!!"""""""""""""""""""""""""""""" >6wE9›F9œJ=¢I=¢E9ŸH;£E7¡D6¡I<§NA­H;©F8¨M@°I:¬M?²L=²J;²M>¶K<µI:´M=¹G7µG8¶E6¶B2³?/²B1µD3¹D3ºE5½K:ÄRAËSBÎL;ÈH6ÅG5ÅQ?Ñ,&T!!!""""""""""""""""""""""""""""""""""""""" 0)]K9ÏE3ÉD2ÆE4ÈF4ÇH6ÈM;ÌP?ÏQ@ÎVEÒWFÎN=ÈF5¿A0¸A1¸G6¼L;¿O@ÂK;¼G7·B3±?/¬=.ª<-§<,¥<-¦=.¥=.£@2¥G8ªJ<¬%!F!!!""""""""""""""""""70nD8”?3B7’@5Ž?4Œ@5A7B7A6‹?4ˆ9.9/=2„?6†>4ƒ<2A8†J@KBŽNELBF=‡D;„F=…G>†F=…B9€I@†1!!!""""""   3.PH@}CwA:rE>wD=uA:rIBy@9pE?uHBxF?uF?uIBvJCxHAuE>rA7qC~F=@7y?7yF>LC‡LCˆNF‹OGŒPGPGŽOFNEMCŒLBŒG>ˆC:„C:†H?‹H?ŒC9‡3,a !!!"""""""""""""""""""""""""""!!!=5vD8›J>¢SG¬TG®OBªE8¡H;¥C5¡?1žI;©PB²L>®D6¨K=°L=³J;²J;³L=·L=¸K<¸N?¼K;ºJ:»H7ºC3·@/µ?/µA1¸B2ºC2¼H7ÃO=ËUCÒR@ÐL:ËG5ÇL:Î,&W  """""""""""""""""""""""""""""""""""""""""" -'[I7ÑD2ËE3ËH5ÌF4ËH6ËK9ÍM<ÎO>ÏWFÓXFÑL;ÉB2½=,¶B2»I9ÀP?ÆO?ÄK:¾F6¸A1²>.­:+©9*¦8)¤;,¥=.¦>0¦C4©F9¬G9«&!G  """"""""""""""""""!!!5-mD8–C8”D8”C8’C8‘C8B7ŽA6Œ@6‹@6Š=3†:0ƒ;1ƒ@6‡B7ˆ=3‚>4ƒB9‡MD‘I?ŒD;†D;†KBŒRH’OFI@ˆMDŒNEŒ%!9  """"""  B>a]U“MEƒPI†E>{<5qIA~TMˆKD=6pG@yF>xB:s@9rCuG@vG@vE>sD=sF?tG@uG@tB;oE>rHAuB=j%!8 !!!""""""""""""""""""""""""""""""!!!41PGAqG@qCsD=rF?uF?tF?vG@wE>uA:rB;sD=vHAyF?xCxG?zF>zE=xKCB:w>7sE={JB€IAG?~G?C:{H?€H@B:|>5x@8{H?ƒNE‰E<‚I@†NEŒPGOGŽMC‹H?‡F=‡JA‹E<‡C9…G=ŠI@G=‹4-c!!!"""""""""""""""""""""""""""!!!6/gA5™E9žL?¥H;£>1š1ŸA3£A4¤A3¥D6©J<°K<²L>µN?¸M>¹M>»N>¼M=½K<¼J;½J;¾H7¾E4¼A0¹@/ºA0¼D3ÀG5ÄK:ÊR@ÒUCÖR?ÔK9ÎK9Ð'#D !!!"""""""""""""""""""""""""""""""""""""""""" .']H6ÓC/ÍE3ÎG5ÐJ7ÐK8ÑN<ÓQ@ÕUCÕXFÓRAÓJ9ÉB0¿@0½G6ÂN=ÇP@ÉL<ÃG6¼C3¶@0²<,­9)©7(¦;+¨@1¬C4®E7®G9¯F8¬D7ª6 !!!""""""""""""""""""!!!1)i@4“C8”<0Œ>2@6B7A7Ž?5‹<2ˆ<1†@5‰;1„;0ƒ?5†B9‰A7†>4ƒ?5ƒA8…D;‡J@ŒKAF=‡B8‚B9‚F=…PGŽH?†%!:!!!"""!!! -)FZR’UMŒG@~B;yH@~E=z>7s?8s>6r<4o?8rE>xD=w40U0/ !/.*ID>mJCxIBwF@tD=qF@tF?sE>qF?rIBu62S   !!!"""""""""""""""""""""""""""!!!  -.:5W:4aE?rJCvGAtF?sG@tG@tCyE>x94b3.V61Y40X3.V3.V3.W3.X2-W2,W60[71]82^50\0*W3,a@8|H?„G?ƒI@†MDŠPHUK“UL”QH‘MDŽNEI@‹E<ˆF<ŠG=‹H>Œ5/d!!!""""""""""""""""""""""""""""""  $ D?!L6-vJ;¬F8ªF8«OA¶H:°J<´O@ºPA¼N?»P@¿O@ÀM>¿L=¿M<ÁL<ÂK;ÂG7ÀD2¾>/¬7,‹&Q'!R("T  !!!"""""""""""""""""""""""""""""""""""""""""""""  #*$X=3‰P>ÈVDÛ\IÛXFÕN<ÑE4Ç?-¿D3ÃK;ÈSBÏN=ÈG7ÀB2º?/µ>-²;+®4(Œ,#k#H&!K  !!!"""""""""""""""""""""!!!  * ;0*[C9ˆG<”E:B7D9Ž@5‰=3†>4…@6‡A7‡@6…>5ƒG=‹KBVL˜PI„0+M 5  !!!"""""" 72^OG‡WOSKŠG?~NF…?7u6/lE>{QI…H@|E=xF@n/  !=7aE?sD=rG@tG@tD>qCk  !!!""""""""""""""""""""""""""""""!!! ,E>qA:nA:nF?tHAvG@vG@vE?uG@vJCzHAxC¹N?»L=»N>¾P@ÂN?ÂQ@ÆO>ÅM=ÄL;ÆG8´5  !!!""""""""""""""""""""""""""""""""""""""""""""""""!!! H<¡]KÜUBÙJ7Ï@.ÅA.ÄH6ÉR@ÑSAÑL;ÈF5ÁA0º>.¶<.¥0  !!!"""""""""""""""""""""""""""!!!  B9‡E:‘A7H=“F;A6‰<2…=2„>4…@6†>5ƒC:ˆ<3€5  !!!""""""!!! MD†PGˆSKŒPHˆH@@8vG?}H@~F>{G?|C;w# :  %!9E>rCrE>qC=pF?rJDvJCu>9e !!!""""""""""""""""""""""""""""""!!! ,(DE?rE?sE>sE>sE>tD=sE>tF>uE>uD=uB;s@9q?7p0,R  %CŠC9†D:‡H>ŒH>D:ŠF<Œ """""""""""""""""""""""""""""""""!!! $GH9±K<µK<¶L=¹M>¼O@ÀO?ÁN>ÂM=ÂO?ÆM=ÅM<ÈK<¹ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!  "_LßQ>ÛE2Í?,ÆG5ÍN=ÒUCÕN<ÎG6ÆB1¿?-º<*¶0 !!!""""""""""""""""""""""""""""""""""""!!!"=E;’C8>4‰:0„:0ƒ>4‡?5†<2‚>4„D:‰bX§SKˆ!!!""""""""""""!!!^V—PH‰QI‰LDƒME„D<{D<{E={F?|CrD>rE>qE>qE>qE>qE>pE>p?9f  !!!"""""""""""""""""""""""""""""""""!!!!!!!!!!!!  F?sF?sF?sE>tE>tC=sD=tF?uF?vF?wE>vD‹MC‘MD’F<Œ@6‡ """"""""""""""""""""""""""""""""""""!!!!!!!!!!!!!!!  A2«C4¯F7³H8·J;»M=¿O@ÃP@ÆP@ÇSAÌR@ÌQ?ÍB6–  !!!!!!!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!!!!!!!!!! QB¼L8Ù@-ËD1ÍM:ÕVCÙR@×K8ÍE3Æ@.¿;*¹9)§ !!!!!!!!!"""""""""""""""""""""""""""""""""""""""""""""!!!!!!!!!   E:“G<“D9?4Š?5‰D:D:Œ=3…8.8-~ W:  !!!!!!"""""""""""""""!!!c[RJ‹PH‰G?F>~H@H@~G?|?8n !!!!!!"""""""""""""""!!!!!! 3.QE>rD>rE>qD>qE>pE>qE>pE>p2.N """""""""""""""""""""""""""""""""""""""""""""""""""!!!!!!E?sE?sF?sE>tE>tC‹H?ŒOE”SH˜NE•I? """""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!!!!!!!5+}@1­D5³G8¸I:¼L;¿M=ÃP?ÇQAÊSBÎSBÐTBÑ)#T !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! G:©G2×A-ÏI6ÖS@ÞVCÜN;ÕG5ÌA/Å<*½9'º2&‡ !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!D:’I>–F;’A7ŒB7ŒG=‘J?’E;@6‡=3ƒE;Š5 !!!""""""""""""""""""""" e]ŸUMŽUMŽLC„IA€F>}F>|@9p """""""""""""""""""""""""""""""""!!! E>rD>rD>qD>qE>pE>pE>pE>pE>p !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""" F?sF?sF?tE?tF?tD=sE>tF?vF?wHAxHAyHAy. """"""""""""""""""""""""""""""""""""""""""""""""""""""!!!!!!  &KAŽF=ŠF<ŠI?ŽND“OE•QF˜""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!6+?/®B2²E6¸H8¼I9¾K:ÂN=ÇR@ÍTBÐSBÒUCÓ*#U !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! C6§A,ÔH3ÙQ=à\HáR?ÞJ7ÔC0Ë>,Ä9'½6$¸5(‹ !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" A7C8‘F;’A7@5‹C9ŒG4ƒ5 !!!""""""""""""""""""""" '%;aY›VNYQ’OG‡IAC;zE=| """""""""""""""""""""""""""""""""""""""!!!+(ED>rD>qE>qE>qE>pE>pE>pE>p94Z !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!F?sF?tF?tE?tE>tE>tE>uE>uF?vF?vF>wE>w !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! )$GF=‹F<ŠD:‰D9ŠE;ŒJ@’ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! 1'|9)©=-¯@0´C3¹G7¾J9ÃM<ÈQ?ÎSAÑUCÕUC×+%W !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! ?1¥C/ÙO:äZFæWBäN9ÜF2Ó?,Ê;(Ä7%¾:'¾8, !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!>3<2ŠD:‘C8A7Œ@5Š?4ˆ?5ˆD:ŒJ@‘PE–2 !!!""""""""""""""""""""" &$:bZœZR”^V—PH‰E=}F>~&#> """""""""""""""""""""""""""""""""""""""""""""!!! ,D>qD>qD>qD>qE>pE>qE?pE?pE?p """"""""""""""""""""""""""""""""""""""""""""""""""""""!!!F?tF?tF?tF?tE?uF?uF?vE>uD=uD=uD=uCæH5ÚA.Ð;(É7$Â8%Â@-Ç=1– !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!A5?5Ž@5B7ŽD:C9Ž?5‰?5ˆB8‹F<9/5 !!!""""""""""""""""""""" '%;f] cZœkc¤^V–PH‰82c!!!"""""""""""""""""""""""""""""""""""""""""""""!!!D>rD>rE>qE>qE>qE>qE?qE?pE?p+(C """"""""""""""""""""""""""""""""""""""""""""""""""""""!!!F?tF?tF?uF?tE?uF?vF>uF>uE=uE=vD=uD=v!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!  %F<ŒF 9 !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! 5*€;,®;+°:*±=,¶@/»C2ÀF5ÅI7ÊO=ÒSAØVDÜ,%Y !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! A1¬U>òcMïXBíL8äE0Ù>)Ñ9%É6"Ä>+ÊG4ÑC7 !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!C8“E:”>4ŒA6ŽD9E:D9ŽC9ŒE:F;G=Ž1 !!!""""""""""""""""""!!! %"9`Xš\S•jb¤g^ aY™  """"""""""""""""""""""""""""""""""""""""""""""""""" E>rE>rE>qE>qE?qE?qE?qE?qF?q@:f """"""""""""""""""""""""""""""""""""""""""""""""""""""!!!G@tF@tF?tF?tF?uF?uF?uE>uE>uE>vF>wE>w!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!?6}B8ˆB8‰C9‹D97 !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! 3)€;+°:*°9(±:)µ>,ºA0ÀE2ÅH7ËL:ÐP>ØTBÞ,%Y !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! G8µ_Iö^HôR<ïG2â@+Ø9%Ï5!É>*ÏH4ÖP=ÜB5ž !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!B7’E:”D9’C9‘B8ŽA6ŒA7‹B7‹B7‹A6‰B8‰5 !!!""""""""""""""""""!!! <6dRJH@‚XP’^V—RK}!!!""""""""""""""""""""""""""""""""""""""""""""""""""" E>rE>rE?rE?rF?qF?rF?rF?qF?qF@q""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!F@tG@tF?uF?uF?uF?vF?vF?vF?vF?wF?wE>w!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""  '#FC9ŠC9ŠC9‹D9Œ7 !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! 3(€<+²;+³;*¶:)¶:(¸=+½@.ÃF3ÊJ8ÒN<ØR?Þ,%[ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! O?ºfPúXA÷K6ìB-à;&Ö5!Î<(ÒG3ÛR=ãP<ß?3 !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!A5‘C7’B7‘B7B7B7B7B8ŒB8‹B8‹B8‰5 !!!""""""""""""""""""!!! :4aI@„LC†80rH@+)> !!!""""""""""""""""""""""""""""""""""""""""""""""""""" E?sE?sF?rF?rF?rF?rF?rF@qF@qF@q""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!G@uG@uG@uF@uG@vF?vF?vF?vF?vF?wF?xF?x!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!  C8ŠC9ŠB8‹C8Œ&!G !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! 2':*²;+µ;*·:)¸:(º9'»<)ÁA-ÇF2ÏK8×Q=à+$\ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! ZJ½_HþP:÷D.é='ß6!Õ<&ØF1ßT>êS>çL7Ý=0 !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!B6’D8”B7‘B7B7B7ŽB7ŽB7ŒB8ŒA7ŠB8‰5 !!!""""""""""""""""""!!! @:hOGŠSJ?6xA:t """"""""""""""""""""""""""""""""""""""""""""""""""""""  .F?sF?sE?sF?sF?rF@rF@rF@qF@qG@q* """"""""""""""""""""""""""""""""""""""""""""""""""""""!!!G@uG@uG@uG@vG@vF@vF@vF?wF?xF?xF?xF?x!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" :1qB8‹B8‹C8Œ4-f !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! 1&€7'°9(´:)·;)»:)¼9'½8&¿;(Å?,ÊF2ÔM8Þ+#] !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! XG½X@ÿJ2õ?)è8!Ý;$ÞH1çT?ðT@íM8äG2Ú‚ULUM !!!"""""""""""""""""""""""""""""""""""""""""""""!!!!!!%"9G@tG@tG@tG@tG@sG@sG@sG@sG@sGArGAr+!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!GAvHAvGAvHAwG@wG@wG@xG@xG@xG@yG@yG?y!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!B7‹B7‹A7Œ3,f  """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! 8,Š<+¹8&¸3!µ6#º6#½8%Ã;'Ç;(Ê;&Í9%Ï9$Ñ%Z !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! H6½D*ÿ: óH/þYAÿ_GÿT<þJ3ñH3ëO9îT>ïI;­ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!D9—B6“A6’A6‘A6A6ŽA6A6ŒA6‹A6ŠA6Š6 !!!""""""""""""""""""!!! TKME‰^V™F@m  """"""""""""""""""""""""""""""""""""""""""!!!  A;jF@uG@uG@tG@tG@sG@tG@sGAsGAsGArGAs  !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!GAvGAvG@vGAvG@wG@wG@xG@xG@xG@yG@yG@y!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""  C8ŒB8ŒB792u !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! ?3’F5Å@/Á;)¾5#¼3!¼6"Â8$Ç9%Ë<'Ñ<&Ô:%Õ$Y !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! C0½>#ÿI/ÿ\BÿdKÿW?ÿL4úK4õQ;÷XAöWBòG9¯ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!F:šC7•A6‘A5‘A6@6ŽA6@6ŒA6‹@6ŠA6‰6 !!!""""""""""""""""""!!!(%<(%<2.F%$2 """"""""""""""""""""""""""""""""""""!!!!!!  A;kG@uG@uG@uG@uG@tG@tGAtGAtGAsGAsHAsGAs """""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!G@uG@uG@vG@vG@wG@wG@xG@xG@yG@yG@yG@z!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!)$J5/g6.h70j!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! E9—TBÓM:ÐG4Ì?,Ç9&Ã3Á5!Æ6"Ê8$Ï;&Ö;&Ù$[ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! ?,½J.ÿ^CÿiOÿ\BÿO6ÿO7ÿU=ÿ[Dý[CùU?öF7° !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!G;›E9—@5’@5A5@5Ž@5@5Œ@5‹@6Š@5‰5 !!!""""""""""""""""""!!!  """"""""""""""""""""""""""""""!!!!!!  A;kG@vG@uG@uG@uG@uGAtGAuHAtGAtGAsHAtHAs;6\ """""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!G@uG@uG@vG@vG@vE>uF?wH@yIBzIB{IAzH@z!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! J>š[IÕYG×TBÚM:ÖE2Ò=*Ì6"É3É6 Ï9#Ö;%Û$\ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! C0½`DÿpTÿ`EÿS9ÿT:ÿ[BÿaIÿ]EÿV?üQ;õB3­ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!@5”D8–@4‘@4‘@5?5Ž@5?5Œ@5Œ@5‹?4ˆ4 !!!"""""""""""""""""""""!!! """""""""""""""""""""""""""!!!  %";IByE>tD=sGAvGAvGAuHAuHAuGAuHAtHAtHAtHAtHBs,)E !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!F@uG@uG@vG@vG@wLE|IByE>wD=uD=uE=wD=w!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! NCœ_NÖ^LÙ\JÛ[HÞVBáM9ÞD/Ù;&Ô2Î3Ó7 Ú#\ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! T@½vYÿeIÿW;ÿY>ÿ`FÿgMÿ`GÿYAÿS;þH2ï;+¨ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!@4”C7–?4‘?4@4?4Ž?4?4Œ?5‹?5Š>4ˆ4 !!!""""""""""""""""""""""""!!! !!!!!!""""""""""""""""""""""""!!! %":>7hF?wF@vF?uJCyHAvHAvHAuHAvHAuHAuHAuHAtHBtHBtHBt  """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!F@uG@uF@uF?vF@vJCzG@wE>vE>vG@yHA{G@z!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!  !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! PDfT×fSÚeRÞdPábNä`KçWCêM8çB,à8"Ù2Ø$] !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! fQ½kMÿZ=ÿ_CÿhLÿkPÿcIÿ[BÿT;ÿG/ö<%æ3$£ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!?3”@5”?3‘>3?3?3Ž?4?4Œ@5Œ@5‹?5‰5 !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!  $ 9D>oHAyHAyJCzE>uB;rJCyHAvHAvHAvHAvHAuHAuHBuHBuHBtHBt<6] !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!F?uF?uF?uF?vF?vC3‘>3?4?4@5Ž@5A6A6A7‹6 !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!   %";;6bG@zE>wG@yF?wIBzNG~G@wB;rHAwHAwHAvHAvHAvHBvHBuHBuHBuHBuHBt """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!F?tF?uF?uF?vF?vD=tG@xKD|JB{E>wC½nNÿxYÿtVÿjMÿbFÿQ6ÿC)ÿ9ó:!ï>&ï@0³ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!?4•@4”@4“@5’@5‘A6B6B7C7C8ŽB87 !!!"""""""""""""""""""""""""""""""""""""""""""""""""""!!!  %"<83aC;wE>xIB}LEOHMFF?wE>uKC{IByF?vKDzHAxHBwHBwHBvHBvHBvHBuIBuHBu-)E""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!F?uF?uF?uF?uF?vE>uG@xIAzF?xDxLE!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! K?¤P=ØR@ÝWCã^IæfQêp[ï|gó|f÷zcûv_ýs[ÿ5-g !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! aJ½‚aÿyYÿoPÿaCÿP3ÿB&ÿuE>vE>vF>wG@yHA{IB|!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! QE«R@ÛQ>ÝS?âVAè]GðcNókVöv_ø‚kü„lÿiÿ=5i !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! oX½~\ÿrRÿ_@ÿM/ÿ?"ÿC'ÿI.ÿO4ÿQ7ÿP7ÿF6¼ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!F9œE9šD8—D8–D9•E9•E:”E:“E;’F;’F;‘8 !!!"""""""""""""""""""""""""""""""""""""""""""""  50Me^–um«kc g_œd\™e]™ibkdžibœg_™kdqi£c\”MFF?wG@wH@wIBxHAwHAvHAvHAvHAvHAuHAu50S!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!F?tE?uE?uE>uF>uG@xE>vD=uF?xG?yA:s5.i!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! M@§T@ÞS?áS?äT?éU@íU?ðYCôbKønVýzbÿŠqÿC:i !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! jR½uSÿ]<ÿK+ÿG(ÿM/ÿS6ÿW;ÿV;ÿU;ÿT;ÿI8¼ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!H<žG<œF:™G;™F;˜G;—G<•G<•G<”G<“G=’ 9 !!!"""""""""""""""""""""""""""""""""""""""""" ,)FQJƒ`X—h`Ÿnf¤xp®vn«vnªvn«rk¦e^˜QJ„B;uMF`Y’`Y‘MF~F>vIByHAxHBwHAwGAvHAvHAuHAuGAu50S!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!CxJC}!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! A4J7ÖH4×I4ÛI5ßK6åN8ìP:òS<úZBÿdLÿrYÿ?6j !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! `G¾Z7ÿJ(ÿR1ÿY9ÿ^@ÿ]@ÿ\@ÿ\@ÿZ?ÿX>ÿK:½ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!J> H<œOB£E:˜L@H=˜H=—K@™E9’MB™K@–7 !!!"""""""""""""""""""""""""""""""""""""""  :4gG?RKŠaY˜_W–RJ‰ZRSKˆQJ‡PH„MEMFG?z92l70iPHYRŠOHKC{IBzG@wF@uICxHAwF@uG@uIBw'$:!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!E>tE>tE>tF?vD=uF?vC” 9 !!!"""""""""""""""""""""""""""""""""""" (2*k2)k1)j;3sNF…[S’]V”VNŒRJ‡OH…LD€IB}PI„ZS]UJC}[T[SŒJC{F?wIAyG@vE?tJCyHAvF?u:5^  """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!E>sD=tD=tF?vIBzE>uB;sD=uE=wD=wLE~NG!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! B5ŸM9ÛM9ÞN:âO:çM8éN7îL6ñJ4ôN6ýS:ÿX>ÿ0'g !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! V;¼oJÿqMÿoMÿnMÿkKÿgIÿcFÿ`Dÿ\AÿW=ÿJ8¼ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!QD§WK¬K@ŸSG¥SG¥PD I>™H=—QFžTJ¡TIŸ'#@ !!!"""""""""""""""""""""""""""""""""!!! -6.o6.p4,m.&g*"b.&e:2qE=|F>|HA}LEPI…SL‡XQŒ`X“e]—\Uf^˜[TŒE>vA:qF?vF@vE>uIBx;6`  """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!E>tF?uD=tF?uIBzCvF?xH@zMFRK…!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! L@©WCäUAçU@êT?íT?ñS=õS<úR:ýR:ÿS:ÿS9ÿ2)j !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! dI»|VÿzVÿvSÿqPÿmMÿiJÿdFÿ^AÿZ>ÿU:ÿH6¼ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!J>¡L?¡SH§XL«`T²[P¬ZOªbX±h]µqf½|rÈ85Q !!!""""""""""""""""""""""""""""""!!! "6H@‚OF‰F>€;3t0(h'_*"a?7vTL‹PH†OG„NFƒSK‡XPŒTL‡OG‚RJ„ng¡un§h`™PIH@xG@wE?u:4_! !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!G@vF?uD=tC;rD=tB;rE>vG?yG@yHA{KD}TL‡!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! 4'ŒR>ØS?ÞT@âWAéYDð[DöZCüZBÿ[Bÿ[Bÿ\Bÿ:1p !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! oS¾„]ÿ~YÿyUÿrPÿlKÿeFÿ`BÿZ=ÿU9ÿP5ÿE4½ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!ZN±_SµsgÈmaÀ{oÍqfÂnb¾pe¿YO§ZO¦LA˜$= !!!""""""""""""""""""""""""""""""&KB†F>€@7yB9|G>€F>~5-mU HFSSR$Y2+f91mG?z]Vsl¦{s¬tl¦c\”OJz(%?  !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!CuE>tB;sC7q81j;3n!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! L@¤_KácOæeOédOíeOñeNõfOügOÿhOÿhNÿgMÿ>5q !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! rV¾†^ÿ}WÿuQÿnKÿgFÿ`@ÿZ;ÿT7ÿO3ÿK0ÿC2¼ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!=1”4(Š+ €3'‡QE£YNª[O«YN¨J>˜MCšPEœ(#A !!!"""""""""""""""""""""""""""!!!B:wIA„I@ƒJB…F=€C:|A9y=5t:1q>5uE={=6sB:x<4q4-i/'c!U*#]JC}WP‰WPƒ@<\ +  !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!B;q@9oG@wHAxB;sE>vF?w?7p=6o?8r2+e+#^!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! I<¤YEã^IèaLìdNïhQôlU÷qZýv^ÿw^ÿx^ÿy^ÿC:p !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! nQ½€XÿvPÿnIÿeBÿ_=ÿX8ÿX9ÿ[=ÿ^Aÿ`DÿQ?» !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!H< H<ž"w/#‚8-ŠOD¡UI¥I>˜PEžOEœOD›"; !!!""""""""""""""""""""""""!!!.*INFŠQIŒSJKC†KC…LD…KC„H@€E<|C;zDzB;w>6r%XG!>"  !!!"""""""""""""""""""""!!!!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!IBxA:pHAwG@w=6mF?vF?w@9rE>wOHE=x92l!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! H:¦R?ãVAèWBê[Eð^IõbKùgPþmUÿsZÿy_ÿ€eÿJAs !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! nQÄuLÿlEÿjEÿnKÿrPÿtTÿwXÿy[ÿ{^ÿ{_ÿbP» !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!I< I=ŸD9™@5” rA6“VK¦I>˜]R«H=•E;’. !!!""""""""""""""""""""""""!!! JBG>‚D;C:~@8zF>€LD…ME†ME…LD„KC‚JB€DvB:sF?xNF€H@{<5o!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! B5¡Q<âQ<åR>ëU>ñWAõZCú^FÿaIÿfMÿlRÿqVÿH>v !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! bÍ‘gÿ”mÿ˜rÿšvÿ˜vÿ—vÿ•vÿ“uÿ‘tÿsÿo]¼ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!G;ŸM@£G;œB7–7+‰:/‹NBžSH¢I>—F;’<1ˆ6 !!!"""""""""""""""""""""""" !5LC‰KB‡H?ƒG?‚B9|G>€H@E=~G?KCƒKC‚E>|NF„F>|.*L   !!!""""""""""""""""""""""""!!! !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!x®ha—UN„A:qIBz>7nA:sB;tIAzPIƒLDD=w!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! A3 J6ÛK7àN9çO:ìQ;óR;ùV>ÿYAÿ]DÿaGÿfKÿ>5p !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! ”v¸ÇÿÄœÿÀšÿ¼˜ÿ¸–ÿµ”ÿ¯ÿ£…ÿ™|ÿtÿlZ¼!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!G;ŸI=ŸTH©K?Ÿ:/9-ŠH<˜K@šF:”E:’RGž%"? !!!"""""""""""""""""""""""" .(OG>ƒH?ƒG?‚KB†IAƒJB„H@B:z?6v@9xD<{G?}94d  !!!""""""""""""""""""""""""""""""!!!!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!ib˜vo¥ha—G@v>7nLE|LE}F?xC7q!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! C6£G3ØG3ÜI4âH3æK4íL5óO7ûR9ÿT;ÿX>ÿ\Aÿ90o !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! ¨Š´Ø®ÿÇŸÿ·‘ÿª†ÿž{ÿ”sÿ‹kÿ‚dÿ{^ÿtXÿ\J½ """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!MA¥NC¤ZN¯OC£?3’;0ŒC8“B7’>2Œ?4ŒJ?–"; !!!"""""""""""""""""""""!!! 3-\F=‚H@„KC‡PH‹NEˆME‡ME†KC„G?~E=|KC‚>9c  !!!""""""""""""""""""""""""""""""""""""!!!   """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!>7mmfœy°ngž^WŽKD{ME~JC{KD}OH‚KD~IA|!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! D6£D1ÖB.ØB-ÜA,ßC,åC-êF.óH/úJ1ÿM3ÿQ6ÿ4*n !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! ‚d½›pÿgÿ…_ÿ|XÿuRÿnMÿhHÿcDÿ]@ÿX<ÿL:¾!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!K>£L@£OC¤G;›A5“C7•I=™G<–A6@5ŽLA˜#< !!!"""""""""""""""""""""!!! C:€F=ƒG>ƒG?ƒJB…H?‚H@‚NF‡VNŽWOSKŠ@:e!!!"""""""""""""""""""""""""""""""""""""""!!! """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!70f^W|u«ƒ|³~w®zsª{s¬vo¨un§qj¤`Y“ME€!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! :,™=*Ï<(Ò=(×;&Ù<&Þ;%ã=%ê?&ñA(úC)ÿF+ÿ(f !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! Y;¿a6ÿ\4ÿW1ÿS/ÿO,ÿL+ÿI)ÿF'ÿC&ÿ@$ÿ>#ÿ !!!""""""""""""""""""""""""""""""!!!!!!!!!!!!!!!"""""""""""""""""""""""""""!!!?3—?2•D8™@5”B7•J>›ODŸQF NCI>—C88 !!!"""""""""""""""""""""!!!@7}A8}?6z>5y>6yC:}A9{E=~PHˆTLŒIBz""""""""""""""""""""""""""""""""""""""""""!!!=9[=8[D@c(""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!4-cG@vTLƒXQˆNG[S‹[TŒXP‰\UŽd]–aY”ZS!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! 0#7#É7#Ì8#Ò6!Ô8!Ú7 Þ8 å:!ì:!ó<"û>#ÿ_ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! —yΠuÿ“kÿˆbÿ[ÿxUÿpOÿjJÿeFÿ_BÿZ>ÿV;ÿ!!!""""""""""""""""""!!!!!! !!!"""""""""""""""""""""!!!B6š>2”I=žF:šH=›K?œMATI£TI¢H>–F;’8 !!!"""""""""""""""""""""!!!<3y=4y?6z@7{@8{G>B:{A8zC;|F>~/!!!""""""""""""""""""""""""""""""""""""""""""!!!kd™jc—yr¦+):!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!G@v[TŠ[TŠWP‡JCzWPˆWPˆQJƒQJƒXQ‹YRŒ\U!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! .!Ž4 Å3È4Í2Ï3Ö3Ú3ß5ç6î9øžJ>H<™H=˜VJ¥XL¦G=•D99 !!!"""""""""""""""""""""!!!?6|B9~E=F>‚E<€D;~D<~B:{@8y@8x!!!"""""""""""""""""""""""""""""""""""""""""" *':TN‚TN‚e^’(%7 !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!H3,b4-d@8oA:q4-e>7oD=vKC|PIƒMF€LD!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! 2%’5!Æ5!Ê6"Ï5 Ò6 Ø8!ß:"æ<$î?&÷B(ÿE*ÿ\ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! ¯‘»Í£ÿ²Šÿœvÿ‰eÿyWÿmLÿdDÿbDÿ`Cÿ^Bÿ\AÿP?¿  !!!"""""""""""""""!!!NA¥I<ŸF:›F:šJ>œH=™LAœ_T¯eZ³RGŸJ?– : !!!"""""""""""""""""""""!!!>6mJA†JB†E=€?7z7/r?7yC;}B:z3-X!!!"""""""""""""""""""""""""""""""""""""""!!! 73PXQ…QK~TM' !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! O&U' W.'^92i1*b/(`3,e91j<4nD=wF?y!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! 8+—=(Î<'Ð;&Ó<&Ú=&ß?(åB*íB*óA(øA'þ@%ÿ^ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! aC»”jÿ­†ÿÇ¡ÿܸÿÁŸÿ¬‹ÿ™zÿŠlÿ|_ÿqUÿgLÿ^Dÿ   !!!""""""""""""!!!."…%{&{0$„0%ƒI=šK?›MBœqg¿h]µ^Sª!: !!!"""""""""""""""""""""!!! 3,\B9~A8}A8|@7{;3v;2t>6wD;|4/Y"""""""""""""""""""""""""""""""""""""""!!! 6)"W:4g;5h"1 !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!93h<6l<5lF?vTM…ZRŠMF~>6o+$] R,%_A:t!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! )Ò:$Ò7!Ó4Õ1×0Ú/ß.ä-é,îU !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! S6¾R)ÿG ÿK&ÿ[8ÿmKÿ~^ÿpÿŸÿ­ÿ£‡ÿ”yÿ†lÿL>•    """"""""""""!!!;/“G;E:š7+Š({){F;–UJ¤YN§MB™f\² 9 !!!"""""""""""""""""""""!!! %!AB9~A9}?6z=4x6.q6.p;3tC;{60[ !!!""""""""""""""""""""""""""""""""""""  JJKF" !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!<5l:3i5/e?8oNG^WŽYRŠRK„A:r/(b6.hLD!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! 4'’6"Æ5 É2Ê.Ê*Ë'Ì# Í% Ô-â6ñB'ÿ) d !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!  dG»oGÿ`:ÿT/ÿI&ÿAÿ9ÿ>ÿJ,ÿV9ÿbFÿnSÿy_ÿ„kÿ"90H7ÅH6ÂD4¼,"m!!!""""""!!! D8›C7™<0‘C7–B7”m."~H=—C8’K@—dY°"; !!!"""""""""""""""""""""!!!$E7m6/f92iD=tE>uME~YR‹ZSŒMF€LE~SL†!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! +‰,»+¾-Å0Ì4Ó8!Ü@)èK3ù[BÿnTÿƒiÿ@6d !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! {_ņ^ÿwQÿjFÿ_<ÿU4ÿK+ÿC$ÿ;ÿ5ÿ0÷5õ>$÷G.úO:ê(F<Š^KØZHÖVDÓRAÍN=ÅJ:¿E7«  !!!!!! G;ŸC7™>3“@4“A5“(z-!}H=—A6PESI #< !!!"""""""""""""""""""""""" =6lKB†KB†H@‚D<A8{?7x@8yD<|  !!!!!!"""""""""""""""""""""!!! e^“[TˆMFzE>rD>q, !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!OH~JCy@:p>7nC–g\³PEœ 9 !!!""""""""""""""""""""""""!!! '#BKC‡MDˆLD‡KC…G>€A8z>6w@8x$!=  !!!!!!!!!!!!!!! <8[]W‹_XXR…RKQK~*""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!KEzJCyA:q>7nB:rXQ‰NGMF~LE~E=wA:t@9s!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! @3Q=ßZFågQés^ínXñfPõ_HúW?ÿN6ÿE,û=#ù%d !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! ŠfëŠdÿ„`ÿ}ZÿvUÿpPÿiJÿ`BÿX;ÿP4ÿJ/ÿ=.¥=,·7è3Þ1×-Ï+É*Ã0Å6"È=)ËB/ÌG4ÎL:ÐN=ÐTBÑWFÏ[JÌ`OÌdTËaQÈ[KÃ81g +F:œ?3•A6•H<œC8–G<˜m(wVK£xmÅdY¯"; !!!""""""""""""""""""""""""!!!A:vI@„I@ƒH@‚E=@8y=5u@8x@9q  -JCxQJWP…UN‚NH|ICv*""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!JCyG@vB;rD=sIBzTM„QI‚WPˆ[TRJ„IB{E>x!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! UI¤fRâ_LäYEçT>ëL7èG0ç>(ã6à=%ìI0ýY?ÿ2)d !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! `Qpªƒÿ‹fÿ‚^ÿ|ZÿxWÿrRÿlNÿgJÿbFÿ[@ÿS9ÿ2)n-%h=&ç9#Þ7 ×4Ð3Ê0Ä/À0½.¸2 ¹7%»;*¼?.½B1½E4¾I8¿M>ÁQAÃQBÁ@6‡ 1)bL@£NB£B7–NB¡J>œ:/‹(w+ yMAš]Rªla·,(E !!!"""""""""""""""""""""""""""  #D<D<~E=F=€C;|@8yA9yF>}61\  ,CuOHHAyLE}\Tb[”WO‰KC}H@{!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! D7ŸK8×E2ÕA,Ô:%Ñ5Ð;$ÚD-çO8÷]EÿpWÿ…lÿD;j !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! %;,c]F£œuÿ½—ÿ°Œÿ’oÿ{YÿuUÿqRÿmOÿiLÿdHÿ_Dÿ[Aÿ6.o,$eC,æ@)ß>(Ø:%Ñ7"Ê4!Ã1½0¹/µ1 ´.¯1 ®6%±8(±9)¯=-±B2³D5³F7³ %!C5/gL@¤L@¢H€IA‚I@‚D<}A9yD<{E={2,V)G@vF?tCtE?uIByJCzJC{aZ’qi¢un§MF?7r!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! :-•:&Æ5!Ä:&Ì@,ÖI3âT>ò`JöqZúiÿ‡oÿtÿE.ª $4,k:1z<3|L?©NAªOC©QEªSF©PE§OC¤NA¢RG¥UJ§PE G<–;0‰+ xii2"""""""""""""""""""""""""""""""""!!!:5aPH‰ME†LD…ME…IAD;{DtCQSK„VO‰KC~!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! E8ŸR?ÛZGáeQämYæq\êu`î{eòjö‡pûŒtÿuÿA8f !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! ˜jÿ¶‰ÿ¾“ÿ·ÿ xÿfÿ|WÿuQÿoLÿjHÿeEÿsTÿ‡iÿ›~ÿˆlÿuZÿfKÿ^DÿJ6Ê  4+uI5ØE2ÑC0Ë@.Æ?.Â=,¾<+º;*¶:)³8(®8(¬7'©6'¦5&£/%w !B7*™9,™;.™=0™?2š@3™A5™C7™D8šF:šF:™F;™I=™MBPEŸRG TI WL£ND™"; """"""""""""""""""""""""""""""""""""!!! $CzB;vB:u2.U4/U61WE>wCxH@{!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!!!!!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! NB£dQÜhUÞkWáo[äs^èwcì}hñ€kõ„mù…oý‰qÿA9j !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!!!!"""!!!>/fhK®€e·³‹ÿ¨ÿ”oÿƒ_ÿtQÿnLÿhGÿdDÿaBÿdFÿvYÿ‡kÿ‹pÿy_ÿiPÿO>¼ >G6ÂH5ÐE3ÉC1ÅB0Â@.½?-¹=,µ<,²;,®:+«:*©9)¦/ 20'q6)Š7)”8*”9,”:.“2“@4”B6•@4’B6“G<–G<–D9’E:’H>”K@–!: !!!"""""""""""""""""""""""""""""""""""""""!!!  )&BB;sJBNF„PH…G?|F?{E=yC7m>7mC7qE=x!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!  !!!""""""""""""""""""""""""""""""""""""""""""""""""!!! TH¢hVÜkXÞn[áq^äuaçxcëzeî|fòiöiûrZÿ7/l !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!   OCqA6ifO¾]G¾hHÿcDÿ_Aÿ[>ÿX<ÿgLÿv\ÿ†lÿ|cÿI>‹  8.„G5ËG5ÈF4ÄD2¿B1»@/·?/³?/±>/¯>.¬"F  ,<$L/&i3*w9.;/=1:/Œ<1B7‘C7’?4@5ŒC9C9Ž 9 !!!""""""""""""""""""""""""""""""""""""""""""!!!  )%AA;lOG…MEƒLDJB~G@{G?{F?yF?yE>wF?xCtE?tIByJCzF?vA:r=6o6.gHAzDü+#e !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!  :0p4*lL:½K8½[AÿhOÿw^ÿ@7l!!!!!!  !7-~E5´F5ÀD4¼C3¹B2µB2³@2£$I   :$H/'d0)e>2Œ=3‹A6D9A7‹#<!!!"""""""""""""""""""""""""""""""""""""""""""""""""""!!! # 495]73ZHA|G@{F?yD=wCvLE~B;sG@y;3mA:s!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""  """""""""""""""""""""""""""""""""""""""""""""!!! YN£lZÚmZÜlYÞnZàp\ãr]çiUê_JîV@òI4ëF0ì,$e !!!"""""""""""""""""""""""""""""""""""""""""""""""""""!!!   6-l# 3!!!"""""""""!!!  '!O& M&!M6  !!!!!!  9 9/)X!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!  " 10 1/// !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!@9n;5jB;qHAwHAxE>v@9q@9q:3lIB{>7p?7q!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""   !!!""""""""""""""""""""""""""""""""""""""""""!!! YN¤m[Ým[ÝkYÝkXßgSá_JåVAèM7åB,ÞI3éT=÷1*f !!!""""""""""""""""""""""""""""""""""""""""""""""""!!!  !!!!!!!!!!!!!!! !!!"""""""""""""""!!! !!!""""""""""""!!!!!!!!! !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!  !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!D=s=7l@9oD=s>8nB;sB;rB:sA:sA:sB:sA:t!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""  !!!""""""""""""""""""""""""""""""""""""""""""!!! THžjYÚm[ÞhVÞ[IÜS@ßN:ÝF1ÙD/ÚL7æV?ñ`Jô5-e !!!"""""""""""""""""""""""""""""""""""""""""""""!!!  !!!""""""""""""""""""!!!!!!!!!!!!  !!!""""""""""""""""""""""""!!!  !!!""""""""""""""""""""""""""""""!!!!!!!!!!!! !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!!!!  !!!!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!G@uC2: !!!""""""""""""""""""""""""""""""""""""""""""!!! C8’Q@ÏP>ÐL:ÐF3ÌC1ÌH5ÔO;ÞVCå`LèePëjUï7/b !!!""""""""""""""""""""""""""""""""""""""""""!!!¬”¾Ë¨ÿ­ŠÿkHÿ!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!F?tB;qD=sG?vC;rB;qB;rB;rB;sB:tB;tB:t!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" !<@5A5‘B6“6.m """"""""""""""""""""""""""""""""""""""""""!!! =1A0¾@.À@/ÂG4ÌK8ÒP=ÚXEß^JãcNæhSémYì3+a !!!""""""""""""""""""""""""""""""""""""""""""!!! Ø·ÿÁ ÿ¥„ÿhGÿ!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!!!!!!!!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!D=r?9nA:pF?uE>uB7mCw!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! #=J>˜J?šNBžSG¤ !!!"""""""""""""""""""""""""""""""""""""""!!! B7’J:ÃO>ÉSBÐVDÒYGÕ]KØaOÚaMÜYFßS?áL7Ý(!Z !!!"""""""""""""""""""""""""""""""""""""""""" TKf»žÿ§Šÿ’uÿaDÿ!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""  !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!^W‹WP…LE{HAwF?uE>tE>uE>uE>vF?wF?xF?x!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! $=LAšNCTH¤\Q­-*I!!!""""""""""""""""""""""""""""""""""""!!! D9“O?ÇUEÏYGÑYHÑ\JÓ_MÖ]JØVCÙP=ÙI6ÕI5Ø( Y !!!"""""""""""""""""""""""""""""""""""""""!!! “€¼³—ÿ „ÿqÿ_Cÿ!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""   !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!JCxe^’\UŠA:pA:pHAxD>tHAxHAx@9qA:sIB{!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! &"?H=•A6B7’=1/(]  """"""""""""""""""""""""""""""""""""!!! KA™WFÍXGÎYHÏ[JÑ^LÒZHÓTB×P=ÕG5ÎG4ÐH6Õ' W !!!"""""""""""""""""""""""""""""""""""""""!!!³šñ¬‘ÿšÿˆmÿ]Bÿ!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""  !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!YS‡jc˜TM‚KDyICyF?uD=sJC{PI€ME~MF~NG€ """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! # =LA™PDžMB7,‡$c !!!""""""""""""""""""""""""""""""!!! NC›ZJÍ[KÎ\LÏ]LÏWEÐQ?ÏK9ÌD2ÇG5ÌH6ÏI7Ó(!W !!!""""""""""""""""""""""""""""""""""""""" !,±—ÿ¥‹ÿ”zÿƒiÿ[Aÿ!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""95.h4-f4-f%!F$ !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!]W‹lešLEzKDzD=sOH~IAxHAxHAyD=vE>vCMBšQFžRG¡@54)…  !!!!!!!!!"""""""""""""""""""""!!! NC™]MÎ`OÐ^NÐWFÏP?ËL;ÉF5ÅE3ÆF4ÈG5ËI7Ñ+%Y !!!"""""""""""""""""""""""""""""""""!!! WLª‘ÿŸ†ÿŽuÿ~eÿY@ÿ!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" (#LD:’E:’D9D9C9C8ŒC8‹:1q !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! d]‘{t©d^“VO„JDyQKIByF?vD=uC“_OÍaQÒ\LÑRBÉJ:ÃG5ÂH7ÅH6ÇI7ÊH7ËP>Õ-'X  !!!!!!!!!!!!!!!!!!!!!!!!  –䣋ÿšÿŠqÿ{bÿX?ÿ!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! 7/lD9’E:’E:‘D:E:D:D:C9ŒC9Š>5|  !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!!!! QJ~sl¡}v«a[^WUN„QJOHIBzB;rD=vG@x !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! !:OD›ZO§cX°aV°VK¦H=™  C9‹YJÉZJÌWHËP@ÅH8¿G6ÀG6ÂG5ÄH7ÇM;ÎUCÔ.(W  A6‚¨ÿž†ÿ”|ÿ…mÿw_ÿV>ÿ!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!/)\C8’C8‘D9‘E9‘E:E:E;D:D:‹C9ŠF<Œ?7} !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!70dZTˆ€y®qjŸ|u«zs©{t«}v­tm¥e^–]VŽTM… !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! 9G<’H=”H>–TI¢UJ¤J>šG=   A7ŠL<»N>¿PAÃO@ÃO?ÄM<ÄK:ÄJ9ÅSAÏYGÖ`N×2,Y  ( `q[ù ‰ú—€ûŽvûhûr\üT=û!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!B7’B8‘B7C8D9D9E;ŽE;ŽD:D:‹C9ŠE:ŠE;Š1!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""   B#PB;pIBxUO„SL‚SL‚XQ‡XQˆWP‡^W^V!2 !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! ";I>”>3Š5+‚I>–UJ¤RG¡TI¥KA’ A7‰G8´D4³E6¶M>ÀRBÆP@ÆN>ÅSCÌ_MÚgUÝm[Ý1+Z( ]N7îu_ô™‚õ‘{÷‰r÷|e÷oY÷T=÷!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" !ÂQAÆWGÎXGÍeTÓ`NÖ*$T=I8ÁF1âS=ïxbï’|ðŠuñlñvañlWòR=ð!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! 70lE:“C8‘C8B7B8D9E:ŽD:ŒD:‹B9‰B8‰?5„D;‰C9† !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!61TG@s=7j/(\-'[81e<6kA:oVO…QJLE|B;rJC{@9q?8p71]  """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! 9bW¬WL¡I>•ND›ODœQE MBJ?›H=™C8•>2‘7-y.'];)3*z>/©@1«B3°C4²C4³F6¸J;¾RAÅTCÂUEÈUDÏ,'V-'[,%[N?«XFÕVAçH4ÞB-ÙVAì|fì‹wì…pí~hír]íiTîQ=ë!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! 91nG<•E:‘F;’@6‹G<‘F<@5ˆOE–@6‡<2ƒE;‹KAJ@>4‚ !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!%$4+((%<83U1,NMFyG@rICvKExIBvB;o;4h>8lHAvZS‰mfœaZOH70g=6n>7oJC{B;t@9r>6p-(O,'O(#D,---  """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!,(D`U©MB˜H=“K@—OESH¡K@™C8“@5?3‘?3‘@4”B7—C7™E9œF:žI<¢J=¤K?§M@©NA¬RE±QD±NA¯F8©<. ;, <.£;,£9+¢9)£7(£8)¦>.­E5¶L<¾RBÀXHÈSCÉN>ÆI9ÃK:ÆN=ÊO>ÎM;ÍC2ÄH6ËI7ÎJ8ÏM:ÔO=×TAÜ[HÝ^Kà\HâZFã[GåZFåP<âC/Ö>*ÑZEè~iè‡rç€léyeéo[éfQéP<æ !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! :2nE:’A6C9K@–ND˜H>‘9.D:‹C9ŠMB“TJ™QH•_V£WMš """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 51QOIyHBsE?pNHyJCu@:lHAsMFxNGzF?r@:nB;o:3g=6jRKc\’b[‘IBxB;rA9pOHD=uA:rG@xD=v@9s>6p=5p?8sC;wF>zD—@5@5D8•E9—E9˜D9˜G:œH<žI= I=¡J>¤K?¦M@¨NB«QD¯L?¬H;©B4£:,œ;-Ÿ@2¥A3¨=/¥9+¢6'¡:+¦B3¯K<ºQB¾QB¿J;½F5ºC3¹E5½J:ÃP>ÊUDÑUDÒI8ÈE3ÅD3ÆJ9ÍO=ÓR?×TAØ\IÚZGÜZFÞYFàXEáYEãN:ÜB.ÐA-Ñ]Hã~jã‚nä|håuaålXåcPåO<á!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! .(PMCšVK¡eZ¯]S§bX¬dZ­QG™TIšSI™[Q WM›XNœf\©RJ… !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!3.NGAqA;l@9jGArG@rC¡J>¡K?¤L@¦M@¨NAªL?©K=¨L>«H;©C5¥D6¦I;¬H:­E7«D5«C5¬I:´PA»WGÂXHÁP@¿D4µ?/±@1´H8¾M<ÄN=ÆN<ÇN<ÈI9ÆD2ÁD2ÂL:ÌSBÕTAÖUCÕ[IÙWEØWDÚUCÛUBÛVCÞK8ÖB.ÍF3Ò_Kà€là}jàyeár^âjVâbNáO;Ý !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! `V¬OE›MB—E:VLŸtj½xn¿tj»`V¦ND“3*x&i4+w)%H!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!:6VJDtC=mA;lG@qGArC=nCyJBOH„!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 5H=[Q¤e[¯:/…A6Œ@6Œ?4@5ŽC8’E:•E9•E9–F;™K?žK?ŸK? K?¢L?£L@¥M@§K>¥L>§J=§M?ªK=ªF8¦E8§F8©B5¦G9¬J;°N?¶RC»WHÂ[KÂSDÀM>»D4³>.¯A1´H8¼M<ÂL<ÂH8¿E5½F5ÀC2¾F4ÂN=ÌUDÔTBÓVEÒZHØVEÖVDÙTBØR@ÖP>×H6Ï?,ÇH4ÐaOÝlÝ{gÝtbÝo\ÞgTß_MÞM:Ø  !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""  5-g5+€2(}cd5+}B8‰NC”E<‹E;Š;1!d%h  !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!% .,---+*!0 /++#!2!0,-$"4# 3,./" 2.0 10 1000 1 2!3&$7 !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" ,2,(E 98 99 : : ; ;"=%!A$ ?$ @# @$ A$ A$ B$ A#B$ C#B$ D$D!A"B#D!B%F&!H'#J)#L*%M)#M(#M("L#H ED!G&!M)#P*%R*$Q,'T("Q%N*$S2,[2-\.(V+%U*$U-'X+%V)#V*$W(!T#P'!T1*Y93Y71Y6/Y3-Y3,[1+[.([!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! >5€SHœE;Ž2'z$l^$i&k7-{?6ƒLB5  """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""  !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!  JA‚ND—H>@6‡;1‚UJšWMœXNœVL™"8  """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""  !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!! ":?9oNC”F<Œe[ªVOŒ1-O """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!!!!  !!!!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!  !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!  !!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!!!!""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!!!! !!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""!!!!!!!!!!!!!!!!!!"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""ltris-1.0.19/src/gfx/blocks.bmp0000664000175000017500000003416612140770047013226 00000000000000BMv86(ð@8œ œ ?B°))’.#€``\`\```\DD8DPDD?°E)’)+#€``\`\```\DD8DPDDÇË˨¨¨¨œœˆˆ__Y__Y_SS__Y_SS__Y__Y__Y_SSCHNCHNCC>CHNYNHCHNCHNÒÔ¹¼±´–˜`X`XZ\`XZ\`X`X`XZ\¹¼”€HdtOtO^`PC^`pi;DPC^`;DPC^`;DPC;D¨§rŸŸ<.eadW#PP#PP`ZPI`Z`am­.J}7g7g=d7g7g@o8`8`8`8`D8`7gDDDÉ×xÉ×xÈÎ!¬pipiHdpipipx^`^`^`^`;D^`pi;D;D;DŽÁ¾ŽÁ¾W˜˜Ajd`a`adW`a`a jd`Z`Z`Z`Z:22.22.22.22."&22.:66"&"&!%ÉsÃÉsú0¨¬upYpYdbpYpYxe`J`J`J`JAD`JpYADADADÿÿÿøøøíííèèèééééééèèèçççßßßÚÚÚÚÚÚÚÚÚÙÙÙÚÚÚÚÚÚÙÙÙÚÚÚÖÖÖ©©©”””ŠŒÝŠŒÝa_É@@«\YÐs…ôî—™ò¨¦õhf×\YÐ\YÐ}sàhf×}sà\YÐQF½d``”협è•bÔ`@ª@ZÒW}ê©î—ò›¦õ¦eÚcZÒWZÒW{àseÚc{àsZÒWO½Fd`[äååäååØ×ÕÇÇÇääâéóûøøøùúúüüüëêèääâääâñîîëêèñîîääâ×ÏÏSl___Y^^X–ØÙ”ÔÕjÃÂÎÐ\ÍË~Ûé˜âã¡çè¯ììpÍÌ\ÍË\ÍË€ÒÓpÍÌ€ÒÓ\ÍË5ÌÎdY`X`Xò——ò——Ûhb«@@ÒYWÝŠ£îò——ö¥¥ÛhbÒYWÒYWännÛhbännÒYWÃ@@d `YŠ³ÝŠ³Ý`Ë@m«ZŒÏs³ô¸î—Äò¦Íõf–×ZŒÏZŒÏtœÞf–×tœÞZŒÏIsº=d8`8`äå âãŸÌÍmÎÐÍÏZÈÖ‘âã˜æç¢ìí®ÎÏnÍÏZÍÏZØÕ{ÎÏnØÕ{ÍÏZÙÓ*Hd^`\^ªÈɪÈɉ­ªW“”¨§‘ÃÖ­ÍδÔÕ¿ÛÜŒ±®¨§¨§›¸¸Œ±®›¸¸¨§j˜™dW`Z^X¸ºº¸ººžœ™vvv—–”ž²Ê¾¾¾ÄÆÆÏÎ΢ —–”—–”®¦¦¢ ®¦¦—–”†~~*:222.//+ÙÏÙÏË`µ¿,¨Î[ºÚƒäê‘Üíœâò©ç×fÀÎ[ºÎ[ºàsÊ×fÀàsÊÎ[ºË8ªdb`J`JÿÿÿÿÿÿóóóûûûÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÜÜܲ²²”””«Þ§§ãœšã<<§<<§—™ò—™ò¨¦õ¨¦õ—™òîî—™ò¨¦õîÝôþˆë€t[¯ä›©ä¦™á™;¥;<§<—ò›—ò›¦õ¦¦õ¦—ò›îî—ò›¦õ¦îÝþû„ï„€tUèæäççççççÂÂÂÂÂÂùúúùúúüüüüüüùúúøøøøøøùúúüüüøøøþÿÿõøõˆˆYY\PP¥×Ó­ÝÜ¡ÙÙËÍËÍ¡çè¡çè¯ìì¯ìì¡çè˜âã˜âã¡çè¯ìì˜âãÝýþãà–˜rtXZ쩜꯫𡡧<<§<<ò——ò——ö¥¥ö¥¥ò——îîò——ö¥¥îùâóë’ˆ€tUŸ¹Ü§Ç㙽ák7g@m«?o°IsºIsº::66vvvvzz†~~†~~rrrrrrvzz†~~vvvvvvÄÆÆž²Ê^VV2**..*èÜçèÜèæ»áxepY¿,¨¾1¬Ë8ªË8ª»(¤»(¤¾1¬Ë8ª¿,¨¿,¨íœâڃ䬇\@`Jÿÿÿÿÿÿµµµ×××ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿéééÕÕÕ²²²åÜ载濿ésd@@«?B°QF½@@«<<§<<§QF½@@«@@«<<§îˆë.#PYÝçã½æ½¿è¿sd@«@?°EO½F@«@<§<<§:rrrvvvvvvrrrvvvvzzvzzrrrvvvrrr¾¾¾®®®^VV22...*æÆâèÎäã«Û”hxe»(¤¿,¨¿,¨»(¤¿,¨¾1¬¾1¬»(¤¿,¨»(¤ê‘Üà{Ѭ‡`J`Jÿÿÿÿÿÿ²²²çççÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿèèèÓÓÓ²²²àÏçÄÄç³Íës l?B°?B°<<§<<§QF½?B°@@«@@«<<§03Ÿ—™òj~å.#`UßçÏÄçijêèsl?°E?°E<§<<§:vvvvvvŠnjrrr†~~†~~rrrrrrfjjfjj¾¾¾®®®^VV22...*èÑãçáæéØè˜yxe¿,¨¿,¨Ñ"•»(¤Ë8ªË8ª»(¤»(¤°°ê‘Üà{Ѭ‡`J`Jÿÿÿÿÿÿ´´´ÙÙÙÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿéééÆÆÆ²²²ÙæèÊßè¿¿ès o?B°<<§<<§?B°QF½?B°@@«03Ÿ03Ÿ03Ÿî||ç))’`YÙèæÊèæ¿é¿so?°E<§<<§:vzzrrrrrrvzz†~~vzzvvvfjjfjjfjj¾¾¾²²²^^^22...*ãÚçßËççÁã„oxe¾1¬»(¤»(¤¾1¬Ë8ª¾1¬¿,¨°°°ê‘ÜâÓ©’`J`Jÿÿÿÿÿÿ´´´ØØØÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿèèèËË˲²²½½æ½½æœšâ6 l03Ÿ<<§<<§@@«?B°?B°<<§<<§<<§<<§—™òî.#`Y½æ½½æ½šâš3‘l0Ÿ6<§<<§<@«@?°E?°E<§<<§<<§<<§<—ò›î+#`_èèèèèèæææ¨Šƒlee´¹¹ÂÂÂÂÂÂÇÇÇÇËËÇËËÂÂÂÂÂÂÂÂÂÂÂÂùúúøøø¨œœ__YXXRÁâãÁâã¡ÙÙ¬¥npÉËËÍËÍÎÐÒÔÒÔËÍËÍËÍËÍ¡çè˜âã±´`X`X潽潽ᗗŽlš55§<<§<<«@@¬CC¬CC§<<§<<§<<§<<ò——î’!!`\½Öæ½Ö昼à.J}7g0bŸ:RFBRFBfjj†~~^VV22...*èÜççÖæã«Û”h`J„o˜y„o”h„o„o”hxe”h”h°Ë8ª¬‡`J`JÿÿÿÿÿÿÁÁÁ»»»×××øøøÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿâââÕÕÕÕÕÕ¶¶æÚÕèrrÕ.# lsss i k jmn h}))‘€ l g¶æ¶ÚèÕrÕr+#lsss€loossl€)’)€loèèèéééÞÞÞ›f__tttuuuuuuˆg``gnggnguuuuuug``‰‚‚¤¤¤Ž‡‡leecic¼áá׿æ}ÈÉ©¬ik|~|~|~‘jkupwr‚„‚„np–˜¹¼–˜npxsç··èÕÕÓqq†djjjvej k qsl€’))€lj ¶ÑæÖàçqÓ&J3_(@ € À@ >"€€  €"F€  #ïœÇq‡r/óè‰Æ"ú(œÈœ!Â"ˆœ ÀëiĉĢr(œ±¨<1¢ˆ/†!€*r© ˆˆ0 Pˆ"(ˆB ‚$¢J"ˆ‰$‚(¢‚©""%6ˆˆ@,¢šˆ€¤"¨¢ÊhJe*Q¤ @€>)J€@Eˆ„ø,ˆˆ #á³ä J&ˆ(‚)¢‚*"%*P„@è ‹ä"ˆ€¸"¨¢Š(B%*"b €"€p„@O¾àˆƒ “+q¢@ˆª' KÏ ø0‚ª¢ò/"%* ‚ @,¢š/"È€¤"¬¢Êl B(¢R! `…>¡J@EŠ€„RÈŠg#áš$ J ˆ(ƒl¢Š( "(¢QA@H€Ëiı¢#K±«ò(¢Š/„ ‰"…rª ˆˆQˆ‚2Š""‰D¢J"ˆ$‚(¢Š(¢"(¢Š €E€€ @ J€…!$ ‡>ã>qÀpóâ‚(œñÏú(¢Š/œÂ€€ `@!„ª ltris-1.0.19/src/gfx/Makefile.in0000664000175000017500000002635312233753072013317 00000000000000# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = src/gfx DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc21.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intdiv0.m4 \ $(top_srcdir)/m4/intmax.m4 $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes.m4 $(top_srcdir)/m4/inttypes_h.m4 \ $(top_srcdir)/m4/isc-posix.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/longdouble.m4 \ $(top_srcdir)/m4/longlong.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/printf-posix.m4 \ $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/signed.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ $(top_srcdir)/m4/wchar_t.m4 $(top_srcdir)/m4/wint_t.m4 \ $(top_srcdir)/m4/xsize.m4 $(top_srcdir)/acinclude.m4 \ $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GENCAT = @GENCAT@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_WPRINTF = @HAVE_WPRINTF@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGMERGE = @MSGMERGE@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ POSUB = @POSUB@ RANLIB = @RANLIB@ SDL_CFLAGS = @SDL_CFLAGS@ SDL_CONFIG = @SDL_CONFIG@ SDL_LIBS = @SDL_LIBS@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ buf_flag = @buf_flag@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ dis_flag = @dis_flag@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ hi_dir = @hi_dir@ hi_inst_flag = @hi_inst_flag@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ inst_dir = @inst_dir@ inst_flag = @inst_flag@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ locdir_flag = @locdir_flag@ mandir = @mandir@ mixer_flag = @mixer_flag@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sound_flag = @sound_flag@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = back0.bmp back1.bmp back2.bmp back3.bmp back4.bmp back5.bmp \ f_small_white.bmp f_small_yellow.bmp f_white.bmp f_yellow.bmp f_tiny_black.bmp \ menuback.bmp quest.bmp blocks.bmp balloon.bmp balloon_peek.bmp logo.bmp all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/gfx/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign src/gfx/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-data-local install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic distclean \ distclean-generic distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am \ install-data-local install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ pdf-am ps ps-am uninstall uninstall-am install-data-local: $(mkinstalldirs) $(DESTDIR)$(inst_dir)/gfx @for file in *.bmp; do\ $(INSTALL_DATA) $$file $(DESTDIR)$(inst_dir)/gfx/$$file;\ done # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: ltris-1.0.19/src/gfx/f_yellow.bmp0000664000175000017500000012436612140770047013573 00000000000000BMö¨6(ÀÀ¨& &  ¶º ¶º ¶º ¶º ¶º ¶º ¶º ¶º ¶º ¶º ¶º ¶¶DêêAßß5ÅÉ5ÅÅ5 ¶¶ ¶¶ ¶¶ ºº ¾¾ ¶¶¨©‡Š‡‡¤¤5ÂÂ5ÅÉ5ÂÂ5ÅÉ5 ¶¶ ¾¾ ßß êê êêÅÉÉÉÅÅÉÉ ¶¶ ºº#ÔÔÅÅ ÉÉ ¶º ¶ºÍÐ2ææDêêDêêDêê º¾&ÉÉ.ÅÉ5¾¾ ¶º ¶¶ ¶¶ ¶º ºº ¶¶ ¶¶ ¶¶ ¶¶ ¶¶ ¶¶ ¶¶ ¶¶ ¶¶ ¶¶5ÅÉ5ÅÅ ¶º ØÛ™xx5ÂÂ5ÅÉ º¾ ÔÔHêêDãã5ÂÂ5ÅÉDêê:ÍÍGÅÆUÍÏWÐÐWÐÐ5ÂÂ.ÅÉÅÅÉÉÅÉÅÅ ¶º ºº*êê#ÛÝ ÐÐ ¶º ¶¶ ¶¶ ¶¶ ¶º ¾Â ºº ÐÐ=êêDêê ¶¶ º¾.ÅÉ ¶¶ ¶º5ÂÂ5ÅÉ ¶º ºº¤¤‡Š5ÅÅ5ÅÅ™ƒHêêDêê5ÅÅ5ÅÅDææ2ÉÉ ºº ººÉÉ5ÂÂWÐÐZÐÐZÐÐHÍÍ ¶º ºº ¶º ººÅÉÉÉÅÉÅÉÅÉÅÉ ¾¾ÂÅÉÉÅÉ ¶º ¶º ¶º ¶º ¾¾ÂÅ'êê'ãã êê ãã ºº ººDêêDêêHêêHêêDÛÛ2ÉÉÅÉ ºº ¶º™™ƒ‡•• ºº ãæ êê º¾ ¶¶ ÂÅ ãæJ³¶2¤¨J³¶LÉË`ÔÔwêêwêêwêêmææHÉËDêêDêêDêê=êê‡‡ŽŽ ¶º ¤ƒ êê ÍÍ ¶¶ ¶¶ ææ Â ¶º êê êê ÛÛ5ÅÉ5ÅÅ ºº ¶º êê êê ¶º ¶º ºº ºº êê êê êê êêÅÉ5ÂÂ5ÂÂ5ÅÉ5ÅÅ=ÐÔDêêDêêDêêDêêHêê.ÅÉ5ÂÂ'‡‡#ƒƒ êêêê êê êê ÉÉ ¶º êê êê êê êê ãã  ¶º ¶º ¶¶ ¾Â ØØêê#êê.ÅÉ5ÂÂ4ºº.«¬.«¬*ÐÒããêê êê êê ßß ÅÅ ßß êê êê ææ ŠŠ{{«« ÔÔ êê êê êê êê ¶¶ ¶¶ŠŠ{{ ƒƒ*••*’’5¾¾DêêHêêDææ:ÍÍ.ÅÉ5ÂÂ0 ¢#ƒƒ#ƒƒ2ÉÉ'ØØ ¶º ¶º ¶º ¶º ¶¶  ÛÛ ¶ºŠŠŽŽ¤¤ŠŠ êê êê ßß ºº ³´ ¶º ºº ÂÅ  ÂÅ ¾Â ¶º ÂÅ ææ=êêAØÛ5ÅÅ5ÅÉ5ÂÂ#ƒ‡*ŽŽ5ÅÅHêê9ÉÍ2¶·'‡‡#ƒƒ êê êê ¯¯ƒ‡ƒ‡ ¤ êê êêêêããHêêHêê#ƒ‡5¾Âêêêꫯƒ‡{Ž’  ÍÍãã=êê5ÂÂ5ÅÉ5ÂÂ5ÅÉ9ÐÐDãæææ ºº ¶º ¶ºxxxx{ ¶º ºº5ÅÉ5ÅÉ ¶º ºº ÐÐ êê êê Éɨ© ºº ãã êêêêAÛÛ5ÂÂ5ÅÉHêêDêê=êêÛÛ ¾Â êê êê êꊊ{{{{ ººŠŽ{{xx‡‡ êê êê êê ÔÔŠŠ{{Ž’HêêDêêDêê=ÔÔ5ÅÅ5ÂÂAÛÛDêêDêêDêêDêê#ÔÔ º¾ ¶¶ ¶¶ ¶º ¶º ¶º ÉÉ êê êê«« êê êê ÂÅ ¶º••ŠŠ ¯¯ êê êê êê êê ¯¯ ƒƒŠŠ.¨©AÐÐ2ÉÉ2¤¨.¨©2««5ÅÅ2ÅÅ2ÅÅ ºº ÍÍ êê êê ÐЃ{{ º¾ ÛÛ êê êê ¶º ºº ¯¯ŠŠ êê êê ææÅÉ5ÅÅ5ÂÂ5ÂÂ5ÅÅ2¯°*  *  2ÅÅ{{{{‡Š ßã êê êê2ÅÅ.ÅÉ«¯‡‡•• ØÛ ¾Â ¶¶™™'ŠŠ*¤¤?ØØ6¶¶ º¾ ßã   ÂÅ êê êê º¾ º¾ Ûß{{xxÐÐ2¤¨8ŠŠD’’J³¶eØØeØØLêêDêê5ÂÂ5ÅÅDêêLææ ¶¶ ¶ºÅÉÉÉLÉËUÍÏZÐÐUÍÏUÍÏUÍÏUÍÏLÉË ºº ºº ¶º ¶¶ÂÅÅÅÅÅÅÉ ¶º ¶¶ÅÉÅÅ ¶¶ ¶¶ ¶¶ ¶¶ ¶¶ ¶º ¶º'êê'êêêê êê  ººHêêDêê ¶º ³´ ßß êê ØØ ºº ØØ8ŠŠDwêêwêêoêêHÉË=ÐÔDãæDêêLêꃇƒ‡ êê ¾¾xx{{ ºº««xx êê ææ  êê êê êê5ÅÉ5ÂÂ5ÂÂ5ÅÉ ¶º ¶º ¶¶ ¶º ØØ êê ÍÍ ¶¶ êê êê º¾ÂÂ5ÅÅ=ÐÔHêêHêê5ÅÅ5ÂÂ5ÂÂ#ƒƒ*™š5 êê êê  ºº ºº êê êê ÉÉ ¶¶ ¶¶ ¶º9ÍÐ5ÂÂ5ÂÂ'ŠŽ.«¬5ÂÂÅÉêê ßß êꨩ ¶º º¾ êê êê º¾™™ƒ‡ƒ‡HêêDææ'’“'’“^êê.¤¤ ¶º ¶¶ êê ¶º¤¤{{ ãã êꤤ‡Š ¶¶ ¶º2ÅÅ5 ÂÅ ãæêê'ØØ'Ž'ŽHêêDêêAÛÛ'ŠŠ*   º¾ ¯¯ ßß êê ÉÉDêêDêê'’“2¶·'êêêꇇ   ÉÉ5ÅÅ5ÂÂ=êêßß{{’’ ¶¶ ¶º5ÅÅ5 ¶¶ ¶º ÅŤ¤mpXX êê êêêê5ÂÂ5ÅÅDããDêê#ãã  ÛÛ êê êê ¶¶ƒ ßã ÂÅ ¶º ¶¶ êê ßß º¾ ÛßDêêDêê9ÐÐ5ÅÉAØÛHêêDææ ¶º ¶¶Ž’{{ êê ææŠŠ{{ êê ÉÉLææ.¨©5¾ÂuwAØÛ'Ž'ÉÍ ¾Â ã㤤{’’ êê êê ¶º ¶º ¶¶{{ŠŽÔØ ßß êê ÍÍÅÉ5ÅÉ.¯¯{{{ êê êê5ÅÉ5ÅÉŠŠ ¯¯ êê êê««xxƒDêê<ÉÉ0 ¢. ¶º ÅÅ«««« ßß êê ÐÐ ¶¶ ³´mpxxDãã.¯¯##`ÔÔ`ÔÔiêêLææ5ÅÅ5ÅÉHêêDêêÅÉÅÉÅÉ5ÂÂUÍÏUÍÏZÐÐZÐÐ ¶¶ ¶º ¶¶ ¶¶ ººÂÂÉÉÅÉ ¶º ¶¶ÅÉÉÉ ¶º ºº'êê#ÔÔ'êêêê ææ ¾ÂDêêHêꃃ{{ êê º¾ ØØ)ƒƒ4‡ˆoêêDÛÛ5ÅÅ5ÅÅLêêLêê ƒ„ƒ‡êê êê{{{ ¯³{5ÅÅ5ÂÂ5ÂÂ5ÂÂ5ÂÂ5ÂÂ5ÂÂ5ÂÂ5ÂÂ5ÂÂ5ÂÂ5ÅÅ5ÅÉ ¾¾ ¶º ¶º ¶º êê ÐÐ ¶¶ ºº ¶¶ ¶º ºº ßß êê ÅÅ ºº¤¨’“HêêHêê5ÅÉ5ÅÉ2º¾5ÂÂ9ãã#êê ÅÅ ¶º ÐÐ êê êê ØØ ¶º ººHêêDêê'‡‡.¨©2º¾'Žêê êê êê ãã ¶º ¶º ßã êê ßß ¶¶ ¯³••HêêDêê5ÅÉ5ÅÉ^êê'‡‡êêêê ¶º ¶¶ º¾xx ÅÅ êꨩ ¶¶ ¶º5ÅÅ5ÅÉ ¶¶  êê êê4ºº4ººDêêDêê5¾Â5ÅÉ ØØ  ‡‡êê ÍÍ5ÅÅ=ÔÔHêêHêê'‡‡'’“HêêHêꙨ©ƒƒŽŽ*™š.1êêÛÛ ¶¶ ¶¶ ¶¶ ºº5ÅÅ5ÅÉ ºº ºº «¯’’XX ÐÔ êê5ÅÅ5ÅÉ2º¾.«¬ ¶º ººêê ÔÔ êê ØØêê ææ™‡Š'êêDêê.#ƒƒHêêHêê••{{’’ êê êê Ûߨ© êê ßß=êê*™š5ÅÉ#{{Hêê'ŠŠ.ÅÉ5ÂÂêê êê{{xx êê êê ßã ¾¾ ¤ ¶º••‡‡ êê ÉÉ5ÅÅ5   ÍÍ êê5ÅÅ5 êê êꎒƒƒDææAÐÐ.¨©2«« ºº ºº ÍÍ ãæ ßß ßß ¾¾ ³´ ÐÐ ææ êê ÔÔƒ{{Aßß5ÂÂwêêHêê?ØØ5ÅÉHêêHêê ¶¶ ¶ºÅÉÅÉÅÅÅÅÉÉÉÉÉÉÅÉGÅÆZÐÐUÍÏ ¶º ºº ¶¶ ¶º ¶º ¶º ÂÂÂÅÉÉÅÅ ¶º ¶ºÅÅÅÉ ¶¶ ¶º*êê'êê'ŠŽÅÅ ææ ÅÅHêêDêê{{{ ¶º ¶º êê êê ÔÔ™{{{ƒ ƒ„wêêiêê5ÅÉ5ÅÉ?ØØDêê ƒ„ ƒ„'êê#êê{{xx‡‡{{ ¾¾ÅÉ.ÅÉ5ÅÅ5ÅÅ5ÅÅ5ÅÅ5ÅÅ5ÅÅ5ÅÅ5ÅÅ5ÅÉ5ÅÅ&Éɾ ºº ¶º ¶º ºº êêÔØ º¾ ºº ¶º ÐÔ êê êê êê êê ææ{DêêDêêHêê9ÐÐ9ÉÍDêêÔØ ºº ¶º ¯³ ¶º ¶º êêêê2««5¾¾2º¾'Žêê êê êê êê ¶¶ ¶¶ ºº ÅÅ êê ææ ¶¶ ¶¶1êêHêê5ÂÂ5ÂÂ^êê#ƒ‡DÛÛ5ÅÅ1êêtt ØØ ÔÔ«¯AA ÍÍ{{ ºº ¶º™’’ ¶º ¶ºHêêAØÛ êê êê ºº º¾5ÅÉ5ÂÂ5ÂÂãã ¶¶{ƒ‡ êê êêÅÉ2ÅÅDããHêê#ƒ‡'ŠŠDããDêê º¾ ¶¶ ¯¯'‡‡#ƒ‡Dêê1êê ÉÉ ¶º ¶º5ÅÅ5 ¶º ¶º ÅÅ ÅÅ êê ÛÛ ³´’’ ºº ãã5ÅÉ5ÂÂ.«¬'‡‡ ºº ¶º êê êêêê ææ ¶¶ êê iimp.ÛÛ ææ êêxx êêêê#ƒƒ#ƒƒHêêDêêxx{{ ³´ êê êê êêêê êê êêÅÅ'‡‡Dêê#ƒƒDææ'‡‡5ÅÅ5ÅÅ êê êê••{{ ØØ êê êê ãã ¶º ¶¶ŽŽ{{êê êê5ÅÅ5 ¾Âƒ ¤AØÛ2ÅÅ êê êê ¶º ¶º5ÂÂ=ÐÔDDDßßDææ ¶º ¶º  êê   ³´ êê êꇇ™Dãæ<ÉÉêêDêêHêêAÛÛDææHêê ¶¶ ¶º ¶º ¶º ºº ¾¾ÂÅÅÅÅÉZÐÐZÐÐUÍÏ5ÂÂÅÅÂÅ ¶¶ ºº ¶º ¾¾ÂÅ ¶¶ ººÅÉÉÉ ¶º ¶º ¶¶ ºº ºº ¶º ¶º ¶º ¶º ¶º ¶º ¶º ¶ºÂÅÅÉÅÉ'ææ'êꃇ‡‡êêêêAÛÛHêê{{{{ ØØ ºº êê êê{xx'êê*êê5ÅÅ5ÂÂ*  AÐЇ‡‡‡'ææ'êꤨ‡‡ ‡‡ ¾Â ¶º ¶ºÂÅ ¶º ¶¶ ¶¶ ¶º êêêê ÔÔ ¶º ºº ¶º ÍÍ êê êꎒ{ ÉÉ#ããHêêHêê5ÅÅ=ÔÔêê ææ ºº‡Š êê ÔÔ ºº ¶º êê êêDêêDææAØÛ2ÉÉ5ÂÂ5ÂÂ2¯°Dææ*êê êê êꇇ‡Š êê êê êê ß㠾 ææêêSÔÔ#{{AÛß.¨©Lææuw ÂÅ ÉÉ  êêOO ãæ{{ ºº ¶º ææ Â ¶º ºº ºº ¶¶{HêêHêê{{‡‡ êê êê êê êê ÔÔHêêHêê?ØØ5ÅÅAÛÛ*¤¤ êê êê ºº ¶º2ææDêê'’“*¤¤5¾¾5ÅÅ9ÉÍDãæÂÅ ¶º’“'ŽHêêêê ¶º ¶º5ÅÅ5ÅÉ5ÅÉ ºº ¶º ¶º ØØ ¶¶ ¾ÂÛÛ&ÉÉ.¨©'ŠŠ>ÅÅ:ÍÍ'ÍÍ º¾ êê êê ÛÛ êê2««DêêÉÉ ææŽ’{{ êê êê*#ƒƒDãæDêê™™{ êê ÔÔ ÛÛ êê êê êê ãã êꊊ’’AÛß*™š5³´*••5ÅÅ5ÅÉêê êê ¶¶ ¶º º¾ ÔÔ êê êê ¶º ¶¶  ŠŽ êê êê5ÅÉ5ÅÉ2ÅÅ2ÅŨªHêêAÛÛ ÔÔ êê ÉÉ ºº5ÅÅ2ÉÉAÛÛ:ÍÍ5ÂÂÅÅ ºº ¶¶ ææ êꃤ¤ ¾¾ êê êê êê  ¶ºAÛÛ5ÂÂ{ææwêê1êê1êêDêêDêê ¶¶ ¶º ¶º ¶¶ ¶¶ ¶¶ ¶¶ ¶º ¶º ºº ¶º º¾UÍÏUÍÏUÍÏUÍÏUÍÏÉÉÅÉÅÅ ¶º ¶¶ ºº ¶¶ º¾ÂÅÅÉÅÅÅÉ ¾¾ ¶¶ ¶¶ ºº ¶º ¶º ¶¶ ¶¶ ¶¶ ¶¶ ¶¶ ¶¶ ¶¶ ¶¶ ¶ºÂÂÅÅ#ææ'êê ƒ„ ƒ„'êê#êê'ŠŠ4ºº{{{ êê êêêê ƒ„ƒ‡'êê'êê*ÐÒ2ÅÅ5ÅÉ#ƒƒ'ŠŽ¯±ƒ‡'ææ'êê'êêææ ØØ êê êê êê ÔÔ ÂÅ ææ êê ¶º ¶º ¶¶ ¶¶ ¶º ¶º ºº5ÂÂ.ÅÉ5ÅÉ5ÅÉ5ÅÉ5ÅÉ5ÅÉ5ÅÉ5ÂÂ5ÅÉ5ÂÂ2ÅÅ ¾¾ ¶¶ ºº ¶º êê êê êê ¶¶ ¶º ¶¶ ºº êê êê ¯¯«« ¯¯ ¶¶ ¶¶ ¶º'êê=êê5ÅÉ5ÂÂHêê=êê ¶º‡‡xxŽŽ ÐÔ êê ææ ÉÉ ¶º ¶¶ ¾¾ ÔÔ5ÅÉ5ÂÂ5ÂÂ5ÂÂ5¾Â.«¬2«« ÅÅ ßß{{xx êê êê êêêê ÂÅ êêOÅÅmp'••5ÂÂ*™š2¤¨5ÅÅ#{{ÅŠ êê êê ÂÂ{{ ¶º ¶º êê ææ ¶º ¶º‡‡oêêiêꃙ ÔÔ êê êê ÔÔÛÛDêêDêêDêêDãã6¶¶ ¶º ¶º êê êê ¶¶ ¶¶ ÂÅÍÍDãã:ÍÍ5ÅÉ5ÅÉ2ÉÉDãã5¾¾'’“ ÛÛ ³´¨ª'ŠŽ1êê ææ ¶º ºº)ÅÈ5ÂÂ)ÅÈ ¾¾  ¯¯ êê ææ ¶º ¶¶ ÉÉ êê êê.«¬.«¬2¯°9ÂÂ9ÂÂ2ÉÉÂÂ ØØ êê êê ææêê=ÐÔDêê.«¬*™š«¯ ¯³ ºº ßß êêÛÛ.ÍÍ5ÅÉ5ÂÂ?ØØ2ÅÅÅÅ êê êê ¶º ÍÍ êê êê ¾Â æætt ii••³³5ÅÅ>ÅÅOÅÅ5³´5ÅÉ5ÂÂ5ÅÉDææ#êê ¶º ¶º ¶¶ ¶¶ êê êê êê ¶º ¶¶ ¶º ¶º ßß êê êê5ÂÂ5ÂÂ.ÅÉDêêDêê5ÅÉ5ÅÉ ¯³ ¶¶HêêHêê ºº ØØ ææ ÍÍÂÂ5ÅÅ>ÅÅ>ÅÅ5ÅÅ5ÅÉ ÅÉ êê’’ êê êê º¾ ßß ÅÅ ¶º êêêêÐÐÂÅ!ßß êê êê9ÍÐ ¶¶ ¶¶ ¶¶ ¶º ºº ºº ºº ºº ºº ¶¶ ¶¶ ºº ¶º ¶¶ ºº ºº ºº ¶¶5ÅÉUÍÏWÐÐÅÉÅɾ ºº ¶ºÅÉ ¶º ¶º ¶º ººÅÅÉÉÅÉÅÉ ¶º ¶º ÂÂã㇇‡‡'êê'êê#ƒ‡#ƒ‡{{{{ ØØ êê êê êê êê ÂŨ©ƒ‡‡‡ ƒ„ ƒ„ŽŽ½Á ææÍÐ4ºº'ŠŠ#ƒƒ¤¨‡‡'ææ'êê'êê ¶º º¾ êê êê êê ¶¶  ææ ¶¶ ¶¶ ¶¶ ¶¶ ¶¶ ¶º ¶ºÉÉ2ÅÅ5ÂÂ5ÂÂ5ÂÂ5ÂÂ5ÂÂ5ÂÂ5ÂÂ5ÅÉ5ÅÉ5ÂÂ5 ¶º ¶º ÛÛ êê êê ÔÔ ¶º ºº ãã ÔÔ º¾ ¶º ¶º êêêê'’“'ŽHêêDêêææ ºº ¶¶ êê êê ØØ ¶¶ ¶ºDææ=ÔÔ'ŠŠ#ƒ‡ ßß ¶º‡‡‡Š ØÛ êê êê êê ºº ÍÍOÅÅuw'’“..Lææ5ÅÅ#ƒƒOÅÅ* êê== Í̓ƒ ¶º ¶º êê êê ¶¶ ºº º¾'ÉÍwêêêê ¶º ºº ºº ÔÔ êê ÔÔ ¶º ººÔØ5ÂÂHêêHêêDææ ¶º ¶¶ ßß êê ÉÉ ¶º ¶¶HêêDææ5ÅÉ5ÂÂ5ÅÅ9ÉÍHêê5ÂÂ'‡‡'‡‡êê êêƒ#ƒƒDêêêê ãã ¶º ¶º º¾&ÉÉ5ÅÅ.ÅÉ ¶º   ÛÛ ææ••{{ ÍÍ êê êê5ÂÂ5ÂÂ5ÂÂ.«¬5ÅÅ5ÂÂÅÉ º¾ ØÛêê êê'êêDêêDêê5ÂÂ5ÂÂ'••#ƒ‡'ŠŽ=ÔÔDêê ¶¶ ¶¶ ¶¶ º¾ ßß êêêê ãã5ÂÂ5ÂÂ5ÂÂDêêDêêAÛÛ9ÉÍ ¶¶ ÂÅ ßã êê êê êꎒ ßß êê êê êê êê ¤••™™pp‡‡ ÂÂÛÛ9ÂÂ9ÂÂ5ÂÂ5ÂÂ5ÂÂ5ÂÂ5ÂÂ9ÐÐ ¶¶ ¶¶ ¶¶ ¶¶ ÍÍ êê êê êê ÔÔ ºº ¶¶ ¶¶ ¶¶ ææ êê êê ÍÍ ¶¶¾Â2ÅÅ5ÅÅAßßDêê5ÂÂ5ÂÂ5ÂÂ5ÂÂÅÅ ººÛÛ'êêDêêDêêDêê?ØØ5ÂÂ2ÅÅ ¶¶ ¶¶ º¾ êê êê êê ¶¶ ¶¶ º¾ÅÉ5³´9ÂÂ9ÂÂ?ØØDêêDßã2ÉÉ5 ¶º ¶¶ ØØ êê««  ¤¨ êê êê êê ÅÅ ¶¶  ææ êê ææ  ¶¶ ÍÍ êê êê êê ææ  ¶¶  ãã êê êê ¾¾ º¾ ¶¶ ¶º ¶º ¶º ¶º ¶º ¶º ºº ¶º ¶º ¾¾ÅÉWÐÐUÍÏHÉË)ÅÈ º¾ º¾ ¶º ¶¶ÅÉÅÉ ¶º ¶º ¶º ººÉÉÅÉÅÉÅÉ ¶º ¶¶ ¾¾ ã㯱'ŠŽ#ãã'êê)ƒƒ)ƒƒ«¯ êê êê êêêê êê ÐÐ’’ƒ‡êêêêææ½ÁÅÉ'êê ºº ¶º êê êê ¶¶ ¶º ¶º ¶¶5ÅÉ5ÂÂ5ÂÂ5 ¶º ¶º ¶º ¶¶  ßß êê êê êê ãã  ¶º ¶º ºº ¾¾ êê ÉÉ ¶¶ ¶¶ êê êê9ÐÐ5ÅÅ#ƒ‡#ƒƒ2ÉÉ?ØØDêê1êê êê êê ¶º ¶ºêê#êêHêêDêê*••'‡‡ã㨨 ÅÅ ¶¶ ºº ÍÍ êê êê ¶º ¶ºOÅÅ*¤¤*¤¤^êêAÛß2¶·9ÂÂ9ÂÂ5ÅÅ2ææææ ºº ¶¶ ¶¶ ææ êê ÅÅ ¶¶ÅÅ5ÂÂiêêoêê ¶º ¶¶ ¶º º¾ êê êê ¶º ¶ºHêêDêê5ÅÅ=ÔÔDêêDêêÉÉ ¾¾ º¾ Ûß êê êê™™Ž’êê'êê5ÅÅ5ÅÅ#ƒƒ*  HêêDêê'’“.«¬#êêêꊊ’’5ÅÅ9ÉÍ#êê êê ºº ºº ¶º ºº5ÅÅ5ÅÅ ¶º ¶º ¶¶ ¶¶ ¶º ¶¶xx{¾¾ ØØ*  'ŠŠ êê êê{{ŠŠ{{êêêê ºº ÅÅ ÐÔ êêÅÉ ººÂž ¶º ¶º ¶º ¶º ¶º ¶º ¶º ¶º ¶¶ ¶ºZÐÐZÐÐZÐÐZÐÐZÐÐZÐÐÅÅÅÅÅÅÉÉÅÉ ºº ¶¶ ¶º ¶ºÅÅÅÅÅÉÅÉÅÉÉÉÅÅÅÅ ¶º ¶¶ ¶¶ ¾Â'ØØ½ÁÅÉ'ÉÍ'êê'ØØ'••8ŠŠwêêZÐÐH¨ª'ÉÍ êê êê êê êê êê êê ³´ 'êê#êêêêÛÛÅÅÅÉ*êê'êêÉÉÂÅ êê êê ¶¶ ¶¶5ÂÂ5 ¶¶ ¶º ¶º ¶¶ ¶¶ ¶º êê ãã ¶º ¶º êê êê ¶º ¶¶ ÉÉ ææ êê êêêê2ææ'’“'Ž5ÅÉ5ÂÂ5ÂÂHêêHêê.ÉÍÂÅ ÛÛ êê êê êê ºº ¶¶ ¶º º¾ ÐÔ ææHêêHêê2º¾2¶·AÛÛ*¤¤ êê ÐÔ ¶º ¶º êê êê ¶º ¶º'ÍÍ*¤¤**Zêê2ÅÅ9ÂÂ9ÂÂ.¤¤..Dãã2ÅÅ ¶¶ ºº ÂÅ ææ êê ÐÔ ¶º2ÅÅ?ØØHêê ÔÔ ºº ¶º ¶º êê êê ¶¶ ¶º êêêê1êê?ØØ5ÅÉ9ÐÐHêêDãã9ÉÍ ºº ¾¾ êê êê ³´«¯ êê êê)ƒƒ#ƒ‡DææHêê5ÅÅ5ÅÉ=ÔÔDêêÅÉGÅÆ5ÅÉ5ÅÉ êê ãã ¶º ¶º ¶º ¶º5ÅÅ5ÅÉ ¶¶ ¶º ¶º ¶¶ ¶º ¶º••{{5ÅÅ.ÅÉ5¾¾4ºº êê êêHêêHêê ¶º ¾Â ¯¯ƒƒ••ƒ ÔÔ êê ¶º ¶º ¶º ÍÍ2ÅÅ ¶ºÅÉÅÅ ¶º ¶¶ ¶º ¶¶ ¶º ¶¶ ¶º ¶¶ ¶¶ ¶¶ ¶ºÅÉ9ÂÂUÍÏZÐÐZÐÐUÍÏUÍϾÂÅÅ ºº ¶¶ ¶¶ÅÉÅÅ ¶º ¶¶'êê'êêÅÅÅÅ'êê'êêÅÅ*wêêwêêUÍÏUÍÏ9ÂÂ*ÉÉ º¾ ÐÐ êê êê êê ºº ºº'êê'êê'êê ¶º ÍÍ êê êêÅÉÅÉ'ÉÍããÍÐÅÉ ¾¾ ßß ¶¶ ¶¶ ¶¶ ¶¶ ¶¶ ¶º ¶º êê êê ¶¶ ¶¶ ¶¶ ¶¶ êê êê êê êê ææ ÍÍ ¶¶ ãã êê êê êê êê#êêDãã:ÍÍ5ÂÂ5ÂÂ5ÂÂAÛÛDêêDêêDêêDêêDêêDêêAÛÛ º¾ ¶¶ º¾ ÐÐ ææ êê êê êê ¶¶ ¶¶ ¶¶ ¶¶ ºº ßßêê=êêHêêDêêAßß2ÉÉ5ÂÂ5ÂÂ9ÐÐDææDãã5¾¾2¯°2ÅÅÅÇ êê êê êê êê ææ ÅÉ ¶¶ ¶¶ ¶¶ ¶¶ ¶¶ ÉÉ ææ êê êê ÐÐ ¶¶ ¶¶ ¶¶ ¶¶ ººêêææÅÅ^êêZêê9ÉÍ5³´5¾¾9ÂÂ5¾¾<ÉÉDææDêêDêê9É; ¶º ¶¶ ¶¶ ¶¶ êê êê ææ ÅÉ ¶¶ ¶¶ ¶¶Dãã=êê êê êê êê ¶¶ ¶¶ ¶¶ ¶¶ ¶¶ ÐÐ ¶¶ ¶¶ ¶¶ ÉÉ êêDêêAßß5ÅÅ5ÂÂ5ÂÂ:ÍÍDããDêêDêêDêêDææ=ÐÔ2ÅÅÂÅ ¶º ¾¾ ßß êê êê êê ºº ¶¶ ¶¶ ¶¶ ÍÍ êê êê êê  ƒ„*5ÂÂ5ÂÂ:ÍÍDææDêêDææ:ÍÍ5ÂÂ5ÂÂ5ÂÂ5ÂÂ?ØØDêêDãã2ÉÉUÍÏZÐÐ9ÂÂ5ÂÂ5ÂÂDããDêê êê êê ¶º ¶º ºº ¶¶5ÅÉ5¾¾ ¶º ¶¶ ¶¶ ¶º ¶¶ ¶º ¶¶5ÅÉ5ÂÂ5ÅÉ5ÅÉ5ÂÂ2ÉÉ êê êêDêêDêê ¶¶ ¶¶ êê ÔÔ ³´«« ¶º ¶º ¶º ¶¶2ÅÅ ¶¶ÅÅÅÅ ¶¶ ¶¶ ¶¶ ¶¶ ¶¶ ¶¶ ¶¶ ¶¶ ºº ººUÍÏUÍÏUÍÏUÍÏ ¶ºÂ¾ ¶º ¶¶ ¶¶ÅÅÅÅ ¶º ººêê#ããÍÐÅÅ'êê'ææwêêoêê`ÔÔUÍÏUÍÏ5ÂÂÂÅ ºº êê êê ßß ÂÅ ºº½Á º¾½ÁÅÅ'êê'êê*êê ÔÔ ¶¶ ¶¶ ¾¾ ÛÛ êê êê êêÅÅÅÅÅÅÍÍÅÅ ºº ¶¶ ¶¶ ¶¶ ÉÉ ææ ¶¶ ¶¶ ¶¶ ¶¶ ºº ºº5ÂÂ5ÂÂ5ÂÂ5ÂÂÂÅ ºº ¶¶ ¶¶ ¶¶ ¶¶ ¶¶Aßß9ÉÍ5ÂÂ5ÂÂ5ÂÂ5ÂÂ5 ¶º ÉÉ ææ êê êê ææ ãã ¶¶ ¶¶ ¶¶ ¶¶ ¶¶ ¶¶ ¶¶5ÂÂÅÅ ¶º ¶º ºº ¶º ¶º ¶ºltris-1.0.19/src/gfx/Makefile.am0000664000175000017500000000060112140770047013270 00000000000000EXTRA_DIST = back0.bmp back1.bmp back2.bmp back3.bmp back4.bmp back5.bmp \ f_small_white.bmp f_small_yellow.bmp f_white.bmp f_yellow.bmp f_tiny_black.bmp \ menuback.bmp quest.bmp blocks.bmp balloon.bmp balloon_peek.bmp logo.bmp install-data-local: $(mkinstalldirs) $(DESTDIR)$(inst_dir)/gfx @for file in *.bmp; do\ $(INSTALL_DATA) $$file $(DESTDIR)$(inst_dir)/gfx/$$file;\ done ltris-1.0.19/src/gfx/back1.bmp0000664000175000017500000006540612140770047012733 00000000000000BMk6(Œ¼Ðfa a -°›ŸƒnmPGEýçéhVU¤‘ìÐÔ921œ‡ˆàÃÇ|jis^]Ô·¹—~}D:9cRM̯°‹nzt^gbMWMAJdFE0'%[:;»š¨hV[‚^g njH:@´”£™r{ħ«}V\eJBœŽQ44‰aaHBAþî÷QFKŸˆ@.7üßäjRQ®€­Ž™€bf>&+’zv˜jfŒomeJO…frF6?œy‡|_Y}jp’vu”…ej[NOšz|jRWz~|WUnsrYfpVZ¸Ž˜=47Q:?sMP[:Cfa߽̪ˆŽôÑã„bk>*,À§³N:9ɰ¹}^^þòûÌ¡ªqVNŸ~ƒQ5;sZZäÂÐ}Zf¶ˆ‰dRW/ rtnMPÈ fFK„s{xfi· ¨Q=FK-04.-~baRJK©†“‚joYF>®“–¿‘­z}fNNŠru €Š\>CoNWF27иÁ@-2º’˜R>>‹jzff{RX~ZbSB>dBKݱ¼‡jisZ_÷ÚÝ4!(Ÿz‚¾¢¡J413(,¦‡¤v|¢²€fkݾÃF68RB:]?=‰jvSBB¯ŠÐ¨¬[JR¡‚…ºš™}RQåÈÒ\NFpR^„ots_b|Z\ðÒÜþùþgAD¬ˆ˜u‚¢zv‡fkoLIÔ©´‰faH>@•jmv†qVbšv|]BB»•žÓ±Ã ¨ZFK?.-ýàî£z}ŠjofNR¼š ’rtxanZJFA21M.7·Š“qRW۸–ntu‚¡}¨†ˆfNIP>9rZU´ˆŽ~^bxbg¯”œqRQþèóˆbfhZ]sfb\JJ¬Š•´–‘r{Á–¤R>BÒ°ºQ6BX>JÁ¡®]FRvV[zfr”jr©ttgFRv{ƒvuV:9¦~„ˆff“omnsŽjiZFETBFcRR©Š‰/ !‘z†÷ØäeJIrVUXBK]BFðÊեΡ³?!)\JNº–™œvuB62ʨµ°‘½ž ˆä‘‘‘‘m‘™"ä‘ä‚ñ¼ühühO´äÇQ½½´üühǼ‘êÆ&›hhîhü´0ø$$X‘¢¢¢$$$¯‘$¢$ÇñHH™~}}}²I^×ä€ur=&jjêvvžžž Ñ=&=Ñc{cï#¬»ÞÞÓ™™Æ§"§V©8©A8V™%¯Çühhhüüh½½üQzXQ½½üühhOO´hÇîîhîO$O¢Aæ<%%SA¸4ñ¢$g$$¢‘$$}X_QX0g0OI‰F(xO0´xf==&ªjx*ÙÚfÙ*0ÙÚ2©2àpà22%A8êzüüühhOg½zÇühüüüüüÇhühüühîîªñAi_åoyoo\åûûû«Ê%ç¶Ä¶¶¶‹çÅ«è\—-oÉ\yy£pàà<«èàè[<«¦/ƒDD³žï@dì‘gqNb?rrdƒž×½ÐdË.; Ìâ)c­e9)àp\----à%%<22Hqz´&쪪QQü$ê“Ç&Ç&ªÇzÇzQ$“×z꼯QQtQ´›&È|º¶íè«‹_à£àpp-ppè~<<<<èàààèàß~ÀDÊBLÿ &‰t€Hu!âLr~6¸¸ƒ)KR Pw ­â-o\-\\o-p2%%òê½´Çj›Ç“‘´zq“Çmm&ÇQzô¼zQäêtÇq4¯QGÇh½ilº3çÏŸ§!Êà£èà--pÏ<Ï%<«««<5ß/͸žl馃³ªOÝ}bbN— ŽBr`OtôXžÞPÓÓkÁ¡Îšœ»à\\à2à\o\pà2%ŸÊä½Ç“ê¼Òä$8&Ǫ¼¼“êÆDqôñññ¼q‚Yñ‘‘bêêhmh¼ ‚|%·ûé¢$¢b%\_ç‹‹Å__è«<%%Ÿ!bbb¢G“¸ƒ4XOXq](½`}uÀW +/ƒvøzË–Ø{Xá[Û7ÖsŽpAA2-pŠpà2ŸSÆQüª=¼“zêb¯¯qäOê¯OüQêñìòòòòñê¼bêùY: G¯¼ñÆ´&ü´“Íñ綘nA¯‘$·<%_çB«éÏŸ!}™!}?¸–=–¸``uƒËvô4Àƒ)¡wžëøO=Ë’ÖöuIœÚÚÚ­öTA©©AAàp-à22àÈ™¯$$êÆ¼ÆÇQ$‘‘t¢Añä‘äˆvQqSÏÝ`Í“GêêzÆirzÇ×ê¼ÒQ½OQˆg!S>étgg$OÈÄ>3¦|SiiÊŸòÈݟ݃ž ?D¦ßßBËó´b³òƒ ªx Õ{Ná»[á¾Úœö™%<%2¥¥p2%%à¥%A‘´ˆ¼Æ“ê¯z‘‘¢Í©i§‘Ljää‘mñAŸÈÍ““Æñ“= ì¯ê=q³³Oˆ½½G‘¯À3ŸòO½½zG@>:@|| iiƒòòD444=¸ìì¸DNiÕr4´]ÐdË#(rùhv‰&99­{5Ó7¬{{uœuáS_¥à_¥¥à-à©A%2à¥Jm´ümQÆÆÆm¯"Ÿ%Æä´ˆˆÇm§™"§HŸ`êÈÐÆÈ3òÒÈi8Æîh½ÇÆ,Ï”ÿ3¯‘qq8ÒiÑd YiË| òù4q//ƒ]]D/®Â3l4v?rrËÐì=xh]@@5{{k.±÷7­[sß‹å£-‹àà2%AA8©à”û©Ç››™‘ÈJÈV"m›V"ˆˆäÇ‘"™88™Vòiȃ,³4ÍGq‘O¼q“ÇQ½êòŸ/®æJHXòâÀg0b3·ÀƒYÀžƒòž¸ÒÒƒ~~YÕ/·;âx?d—D ËnÕ³IzGDâÕý÷ökkÃ5kM†å\É£-p‹à22%%22à2©›››§""ÆVVV›"mmÇ´ˆä"VVV™V™‘4qDiiò,väˆt¯Æ¼QG³Í8iŸ%À$¯iY`gOtŸ®ÕÝÀŸu4Ý}ÀÊdËÐÝ ÊiŸ~lW@r |/NDÝD ññ¸t¸ÕÁý±.Ã7k.kKE¿¿¿¿É£-¥àà228Vü››"88VVÈ8ÈÈmÇÇmÇÇ""VVVVû‘YiSͯˆò4,òêò¼ê$¯ÍiÊŸæÊÆYÆÀtXX`®®ÝDŸÀÀ!ÝDƒË44YlÀŸB:d z/D¸DžÀlŽÊô¸ƒ€¯lLePKPöö¬{k77k¹yyyyúo¿ppàp\¥288ü›V›V888©88V"Çm›"Æ8È"V©2¥•©H¯qêǯäÈò 4“¼“QÇÍ/%}ŸSÀòòGŸ!DX~ºÀŸÊ///Ê~~ÐËâL£®[¦BƒÐGž4Êr¦ƒâ ƒb?žv¦eÌR¬ï¬Ã7¬¬sa°°°ÖayE-pà-”-%28m›VV©VVA8›müˆÇ§V§V8"m8ÄŠÔ ¥S¯$Qgzžã:Qòiq||Çz&=ÇQÍAñô¯XÀN·¢0€·/ƒ~N¦¦¦/Ÿ=— Ws£åÊÊND¸ ƒX/¸>:í|ƒ¸D~XgÌRŒKKŒÛÛe²a¹aÖúoo£ààà¥2A8mü››È 888Æ‘äüÇ"ÇÆm""ˆm¥ Ž Ô8È‘´g½ñŠ Y BôSlzü¼qê‘4ÀHHÍÀñêq͸S¦bø¦ÀÀŸ¦¦lBl¸Ž :Ê«†uH}ÊžÝxDê Že4DòžÝ×GƒW°kØKýÓ.ÓÓÌÖÛUU¹yÉöE£à2~™H§28›››J©A"mm"ÆÆ§Ç"ˆ8”  Ä©$OQñÈ—úYrBQqǽOÇÒ¼bÝÊAÈSSÍiržÀu¢¾t/·ƒÀŸl†yÌ R†ß£EH€ÝNN|À½×³Ì+R •ñô4uô¯ò®EöEUU÷¨±Á¨÷÷¨÷Ökåp†‹_ÏH¢™©VÇmm8©V"‘mmÆ"§V%Aç©2”Š8%ˆˆ$ñiDY> ìŠ,ñòYê¯êÈiAH!%iS|:}b€ôÀŸ¦~/·®ú ŽâÿRúåɰU}H!¦Êƒ4xg?Ž¡¹ÌIvzäxILLß¿EÖ±¨¨Á¨ök÷¨UE££-èÏ!A™™§8ühm›V™™äˆ´›JLj8V‘§Vm8:1çÈÆ½¸Yƒ i Y—:‚¦¯iüvǼ,ŸÊ§¯Æò|ræ4tXgt~¦ÊŸÀú ¹D®†y¿!~¢uŸ‚/×׃„ wÿb$g$góƒna7£°¨¨Ö¿Ö÷¨÷±¨¿Éöåèèç©88ümV›mm"ê8Jm"AJ8VV›"V8©8V"qÍYJ3—íÄ; ¯t,üüüQ×ñòS`¯tñ` | ~`ôXX€S·À¦·þ T WÀ³/¶ßÏíÄ:Æä, ìü½½½zñòSç%ŸÈS|J DʃÝÊ}bñBLÿÎŽ—ƒ·_<}}<èß!~4`²ƒˆ`øô·BÌwúÿ°[®£­‹¨ÿÅú ¬ökkkE÷±¨Uy‹Â‹ÄûJü›mAV§V88V"Æ828Æ8” ÔŠ2›ÇüÇmiiSYYJã—rn‚XôòÍò½½üQê,S¦ÂæŸÝi|Sƒ4~/¦!ôô‡'„Ó·|>«uH!<<<ß<ß}Ýv4Ýg^O0ââd—W +²uÝ!bú/ÊBÓkö77ökÁUE‹è‹—_©üÇ››VÈÇ8VÈ%A8©21”‡Ä3VÇ´ˆ"Vì 8q,i:”˜dü4G´½½QòiæiŸ4ÆŸSYYuƒÊÊÝÀ}· ' ºÕLLÊX4<}<~~u!«áO¢žäøgtƒDƒ—nnÎ š ‡ ê쎔÷k7öökE÷¨¨yÂå¥Ç&ÈVV©ˆäm"È8V8àŠŠÄÄÈmˆümV8Oñi ¯Qi‡i‘Çñh½ÒŸÊò™bŸÊY }ŸÏNÝÝBþ++õúN—ÿ·ÀI}ß}¢!~<4!ºÀgƒƒ³u¸ⳃB>Ón+ ÒñdËh'¡T¡ý÷ÓöööE¿ÖŽUà<‹åém ÈWç"‘VAç”ÔÔŠŠVÆmÆVÈm$Y>‚¯gêJ 1Ýñ¯ôñ¼OÇÒq,òÀÀb§Ï‚æ·òY·‚ÝS®Ä „ —ÊWӟߦ߆á!ßèè}ÝÀg~lÍŸÂ|ÊÀ>n—Ź˜¡'âx0ù' ¡¡¡'K±±ýö7kE¿EÁ£®_æj››ÑƶŠqˆää´§VŠ•‡Ä8"88›V‚8ÇJ¶|S$ã ÑvªxªGóìDÀ`BH4tº3tDÕrâº!~[N«Ÿ·¦4Gͺæ}Ê®£Ê_ÅyLÅ š+yI¾ÜX š)Î'¡ köö¿k¿¨U‹ßß_éÍÐÐ S%`GäVÇ© ‡©"™8©8VJ8"ÍÊ3Ýqb¼ Qì“*ªê¸¸³4¦t~bè}`Í//Í3þÄÿ oÕÊÊÊ ÀÀÝ}~Ÿß·¦Êzø4ÂÏ}~ºÅ>·>>B߆E¹¿­0Ib¨#Ák ö÷÷ÖÖ¿7kk£¿ößß5_«ò ÈÐ í¼¯‚Ïqê8¯VíŠV§88ÈͧÈ2:3‚S%qäêјÿrq¼î´Qªêì?44ÊX†Ê¤!ò}4ŸŸŸÄ3•þþ:¦ñòYD®Â¦H<Ê}ÊYGøŸ£ÂN«Å°ÉÉ£†åÅÉs²ý[ÕÖÁýk7Î÷÷Ö÷÷E‹77p‹‹è‹à_‚4=›=gt!òii$J888%©88™""81Ä1>ÊY`‘Í—‡iQ½¯zOª“]žž|~bå†ûŸ!Í`ŸŸñÍ/æšn:|ò‘Dæ9l†å®‹~~4b4¸¯O²þ‹®ßLØEL£Ly°Å®¹š¤¹M ÁU²²ÎœÓkk¿Ö÷Ö7öp‹è‹på-_bñê&iÇQÍòi3m828"©8AV›8‚BÍÍŸÍ ˜ ĺƽ=ª³u]Buݶ•¦bÝ8Si/BíâiÍHÍB:l|/BiÏåÂÂÊÀÀ?ô0B ²¿s®yÁE—¶öyy£²K»W¹ÖÓÓýýbEEU÷Ö¿ö‹pèèp-\úÅAÒ¼Çi,SÏqÍ §V™"™È"‘VVÆ8ÄŠ‚8`i3Ä 3r¯üòÈ=‰“QzÀXÊåÅE«¢H`bŸBíÅŸÝ`òÝ3Sìƒ1ú£åE-‹B¦/40u°²ÓL¿²U¹köþ¹°L†ØÕ¤’¤söUP.U÷U÷÷UUUÉ‹†àp‹£úoi=ÇjæÏÈ͂ħ"m"ÈV‘mm§ÍVJŠ”1AÍ>Åñ¯q““Ò=“Q“4–¸X4ßÁE¹¶Ýôò:ÄiÅŸS8Ÿ¸ŸêqDíššŽÁ£òÝ3ç§V‘‘V8ÈAÈ8ÈÈ2ÄÄ1iÏ`‚Ä3ã‚z´êqª“…ªª“lâBqvb£É•²<¯ñŸJÔñæ`Ê‚©>‚rd—Žš+Ø!u!ŸŸ/YvIwPeØØÃsÕÃöÓ)ÓyöksöÕ..زeT.ÛÖÖý•UU£___à«púoÄvQìù:3¯”úgˆä"828mJ8ÈVJ1ŠÄSAòi3ÊÀˆq켓ÇOê×9)iW°åß<·qÍÝS>•˜Ht‘S3l @ šT+¡µ‹H[Å®b¸Ë6œÓw k#Ó)#s###kkÓk¤sk††kEýýýÁ.°•U°þ¿•-Äàà¥2p”únÇ=›ÊÊb`>1mÇäǧÈV›8©J881ŠÔñŸ/|3:|qXñqbq¸ê“ùj6G=í Áú—†NŸHt‘æÿÿæX$X‘Ÿ‚3 +„¡µÁoèu}<¢*œïK.Ó###k)kkÓkÖÓÓEkö°¨¨ýö¹ ¹WBßo¥¥çûÄç¥púþzzì¼bñŸ|Y,88"mÍVJ33883Š˜Í‚:3‚·òäǼÆêì¼¼¸j6Qùi—¨Rn££ºB`ÍiŸ>—AX$‘¢Àrí +¡¡•è߀¢4¸¸ârx{¬ïýŒŒŒ.ŒŒÛŒÛŒýÌ...ÓÌÖÓÅÓ°‡)BÊ©©82©2¥ç¥û—:´Ç¼z¼êñŸ%ñôi3J‚J"mV©©3‚88J:18º>º/Ƚ¯³³Æì=êv==×êl†núþEL®_/`:þr3>|¯t¯S>. ަè\!IX¢}/—..kP±±wŒý±ýý±RýØe.kEkö77ö̲²dËžžô"§V2©û—ºAO½¼q`Íòñ8iJÄ¥™ÇJAiJ88©3:3·3BStôbê꛼h(ùª““ô¸L˜ÓWk£®¶Ý`Šþ”ÿþiÍ‘bòW‡nÀy-átŸr®rƒÚPýýKPýŒÛÓöööN¦5Nl˸ìò´äÇ‘ÆVç”_ñ0==ÒòÀbñ4qòÍ8ÄÆÇ™È"8‚2J2:1ÄæÊiÍQäôÆ Ò…jëófG“âL>£a¹É£ÏY—•ÿ ˜ºÊ`bÍi3 rº€HèD/ÀbbH¢¢€žËîh&ó&×ü×ù“³¼ô³4Ò¯“Ò¸ùbÒq žž êìSb}ÝÈÀ Ñüj›ì›ê?,¸Òñ4ŸÊÔþþnæ$òqÀSÝÝñžlË}!HH!<¹•¹• XW±..ÓöEö¤¤¤»[[u~ÝHÝ!Ý!ÏæÊ!}~¦NDËrÞjƒñt¢bbHŸ îx(›ù(×=ë“óù=¸ƒÐìqÒ³ô³q¸¸=›YÍÝæS%i Ñü&ªÒ= ÐìÆñ·â‚>þ:¢ÝŸ‚3ÍÆ,Ë DŸ}~<—Å.róô’ÛÛs®{ö¤’œuubÏÊÏææÏæ¦ÀAÝS/diÐÐÐjft¢€4DùìF^…=(ª×]ìu l9~q??ìžËdi›Ð ‚æƒ ž Ñüü&ž3|iYƒ‚ iº >|r‚3¦`qОË]¦/·Bâ)R 9ëïÁs’¦†’5Üb€bqÍ,òòñÆÍ ‚4–³ªª(jj&ª(ëô4Ëd=‰0xxvªx´vvxFvg½×¸ì“vzGG¯4¸==&m›ÈÈi jühüü›ìq?iº>WííS33DÆqÈY Ðrlr ˉšðZý.sk9N~~­ƒÑ|iidi 3FhFFFªëדqzùªOv½´O*v´OOvz“zQv½v½O…FüQQüQÇj=›hhhhhhhüü½½½´´´‘ñÍÈ8?ô$¯ñô‘¼“hªfvªj]žÐF¬Ó)sÕ»»Ãï@†7ÃÃâ ‚ÑÑ3ã3Ñi´vFFªFFFj]и³==××vz–³×ê³ê³“³4¸b³ëÒù³zÇühÇhî´´Oüüüüüh&ÇÇ“mªü´½ˆ½´½"b´Og½½0OFjj&hî‰î‰…‰‰^î0x¾x0…^…*vø…üü´½üQ½f(&‰=&&ªFhªGG×q¸fêê×Òƒìëê×GGQG×ëó“ëê¸?D¸=ª Qî´Ðêz“¼=мj&iÑìÐÑËÈ,q³êìãǽüÇ“½OFjFîî^…‰ªFxO0O0*xO…0O0v¸¸XOîîîîîO´´´Ob¸¸ì=&ª&&jF“¸³v³×½v³ê×ùž¸QG×G6××zQÒ³4ìY]ù³¼›;î´q“Q“ê¼›¼›Ð VYrº:l|ÈqÆqY—‡ÿqñÒ iQ0(ìO…ü&j&GG³jf×vOמ×xQÇêêQGvQ¼}bòDùì]]FF&몪××QGêê×׳4¸¸×³GôQ¸ì“ë]мÐÒËYiæãJ½ò¼“¼ñô‘¸êz33®AŸÊ¦æSS3ç‚‚ìi ƒlYYqì| ¯ˆ´“Ðù³ùf³]ž¸ê³ùqùù³êêQìYìêz‘¯‘YòòòñÍYÊ}H~Sqù“vv&G³×f³44ô¯×ù ƒƒ³Q4DÒó“z6&ìËÐ žÿn:W”O$qêätñÆ`H8ŸSLíS!%<è«_¶‹Â_1‚ iJSÑi¦ºi‘Oøg ,]QO´“¸ËrrËËùù4Òñ¸ÒôqÐ44¯4}AŸç‚ÈŸAŸò[!N«~¸¯O6ù³GGÒô¸?À?4³G¸ƒ~ƒ4t¸D³³ë @ r9)ržr²þ31òOˆñ³äÀ!ÈŸS%ío\%AŸ2ûp-£p_1þ:`SÏæŸiÏ‚3S¢$XXž3lƒ½…0v׸; †ìñqÐiìÒìqqq¢HŸA}ç_}oåSAAÊ«èèè_‹\o¨oè_HèéÏ!HHÍAÝôÀ³žx“ù¸Bº·ò¯ü$ä‘ò18Àq`¼qŸ%}ŸŸHAæÊÏ<<«å£ÝÀƒO‰FjÐ=ª(–`¸4uòÝDfñi99˸³Xvëj;+ãË@â],tÈ3ãhü&›ƒÈi” ˜º3n3H!Sæçéæè¶£É•a-£«Aà<«çÏ<_ºL>nžž‰ª(]О‚â®·òÆññÈ‚3JS8ÍÆAæè2ÏÏÊ%éû«éé醣}}À?d´‰hªj&&=Òñ–??¸–4Gj; d³ë=d)žžnùv,¸6Æžã@ hùÈ ‡º3 —ŸòÊ/éè<«p‹paa¿¿‹«<Ê«__-Å£•  e‰Ð BÕß/òÀ83ÄÄ3i·3::JÍ4ÈæÄ«û>‹£_çÂÂpå}~ŸË@hhFªЖ=œóIÚó(.RR;Ë]–]n wËRª³êÒž ‰¼›]i T‡‚æ çHH©2ûÄûéº-ppUU¿kp‹«%<èÂåɆ¹Û„ ×îrdr@ã¦ÊHÊ8/Äÿ²íçSæ>ÅB`äX´ ò¯YÏ}SBº:p¤ŸÝŸvh6ªª&(C»6f#wÚ.ðZdÌKËÜ…óªÞ»d@0QׯqòÆ©ÿ —ŸŸ§b§!~Ï<Ï!<-o£E÷Ö¤÷E ™4¶57Ö£ÌÌ :?ƒžBâ·ߟ4uAŽÅÅ Lû|ÿLÍÀ,hvz=Ý~ŸßŸÝ’Kõ×½:ÿ¾‚LWߦ<Âöös.÷±µ¡'õZöœÙuOv–Ÿ!uH}¸?‹¦Y¸&ªjÐC»»»œ]–Üï]Þ»#Ì#6]­R¡¡w­;Þƒœ–vÜÃÝg¸¸ò‚ºi‚ú”‚HñÊÄyAH$$H™S\«EZ±±±±ö®þÝ€’õšBGž RÀgâåNϦ_‹7Eö¬ö.±ZZµ¡¨öutOOt44buÀÝÊ߆ߦƒq=ªxªªªªj](j­CÜœC–лcŒï*]¬).wÎÞCóÜïc9Obò‚:%S1ÉÏ}H™ç£ÅŸÏHtHH}¶ß¤KMK÷7>ñI»K0 n,gB¦NNBL°±ö{7÷÷ýý÷ýZµKµÚ…vbu}u!/l<‹Â¦ƒ4qªxªF&j]]C6ÞÞ»c‰)RÌZ{ÞC6Ú–ïâ’~0X¸8|‚8Èæÿº«æ«—>Ÿ!¦%HH8åÂ÷MÎõ7DÅ#š»¾GÀÌ—lXº·Âº_¿Kk.÷÷K±µµZZZTýùG´OXbÝÊŸi¦<†Â¦Ÿ³–FªFFª(»Þ»66c»)]P̵µPFÃ#vÙ­eR;N´tƒ¦SYq`io>Å>%¶£ûA%¶èX‘Ÿ}£~Eõ'Z7€iú@)KµÞóXvÅËÀøâW>†W®åÖýk÷±.7÷µð±÷ýMKœjXx$b!NNNÏ«®Õ =ªFü‰‰&žïc#)Þ»­f‰*6…*Ð)cCRï#¡ÎðCCÙÚ9ce»ÝXG`òÍ8ŸSººÂ«ç£úþ®¢§}ŸHb!å¿k±µK7{b@n;)±e GׂËÝX~~®L££¶‹ö÷±÷Ó÷÷k..öœvêô×`¦¦·¦lè5_ƒ¸ùªOFfx–CC)¬–…6*F‰ÞÞïRcw)e)Î'P6c(]CËC@9×t¸qñ`Æ™æ<ººÂûÄÄûò!ŸŸSSSSSÉÖ÷õµ±¬~— ïRµšD):itDb·£L†Âß»{7{7Ö.7kkk.k{œtubƒÏ|¦¦¦l¦èß®ºƒ¸ùªh(&6F(Ð)ï…***Ðc9ÌTRïRïÌ'¡)*cл»fÜÚ’#ÓBëDË8ÍòòY3æç_ÂçÂBß%<æS%««Ït5k.±'ÎË))¡RGv·Íbv`¢ÀߣÉÉèb€uÚ[7ö{¤7Óö¬œuiŸ|¦¦¦¦¦¦Â5‹ž=ªFFªªª‰66*‰CСPÞï»w¡¡ÞC–Þe)6Ü) qÝ/ŸiSS纺çº_>ûç¦çBÏÊÊæé4I[ӱεý4íecR¡ ã€gbÝ¢b¦¿ å€¤ÚøÙ[N€N·†ösN¦·’BBB·¦····Âß®ºž==ªF*h‰*66(F‰*6–]e¡]Þ».PµM–])K­6³cwR׳òòòiSÈ©ºB_>Ä->¶®_èçé%æº~XœõÎM9 );’Rµ¡ nnSv€Nဟp²°sXg4~ÚuN¤öW7¤:⺺>ÕB···l··Â<®ƒj‰hªj6…F6(*6*FF(Ce cÞ).ï.w6{)Pšš)Þ.X€DY 3æiæ·º¶å>¶—íûº¶—¶û®æÝ5PµTõï ã)K'¡ # )¸gb/ŸS/B岦¾¾ÝNA€ŸÕ>†WW†®BÕ®º·l····Â«®rÐ==ªhFFªjF6**]]f…6*66–ÐïcCï){)Œ6»cw KRPÃ@.n¸`žSSç3æç¦ÏNº>º_¶¶_®Å\—ÄrW†ð¡šÃ;lr=w'¡Îš@ ÌD¾ÝÊÏß‹¤°ŽLi`4Ê!4Iñº>rº®®¦ß·BB·’··è߮Ճ]jFªFFF&ªFF6*»Ð6‰**ܬ..»C)ï{ÞM¡ ¬n±;Ü))’ô¸ÝÍÍii83AÍÏ_ºéÏSæç_à£Å-WÓ#ð'±Óâ—uf9K¡õKš)Tõ;tÊNNæ†ÓÅþRج¤ÕNÊtgtIÍBÕi/:®N¦NßB····¦¦â;Ë=jjFFª66‰…(cÞf…**Ü­Ü»ceCcšk*»ŒðµMïCfÙ ¯¸³‘‘¯`ÍÍÍò4ò‚|æ—Å__Åúy\å7’ce ¡ðÓ77uXœµ¡ýÞ{kuuœá5¹ rb»Pk#7[Ù¾v¾4ÕW>º~’’N¦5¦N{®ß«ÏWdììj&‰‰6‰ff–{œ6**ÚÜÜ­».KK{‰Ù¬RZ±œ–Ú6@µe]ñ¯‘t‘Í` Æ“ò:ĺºûè_-£pèèö)š'¡'RÓNáuCÃRwC»7Ü­5€³R ¦XIöŒŒö##fX¾bl>rlN»5’’7¤Â5ß’¦Õ@Ëì=jª‰‰ª…]ÞÞ]ó**]]ff­»;)KµPÜffÞRZP(â ÅXÀbÆ‘‘ÆͯbJ:W>éÏÊçp‹çèö⌠šZKÛ<Ùkï­CCÜ{Œ5¾–C€4®š Ÿô{k[ŒÓááÜÀlâllWNB†Õk²k¬kÓ«ÏB@Ë]]jhFF&j(fÞf**f–(C»¬w¬C»»ïŒP.#9».Žlv¸4`H‘Æ‚ò¼ô ¦Ÿ8·<™A_¶‹ûå†kŽš#c)ÜÙ[÷ÌœœŒ#Ú­’uœrØÓvt·{ö{ÚC7{ÚÝ]u~ʆ75¤Ó7yÁ±Ø.²ÛèNB>Ë]jFhFF(&–ÚF–{»Úv6*6(–œc»»ï»–Ãï)#;e)#)ÌRGäôqÍ›1•ÄÍ`SŸ¯¢ŸAAH}é¶¶‹†®kRŒ9c)5’5¤ÓöœC.±Œ..CÃsu–Ý)lîøá¬Ók5Ú¾Ibœ€g× lr»¤k¤yKK ²Ìk®¦BÕd]=jFh‰h&6Ú*;C66*F(]œC]Ú»{œ9–»Þ{9c))Ã@ÿXGñ`òÍÔ„Ô:æA¢HSHŸ_ç<7ÕÓnï))œsö5.kŒŒ#7œÕuIô:ni´ø¬kkœ^Ù5¸¾Òâí;NÕ77÷ZÁš¨L’†·BÕËjFFhF‰]]f*6Þ¬­Ù*C»žÜ6œC–­ËœÞÞ­»ïïï#Þ)~?4q`Èȇ‡ÅÅæñ¢§Í«}!«º_è—Õ.R)’óáßö¤»Üó{7ýK÷kÚ»€ÙbršŽu0»Ã5¬±#Ie;À€Y†LW·Õ¤åÛðÁرkW’ÂâË]j&ªFhFFãc*‰fÐ6Ú]Þ»ËdÞffœÜ6Ðf–Ð(­­]’–¸€ô8S TÅaÅ!¯4<«A4Ÿ_-åÅööwµŽcœœ5k¤­u­¬¬±ý¾{bó4l D¾Ú{ÚÚköuN ïuñÀ|ˆös.Z¡Tš.ØÓ7èBƒ=&h(F;–*…6ÐÚ6Ü]C9C–fv(Ð]ù(]CÞÜ’.)ËÝlòDò‚˜¡‡•þ‹$%§¢ñS<ÊÈòi—k#eΚ#­–}Ö¤¾ó¬{¬kkÙáuÙbâ +¹œC{ÚÚöö–ÁÃ|tvÊÊs.ýT¡TkÓº«/Dù&‰&‰Fã=]6x–6Ù–œ]œfÐË(fÚ(–Ð9]ÜC#nsž€qò1é˜-çæà!¢¢}éAñtH£5ÌöKË–u~ö7€I­C»Z±¬0Úœ€Xô „â{PK{ÙC’â®Cbx4@ƒ£Ók.¹µ¡¡M£NÌWºNƒqªFFhF‰ªhFÑ–­ÜÜÚÚœiž³³ždùëª&(Ðcc–I–5D¸tqS33”Ž 2p-}ûŸç˜©Hñ$ñÝYŦPïweÜ–Ü­Nk°­Þ­µMöøIÜÜ4—R‡ï5MTÙIÕPœN?€gt‚!’{köõ¡¡T¤5Ì£BÊÀ³üFhFhF]j]f–ÙÙ6–ÚË=]Ðì]³ó(=]ÐccÚ6³ƒbD/éÄŠ•aU\™ŸH\' 1ñgi`l¤¹ÓPï=Cö¤C»¬ýMKö¾Ú[u݃~r—cµ¡Pœó5eB–utGô€/»Ós±µÎðÕÓLÂ~u³F‰FªF&(ffÜf66f(ž×³–=jzëjÐÑ;ecï@˃ÀÀbƒ3ÝJéAoU%$HÍo¡ ú>ÍñbtißW.#Ë’»Õ5Ö¨k[uœ­.±÷{¾Iœ­Bâ>—#PT¡ZÓ[ÚÙöNÀXQt×/N°ÓŽ'ykkLy®ŸÝ¸×FªFFhFªªfÚ((6ÜÐC]žx“zG×ë=Оc c###;ÃËê¯òSñ%‚ñÄ•a~™à2Å+>þ¶|Ýê¯4­77–œ;œs5ÛÁkœ––Ù7kk»0á5BÕB>Wâ)ÌKÎTµZƒøB#œXgvÀÝN­NkyZµÎ’°Ì7°®Ð(FªªFª(Ü(Ü(@ÃË´ªªëªªjÐÑÑ9c9’Ã#dGX4H‘È©¢©UUà”íè•—ú%ÈSÆ´­ö5Ù;Õ’.ØÕË»­­»¤[ø€{¤ÂB Ó±õðð±ÃÚÀvgXò ¦[¤sÛU.ö’eÃË–&(&FFªªFÜ–ÜÜ]Ü–Þ#;ªOz¼ì=d9Ëž»ÞÞ@;ËX×4$È%HE¿!yÁ-Ôþ˜H¯AA‚‘œ7uÚ€ï)5ÂÓ²ö{Õ7{5{5œ^Ùœ[NNNNå®7ýZš ' xô4gGêz¦Dœ4/·ö5uÓ†5~;Ð]––Ü666fÜf–(j)ïâ]hª–jÐÑўЭC­ #ƒ4$ôƧ¯¯Í%~<åp¹‡i˜1È8V8ŠoBNXီ.7ökŒšØ†N»»{¤{0áÚu[[5»œÕ»ÌR ƒOÒãêdË/!Nô€¦N¦@ÐÜÜ–ó66*66((óÚÜ–(ÜÞÃ;)Ì;Ðvª¸] žÐ]CC{#¬­ƒ6‘¯¯‘mV8‹åÉBº†—ŸSŸ§§Vû‡˜U¤€[»77¤s²ZÁk5c»á^€5áuuáu[[[€­(–ƒ]žY½êrdQÆ]4Guô4I¯ÀÀƒlÜÙÙÙff‰0‰**6ÚÜfÙ‰…*‰*F6Ú–cO‰…0xG*´**ÙÙÚÜÙxIƒ¸òÍͧÍÈ%®£y·¦3ÍVVÈJ¥•˜¨†NÕ7Ãs7s¹±k[óÞ##»Ú^ó­ÜuœuuáÚ–Úóbó³qÒëêÑ1ÆOÇqbfq³¸€44–uƒfvxx****‰‰vv*O0øI***‰x…^…*ÙIOOx½x´*xxx0îî…0ø^^…^øvbtôqñ¯‘¯ñ<å·Âæ©Í©8V22Ä_»N­W..ØÁPïCÞï¬f»­9Õ{»u€ÙÚÙXIÚ6×Xxñ“³ ÑLjXQG€ê¯zQzQz“v6X6×fXÙÚÚ****ø*v‰F*x‰*ù˃4ó?ÝÀÀ?òDD¸³tIt*øø0vX×vX‘§ÆñbbG¯½ˆ´ˆ´îˆÇm$t³CÙ¾Iá»»­uœ66*^‰óÚóÜ€I¾00X^xÚÙvXOxQQñYñX½½x*´vvGGóù––]]³Úë4œfG€–Ú–žhvÐ#.ƒ@rl|/3rrlYñGv¾0xXÚ€³`ÝòŸé—ÅWºß@í@›´ˆ´ˆm2Š8½vX^*G³4óXx*ó406ªF6…*^x5Œ»­XG€G×XQÇÇÇ‘ëôôOxOäXX×G?˃ƒËƒiž?³³]žÀuÝž¸žÐx@° .r†—sB~ƒD3Õ¶>æ4¾0vxgvô?dB¦éß‹—ÅL£ n ޼OÇüü3Ô:êvx&lùóx0O¸–c;eóI’)±ðÎððð¡¹;»g¾fQôñ,]ñêôulÝÊ44XG4À݃ƒñužË9¦D³t€4À4~À?ÐO³)ÿLþú—¦ÀD!}¤L¹¹L·ut|]Gvb†ÅB‹-<ÏèåÓÓÿRüLjˆ´2‚iùù@e=v´*Ov¸ž¸ù)ww.6Ü5;Öš'TðZšRœC[Ù·fã‚ii Ëò>ÁnâuÀ> 9À4Yl·lr¦¸ôbq4Ïݦ> ì]Yzƒ—íWöÿ¹†ÂLyW<² —yØ®·ºlÊ4×?@°a¿ÖUU°¿Eaú ‡ ¼üˆÇäˆ"m´ë ´……Qì“ê ]#’€~}555ý¨¨¨÷ýÕss»XÚâlDiY8i,B° Ρú4Í>¡SòòB‚¦‚Ê/S¸bHÝAÊH/º~bqò½X,®ûÄE†Ï~®L¶¦S „¨wÁååi|/i3Åú°£EÖÖ÷KZ¨®ÿ š˜ÈüüÇÇǧ8"Æêë “zÇ ½xx¸?ËN­’)öskN¨¿kE÷¿ÌÕItr¦> SiÈiÍ‘}sRnw¡'ÍÀŸ·3‚ææŸŸAÀA8Ÿ}}Hæû/ÆqÍgÍæ_>¶WßHI݆†WE ¨aÊ4bÈSiJ·®<‹Ékök£y¦; ‡dQQÇÇ"™8§ìÈ ,´ ˜ =Q½7ïBÓÛPMsÁöE¨ŽKÓá€ÀŸñÀYD/D6îÿ¡š eHA©éçæ¦‚æÊ!AŸŸA§H_ÉûŸAÍ0‘Ÿç—\£‹ÊtgÚ¦Ån¹²ØsŸutŸ>3ÈH©ÄÄ«°¿£¤77Nö}!r‡‡YzQ¯›™V"‘ˆÈ>J›ò :‡Ž”¸½ôYCÕÓÃ#ÛØðÛkÁ¨÷± µKZÁ.HI¦lSii8J| iøx ¡+@ }8«<ææ¦é«ÊAÈ%%ŸH§ApþûSSAÈç-þí¥$v4·†W)—Íg¾¸—ÿÔ1"$Í—aU°öåÖ±KKöß4ÀÄeqq8©©Amäˆ©Ô ˜8—3ñêÈ ÞÞcýšðwÓKKÁð¨ØýkÚÙ¦‚ÝŸSÈÍÍÔ@ÒGO´ã  â¸S¦éæS%2é©™§™ÊÏ%©Ÿ%-Ä©AÈÈøäÍŸ«‹¶®€ttq݃ò¸‘I¾O¹‡ŠÈä"> ް£öÖ±K±÷¿ß‹nú>8‚31¶8‘gˆˆí„‡˜çÆ$òÄ #fnð¡¡Ž. +šwZµššK²uX¦N/Ê·‚3%iÿ  l?vXRëÏ«ÏSææ%%HHS©-èû\—SHÍ™0HŸSéçŸ4tt×ô€ôXvgtú ‡ÄiJ-ay°EpöEöß7‹¶É¹ÅSÈæ3¥¥8§Aä‘gˆHûo\ ÿđ͊ ÓPšT¡ Ρ RšµµÎðÁNtNϦS©iºæòÿ¡+yß4tr>ú>Iæçç©ÏæÏ!æ™HA%_—Š”aoæÍò4O‘Ý%©%©©2iÍ‘$‘bÍôGb44;í”í13ç—ņ†a¤¤Ö77É£¿²l‘³ò/33A§%Í%òòbˆ$$˜ŠŸH¯3í n0;Z¡'PΡ PPõð   [ÙÊiÝŸÊŦ ÎL4tŸ¹°L<ÝS«ÂæÏ纂2Ê™t§Ï®1ûçÿ :b`vôž©éÄŠ:™‘§‘4tbòD®>†_%_<_<¶\yÉè«pÉåy庣Å@rñvqË‚`4‚æòñ¢¢§b$4¯ÆXg¯ñ¢ñ·WD~öÌõðÛ¬š#kµ¡¡TµØØ}‘ò‚8iÍ‚ Π®oy yþ𡎡ÁŸ%纫ʟ<û__ÏA™ÏBçûÔÄŸò|Ý–6ôS/83ç88Æ"V8ñ`t`Ê/Bå†<¶_—\p-\¶_púú-Äþ¿LåÅW>rë9 ƒ~ƒ r>—‚ñôN83—®ñ¯SB¬öPkMÎ̾ðÛïõΠšõŒÌ¨wŸ‘Í88ͺ¡ðýEK•—;ÌPµÁ»ÙðwlRõÁšð ²ÛH$§iÍñŸúõK¨¨•ºÏ£š¡Ž¹UN€Ï麮ÿGƒž]YÀÀ¯‚ò¯Ÿƒ¯ñÀi>3 ƒ84u­w¡Z»…7õÛð±ýµTÁy/$ñÍ88S·’u¾¾u4«ÁߣUÅŸÉϟ鎸x=]ùu?,òù|ÒgÆÍ¯Y3ž‚>rJò$6Nõ¡Îw.PÎý¡¡¡¡ Œ.ÁæÆŸÈ:ºæ·’­uå‹É ÏW¹yHÂNéççéç®Â%·8¢}%A!§"çû3 —4G4Ëò88©ÈVJJ88iiò·>ʦϦð°ú‡o:Ý‘ÄÄúúÅ—ÊqéULy˜Rš ³´j]¸4×G4³òñ¯“³ YqÈ 8¯ìâCsP¡¡ÛØ7w'ö¡Î¡ð#MÕ°š4¢Íi8æ‚l’¤5®ß†ýåå®å<†ÂååW>®¶>º««ÝSŸHŸAÈû:3ÅÿW]q¦ò8È18J888‚·‚ií—|ÀDŽ•˜ío8bÅÅ o::3%®ÓÉWyWev=ìÒêQGÀ,iqô¯ÆiòQQtzñ5ÃïZðw ÓýÎP¡ÎÎÖ¡°ÓUôDi38iSʦ»¿¶®þ߆¶¶y†É¶—Ͷ¶>ÄÅ_ÄíBGbÈ©©:Š13i8È8JćÿÝHy·ún•‚Y`æÔ 킺®ûLú£þ)â½]4óGtD¸iqê¼i=vz¯Q¼illnýΚKÛ.PTÎ'ðÁÎÛ7†ŸAAJSòÀŸ55†·>¶®ÂEí¹Éº·ç:__ÅúÅÉç~™™é%A8A8·ƒôG×Àò1ç:J”Ä‚J8Íòi>þØ3D®£ i:SÍbòÿ˜º—¥>‡Uúå—Ln|Gv¸ƒÐò³ôY½ÒêêdãÈÆÒz¯Yr@»#Û¡ š@C#ZZýεµðZÁÓ®GAÆ8æÏ/[¦¤såå<ßÏL—¶¹UŽ ç«çû_û—ooÅ%!Ÿ%«A§ÍAi‚À6t¯D8:©©È2J88i8‚ºSí+ u~Beú/—Ýæi`æþþ>ºLÅWÿaþ‹†W ~]ž ž?,ËxêjiãŠrz¯×Qìdœ»)Κ #ÛØõµðKKðwÅ$Hi:8/‚l~![5 ®«¿†‹EaÁÁåÄ壗¶Ä£íåŸA%N«È"™8‚çBƒG×–·¦i§%ç13JJJiæ3æ—++Êb¦3L3J—Å3ñ:þºíŠþ°EÿWÕ ³ƒƒD| iÈ iã ¯zQÒid»ÓðKšwMýýšïZ'ð±Áµ ¹gºŠiæ3B¦[­E£ŸÂWy®s£L°yÅíÉííÅ—û>_ŸÊæS©S‘"ŸælrËfG]:©"8ÄÔ”Äç‚©æiç¦í+íSå¦>¦Ý:—3ô/źÅí>Åú²úU)eâ븸¸D¸ÀË|Ð ,“ÆÇ¼Ñ d­ÛZðMýŒ.ðÛõ¡'µõðÁUXH—3ç:†††kÛ‹%¾~åy¶¹úþÉÅ®åÅÅLþ£ºÏ‚Ê‚H©$‘V8Ÿ9?W—1™©Äÿ˜”:3û1û>8b²þB¹¯æÍ®`bºJ:ºþÄ3þy£ynÿn=]==ž““êìQQ´zêò‚ƒu»#.KµTš#{ð±Z¡'¡'ðÁØbl‡ŠÄûçÏ}œ7•µU4Ÿ«Âúyö¶†ßŸÊ¦Ï/Ý·¦NÝNºÊŸ´òDË­6vœ)¨ÅÅŠ˜íÄûç‚æ:þú†by•Sº>HŸçÅÅæAç©<«¶Äº:aE†Å¹Ìn⪳ù=9YêXzÆüOêêiSSéÈu»»¬kK'ÎMœ{M¡¡ÎµZ¨¿Ú~®ÏNpÔU‘Aé €+Ɇååå†LB¦¦ŸuÀbÝŸÊÀ¦ÂÀÍ´‘¸~»–6f».عúþÔ¶ÏÀŸ%é_åÅÔûçoLN}¢™Êû—æS¶åSÍOˆê 9Cfó9;yÅoþnÅæ™AÏ·<æéÅLH¶a™§HŸæAÝBBS™©íoÅåå£þ†BLs×=ìDQOêÒÇQ=4OäÍæŸ}!Ÿ­­»»#Z'M¬Ùk'±KMZÁÖE­Bßàa„”8¯ºå£E²£å††¶å¦u4H€€uuŸÂ¦sLNò´´$ÝB­];c¶®þ”ŠoW·Ïé«éÏŸ%¶Ÿç¶¢Ï4!}™Ý}A««é—¹ oW£Â¦Ï óì=9Õ¸t“Qê½Çi ´GòÍŸÈ}ÞC»¬eð¡ÎP5öõÖE±K÷¨ý[Ý··Éþy•ŽŽÿºL‹Â†®ºç%B¶Ä—Í3˜•o>—É¿Áðÿ¸G ]dËXv4“Ð È Ñ> 3>þ:Àbœ6f»¬¬#ÌKÎZ[ö7M¡µN–_sè<Ïè¶‚iŸ4€Ê%LL¶åßϦ‹-þ£ÂÂè!<èènU ¡ DG¸ÒžÊtÀWÒrŠQ¯ê  r1ñggx^øfÜÚÝÃkÓUÁœÖÖšÎõC—¤pÉ£%§§ŸÂNφ>å¦}H­<5åk‹Â~ŸLº‚Åÿ °K„zv“×G0XzOÀbÿq,QÈi‡”@½¯v*v*øøÙ–¹Ìö.÷œ¿¿¨õØ~âÓ¦yŽ !g§"ñ°å}NæYSrº|>::‚ò‚n•ú·Ž=…½×¯×G¯buÊ`iãºD$GìÔ„ã V^¯×^óÙ¾øxœÛý².»ÖU¿Öð÷€u®ß‹pè~ŸAÀφÅèÏ<Âßߺ¦ÏNN¦NÏ’«[ÝŸÈ |t–­C.âþ¶Siòê‘ñÍ|‚ òÊ‚i|:Yii/º:ºi>—:ƒ|>>Õ;O06Oôb4!ŸH‚æÊYòòq¯ŠÔ “×*u’–0¾XXÕÌReu®Ökö÷¿áu!tŸ«p\>æ/¶þ¿ºÊ<«Ï«<·ßâºlN~ÝŸB—/Ÿê?òz?f6)e;y ú32‚òñ¸,D8ò¯qÍ,¸ìòñY||3i3í3‚/,?ždÑÐOxv0GYÂyUo®ârJÀñ¼Ñ ŽÞžƒ)Bg¾^0ô9PtϨÖ7ö5IIt4‹Éa‡”38ÄL£ºN«DG“zêÇ ã Ðnn —OIG¾îvB²Õ—Ø÷UöœÀåp_«<é3Bé!ÊÏ~!~Ÿ!ÊÊ<5“ôÒ¸ìi ˃ž—އ@qÍìóf^Þ)n¹ÅéÆYi i| Yi¸ òq,Yì,Ñò id3 ƒ¸¸,³žÐOއhêdÿ˜Eú•¹pÊŸ·3i›ªÇü0ž@R ciòt$b®ºþØUUö7LN%<_ç<84ʷߦŸ~ŸB·!!ÕÓ )ž*‰‰xª‰´ªª³³³jëªv½“GvQ&ªªù=v=ÇGzGôvGvQ×zדQ…Oxxx½ë(ª…xOvfëGëªhhO(ë6vv*0îîî…‰hh^Ð;Ì ‡ @7öïcÞC6]»Þ]ÞDi·¦ÊuƒN·uÝÊ`bÀÊË×îîO…0O…‰xî6vO‰…Ovªx*0óëªF&=“h×*³³¸¸ôz4?]¸ùG³¸Ò“ë]d(ªª6xv¸³ìžižâîî6‰vOOO…Ohx½vë“׸(6x**66*……‰‰…‰‰*6Üfó`ƒD4bÀÊê4¸ttXvXOv½O½×vvùQ“ì(‰x6œÞ9ÜÚv;&&ùÐëx“] ž¸ù,ƒËžDD]ž|žƒƒr @â ]ƒžY†âíÌú)ÿŽªh…F&xvë×길ñÒ]=ff³=³x‰vOî…v**(–jª6‰‰Ðdžžd|]ÐìGƒùëÒ×Òì4–¸t³ž|nnekRðÎÎðõÞܪFF&==G×]iЃž?ʃD]ËiËÕâ— @ižrl —LnEL°“(]jª]ìDžƒ??ƒžÑÐìÐ]¸ Y³óCËï).)e»ïc]jï]=ù]ƒ žÐ j ;ÑuôuʃòƒD|@>˜wwÁMðÎT¡¡T'ð­#ë‰Fªªë( ¸?ƒDDùbƒiž|DDƒËlž?r9~ƒBs—W†º®£@Ð츸ìƒËž¸³4jžžÑÑ Ð4ËÐËЭ»Þd )P9;cCd]jëG(ìj=Ð;³4t4ÝuÀlsú޲w²ö.ÛŒ±õŒ5Fëùë“]³ùžžÝ4¸ËƒÊ4?Êl 4‘‚‚Ïʦ¶®®®Âßß¶´;]]]¸]¸ÕD4–×О žËËËW9ÀƒËËËCÚÜ»­»ÐÐ](ª½h(ëx=(È)ªBÝ!ÊH4ʦʮ¹²•圻ö±±±PŒÞ(F½³jÒ]ƒ¸ƒB ~ii4?~Ëiò€ž·H€X€tŸ®Â‹<£ŽЖÒÐižqdlâ B4ôx ‡;/DòBLt€–ïËÚcC(Ð6h……‰ùÒ&v&O`€ Õ/urLƒv$Dbb¦~Ï5<®BvÐù¸ƒÊl—ú†Ý?zÐÐd@Ëž¦W£ö¬sâ’’9Ã9­]6‰Oxªx… &jîOx‰ž˜åu4ñÀʦŸNBÂÕB†Þá»ÖšPý±Œ.;ª&ªªj³êùYиbËÊÊʸݦ®W:/D†lÀźrÏŸ¦û†£GžùÒê?ƒÊSÝ·¤¦}/ªªìË@rÊrL¦<þ{†kö’ÕïÕ’cCOz“Oùó´ëëª;šŽXb€¸u·Ý!Ÿ®âå²[~ƒ†ÛPÓÓÌk7ª&ªªì¸³z³ƒƒÀÀÊÝ}lº~4HÝNºâß~4D bq—l·}Ý·®>—>“ËD4êG4DÊÝuÊ5HtÀx×ëÐr˃r>íÓÊH£¤è¤ö£¤75»CÙœóOªžó…0*´ëëQ]]ì„„gIÀbŸÀáô~†®Å ÅL{[5Ns·®W#7ªªª6Ð]ë×ë샃l¦ÀD®®ÊÀÀÝ/·B¦Ý4˃ó?Ël¸¸44N·Â†®×žì=bG–ƒÀ¸À·ÂbggOzëËWË>)²nßáBå¤{{7ö75N5NœøÚIóËi½OQvGQ¸äôònʸgqºlBn°L>/~€Ÿ~NNºFªë=ù“z¯Òuƒ·ND!B·ŸÊNߺ’/Ýi? @ Ë44˺B®s>X]ñù¸ë]iƒDÊÕ®b0XXXb4Ë—@:‚ •L®4òW¤èßk7¦’œ­Nœø³uDž—Žd³ùôëG׳ƒ]“ â@âËDv€¸òâsBNN`À/BBæüªª]=“GëëëÒDYÀYÝ}lÏN·º®:ß/D=džâBƒ`Õ¶)—x³f–?4DNBNƒl³ìô“¸³¸¦iËu@ —;bIߤN5åsÕs[NB^€ƒ–q ~ƒ®`4¢4ƒYv³–ÓWË ú@âB×Y×óÿû†‚®WW¹LÂBÝ&ÇǼ듓ê“zÐiÐYËÈqÈAñÀ·ºBÊÝž~NBl~Ÿ·læÕ;WWª&j=òDD Ë Ð=j]dQêq,Dòì4ƒíR˜ºò¦†5¦®ÕN¦W†¦ËIO³`D¦‹èŸ}}áXXôz³ƒËƒqËžž 9GvXôDB¦’Äsí•°ºÝ~Ò³“ÒÒÒêi di ¸¯¯¯ä‘Æ%3·|/¦iŸ~¦¦ÊNºÂ·>W®>ǪꖸƒÐÐ=ªã(=,,ñ¯È1˜L>%òB¶3·r·ŸÕrž“0Gг4ß5èoàb¾€òdËrË‚ƒ³r)ƒÕúƒOîXƒ!Ê>ÓUwL[bÀmüÇü¼êÒqq¸= 1Ñò‘g´´½ñŸ¦é·œÝiNʦ—âÕººãªª6³ q¸]–]@ìñQ$ÒD,‚ÅW3ͯ`WÕß’/Dƒl˃l ë06ÒbuߣpèÉÁU«€¢¢Í~ÝòÀ·â|ƒƒòÍ;þl4Ivgƒ@.íWL¹²âbX`jüªjÒ›qìñqãÄ YÐÆ½gggX8·ºliŸ~//rLÓ>¦¦BÕ(ëªÇ×ìdâ¸Òù=(ª=(êˆO¯òÈqlÔºbg$¶>â3ÊÀƒ|ÝËËêQ×4Ÿ—•a7ɨ¿-«bX¢¢Xb’}~®~Ÿ4I¢bbÀí Ìr·r®bX¸¼ÇÇz›òìñzÑ@ Ëbˆ$t‘4ݦÊ~¦‚N|ÅÓ£º/¦·&ªGìlWù×j= Çä´´Q‘G¸‚Ô˜‚ñ‘Õ††Bʃi/B ž~³Gfz€À£Ø¨£‹££E¨Ö}ø0X¢u~<è}HèUE†é™ÙXXnú>ËDYº¯ˆ4¼“ªz¼¸È q¼êÇ i ‚È$êÍYÍñŸƒSlBl¦¦þWºNNBßj=“( @?ê==žã&½´$Ç¼Í W ÄŸtŸB>·/|cƒô×ê׳}>•U!}}p¨¨<¾¾I€<è!á%°-\U•\<|dr— lSO¼h꼓=ȃD¸¼êÒÒÐ òY ò¯¸JæŸÀÍʃ~ߺB¦lsâB¦BÒ=]¸j³¸d@Õ]×(((Ñ@Yz½´½ñÊY‚Ôn3Ý‘¢Ï~/l/N iòQv×G4Ÿ—²¹è}H}[-°p[H€[è<<‹ß<£Áo‹£¨ ° Y ÈÆ½g¼êü´Ç¼¼j=Qê ò,4ñYÒqYìÒq¼4ò/·‚©æNÝŸ¦B¦¦¦ÂB®ÕÏæÊ4j×z4ƒžqÒ]ž‡@¯½ñ J¦þÅæ¦Ýgœ3Y¦òƒƒOGtƒ£ UÉ«ßu~-Ɇ¦/ÀbXX?À¸Y˸6&(ª&ù†_¿å_<ÏÏߣ•Á¨aÖaŽKÁUE!‘¢"ˆ´§VVJ8ÆmÒQ´ÇñqìòiÊS8ÝŸSiiÈ=ÒêÆìòqÍY8iiÊÊN¦·¦|///­ŸÊƒ/¦((ff4,Gx‰h&Çqqqò ‚ YŸÀA3WºÝu€GDÀ]D×Oª=‰ÐËÝußßNß¶¿¹•ú£oZ Ž•Eå‹èÊA§$ä™V©2ȧÍꈴQô¼ñqñÍÈŸYŸŸ iiÒêñ,D,òYYSSÊi¦··¦/ÊÊN/ŸÊÊŸ¦Bƒhª=ƒ€]GxOOhQ¯¸ì,YSÊiŸÈl—ÿ¹:¸¸4 À?³(Ñ9&‰³bXgbŸNß>W¶£å†††É¨a†Ï[<_«©™‘"8©Ä¥8ÈêüO½êêqñ`ÝŸŸYYd ÒÒqòòòDŸ~Êii¦‚·æÊ~/¦ÊÊÊ··ªìÑуQ³×vF&½ÇÆ͸ñ, iÊòb™çRLBDô€ñ/Dƒ?f“]]ž‰‰ë0tœÏBBNßN¦å‹¶£°yÅ7ps£--V8¥-Ô\à8§ñgêê`ññ4ÍòŸSYi8Ð4ÒqòYY8Si|æN¦¦/~~/¦¦~ÊN¦B¦³îËdž¸ê“½&ªOOêìYìiÊ Í‘¯S þB~Àô,ƒž?&ªhÐ&‰‰‰‰ôGbÀʦ¦/Ý!Êç>û¶û‹—-è««¹aya¨Uoà«8HêÇqYb$$¯‘ñì`ÍAÈŸ8Ÿ8ÍAŸS%©æ‚ËËËžËii??r³ÍÒ òÐÒÆ8dYÆêz“ê, ‘½*]@ƒfù Ÿ·>â4tžž–(c6……(F‰vO´´´Q¯¯ñ¯¯Ýº—ĺŶ¶Š—èÊŸÅ\\úa¿-AHtêzÐò¯b`¢tG¯ñÆqñ`ÍòŸŸŸŸòÈÝŸiiiiiËiËÊËiË ƒl9ÊQQìô=Y쓳È?qêGXë]?óv´ñWÐOvSƒ!/>rDêÀÐY³=cF…‰jF‰O´´O½QÇêôòæB3éèé_Éú\‹ééçpoo-‹àHb‘¢“vzq‘$¯Añ¯QÇ““êqÍÍÀDòòòŸòÝÈYYŸ Ê/ËË/Ë/l|NYQ4Ò“›¸qqQzqq¼ô½O××6xfù×zÒDËÀu`Ý//Db³ Ërª–‰F**jË–^OOO½QÇêñ´ÆYŸæû£SŸæåoÉåû}Ÿà\¿-pp!44¼ÇQzüñ¯ääzzññ¸͸q¸òYòòòDYY/Ë/iË/ʃË/~dŸGg꼓qƼÒ“¯ê³¼ÒêÒ6xvv½½´´ª×ëùÒ,³ôttbÀ`³¸ÞÞOª&F*6*…ž]h0î½ÇO¯òŸŸi:ÅÏŸSç>_çB§Aà-\\£oA‘‘›jQQqñt¯‘äzêꓼ³4q¸qqq,]qì?D iiËiÊiÊŸƒŸDŸt´ê›qYìê¸Æ,ñÇQ“ÆùªzzvOOO*ëìx×bbôô¸?=–žiÐ]Ð6*…‰6 ´OǼê¯êêqÍDòYʦiŸŸ> +127B F2F=(K.K"90FF),! : +*..L?9:@ .&:"8B ####A6.791<MMO,* @.! #A:B-6=)J;+ ,3(M .6-4#=1.+1J;3*+AAAAAAA:: ,?@@@.*,!:: *7LLOAOAAOAB99FB@@.&3J200222J37;AAOO4A;J6=32*1:2?F$.6>@/KLAAA#AA###A##=KKK 77FF8=##??AAAAAAAA1 !<1?;### M 2 :!1=###LNOO8?)0#1+M6>@@"B! :61<#@>.8,:::97"##%#F8<*3#*1 K @632! )J#ANNN " ,#MA#OOO48B"6. L::@),<"#A;AA!@*,: N4O4O##";;&;8B"=NL#8F:!<3F/=F! #F32*>@///4#########O(( ??00=1!AAAA::J7B". ($! : +=;N4AO?*"#21+J.?1+ :=@@2//@>"::?28##@2A#328+!<*99NN-"++N#444A;8=>>K(:,*",? 6>0)FB#A=OA0!<6@B*3NNLNN44OA@>==#A44NL$L=1.,?23###@)0##81<>>),:!1044(%>>,)>>@##4OAO=9F#@. 3 B=*,.>83;#4O8!-.@@= 98A44OO#=@@AO$(%%%KK(NO0),:!,)"O6?,+")<++1?#K////==#A#"B($! =+ 0=AA#7+12B"# >&B)! ;LOO27#01!1@B0):*J;6''<: "//  +1?J7 & -%$"2*L@J*  +##80B$. O1)66>OAA"*J>.L;9*< 6?0J8=#LL%6> 38#ON$%($44A#->/(( &&  %"2*+!!++,8>0?3!<//>6;B##$!::B=!AAA !1*78NM.K1<::3;4O8230:+, >=9:+, @. 1< :97 -$:: !"I>6(L38#FJ)< M@#A#$2F 698"#A44 KLNAA##AOO%@-.6..&M N8?),,++3F/@900#21: *J7AK>&=;;BB8F,!!:=AAA +1*J=#N>&2?1 *9;#8LNL=A#3*:,3&@@L;?1  $21+)0#4( 56& +78*1:#0?6=)1 !278LL.>"F3.6>@64###A4LNO#=B0))98 K(27##7+-&@M#B"##%()2 >68=O4N(K NAAAAOO#6@5@>>@@@>>..M390?,<1?23>@J10##* M47FF;"##"8*1:2;83?+ 7AAA+!+?07=@@>6 8?,++,*;=#"BL(LN4OAONLF;B###;9?< !+*%-M6@@ L=3J*)ONNO"90,1123 >/ K::)J#"8 MA7AA -+1"%>""AO4(KM MKNOAAAAOO& G@@@>@>>>@>@6.73*1!+*2.@N;: +" +&&"30AA:3F@ !"##$%& ' ($)!*9FGH. <+ ::F8##= &>90*?2##?8.6>=..AA;91*( 81@6B888O4&:: +@MMON(M-(A#AAAAAOBM' ...@@@>N#="9* 1* &@ ::#; ..883= :AA?2@ ##E>+!J3##"(K@@F22###8F,, &@##+<>.M!,*3#=9)+!3K .>>MOBB=A4NNA#&6. 1<+ ::+*3O>@@@&& L K L#AAAAAAAFO' M&& .66>@@/@(4A#9?<  +<1$- .>@/&L:::"####;B>>8=;= :AA<1@  #CD ?1*J 6>@@337;8####"B790? 6##872),:JF8#A8B:BB7AO4 !B4,)ltris-1.0.19/src/gfx/balloon_peek.bmp0000664000175000017500000000234612140770047014376 00000000000000BMæ6(°u u (((((((((qÌâ((((((‚êû+++((((((ƒìþƒíþqÌâ((((((***„îÿxÙíb°Ãb°Ã(((((((((ƒìý„íþf¹Í^ª¼^«½c²Å'''((()))…ïÿ‰ñýoÈÞa¯Â^ª¼^ª¼c³Ç(((---šÿÿˆðûqÌâqÌâb²Ä^ª¼^ª¼$$$((((((ýþ—ýÿ{ÞñqÌâqÌâqÌâb²Ä^ª¼d´Ç((((((***öþƒìþqÌâqÌâqÌâqÌâb±Ã^ª¼_¬¾lÃØ((((((((((((***ŒýÿöÿqÌâqÌâqÌâqÌâqÌâh»Ï_«¾^ª¼^«½c³Æ_¬¾`­¿...šÿÿ€æõqÌâqÌâqÌâqÌâqÌâqÌâmÅÚa¯Á^ª¼Uš«Uš«(((—þÿšÿÿzÞïqÌâqÌâqÌâqÌâqÌâqÌâqÌâqËáqÌâqÌâ(((˜ýÿ˜ÿÿuÒçqÌâqÌâqÌâqÌâqÌâqÌâqÌâqÌâqÌâ---›ÿÿ‡òýqÌâqÌâqÌâqÌâqÌâqÌâqÌâqÌâqÌâ(((›úÿ©þÿuÒçqÌâqÌâqÌâqÌâqÌâqÌâqÌâqÌâ--- þÿ†ñüqÌâqÌâqÌâqÌâqÌâqÌâqÌâqÌâ(((žûþûþqÍãqÌâqÌâqÌâqÌâqÌâqÌâqÌâ(((™þÿ™ýÿqÌâqÌâqÌâqÌâqÌâqÌâqÌâqÌâ(((Ÿüÿ²ÿÿqÌâqÌâqÌâqÌâqÌâqÌâqÌâqÌâltris-1.0.19/src/gfx/back4.bmp0000664000175000017500000001376612140770047012740 00000000000000BMöv(~^€ë ë 0UŸ@„[†®2V‡@k³*N‰n“½fŒ·‹°¾›Æ» 3jH Xˆ¡áâǼ˱ª«Hˆc¡Øp3¼»»º«¼Ì̳&g$@ªª¡Ê:¬Ë3¼¡Óˆhgw;º±‰:Ë43;Ða»3Ì=0E [݈…¡§„˺«º»»¼»2$"@ºª:ª¼3¼ÌªªºMÝÝ32«¡H…º  4$„¤@¬¡Bˆq  3×#»¼Ì»ª««««»£MD"Aªªª:¼£«Ìºªªª«ºØÚV‰DLÁ¥DA¥T«@Di—DKª¥ªQPZ¬ÎË»ª«ººº¥¡Ud ±¡»3ª@ººª† ¡=‡hˆ :Ë@3:ˆ„†h–Ó¡1»ª$D ÌÎ˺ªË«ººªª£&q± ª1:£MP»Ë¡»Ë­Ñ̤F˜Et™`¼G ËŠDh†ˆˆ ¡Qº$†P¼ÌÌ̺«ªª»«»£gBUÊ«Td»ºËÎÌ̳Rˆ™’Chb¬±0«»ª4sªH‰–DZR€A1±D@(„«ÌÌÊ£;º1ªª¥bHS:º¥ZTD¬ÌÌÌλ±&†h„Rh`ºA¬º«¡Dfh`ZVfD«±Pft@ ËÌÌÁ»Ëº»¼ºBªA­˜A¡Û6 ¼Ì»Ì¤ºU¼ØD;±:¼»£E–Dxvfi„F ª»¡Fxe»»Ë»»¬Ë̪º¡U»P1ª­™Õ0dPˆ!«Ì˼ʼºTª¬¸™D™zº¡Öa«¡D™%C‰™‡ ª0¼Ìª¥38b@P«º˼±«4UA¥H˜q̱&„¼Ì«Ì«»á‰# ڣ׈C³™»º’‰€¡º4»º–"Jºªt±ª«¡ª0wC±³˜@[´‡»Ë«º»33¼Ëº1«ÌÌF1º™˜mDBˆrB[ÊT@DE(`’ªª'«»ºÐ ¡£¬½J°6b™}E¼ª¡º&J¼»Ê:ÌÌì±1¡1»™™˜ˆJ¤hˆ–dZÊV™ˆ†ˆbªip:  ªº€¼ª»½j«ºFf‰–! º0ºÖd¡Ñ¼ìÌÌÌˬ™™fˆ%R‰i‡E™˜DF‰z¦„»Zª««¢<ÊÊ¡:SC&‰™ÕªpË0¬vC¼ÌÌÎÌÌì£3D<‰˜fˆ™˜™™ˆ˜— Åw@¤h¤–:¬Ê¬»ºªª±ª£¼ª¡tR‰„«3¼£:0±¼ÌÌÌÌÌÌË»§sh’F‰™™™h™™™€Ì±#±y„G »¼ËÌÊ¡ ̺FJQZ¤@Bq¡B& ª¬ÊD‡¡¬¼ÌìÌÌÌÌÊtdDw‰™™™i™™™˜¥y˜JI”*`¼º¬ÌÊݪ1¢q¢dr¡v1&Aʬ̺£ÓµD ÌÌÌìÌÌÌË4Cxˆ™™˜ˆh™™™™˜™™˜%™‡ BÊ1¼Ë»­qTª±¡ mQGd Bº+ÌÊÓº¥ª˼ÌÌÌËË̳4ff‰™–h™™™™™™™˜EF˜™xA»¡»ºBD¡¡ £tº¡f =c¼Ëˆ««¥Zª«ÌÌΪ¡ªª»ˆ‰™„¡)™™™™‰–ˆbUtX–t w»;£x #ª£M»¡A«¥C»ªÁ‰jUª$»»¼Ê=15™˜™‡G‰˜†tFrf”GUR ˆD º4 »¤:†$¡1«±¡!ʪªÐZÁtŠT  $E»¡ÌÌ­;×gˆ™†vpI˜dA (˜†@UT”(De¼±0C«³ªºTA3ÌË»†« ËÔ±:AHj¤tE¼±»¼Å<³ÊdDv@x„hˆc6f—fp º@vKË4F ¼Ë¼ÁD`£ª«±»§Ú«»Î 1KµibR†@f;Ê»¬Ì5ËÌʧuD‰‚ ¥HfD™˜ht(e9!Dd«fK»»ª¼Ö4»Ìº±d«ª¬ê«p³ˆ‰g‰—B¡Ì˱¼Ì³u™dª†f™˜x†D‰”IQˆs¡j»º,¸”«º¼ºË×;;ÌËÊCÁv™‰Ÿ™Dw±¼¡»ÌÌ˪µ‰˜ &$iˆ‰™‡†G‰d–@HdTm««º:ËÙ ª"Zº¬»¼´*죡‚ËØ™˜™Ÿ†zF:˽ÌÌÌëÌSDDfˆhx‰™˜†˜„Dˆf@ ±ª¡»;´xjfQÓ«¼ÊÓ¼³;w9x™™™‰…;º³¼ÎÌ̼εFfGGˆ$xi™hg†vb‰‰„«»  sF„Pv™d«Ëº¬Ë» Ò‰‰™‰—¥K˺¡¼º¼ìÌÌÌËbidi` ™‰–tˆ–Zº¡T¥«AGƒ©†idH*]a£»¼Á@E™ˆˆ™™ùÑJÌËÊ«º¼ÌÎÌ̺BfHdF†ÒD)˜™$1Ì̺3SHbVt@'ˆ‡ˆ„Hf„¡»»ÃÐ@i‰™ˆ†™#¼ÌÌ»ËÌÎε(hAA™™˜™™d#¼ìÌÎΙ’'K±Ù˜F‚×Ù’» »»ÊJ]™™™–™˜™Û¼ÌË£Ì˺dD"i˜‰‚GÑ«ÌÌ̼ÎëØB„\£ Ff˜‰™tˆF¬ª»ª« @y‰™˜‰™™aº»Ì¡»ËºGD(˜FÑ«Á†1¼ËÌËË̼ÌÎÁ±t¡3 Ô M˜×™‚MqS:̳£`P)ù™yfƒ«¼APP]:¼ÁrF™†Ú»Ìì³¼ÌÌÌ˪˻«Ì³»5±1«1»»Øgfvd£BQ¼Ê ª£ÒV™™’T@yÚ:vDˆGeª«1£Ó»»Ì»ÌÌ̻̺«0¬±ª»§ª¡¼Ì¼ÊªËV„bQªÌJ±1™˜ˆQiýD™™˜ÑH1¬Ì˼¼ÎÌË«ºA£«º»»´# ʼʫ¼±ØAA3«»WA¥ª1Di™hb‰t–Ø™Tˆy™™–dv̼ÌÌÌÌìì»±:ªª»»Ì½™“Ë£Z«»¡z¡D fˆK:°!1PpMixŸ™™™$‰Tˆi™™˜†JΪ¼ÌÎÌÌ̬˱x“»»±ªËÃØ™ARF$»¥‚¡M«i”ÝÊD:»Ë32C«¥D8ˆ™™™™%I˜‡v–Õhp»±¾ª»ÌÌÌËÌ¡ËÎË̼ÌË'x$iIƒF"‚i««¬ÎÌËÁÐ[Åif˜‡™™™™g™bª»*Cªª¬Á¼ËÌÌÌÌììÌ«ÌÌ̺«µÔʺ¥Ê–™dD[2ËḬ̀$±‰™™„ˆh™sÝZª±ÔI„»«Ì±Ì»ÌÌÌÎÌË»¼ÌÌ£¦\Z̼ÌìË3¼Ë»8™v ¤J³Ú˺«êg¼½˜‰™5DDG ª»«»º»¡G@¼ª¼º¼º¼ÌË˼˼˻Ì˪­«ÌÌÊ̼Ì™ £!˼»\̤5«hh™D¼ÌÌÌË»¼ª1ªË»»»Ë¼Ë̫̼Ë˼Ìʪ¡±ª«Á;Á¼áiAª=<«»¼«¼°£EH(ˆ™hf@ÌÌÌÌÌ»¼Ìºª¡ª»Ì»ÌÌ˪»«Ì«¼ËÌ ª ¡««³P;̸sª;»ÌÌ«Ì ¥B$‰™˜f@¼ÎÌÌÌÌÌÌ̺±¡Q«£¾Ìʳ»¼ª¼¼Ì°µ¥ª1»»£0¼Á3¼ª¼Ì±[̽ŠËdy™ˆ$DÌÌìÌÌÌìÌÌ̺$Ff—«Ë̱¼Îˬ̼³·brª¼Ö[«ÌËÌ˪»«¼¼³ÌËv» DB™–ÊÌÎÌÌÌÌ̼ÌË4bDFESÁ3v1¬ËªËÌÍpIh\µc»»C»¬»ª»¼»ÌÁ¼Ìˤۨ„FfD&ª¼»¼îÌÌÌ»»ËP$´v Ê4hd ̱ª¬ÁÛH™ŠË4dZmË̪˪ÊÌʬì̵°ˆd¡Dh«ªº¬¼ÌÌîÌË¡«§Jº»¼¼»£P¡3ªÌ:9`‰÷:¦"EZ»£«±«ªÌÁ¾Ê®ÌºT:fJDi3:ËÌËÌÌ˺«ºª»ÁºÌ˺ªª±D @¤„H™`§™bAª¼Ê£»«±¬»µJÌÊ¡12e¡Dg4»ÌÌ»Îì³1»»»±H@t«Ìª»Ñ´u³¤h@Ôt¨™‡p@ËÊ«ÌÌËË!ÌÊ¡1D@@±«¼ÌË«ÌÌÌ̤D@FA@@«±ª»¼º¥º¥h™˜UHƒ¼¼Ë±¼Ê¼Ë̻˪««ªˆwD ¬ÌÌÊÎÌÌÌÀ &„gB µ ¡¡¤¼Ë0 GE(™D‚¼º¬µ;Ë»£¾Ë¼Ì»«º»ºx`P–Ìì캪«Ë»»»±Ô(¡Dd £A«¡Ó««ÌÊ¡4y„`A¡I™@DÃJ¼ÌÌ<Ë̺«»º¬ËF„­=ª»¼Ì»º±»ª¼¡¤!¡«¡ »¼»Ë»»»ºË¼°-@ ªDG$hb]K§δc̼̺¬Ìº»¡hÓº¡ª-1¡¡U«ºÌ»Ê¡¬±P!£ª»ÊC»ªÊ1QQDE™p½…° ¼ÁC«ÌÎÌ««»»±Gƒ«»°fŸ™‰`[¤<«¼Ë˪¡£  #º×J»Ê¡Ìª¡Qª¤A°‰pºÖ Ì»»«ÌÌ몡¼ÊÙbg»« ty™™™“º;ÊʼµfZÒª¡Ñºr;¡¼¼Ì˼̣5 ¡‡¼µ;ÌìÌÌÌÌÌ»ª«Ìg‰;ËI™™™˜ «ÌºØ‰j°«ª«;˼̼̻̺¡¡Dtª'¬ÌÊ ÌÌÌÌÌË˵D¼ªBiÚ£Ö„I™™™„¡«º«P«Vf„ªªÓ»«¼«¼Ê¼Ë»ºÐDH–TA«Ì»«ÌÌìÌÌ»¡fdV­ˆ’H™™˜dH«ª¤KÊ«FEË«£»ª»«Ë¼Ì«¼4 &GpÑ¡¼Ë˺¼»¼Å$G‰‚HC¡w3Ó1ºy™dFJ`3 €Ì̱D ¼«º«««¥1»¼Ìʼ±;E@B†@„ Ì̺ª¥ª:ÊÔ†™™&x— gJ«ÌÌ£ˆDD°!‚Zªªd±º«»»¥1ÌËÊÐD¡Di˜‚@ ºÌ̪ºª:ˉh™ˆhsGŠ¡¬¼¡DfÕ«PºHGAZ D0»»»»«»¡¬ÌÀPj`H™˜D$¥t «¼¼Ì»Ë G$=¥G$CCÒD¼ºª&i!»º±«¡H‚DJd¡»ºª»£¬ÌËJ4˜r‰™ I€̼Ì̺˱«ÊÊFdU†t ÁDi†dº¥  ‚¥)AD ¡¼«º¥ ÌÌ9ƒ¨tiˆdˆ‰–¥g¼»¬Ë̺¡˼ifAJʇvf‰!«V!&` 'Q»º  €Wuª«ÌË6„·aur)˜h(”«1º«»»»4DJÌÌ˳ˆ!Dx™„A!¤&T»Ì̺G¢ˆDg`¬Ë%°B”DD˜†(—º«ª»Á1º´h$`¬ìëË'@F @u$i™˜j¡$¡F!º«Ìº¼¢@D@"aKº¼Ì4dÍf@‰tI™(†K°e«Ê«3ºFfhJªZ¡Qv!¡‰™™™›ì¢Acªª¡±¡‡QBH@K»ÎΧˆÄ—aB$†xˆ™˜bZ;̺4KPfxqݺ"B`™™™™˜[ÊСª;§qˆgt»¾ì´GÅp F‰fF˜vhq«¡ìÌËEQx‰”¬µËF‡†º¡ªÙ™™™—»ªª» »ºD°I†tHK¼ÌÄ ±„$Bh„ f™†JºªÌìÌÊ¥ h˜»±¡D(%Zº«¤‰†™˜¡¡£»Aªª@˜t¬Ì·A­ˆ™DFh†DPi‰bE<ÌÌ˪¡™$¼Ê»ª†uºA GG˜f £«p»Ê@ªªˆP ½™u«D[» ¦™™—g&@F†h„DA¼Ì̺4‚@ªÌº¡h`D‰†D ª«°‰„ª@ªª iD*»™– ªª¡U¬´†i˜A¡  ˆ$ˆ(†–Q»Ì°DCG1Ì¡pb††¡Gˆ&vK º)–@ˆ §F‚Dªy™*«»µ ؈–DBÔTdG$Gv„J¼¼ÀZªª$1ÌPgˆˆd@ª±BG†ˆJ¡˜„™‚Vdhg@F‰ÌĈºˆ˜‚TAH™ttAD €];¼µª‚̈D$FgBEªF"„DKª‰hf†@H„dH (y„¼Ä‡jb(i’DUi–™Ð B&‰‰”±GTf™<Ì$vˆ˜`@FqP ¤G™ˆdI–`HaH†J±dA¡i&™™„]h‰i’$h™’Wh`†‰‘Ì Z ‰–'ˆ„F ™™—(™d$g™Z°pAI™™™—EQFf™y‰`x‰˜Z €df –ÌZª»D˜ º« AA ‰™–Ahy‡xJ¡i ¡et˜)™˜f$f@i†xˆ”‰Ÿ³Ó4bIÒ˜:3UJ D¡¡¡D¡)™†„ Fh˜h€xH§™ˆ™™™dH*X–i—’Pi™’«Z¥DG€Ö&cU@¼¡@Th†@DB «™†ˆ bihf@B‰•P ‰hˆh†E! dF™˜A–’¬Ëª¡Eb¡$‡G@«Hq«)–DDFp ´ˆ†b@G™˜fˆ`@@B’ ‰–i‡†¥D&†$Df†J̱G†P@˜"@D@µPH–gFFdb°†‰dtf‰†h‰`E†˜‡hbv±2DF€ui‰ƒÌÁ 9dDBp Bd«»¡D&h„F†dDQvhff˜GDh‰€«±DRf'ADˆd$ ¡Q˜I˜i–g¬º¡ Fd::$D`&dËP@Ögh–fD!@rvh@ׄºD„Fdd@A±;XM™)Ÿˆ ª &ˆLÚfDJ¡ºº»$ˆˆˆrEfD)`@@¡ºº¥‰mDFh™@˜QË zI‰™—¤ªP‰i‹`htEQ¼º« ªS£7hˆˆˆpD@ª$BhQGEººª»³:9ùdGF˜™d™˜L° ™™–g«H&‰…f‰we»­Ù’dQ3&ˆˆ™ÐFA'A°H€ˆ`»»»«»­‰˜h‰™™”w˜fj°AÁZi˜vˆ@«VDi„fv– ªF™™„Q£Ý݈Ý=Ó Dfd¡bAt »«ËÌ»¡ˆˆ˜˜™f†hdCCË;­‰‰fDF‰˜BD†D™™dª===Ó£ØZDx «¡»PÊ1«¾Ìª¥D&ˆ™™fg&f¡«ˆyd§†ªf‰g!ªHdhAF˜†ir«1ªª»Ì£Ú(‚D:«¡«ªº¼Á«ÌÌ»»¥¥†ˆ‰g ˜D»ÊªÃ—y”wdi!ER`ˆ–&†C:«¼ÌÌÌÅÔPH—D:«ºª«Ëº¼Ìʺ£ªx˜‰†Eªy`Fa»ºËÒ‡dJ­Dxltris-1.0.19/src/gfx/f_small_white.bmp0000664000175000017500000002546612140770047014571 00000000000000BM6+6( 'à à   !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz{{{|||}}}~~~€€€‚‚‚ƒƒƒ„„„………†††‡‡‡ˆˆˆ‰‰‰ŠŠŠ‹‹‹ŒŒŒŽŽŽ‘‘‘’’’“““”””•••–––———˜˜˜™™™ššš›››œœœžžžŸŸŸ   ¡¡¡¢¢¢£££¤¤¤¥¥¥¦¦¦§§§¨¨¨©©©ªªª«««¬¬¬­­­®®®¯¯¯°°°±±±²²²³³³´´´µµµ¶¶¶···¸¸¸¹¹¹ººº»»»¼¼¼½½½¾¾¾¿¿¿ÀÀÀÁÁÁÂÂÂÃÃÃÄÄÄÅÅÅÆÆÆÇÇÇÈÈÈÉÉÉÊÊÊËËËÌÌÌÍÍÍÎÎÎÏÏÏÐÐÐÑÑÑÒÒÒÓÓÓÔÔÔÕÕÕÖÖÖ×××ØØØÙÙÙÚÚÚÛÛÛÜÜÜÝÝÝÞÞÞßßßàààáááâââãããäääåååæææçççèèèéééêêêëëëìììíííîîîïïïðððñññòòòóóóôôôõõõööö÷÷÷øøøùùùúúúûûûüüüýýýþþþÿÿÿ ÿÿÿÿ ÿÿÿ ÿ Õ ÕÕÕÕ ÿ ÿ × ÿ ÿ ÕÕÕÕÕÕÕ ÿÿ ÿ ÿ ÿ Ø ÙÕ ÿ ÿ ÿ ÿ ÿÿÿ ÿÕÕ ÿÿ ÿÿÿÿ ÕÕ òÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿ ÿÞÕÕ Ûÿÿÿ ÿ ÿÿÿÿ ÿÿë ÕÕñÿÿ ÿÕ ÿÿÿÿÿÿ Õ ÕÕÞÿ ÿÿÿÿ ÿÿÿø ÕÕÕÕÕÕÿ ÿÿÿÿ ÿ ÿ ÿÿÿÿÿ×ÕÕ Þ ÿÿÿÿÿÿÿÿ ÿ ÿ ï ÕÕÕÕ Õ ÿÿÿÿ ÿ ÿÿÿÿÿ ÿ ÿÿÿÿ Õ ÿ ÿ ÿ ÿ û ÕÕÕÕÕÕáùÿÿÿ ÿÿÿÿ ÿÿÿ ÿ ÿ ÿ÷× ÕÕÕÕ ÿÿÿ ÿ áÕÕÕ Õ ÿÿÿÿÿ ÿ ÿÿÿÿÿÿÿ ÿ úÕÕÕÕÕÕ ÿ ÿ Õ ÿÿÿÿ ÿ ô Õ ßòÿÿ ÿÿÿ ÿÿÿÿÿ ÿ Õ Õ ÿ Õ ÕÕÕÕÕÕáùÿÿ ÿÿÿ ÿÿÿÿ Õ Õ ÿÿÿÿ ÿ ÿÿÿÿ ñ Õ ÿÿÿÿÿ ÕÕ ÿ ÿ ÿÿ ÿ ÿÕ Õÿ ÿ ÿÿ Ö Õÿÿÿÿ Õ ÿ ÿ Õ Õÿ ÿ ÿÿù Õ ù ÿ ÿÿ ÿ ÿ ÿ ýÕ Ö ÿÿ ÿ ÿ ÿ ÿ ÷Õ Õ ÿÿÿ ÿ ÿÿÿ ÿ ÿ ÿ Õ Õ ÿ ÿÿÿ ÿ ÿÿ Û Õ ÿÿ ÿÿÿ ÿÿÕ Õ Õëÿÿ ÿ ÕÕ ÿ ÿ ÿ ÿ ÿ ÿ ÿÕ Õ þ ÿ ÿ Õ Õÿ ÿ ÿÿÿ ÿÿÿ ÿ Õ Õ ÿÿ ÿÿ ÿ ÿ ÿ ÿ ÿÕÕ Þ ÿÿÿÿí Ö Õ ÿ ÿ ÿ Õ Õ ÿÿ ÿ ÿÿÿÿüÕ ÿ ÿÿ ÿ äÕ þ ÿ ÿ ÿÿÿÿÿÿÕ Õÿ ÿ ÿÿ Õ ÿÿÿÿÿøáÕ ÿ ÿ ÿ ÿ ÿ Õ Õÿÿ ÿù Õ á ÿ ÿ ÿ ÿ ÿ Õ Õ ÿÿ ÿ ÿ ÿ ÿ ÿÕ Õ éÿÿ ÿ ÿÿ ÿ ÿ ù Õ Õ ÿ ÿ ÿ ÿ ÿÿ ù Õ ÿÿ ÿÿ ÿä Õ Öÿ ÿ Õ ÿÿÿ ÿ ÿ ÿ ÿ ÿ ÿÕ Õ ú ÿ ÿ Õ Õÿ ÿÿÿ ÿÿÿ Õ ÕÝÿ ÿ ÿ ÿÿ ÿ Ý Õ ÿÿ ÿ ÿÿ è Õ ÿ ÿÿÿÿ ÝÕÕÕÕÕÿÿÿ ÿÿ ÿ Õ ÿÿ ÿ ÿ ÿÕ ö ÿÿ ÿÿÿ Õ ÕÕÿÿ ÿÿ Õ ÿÕ ÿ ÿ ÿÿÿ ÿÿÿÞÕÕ Õÿÿ ÿÿ Õ Õ ÿ ÿÿÿÿ ÿ ÿ Õ Õ ÿÿ ÿ ÿ ÿ ÿ ÿÿ ÿÚ Õ Õÿ ÿ ÿ ÿÿ ÿ î ÕÕ ÿ ÿ ÿ ÿÿÿ ù Õ ÿÿ ÿÿÿÿÿ ÿÿ Õ Õÿ ÿÿÿùáÕ Õ ÿÿ ÿ ÿ ÿ ÿ ÿÿÿ Ü Õ é ÿ ÿ Õ Õÿ ÿÿ ÿÿ â ÕÕ ÿ ÿ ÿ ÿ ÿ ÿ ÞÕ ÿÿ ÿ ÿ ù Õÿ ÿ ÿ ÕÕ ÿÿÿÿ ÿÿ ÿ Õ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÕ á ÿ ÿÿÿÿÿ ÿÿ ÕÕ ÕÕäÿ ÿÿÿÿ ÿÿÿ Õ Õ ÿ ÿ Õÿ ÿ ÿÿ ÿÕ ÕÕÝÿ ÿ ÿÿ áÕÕÕÕÕáùÿ ÿÿÿÿÿÿ ÿ Õ ÕÜ ÿ ÿ ÿ ÿ ÿ ÿÿ ÿú ÕÕÕÕÕ Õÿ ÿÿÿÿÿ ÿÿÿÿÿ ÿ å Õ Ö ÿ ÿÿ ÿ ÿ ù Õ ÿÿ ÿÿÿÿÖ ÕÕÚë ÿØÕÕÕÕ×ÿÿ ÿÿ ÿÿ ÿ ÿ ÿ î Õ Ú ÿÿÿ ÕÕÿÿÿÿÿÿÿ ÿ ÕÕ Õÿ ÿ ÿ ÿ ÿ ÿ Õ Úÿ ÿ ÿ ù ÕÕ û ÿÿÿÿÿ ýÖÕÕÕÕàÿ ÿ ÿÿ ÿ Õÿÿ ÿ ÿ ÿÕ Õ ÿ ÿ ÿÿ ÿ ÿæÕÕ ÿ ÿÿ ÿÞÕ ÕÕÞÿÿÿÿ ÿÿÿÿÿÿÕ ÿ ÿ ÿÿÿ ÿÕ Õÿ ÿ ÿÿ ù Õ ÿ ÿ ÿ ÿ Õ Õ ÷ ÿ ÿ ÿÿÿ ÿ ÿÿ ÿÿ ÖÕ Õù ÿÿ ÿ ÿ ÿ à Õ Ù ÿ ÿ ÿÿ ÿÿ ù Õ ÿÿ ÿÿÿÿÿ ÿÿÿÜÕÕÕÕÕÕÖ ÿÿÿÿÕ ÿÿÿÿÿ ÿÿÿÿÿÿÿÿ ÿû ÕÕÕîÿÿÞÕÕÞÿÿÿÿÿÿÿÿÿÿÿÿÿðÛÕÕÕÕØêüÿÿÿÿÿÿÿÕÕÿÿÿÿÿÿÿÿùÕÙ ÿ ÿ ÿ ÿ Ý Õ ×ÿ ÿ ÿ ÿÿÿ ÿ Õ ÿÿÿÿ ÿÕÕÕ ÿ ÿ ÿ ÿÿ ÿ Õ ÿ ÿÿ ÿÕ Õÿÿ ÖÕ ê ÿ ÿ ÿÕÕÿÿ ÿÿÿ Õ ÿ ÿ ÿ ÿ Õ Õ ÿ ÿ ÿÿÿÿ ÿÿÿ ÿÿ òÕ Õá ÿÿ ÿ ÿ ÿ Ý ÕÝ ÿ ÿ ÿÿ ÿÿ ù Õ þÿ ÿ Üÿ Õ Õ ÿ ÿ ÿ Õ Õ Õ ÿ ÿ ÿ ÿÿÿ ÿ ÿ ìÕâüÿÿÿÿÿ ÿ ÿ Õÿ ÿ×ÕÕ ÿ ÿ ÿ ÿÿ ÿ Õ ÿ ÿÿÿÕÿ üÕ Õù ÿÿÕÕÿÿ ÿÿÿÿ Õ ÿ ÿÿ ÿ ÿ Õ Õ ÿ ÿ ÿ ÿ ÿ ÿ ÿÿÿÕÕÕüÿÿ ÿ ÿ ÿ Ý Õ ÿ ÿ ÿ ÿ ÿ ÿ ÿ ø Õ Ö ÿ ÿä ÿ Õ Õ Úÿ ÿÿÿ ÿ ÕÕ Õ ÿÿÿÿ ÿÿÿãÿÿÿÿÕÿÿÿÕÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿýôÕÕÕ×åùÿÿÿÿÿÿÿÿÿÿÜÿÿÕÕÕÕùÿÿÿÿòÕÕÕßÿÿÿÿÿÿÿÿÿÿÿùáÕÕÕÕÕÕÕÿÿÿÿÿÿÿÿÿÿÿüÜÕÕÕÕÿÿÿÿÿÿÿÿÿÿÿÿýõàÕÕÕÕãùÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÜÕÿÿÿÿÿÿÿÿÿÿÿÿÿÕÕÕÕÕÿÿÿÿáÿÿÕÕÕÕÿÿÿÿÕÕÕÕÕß÷ÿÿÿÿÿÿÿltris-1.0.19/src/gfx/back2.bmp0000664000175000017500000027574612140770047012746 00000000000000BMæ{6(´´°{û-û-$28 <!B(I9!B$D"2S;Kn@Nshušjw²¾Ø­¹Ô¶ÂÚ“ À•¢ÂQ_„1@bbp•gt𛼢¯Í@NsLZ^l‘Tb‡Q_„ESx'6X"1Q  "49890:"B &"9"B =:286.$ :. *8 *02)J*K'H A <<<;884. *&$"" &$&.049 > *$D#C ?"1Q6EgivœgtšŸ¬Ê‘œ¾§³Ð˜¥ÅŸ¬ÊXgN\—¤Ä‰–¸—¤Ä›¨ÈN\CQvHV{CQvBQuKY~DRw-N & *4649.8$D40 (:$D @ >9.. (" $8 * (%E&G)J+L(I!B <<988860. , ($ (&"        ""$""" * ?/P,M'H 0Q)8Zcq–w„¨¬¸Ó±½Øœ©É’¿š¦ÅDRw@Nsbp•ESxUcˆDRwSa†;Kn=LnP^ƒUcˆ-<^JX} =" *040.:06(I"B.9 ,8 =992""   $; , $4UVe‹‚³‚³.=_ @"B"B =::86220 , , *&$&$"       "$& ( *  ($&" " &.69 =#C)J)J*K&6W#3T"BJX}z‡«Œ°¢¯Íp}£p|¡’¿JX}O]‚6EgKY~Zh"2S`n“-N.80&.=_$.44 * ,<46-N,M89  ($ ( ,<+L>NqVe‹Œ°€±(I49998984 ( ( ( (&$"    $$$""  "      (28: @%F-N%E/P3Bd*9['H+:\Ve‹lx@Nsw„¨}Š®u‚¦›¼AOtO]‚N\Tb‡‹˜º^l‘9 "$ =#C!B69 <69"B"B ,$ ,0$ , ( *. *.0%F#3T7GjVe‹Q_„/P ,9$D(I-N92 (& ,.& $ $& ( ($ " 8 @!B#C%F%F A ?9684.8 @,M"1Q A'H7Gj:JmAOtCQvLZ+:\0?a%F&; ( &$: >94$&. (4%E88& (2.00(I,;]1Ad)8Z<"9$D%F @ =0 * ( *. ,&$$&$$""    $ ( , *&  ;*K+L+L+L!B24 ($ ( (6 0Q >8?Mr?MrCQvHV{;Kn0?a7Gj(I * ,& ,"6940"""69-<^ =94 ,8. *#C*K'H A: (  *<-N(I<0 ( *040 (  "$&$$"   & ( ( (& "  8%E(I%F ?2  99+L @86Eg;Kn5Df>NqGUz8Hk'6X9"0"$8;2"B'H#C8626R`…+L ,&$690.%E,;])8Z9"6/P'H<2.286 ,""$&$$    $& ($&&"  $ (. <#C @0 $  8 @"2S:*9[3Bd*9[4Ce#3T%5V(I9" ,  * *.": @:."B <'H-N ,& *2ž«É`n“.O A <"$$8869#C-<^4Ce&G00 *  &"2S%F:2 ,02 ," " ( (&$$"   & ( , *&& ( *2 (0;9".9 ? <&6W&G'H3Bd*K&G90&8986 *" , ( ( ("86 %F,;]+L.O,M0O]‚P^ƒˆ•·bp•7Gj<0  " *.6 @"1Q"1Q"2S,M'H(I @ "#3T A2&"$$ $ " (&&&&$$"   "$ ( * ($& *. ( ,22 ,4< A"B!B$D"2S5Df>Nq>MoGUz.O'6X,M; ? *9<2"& (&.& ,0$D*9[)8Z)J'H#3T*9[AOtXf‹R`…-<^9$D * (06:%E$4U&6W+:\(7Y 0Q/P%E" 0Q; ("  " ($&$$"""$$""""   $$"""$ ,2848 <"B$D%F > ?'H+L+L%5V7Fh"B&G<%F.O ( A"0229 , $  04 ? < ,"&6W=Ln0?a$4U%F,MBQu?MrFUy#3T#C A0 ("2 @!B#C-N)8Z&6W*9[7FhTb‡p|¡FUy*K8 * ,&$$$$$$&"64&4 * ($   ""$&...2689: 0Q%F A&G+L&G A @(I<8 ? ?4.92 ?%F < , "&$ "<$4U6Eg>Nq-<^%F$4U(7YDRw#3T =;< ,$ (!B'H!B(I/P,;](7YJX}es˜‰–¸›¼%E9 <2$" ( (&$" ".&"4 ($"  ""$&& ,. ,.2889'H#C ? ?!B A @ ?4"; @9492 < ?4"""" & (" *4.4Ceq~¤6Eg(I 0Q 0Q?Mr(7Y%E886& $$8&G)J"B'H"1Q$4UCQvO]‚nzŸš¦Å|‰­8"$;:0 ($$& ( * ("  $ (44&" ".& ( * ($  """"    """& ( (...00268489: < =:6 *8 >9.4088$ $ 6$0";ivœft™:Jm/P!B>Mo*9[ >962 , " , >*K)J"B%E 0Q'6X;Kn\j‡”¶jw)8Z $4!B9 *2 * ( *00 *&   """& (&" , * $ * ($""$""  ""$"& ( ( (0000248649:9 < A >8#C9.9 <900.2 *  " * ( & "8 A3Bdivœgtš5Df+:\@Ns+:\&G688 ,$  $ ?&G'H#C A+L(7Y1AdXg\k‘+L&"!B*K9 (424640 ("  ""&$"$" * *.$  "$""""""""""  $"&&& ( , *02224888%F$D =8;#C%F @$D <69<:88. ,& " $. *8&2#C0,M.=_ft™ft™0?a,MESx#C<682$ " $ ?%F&G&G A*K"2S1@b3Bd9& , ;#3T/P9$24882 *"  $ ,8 ($ "$$""$$$$$$$$&$ ( ( ( , , ,02246889 @ @ =<;;6 *$$$ ,89984. ($&$""$" ( , ( $ (2.6&=Ln$4UXg`o•Ve‹"1Q0?au‚¦#C.0. (  " $&G(I&G)J!B"1Q'6X:9 (4$4U5Df-N8 ( *00 ,&"  "$   " ( (" "." & ($  """"$$&& ( * , ,.0 ,.02289908 < @; ,  "&.89982 *&&$$ &$ "&& *.$ <:9 =.~‹¯CQv)8Z`n“5Df.=_0?a8 > ,. ($$"  "."2S.O&G*K#C*9[.=_ ,. 4:/PIW|AOt#C. *$ (""   "$$  'H$D >8 ( &04 ?#3T*9[.O%E8 ,  * ,"  "&& ( ( *.0. * , ,02489 = = > >6 ,9&G"B!B <828; <96 ,$" $$   ,9 = > 0QHV{Zi <@Ns>Nq"1QP^ƒ>Mo*9[1@bZi @ 6 , ( (.&""6+:\"2S#C'H#C0?a'6X,;]02"B&G8Hkbp•HV{<&. " " ""   *,MFUyESx(7Y (8 ("$4#C)J$D @ ?+L$4U6Eg @ ,  *8 ( (08849 ?< ? = @%F#C >"B$D!B > = = <;9 <;:8 * ."& ( (&0;#C(I?Mr*KN\-N ?Š—¹“ Àn{¡-<^9Ilw„¨ 0Q2 ,90.&&$$+:\(I*K%F#C"2S-<^&6W,M+L+L A%E,;]@Nsz‡«ivœ4Ce6$ , (..$ ( *" $$" "  #C1@b/>`"2S <2""8 ?)J @;!B#C$D*9[(I$D(I$2 * , *868:< ?'H"2S)J,M%F$D&G$D ?!B A ?<< <<:9 <;; @ A9$ ("" (.6 @*K%F ?8.O·ÂÜ9IlXf‹gtš5DfCQvƒ´/P46 ? (. , ( &  ,1Ad/P*K$D'H#3T%5V&6W"2S%5V(7Y(7Y=Lncr˜Ž²Š—¹Zi/P , ( , ( (&" $ *&"  """""&$"  %F+:\ 0Q'H#3T & ," 6&G(I <4690 =8 @*K *&64 $8&2;"B%E%E&G)J.O 0Q(I!B#C @ < @ <;998986:44<#C'H(I)J >4.69: A*K$4UZh7Fh#CGUzVd‰4Ce*KlyŸJX} A4+L6 ,6 , , (    ..=_-N'H$D 0Q+:\'6X$4U9Il\k‘r¥y†ª…’´’¿‘œ¾|‰­?Mr >. , * ( ($$& (&"""" ""$&$&&&&    >-N)J!B >%E$4U , *6.%F#3T&G988692:08 A9984. <&0< A!B =;:&G+L%E ? A ? < ?998442. ,...08"B%5V5Df'6X'H"B(I,M*K,M$4U 0Q-<^JX}O]‚*K<0 ,&GZh A @.86. , * ($  ;'6X&G&G$D"2S,;]/>`HV{cq–‰–¸›¨Èž«É¢¯Íž«É›¼LZ"1Q;9 *"00 , ,. *"    "$$&$&&$ ( * * (  =(I*K!B ? @&G"2S ".8&&"B"1Q(I;994 ,0<88;: >2"2 02 <<944499 A)J&G!B"B A = @<;960 , * * *.0. *0<!B)J >;"B)J%F%E(I#C"B%E &;08 >!B4 @;&8 , * (&  $/P$4U%E*K%E-N&6W3Bd^l‘u‚¦‘œ¾›¨Èž«É¡®Ì“ Àr¥'6X A99 *.92642 (   ""$"""& (&$$&& ( * , (" (8&6W#C:!B&G:8(I,;]+:\. (& *.O(I&6W 0Q.O,M$D8 ($  &.29<<2. 0 & @998.0488 =&G'H!B!B ?<< = =<80 , ( * , (  *40&8 (" *40&0.$$9'H *. ( A8. * (&"$ ,'6X/P#C-N%F.O(7Y;KnZivƒ§”¡Á¡®ÌŸ¬Ê–£Ãp|¡BQu+L ?4& *9:.84 ,$ """$& (&$"&00 ,&$&& (. , *" $ *$&;%E"B,M%F88 > <90%E"B =9-Ncq–‘œ¾nzŸJX}$4U A4..&$.6 >#C @:2"0"2S-<^" (.2.288.;%E%E > = <98:;94 ,$&&$ $9:8<92 *02$0  2 <8*K @890 ( ( ($" (8 0Q'H"B*K"B"2S+:\=Lncr˜vƒ§‹˜º›¼~‹¯lxJX}&6W#C = *.4 * *. ($  "$$& ( , , ($"$ ,682 ( ( (& * , , *$<:8 ( 0"B 0Q"B ?; >!B< <+L3BdO]‚޲Ÿ¬Ê«·Ò¥±Î~‹¯cr˜.O'H >0$$"02 *9 ? @ ?<2"$-N"1Q< ,00 ( &8<<;&G%E < < <99644.$ "$0 (" (00894& *8. $ "$D66 A;0 (& ("" ,9/P)J%F(I =.O$4U0?aSa†cq–x…©u‚¦^l‘ESx'6X<89 ,$. , $&$& ( ,. , *$" (4994. * ,& * , * ($ (& ( (296" * A'H @&G!B<88; ? A.O/>`>Nq;Kn+:\(I#C"B9622 *  ( (& ,9 ? ="B"B9$""&6W#3T 0Q$ (2. (&2:96/P#C ?"B ?64<2 *& " " (. ,88&" * ( 8 ?<6042&. * *$"#C,M+L&G$D#C&G.O%5VBQuJX}M[€GUz5Df/P#C <62 ,&"    && "& * ,.00... * *.24. *& ( *49;:89999998<<8 <%F)J#C"B >;99< = ? <!B%E A9 *$ (2 , ( *&"& ( (.8 =< = =: , 6(I#3T#3T(I;&&&.24!B$4U"B"B$D$D ?942 *&$ ($02&" , ,&&9<9422 ( , (&"&$D,M*K%F"B!B%E+L"1Q*9[.=_0?a,;]/P#C;8.. *&$"" &"$& ( * * *.02662. * , , ( ( ( *269; <<9868888829 < ?#C%E$D @ ><:9:<;< ><94. ($&&  " "& *28;99992+L 0Q+:\%F 0Q9906..9;< ?#C&G+L)J A;8. $ ( *"$.20 ,9;824 (.& (& *%F+L)J%E A @!B&G*K)J+L*K'H!B <98 * ( *& (&$$ *" (0. *269:96.&$& ( ( ,28; = = <96648888802;"B%E!B > =<:8899;;<:982. (""$ *248846:. *)8Z(I)J A/P$ * *$8*K 0Q'H.=_%5V%F9. ( ""$ "088"4:986 *. ( * ( *)J+L(I#C A ? @"B%F)J'H$D"B @ <98 ( * , * , * (& *$ " ,2889< > > <8 ,&&0699:; <;960046888868<$D%E A = >:96489:;9994 ,$ &  "" *024648:2". @)J%E%F+L-N8 (:66 ='H)J 0QBQulx4Ce-N9. ( "" $ ,89  *6898 ,0 ( , (.*K,M)J$D @ @ @!B"B%F#C A ? =;6...00.. , * ,.22289 <#C#C"B!B =8.& (08:;< < < <:820246666669 < A!B > < =:96469:; <<96 *$& , *&"$ " ( , ,04448<99!B.O A'H!B'H)J 0Q"B$D$4U&6W#C ?HV{“ À‡”¶ESx+L9"& """" $.9< ($ (698.4 , , ,0(I-N)J$D!B @ ? @ > @ ? > =<94.40222202.69989 = A,M*K&G!B <82.99989; > A <;842202666629 < < < <;998688999:96. * ( ( ( , ($&" ,20028689< >#C+L 0Q&G(I<< >&G!B%E9*K\j¬¸Ó¯»Öhuš'6X @4  "$"""&09 >60& ,69808.0..'H+L'H"B A @ > = = = < = <<9642424488889 < A$D(I-N 0Q$4U/P&G @;9999::::< ? A9842462064640: ? < < = <96889:986;:99:82 * ,&"$"&48208:998:!B*K,M(I = @#C'H'H%F.=_Xf‹‹˜º¢¯Í¯»Ö›¨È`o•(7Y<8"  $" " (2: A;8 ,"4::82842..&G)J%F"B @ ? > =< < = =<9666222489; < = >"B-N)8Z3Bd7Fh7Gj'6X 0Q&G ?:9; <89< > > = = =. , (.4840888882$D @<6#C<:<;<;986:98622224.& &2. *.<%E$D @8 , > A-N%5V$D,M < ? A A)J4CeZiz‡«Œ˜»€±Zi+:\ ?92""$$ (4: ?"1Q4 ? 4 * . <8 ?99488 *0!B(I%E#C"B @;: <6: < <9889288889 ?$D$D+L%5V/>`8Hk?Mr:Jm1Ad-N%F @ < < =;98: <!B#C @8 * *.2689980..2<8 @ ?98 @; ? ? ? =<98498620..020 *""& &2<!B$D =292 =!B+L"2S)J%F; < @#C'H&6W7GjESx/P/P#C4& *."  ""& *4: > =)J<"2   &. = <898.2 @*K%E"B!B ? <: <::9999644889: >%E+L 0Q%5V*9[.=_3Bd5Df.=_%5V&G$D A ? > > <:9 < @ A >92 * ,.289;< <9822(I"B ?!B9 < @ ? ? ? > <<998862.. ,...0. (& (&"" (.4998 ,66;&G*K"2S(7Y#C;; < @"B$D$D$D;;8 ," "& (.49 =%E"2S$  9$D4 (62 ,. *2942 <*K%E!B A ? = < <;988:;96:< < = >"B(I-N"2S$4U$4U#3T"2S 0Q(I!B @ @ @ @ > > <; > @ A <8 , ( ( *.28; =!B$D"B ?:8#3T-N ? A8 @ < >99999989840 , , ,...00. * * ,2. *$"$ * , , ,6;*K)J$4U5Df%F;999998494.& "& ,06:<#C;4 (8&0 < ( ,$2 (  $882:,M'H!B @ @ ?<:9889 < > > = ?!B"B!B"B#C&G(I(I(I&G%E#C!B >:< = ? ? > < = = ? ?<8 *$$& , ,06< A%E)J)J&G$D"B$4U/P<<2 <492200..00. , * ( ( ( * ,.022 * *28. , ( ( ( (&& ,8<*K&G"1Q7Fh(I9984. * * ,"  ( ,089;%F6 A " ($< +L9" *&:8  ,06 <,M(I#C A ? ><:89:<;< > A ?!B#C%E$D#C!B!B"B A @ ? ? = < < > ? @ ? ? = > A ?92 (&&"$ * (.6; A%F)J/P/P"1Q"1Q.O*K;689.642. *&$""&&$"$& ( *2022..4; =8 *& ( ,2609 ?'H%E,M*9[,M6996 (   &""  "$ ,089<,M!B;&;Kn,M" (&G2@Ns.O.":8!B: *8"B'H(I&G"B @ ? =<9; =<989;9< > @!B A ? = @ =< <<;< =!B A!B @ ? ? ? >92& $&$"& ( ,28 = A$D-N"2S'6X,;]$D$D: *;804840 (&"""$$"$& ( ,.6..2228<%F: * (069 <8:%F&G%F,M.O(7Y9982 (  & *06:< @!B.6Egz‡«)8Z$%F<,;]$D *9698"&.;!B%F'H#C @ @ @ ?<< <<98644489;;:: <:8999: >"B A @ @ @ <94 *&$""  "&& ( ,29< =%F*K"1Q%5V;94; , (.64. , * * ( * ($& ( ,.468. *2448; =84; @ =848:+L&G)J 0Q,M4Ce >;6 ,$     & *.6: <*K#C$LZO]‚ 0 ?'H#C4 ("$6 *6:6 ,."<#C(I%E A A"B"B > <;< <;8242004888<99;;9< A > = = > =:."&"  $$$& *.489 >"B&G*K222 , *.26 (2." (0$$$ (0699864469: < < >4: (9068 (-N A(I-N.O.=_:982.$    $ (2888#C6 ,4 *%F|‰­#3T%F ,48 A > * *4$2 ( 9$D%F$D$D%F$D A"B"B!B @ >;9442000220 , ( (08 < A =<96. ("         ""$ ( ,0689:< =000....2.486 *" (.. *& (.8;<.26899:: >< *2$9: ?8: <'H$D*K5Df&G982. ,& " * * (0; A!B9 ?/Pcq–¯»Ö"!B9& ( ,9&G ? *'H/P "8"B%F&G%E#C"B%E%E$D"B ?<98244422000.0268:;620 *&"         "$& *..2488. ,00 , , * ,6642 , ( * *. ,049: <<88989:99 ?: ( , (; =#C; ,.O ?%E#3T>Mo<82 , * ,&  "$ ( ( (.8 =%E%5Ves˜µÀÚ©µÒ,M ?&".9#C/P!B ?'6X2 &9#C)J'H%E$D$D"B A > =;9888888620689::984 (&$"            "$& ( * * ,000.000 , (& , *& * * ,0. *.8< > ? <;"B ?<889: < <8 ,04:; =.)J#C)J,M$4UDRw88. ( ( , ,"  *" (.004&6W“ À‚³/P#C4&;$ ( &809 , A+L%E$4UGUz  ( ?&G$D @ ?<::9999:99998886289998. ,$$""""""      $"""$$ ( * ,..4640000 , (&$"" ,00..489 = > > >"B A<889; <: ,$&44899$D)J)J%FVe‹#C >6. ( ( , ,&    ($$ * ,2<%E8HkGUz > >48&&. *6 *.<!B"1Q(I-<^ESx$ 8 A =822200028898844668 ( *020 , ($ ( (&$"  "     ""$"& ( * ,.026;82.02. ,. * ( ( *..096028< A!B99999::;9". (88<*K"B%F:Jm;Kn'H.2 , * ( ( (&$    $2.$0*K7Gj'6X8"B0 =."&$" ( *464%E A%5VM[€+L  *: <820. , * ( ( * ,420 ,.0020200200 ,. * (&             "& * ,.0248 A;4 ,04660.. * * *.084.08; ? @2489:;<<< (& 9 (46$D<,;]"2SAOt&6W <6 , , * (" " (     " ,0 *4*K8Hk#C8;8 * , ,"4 ,48:$  @298#C24.<"2S-N\k‘&6W%E9 =$ ( *& &$    ( *48!B-N#C A&& *$ *09 $;84 ,")J4Q_„$4U898 , ,99 (2420 , *&&$ (49880 ,86666220862 , (&$"       ""& *289: > ? @ A'H!B8&&29962 *&$ *6929929!B @69;988; ?"B"B<8" (946=Ln6EgM[€CQv.O A;.242 *     "$$ , $%E43Bd > @82209.#C  *$D *%EDRw (#C @O]‚6!B. > <.8289. ( ( *$ *8:964664298426440 *02 ," $ * , (& (& &  (4:; =!B#C$D#C!B'H @80288962 ,& ( ,488::8: > =89:< < < >"B%F A A'H!B ("%FESxR`…UcˆR`…BQu&G89844.$   "$&. *2x…©#C: ?;8 <;"B80 , 2#C#C <9 =2 * @ < A099402489;;980 , , * *4422642.2049 <;4 (0&"$"  (&& ,4; >%F.O-N'H!B<)J @9:<98984. , *.46::;; <;868< ?!B @ @#C%F$D ?"B6Egcr˜|‰­r¥\j‚³huš 0Q%E8;;40 ," "":&: ,`n“ft™ @!B = ,<:,M!B ($0;±½Ø©µÒ¦²Ï™¼4)J<::4 , ( @ (&G =024249 <<96840. ,242202220.689 @%E%F @;:0" " $ * *.69 =&G 0Q"2S(I ?;(I A =#C%E =99840.0268:9: ? <8489 < A"B @ > A&G"B,;]N\}Š® ­Ë©µÒ¥±Î—¤Äes˜cq–%E#C98&$  &. ,4 24886: = <888860068840.22448<"B$D#C#C%E)J @6$ $""&$ (2889 >&G"1Q&G =< A = >$D'H A <<40 ,.0288:8: ? <2.88; @!B ><!B,M%F"2SGUz“ À¨´Ñ”¡Á‹˜ºŒ˜»{ˆ¬lyŸ; *00:$"""0 , *:%5VnzŸ!B < A(I.O8:80 (©µÒ±½ØŠ—¹…’´Š—¹`o•lx%E"28""/>` (8 < = > <:< = <99884. ,.082..49:<< A%E%E!B @ A$D<2 ""&&0022.4 <%F$4U%E:869 >$D%E"B ? =62 , * ,069:9 = >;0.869 ?!B @ ?)J(7Y"2SM[€w„¨Ÿ¬Êž«É…’´Œ˜»›¼r¥^l‘ >8 < > (" 9.9 **Khuš!B!B @"1Q+L:99$ <+L{ˆ¬HV{ft™Œ°jw^m“FUy#C ( .&" O]‚ ?"B < A =:9869<6420488842249 < ? @!B @ A#C%E A9. ,"$&.94. , ,8!B.O$4U%E804 ?%F$D!B!B @;84 ,&&.48 < ?"B ?90288;!B(I%F$D"1Q3Bd8HknzŸs€¦lyŸ^m“^m“u‚¦`n“R`…FUy*K ,;&& ($"""8 2ft™#C8%E%F0?a.O$D0694.KY~^m“Zhbp•cr˜@Ns%5V/P< @ ,$&: ,7Gj+L/P%E ?9240 (6!B<989 = @ ? =99;< ? ? > < > = = ?"B @9. (  ""&08..28;#C+L)J >89<(I/P%E @ @ >998.&$ *04 ?$D%F @9248; ?'H 0Q,M)J$4U7Fh#3TUcˆ^m“cq–ZhSa†cr˜KY~1@b 0Q A *24 * $ * *$ " * , ( *.*K%F)J(7Y =!B$ > < =90\j`o•p}£`o•?MrHV{ESx(7Y'H!B > * *-N(I)J(I9$D+:\ @8080&9+L 0Q(I#C!B%E%E!B < > ?!B#C"B ?926; < <9: <!B , ( ( ( ("$.&&.9< < = A:8:%ELZIW|%E"B%E ?;#C = 662<%E!B @ ? @;449:%F!BKY~*K"2S'HLZQ_„`o•cq–Sa†HV{ESx=Ln/>`%F A:4 *&& *" *00 *" "  *02.0"  * 88 =&G%E =&G+L , A9.ZhSa†Sa†Xg^m“Q_„6Eg/P%F'H @(I<."B (9 >.9 =2 =)J >:84600 <'H*9[)8Z%5V,M#C ? @!B A%F(I"B92.288 <"B"B @$D)J A <6& 900696024 A-N+:\cr˜`n“%E%F&G9 @ =; ?6 , ?+L"1Q!B @ > ? <:; >.O.O+LKY~LZZiIW|Ve‹^l‘^m“P^ƒ5Df 0Q)J#C<%E A:4 (&& (&& ( ,40 ($ " $ *264<8698&"" 8 *&6 > < 0Q.O(I6ivœ".>b‡HV{>Nq5Df.=_"1Q#C<<4(I @%E > , >$0 (0 0 A906620048.O/P 0Q-N'H$D!B A)J @4 ( ,88289 < > @ ? > ="B ?;860 (""" (4648<4Ce@Ns@Ns8Hk‡”¶x…©%F#C#C6,M$D(I6 *8!BLZlxVd‰)J#C > < ?#C+L"2S7Gj9IlDRwO]‚ZiXgN\DRw9Il1Ad$4U$D = = @ A%F!B:0 ( ( (& *" *890"$   (064. ,248880$ $.9 (." =$D*K'6X A)J;y†ª ? *&"/>`,;]$4U-N*K$D<; =!B <)J/P:2>Nq; ("&$94&026998"1Q/P-N*K'H%E"B A::860069 > @ =:<"B#C @)J(I(I'H%F A:6468 @-N8Hk^l‘{ˆ¬cr˜nzŸ^m“ESx…’´nzŸ)J#C @<+L(I%E+L!B%5V1@b/>` A#C)J&G&G+L#3T)8Z.=_0?a8Hk?MrIW|>Nq8Hk)8Z%5V.O 0Q(I @ < < < A$D&G!B:0 ( * *& *" (492&& $ ,& (.22.$&2024 *& 4 $D.#3T 0Q=Ln*9[(I*K!B4CeHV{ (   & ( ($ >6 < ?%E4"$& 42 (& *269 =#C-<^&6W,M%E A!B"B"B;;98 , *9$D ?%E%E ?$D&6W4Ce6Eg'H+L"1Q&6W'6X&6W%5V$4U(7Y=LnZiw„¨†“µŒ˜»™¼œ½Š—¹‰–¸r¥ZigtšM[€"2S+L%E&G @#C-N"B*9[KY~/P#C A <*K#3T0?a;KnBQuAOt7Gj.=_$4U.O)J-N*K(I!B ?'H"B < =<99 <%F#C >4 ( * * (&"$ (.0. ," &698640 ( 284484" ( , ,":1@bJX}ft™GUz,M%5V(I6Eg>Mo< ($"&G)J >1Ad @"B6$ $ " ,08 , *62 *8"B)8Z"2S'H A ? @#C$D(I#C @$D&G%E#C#C @ 0Q.=_.=_3BdBQuO]‚Sa†Xf‹bp•p|¡z‡«ƒ´™¼š§Ç£°Î©µÒ©µÒ©µÒ¨´Ñ¨´Ñ«·Ò¬¸Ó«·Ò‘œ¾€±cr˜Vd‰^m“BQu(7Y/P$D-N!B,M(7Y#3T =860 , A4: @"B%F%E >9"B <0 ? <#C <!B ? <99; =!B%F"B&G"B9& ( , *"& * ( ( (.2$   (8 <96. * ($" *8988; <98 (:8 >Sa†|‰­Œ˜»^m“AOt)8Z+:\DRw=Ln922 &2,M Tb‡ =*K"B6&$20260& (64.4 >$D$D#C"B!B"B$D%F#C#C$D(I(I%F*K"2S)8Z?MrR`…R`…JX}FUyESxDRwSa†\k‘lxy†ª†“µ”¡Á¢¯Í­¹Ô¦²Ï§³Ð¨´Ñ©µÒ«·Ò§³Ðž«É“ Àƒ´jwHV{=LnXg@Ns"2S"1Q$D+L+L.O%E (& *.:!B&:;9. *288898<289 A!B"B ?;8< @"B!B(I(I< *&. ,$ ( , , * *284" * ,09:8202899: < = << >"B%E"B+L @&GIW|%E¢¯Í¬¸Ó­¹Ô†“µbp•9Il>NqKY~5Df"1Q * (" . 0Q.=_%E'H.O)J9 ( *:948 ( ( *.<%E&G#C< ?$D%F%F%E%E%F#C%E+L*K'H-N8HkVe‹Xf‹^m“bp•Vd‰CQv5Df0?a1AdFUyM[€Zhjw|‰­Š—¹”¡Áš¦Å ­Ë£°Î§³Ð¦²Ï£°ÎŸ¬Êœ½Œ°s€¦cq–DRw1Ad>Nq6Eg'H+:\ 0Q(I)J;.2 *6 (2".4 ($$&" *2.46999 > ?:9< A"B A*K*K > *&.0& ( * * *069<$&999;;988< @%E&G-N+L'H%E A @#C(I%5VDRwu‚¦”¡Áœ©É±¼Ö¢¯Í§³Ðž«É€±bp•N\Ve‹>Mo"2S"(I1Ad&7Fh =!B A&G: *&;9 *.9<9. @+:\,;]+L @$D)J*K'H$D%E&G(I)8ZFUycr˜n{¡lyŸp|¡x…©vƒ§lxXf‹CQv0?a&6W,;]7Fh+:\1@b>NqUcˆlyŸ}Ю޲Œ°™¼›¼‰–¸€±z‡«vƒ§lyŸbp•XgXf‹AOt+:\>Mo0?a%5V"1Q)J: *$""""$""$& ,0. ,& $& *.049:; >!B ?:; > A ?&G&G(I =" *. *.000468:8&&699<996;(I-N.O%5V"1Q,M&G A > A'H.O*9[N\p|¡Š—¹¢¯Í¥±Î¢¯Í¬¸Ó£°ÎŒ°bp•IW|+L(7Y2 "&%E ,8"B$D'H#C)J; ," ,. (2 =9 ?806/>`$4U+L >+L"B#C*K%E%F*K:JmXf‹N\^l‘lyŸq~¤ivœr¥\jLZ=Ln1Ad.=_,;],;]/>`.=_5Df?MrHV{P^ƒXgbp•ivœnzŸlyŸes˜bp•|‰­p}£p}£^m“P^ƒ>Nq1@b0?a+:\-N A <8$ "   "$& * , , *$" $ ( *.289: = A ?<; = A ?%E%E)J @& * , *..002894868 ? <669 < >$D.O.O+L#3T%5V"2S,M%E ? >"B&G>MoXg޲¡®Ì­¹Ô¥±Î ­Ë¨´Ñ¦²Ï’¿ft™-<^!BBQu1@b-N"&$8%E ? @ @%F @8.2 ," *;!B9; =:(7YCQv > >(I > @,M/P)8Z4CeFUylyŸcr˜lyŸr¥vƒ§p|¡u‚¦es˜UcˆAOt1Ad%5V-N)J*K-N"2S)8Z/>`4Ce9Il@NsESxN\hušgtšZh\jO]‚ESx.=_Q_„=Ln+:\(7Y#C;0 ( &""&& * * * ("& * *28:9< @ @ =< < @ A%E%E,M#C * (& ,...0289; ? <; ? =< > A#C A ? ?94;.4888<%E,MDRw`n“‡”¶›¨ÈŸ¬Ê£°Î§³Ð¥±Îœ©Éƒ´+L.OFUy1@b&6W)8Z ,M'6X%F"B'H)J;2 *4. *8!B A";8&7Gj , @ <(I @%E"2S+L+L/P4Cecq–cr˜ivœivœq~¤lxivœGUz?Mr6Eg0?a(7Y 0Q.O/P-N"2S(7Y-<^3Bd8HkAOtGUz9IlCQvCQvXgVe‹CQv9Il>MoDRw0?a-N*K ,&$&"$ "$$ ( * *.& ( * (.08:9< ? A ?< < ?"B%E%E.O%F. (" * ,..0289 @%F$D A"B!B ?#C ? <0& ( "6< ? A =< >&G/P7Fh^l‘ˆ•·‘œ¾”¡Á­¹Ô±¼Ö–£Ã\j*K'H/P.=_,;]6  #3T(7Y#C >'H&G8 , *0..:$D <884,M:4 >,;],;]!B >(I(I#3T0?a4Cebp•hušp|¡lyŸq~¤bp•R`…-<^*9[,;],;]&6W,M'H&G&G*K 0Q%5V+:\1Ad:Jm?MrESx@Ns8Hk`o•Xg1@b#C%F$4U%F<:"$""$& ( * , * * * * ,28:<< >!B @< < @"B$D$D/P&G ,&$ * ,..0489:'H+L)J*K#C984.$&9 ?%E 0Q.O/P+L%E @ A'H.O4CeTb‡x…©|‰­w„¨€±lx9Il%E"1Q.=_>Nq6Eg9$8 * ,%5V,M"B ?+L(I;8.0 *$0 <2 @&(7Y.<%F A"1Q 0Q:;)J+L)8Z6Eg9IlZi`n“r¥n{¡jwLZ/>`-N*K-N.O*K%F$D%E#C%E%E%F'H+L/P"2S*K"1Q#C&6W&6W$4U)J)J2 *"  "$"$$& ( * * * * ,.6: < ? < ="B!B< < @"B$D%E 0Q%F ("& ( ,..268: <&G&G @ ?<40;:4<)J.O 0Q&6W @ > <99 <#C)J*9[3BdBQuO]‚M[€@Ns'6X @)8Z =Tb‡FUy2. "B80&0+L,M1Ad'H)J#C,M)J;6 * , , *6;9%F-N9; =&G A =!B8 @"1Q(I%E)J.O1@b;Knes˜nzŸes˜BQu"2S"1Q+L'H&G%F%F)J-N(I'H&G&G'H(I)J*K/P 0Q > >8 ( *8&   $& ( * ( * ,028; A#C#C ? ?#C!B < <!B!B#C%E 0Q#C  ( ( *..269: ?#C; , ,89<"B#C A#C(I$D ?$D$D!B =<; > A"B+L+L 0Q1@bAOt?Mr9Il=Ln?Mrcq–JX}&6W <"2S*K#C%E!B =8 *""#C#3T(7Y5Df >)J A"B"B6 ( &2: >"B'HN\9%E&G#C%E#C"1Q/P9 =+L%E%E+L%E(I(7Ycr˜w„¨jwHV{,;]4Ce*9[ 0Q*K'H%F&G(I'H'H(I*K,M.O/P/P+L 0Q"1Q,;]+:\9&""  "& * * *0249< A'H,M%E @ ?"B!B < <!B A$D%F 0Q!B ,& *..24894<6 *0; < >< > = = A<9 @ @ =< = A%E'H(I"1Q+:\(7Y,;]=Ln?Mr8Hk=LnFUyDRw%F#C<+L < A!B#C%F%F A:0$0 0Q.O*9[3Bd <#3T(I)J-N4$$8 >"B%F7Gj)J ? @ @%E9"B"B#C4 > 0Q%F#C%F-N&G"2Scq–q~¤\k‘8Hk 0Q"1Q*K&G*K/P 0Q"1Q"2S 0Q 0Q/P"2S$4U%5V$4U$4U&6W3Bd+:\,M0?a)8Z"2S0  " ( ,864 <&G4AOtESx+L$D'H;&G > >"B#C"B*K*K9$$&$ *..0269;869 > > > >*K%E A"B!B ? < <<$D @.=_7Fh>Mo>MoCQvFUyGUzGUzCQv>Nq;Kn>NqBQu 0Q'H @ > = << > = = = <; < = = @$",M/P/P*K.=_!B*K)J#C/>`4$ * *%5V"2S#3T|‰­(I,;]"1Q3Bd =;)J*K @%E%E!B#C$D&G&G^l‘p|¡`n“GUz&6W 0Q"1Q.O$4U#3T/P.O$4U"2S-N.O 0Q"2S#3T$4U#3T"2S"1Q-N(I @8 ,""" " ( ,& <8$ @Tb‡6EgR`…M[€9:%E#C <%F9$D#C*K.O4$$&$ *..0469998; @%F&G&G%E A ?!B#C#C$D%F @ <"B7Fh=Ln>MoDRw?MrKY~HV{?Mr7Gj;Kn>Mo3Bd#3T.O&G!B A @ = < =<<;:;<;;; , !B%F-N/P"1Q7Fh"2S%5V*9[*K$4U0 : >,MESxjw7Gjq~¤y†ªŽ²>Mo >#3T >*K @!B$D%E'H&G%F%5V^l‘^m“CQv0?a 0Q#3T%5V&6W 0Q(I$D#C$D(I-N$4U"1Q 0Q"1Q$4U$4U 0Q-N%F9 * ,.$ ($  *" " ( ," , @*K<-<^%EUcˆKY~;"1Q @%E)8Z =$D%E$D+L#3T (& ($$ * ,004698 = ? @$D,M-N(I'H$D!B#C%F'H*K/P&G;#C0?a;Kn9IlJX}>NqDRw>Nq8Hk9Il>Mo7Fh&6W'H*K$D!B A"B @ > =<9899;99:2)8Z&G+L"1Q,M 0Q!B:/P(I+L (6$ +:\LZbp•Xgp}£ ­Ë¢¯Íhuš&6W%F$4U$D+L)J'H)J(I'H*K,M>MoZhFUy)8Z"1Q"2S#3T/P#C A#C*K-N'H'H-N,M&G%E)J"1Q$4U"2S-N(7Y @.9<."$""6 ," ( , <4:&< ?‹˜º8q~¤ = @%E!B.O @ A%E%E,M#3T& *"& * ,00469;%E)J%F&G+L'H ?<82246: =%F!B A'H5Df6EgIW|CQv:Jm4Ce6Eg@Ns:Jm&6W/P"2S%F!B > @!B @ @!B =:868988 ="$'H"2S-N(I.O+L'6X-<^(I'6X%F @.O"#C ,8HkVe‹Zhes˜œ©É§³ÐVe‹™¼&6WR`… A%E$D,M(I'H&G%F%5V1AdESxDRw,;],M"2S(7Y.O%F,M-N#3T,;],;]%5V.O.O,M(I&G(I 0Q$4U#3T 0Q'H90 >(I&G!B >&&& ( =8 *" ( ,088#C;*K*K¢¯Í$4U%5V9!B/P%E%E =$D'H,M*K$ * & * ,00469;(I/P)J&G%E =0.$"0 <*K ?:4Ce:JmDRwESx>Mo;Kn8Hk1@b%5V,M.O$4U%F A;< = = = A!B <944666 >82;(7Y'H/P%F/P#C'H'6X'H#3T%5V0?a.O **9[Ve‹Xf‹UcˆHV{s€¦ˆ•·.Ocq–-<^Zi-N ?.O >(I < ?'H,M1@b=Ln.=_$4U-N-N&6W'6X/P"1QP^ƒLZ?Mr-<^"2S/P,M'H&G%F$D#C"B!B A @+L'H#C A!B ?8$4466#C >8. ($" ( ,.89 ?&G:"1Qivœ*K#C&G'H 0Q,;] =#C#C)J,M <$ ("& * ,004699%E-N)J#C <4$ (&66,M!B!B7Gj>Nq>Nq>NqCQvESx5Df(I!B+L.O%E&G @98989; @ >;842249%E =1@b(7Y,M*K%E$D A.O7Gj-<^+L @#C#CUcˆXf‹~‹¯BQu\jXf‹IW|+:\(7Y1@bz‡«Tb‡+L.O*K+L$4U: ="2S&6W1@b/>`)J'H'6X.=_/>`1@b1Ad@NsSa†N\;Kn#3T%F&G&G!B!B#C#C!B A @ A A ="B%E A A'H'H"B;;;:$D ?9220 ( " ( *2 > <; A'H < @˜¥Å A A.=_$D&6W"B ="B+L)J (0 *$& * ,024699 @&G%F >4 (  "4 @&G%E+:\1Ad6Eg5Df,;]5Df4Ce(7Y(I%F,M,M#C!B:4444689< <;82049$D 0Q7Gj/P 0Q,M&G 0Q'H#C)J"1Q%E'H.O>Mo§³Ðp|¡>Nq%5VJX}cr˜@Ns0?a.=_GUzXf‹1@b:1Ad-N"2S1Ad!B%F*9["2S$4U+L-N#3T?MrBQuBQuKY~CQvESx.=_+:\#3T,M'H%F%F%E,M,M.O"1Q%5V(7Y'6X&6W$4U$4U 0Q'H A ? A"B A @ > =!B<6284."" ( ,<& <,M"B<.O A=Ln™¼*9[.O4Ce*K'H#C"B+L*K 9&&& * ,02469< ?#C$D:&  0:$4U!B(I?Mr%5V'6X-<^-N.O'H,M,;]*9[)J&G 0Q92 ,26688.8 < >9002 <:4Ce$4U)J,M#3T)J)J/P(7Y=Lns€¦ƒ´ž«É«·Ò‹˜ºr¥7Fh'H{ˆ¬^l‘KY~6Eg0?aP^ƒ`n“€±/>`"B:Jm"B!B.=_(I,M(7Y'H*K&G,;]3BdM[€M[€R`…bp•GUz/>`%5V,M(I*K(I$D%E,M,M)J)J.O%5V'6X$4U/P"2S+L%F"B =; @*K)J&G%E#C6899860.2& $ * ,8: >!B#C#C%E&G>Nqp}£Sa†;Kn.=_&6W(I!B*K+L8 02" *$9"99<8%F+L: > *"$ * " <#C"2S <)J>Mo-<^3Bd%E"2S.O@NsHV{HV{8Hk#3T%F A >2 , ( *02. ,: =!B A <989&6W%5V"2S.O+L-N"1Q&6W"2S0?aDRwZhu‚¦†“µŒ°p}£BQu(7Y;%Ebp•JX}CQv%E,;]-N3Bd0?a*9[%F"B%F+L&6W%5V,M(I)J/P-<^8HkN\IW|Zhbp•FUy5Df'6X"1Q"1Q#3T#3T"2S.O'H%E#C#C$D%E%F%F'H(I @ ><989:; > > ? @8840 ,.26. ,$$ *.99 = @!B$D%F)J+L @w„¨0?a0?a"1Q$D#C%F < ( $$0":#C4:9.#C(I-N > =$ & ? ?'H%E"B!B >< < ?"2S$4U$4U"2S 0Q 0Q#3T&6W4CeESxXggtšp|¡hušO]‚7Fh#C)J#C7Gjz‡« 0Q%E!B%5V5Dfcq–&6W-<^GUzO]‚@Ns*9[&6W,M*K+L)J"1Q4Ce3BdVe‹^m“ft™bp•FUy7Gj+:\.O"2S'6X%5V+L#C A"B > > > > > > > ? = <:98899888900 , ( ( (.4.26. & ,099 < > @"B'H)J+L8+LAOt1@b,M)J#C/P >86"". = (299%F<<(I&G&G9;2!B ="B < A&GLZ?Mr$4U#3T4Ce:JmN\JX}Ve‹ZiESx6Eg/P#C @ ?8$ * *&" $ (09< =<9: <!B 0Q#3T%5V%5V"1Q/P.O/P+L(7Y4Ce9Il>Mo7Gj)8Z)J%E <2cq–*K =%F"1Q#3T/>`@Ns0?a`n“bp•lx%5V)8Z,M$D,M$4U*K+L-<^.=_\jr¥p|¡ZiAOt5Df*9[(7Y(7Y#3T,M#C = < > <<<;9999988422202446 & ,. , ( ( (0684 (& ,.89< < > @"B%E$D!B&G6Eg7Gj#C8*K 0Q*K-N(I ,$ 4 ?& ,;!B8HkBQu"1Q"B'H$D$D @ 0Q,M$D)J!BŒ°7Fh0?a"2S4Ce:JmUcˆ|‰­jwq~¤UcˆJX}.=_*K'H%E!B ?<84 ( * (" " ,49::968 ="B 0Q"1Q$4U"1Q,M&G%E$D(I,M,M)J(I(I%F A8< >5Df"B%F)J&6W.O)8ZlxHV{4Ce,M(I#3T)J%E&G%5V.=_ 0Q&G 0Q5DfZiw„¨s€¦Xg>Mo1@b-<^8Hk)8Z&G ? ? ? <998884242 * * , * (&$".244 ( * (&$$00002&$ , ,68:;;<<< =)J =+L$4U)J A%F%E-N&6W'H&"."$$8 <#CVd‰5DfUcˆP^ƒAOtM[€LZM[€IW|Ve‹N\ZiUcˆ.=_4Ce0?ap}£±½Ø¡®Ì˜¥Å¢¯Í™¼{ˆ¬JX}IW|,;].O(I%F @:0 *.6 ( * *$"&08<<;989 ?$D-N 0Q 0Q,M%F!B @ ?"B&G'H%E"B A =982+L%F =-<^%5V"2S-N0?a+L/P+L.O>Nq)8Z%F*K,M#3T*9["1Q+L"2SAOtQ_„nzŸu‚¦\k‘BQu5Df6Eg3Bd#3T"B;< <90 ( (&&$$$" "  ""$&$ ( * (&.2. $ * ,.69:9866 <<61@b*9[$4U.O"B&G"2S"1Q;"6.& =; *)J:Jmhušx…©z‡«s€¦y†ªgtš^l‘KY~FUy5Df3Bd=LnR`…­¹Ô¬¸Ó®ºÕ©µÒ ­Ë¡®Ì’¿q~¤es˜ESx6Eg/P+L @9. (&"  & ( ($ ( ,699::869 >#C+L,M,M)J$D A ? A89::9998%F&"B%F.0?a1@b,;]4Ce'6X.O(I$D1Ad#3T+L"2S#3T-N*K,M,M/P)8Z>NqAOtbp•p|¡\jDRw4Ce6Eg-N)J$D >8. *&" " ( ,0 , ( ("$ *028644486 AZiBQu>Nq+L;/P#3T'6X'H0" (28<'HQ_„"BO]‚^m“cq–cq–jwp}£q~¤`n“q~¤{ˆ¬Œ˜»™¼š§Ç˜¥Å²¾Ø­¹Ô±¼Ö–£Ã©µÒ¡®Ì•¢Â~‹¯u‚¦`o•Sa†'6X$D:2 *&082 , ("  & ,488489889 ?#C(I*K+L)J$D @ > =%E ?962.00 *<#C *?Mr$4U#3T+:\(I,M A1@b4Ce)8Z9Il)8Z1@b*9["2S$4U%5V+L*K)8Z3Bd8Hkcr˜nzŸUcˆAOt,;](7Y&G%E!B;0$ " *. , ,06"$&0202.248%E’¿JX}1@b#C)J*K 0Q%5V 0Q<&440#C)J'H*K+L)J#C <989404682. ( @&$D7Gj0?a5Df 0Q(I 0Q*9[)8Z+:\*9[LZO]‚;Kn1@b/>`=Ln?Mr%5V(I'6X-<^>Nqq~¤r¥R`…@Ns(7Y.O.O%E9. , ,& " *240 (.$"&&00 , ( (6 @)J'H > ?#3T ?(I#3T+L"2S.=_$.0.&G$4UR`…Vd‰x…©‰–¸ƒ´Vd‰N\Ucˆy†ª‚³œ½œ½£°Î¥±Î«·Ò©µÒž«Éš§Ç¦²Ï–£ÃŸ¬Ê¬¸Ó²¾Øœ½š¦Å{ˆ¬Sa†3Bd.O"B<6 , ($ " ,4662<%E&G"B!B(I"2S*K(I(I*K'H @948400 , ( * (;$8>Mo>Mo9%5V-N 0Q0?a/P%5V)JivœVd‰JX}M[€,M7Fh"1Q#3T/P A-<^8Hkhuš}Š®u‚¦N\*9[(7Y 0Q'H @6 ("  (040 ,6.$"""" (069< = > A$D< = 0Q&G&G$4U.O&6W (04"B-NLZp}£vƒ§x…©^m“\k‘Zhgtšft™Œ°Ž²ƒ´•¢Â©µÒ¦²Ï§³Ð£°Î¡®Ì“ À‰–¸jwn{¡{ˆ¬†“µhušIW|=Ln-<^"1Q)J$D ?90.$".4848 <#C%F%F*K&6W1@b"1Q,M)J)J%E >86440 , * ( ( (.; A/>` A1@b 0Q&6W(7Y)J4Ce%5V*K3Bd\jKY~IW|,M+:\/P 0Q,M+L;Knes˜ƒ´p}£N\9Il1Ad7Fh'6X A:."$.24684 ($"""" ( *.49<;9 >< ?%E.O,M*K(I/P. >#C@Ns8|‰­y†ªz‡«}Š®s€¦N\Q_„^l‘p}£ft™s€¦ˆ•·Ž²‘œ¾—¤Ä•¢Âœ½€±w„¨z‡«{ˆ¬XgAOt4Ce0?a,M)8Z&6W 0Q-N)J%E ?;6.&"06426: < ?#C+L)8Z3Bd(7Y"2S,M(I"B<6600 , * ($&& (0-<^ < A5Df"1Q%5V(7Y$4U#C"2S;Kn+Lp|¡ESxSa†*9[&6W"1Q%5V)8Z;KnXf‹™¼ˆ•·Xg?MrKY~O]‚8Hk&G92$ (06982 , (&$&$& ,089860& ?9"1Q`o•s€¦0?a(I$4U-<^CQvXf‹$4Uw„¨‚³u‚¦p}£gtšft™Zhcr˜^m“es˜`n“q~¤ˆ•·}Š®Œ˜»x…©`o•`n“ft™`n“bp•Xf‹8Hk'6X'6X1Ad1@b7Fh1Ad)8Z.O%E >940 ,&"$460.6889 =(I#3T(7Y)8Z"2S+L&G!B;44.. *&$$$$998Hk#C7Fh&6W+:\+:\)J5Df-<^-N-<^ 0Q0?aQ_„/>`%5V#3T(7Y3BdIW|w„¨œ½|‰­s€¦Zh\jlxP^ƒ 0Q9. ( " ,69420 * ($"" ,8982. ,8"BXf‹ivœjw}Š®es˜#3T%5VR`…@NsZihuš\jivœivœlxZi\k‘`n“n{¡`n“cr˜ft™}Š®z‡«cq–z‡«^l‘;Kn>Mo^m“`o•N\/>`-N"2S7Gj;Kn8Hk/>`)8Z-N"B90 *& "&&"$64 , ,2444 <'H.O"1Q"1Q-N*K'H"B;4. * (&"  ""0*K#C6Eg,;]-N#3T*9[>Mos€¦ESx1Ad'6X%F-N+:\/P,M&G4Ce\k‘Š—¹–£Ãw„¨`o•q~¤}Š®r¥Vd‰'6X89$"&.69960 ("220 (&0<#C7Gj0?aP^ƒ5Dfw„¨‡”¶cq– 0Q'H6EgO]‚>MoVd‰s€¦^l‘cq–bp•\k‘gtšgtšu‚¦ivœhuš`o•p|¡es˜LZAOt>NqBQu>NqFUy>Nq9Il#3T/P#3T,;])J"B%F#C ?92 *$$"&&$  (82 ( (" ( , *9$D-N-N)J*K,M/P+L @6 * ( (&$ """$"2S84Ce(I+L.=_-<^x…©^l‘p}£7Gj%5V7Fh%E$D+L1@bAOtft™ƒ´£°Î˜¥ÅnzŸ‹˜º‹˜º†“µVd‰"2S9& *  *09998 ,$""90$ (<+L(7Y.=_)J/>`$4UBQup|¡^l‘0?a8Hk3BdAOt^m“ZiQ_„cq–`n“Zi^m“r¥vƒ§|‰­huš\k‘Q_„UcˆJX}BQu%5V7GjTb‡>Mo-<^'6X/>`-N.O-N$4U(I"1Q ? <9820 , ( "$$$& *80&&&&"2 A*K*K)J-N'6X/>`+:\,M<0 ($&$  $";&G%5V$4U"1Q+:\LZHV{Q_„N\ft™ZiESx8Hk7Fh5Df,;]^m“–£Ã§³ÐŒ˜»š¦Å¡®Ì¬¸Ó£°Îu‚¦Tb‡'6X6."  $ ,68982 * * (" ,9!B+L#3T&6W(I)8Z,M0?a=Lnp}£(7Y&6W*9[7GjJX}AOtLZSa†N\Vd‰^l‘\jp}£{ˆ¬~‹¯ZhN\KY~Ucˆ0?a=Ln5DfQ_„O]‚)8Z/>`+:\/>`'H+L-N#3T @"B ?92 , ,. *& "& ( , *80$$&. ,". ?*K+L-N%5V1Ad>Mo9Il'6X"B9 ($$"$$$"<01Ad,M-N;KnKY~XgGUzIW|Zh~‹¯Œ˜»‡”¶Sa†n{¡Ÿ¬Ê›¨È¢¯Í¬¸Ó ­Ë®ºÕ¡®Ì¢¯Íˆ•·7Gj-N @&&"  099224 ($ (:(I/P*K)J-N"2S$D)8Z(7Y7FhgtšivœR`…Q_„KY~DRwBQuESxM[€UcˆZh^m“\k‘lyŸlxhušJX}ESxDRw+:\6EgLZ`o•\jBQu3Bd1Ad'6X"1Q,M-N,M%E<884. ($"$$$"$ *0 ($ ( ("" (  $& , @-N*K(I'6X8HkAOt9Il%5V @4&"    &02'6X+L'H5Df€±Vd‰N\FUyVe‹cr˜`n“ft™ˆ•· ­Ë ­Ë¡®Ìœ½¥±Î­¹ÔŸ¬Ê­¹Ô¨´Ñlx/P%E9 ,"  (0488;;98:%E#3T&6W+L%E&G(I(7Y#3T%F1@bq~¤p}£+:\es˜P^ƒ?MrAOtHV{LZTb‡\k‘gtšcr˜gtš\jbp•XgXgO]‚LZUcˆcq–ft™Tb‡9Il+:\+:\-<^"2S'H#C!B >:92. (  "$"" ,. * * , (" $" &&. @-N*K&G/P,;]1Ad.=_.O @8 ("""" $ ,<.O,M)8Zcr˜^l‘\k‘>NqZhR`…Sa†\k‘nzŸ‚³‰–¸|‰­ ­Ëž«É¦²Ï¬¸Ó©µÒ”¡ÁZi"1Q A9 ( "$ ,89 <!B'H,M)J*K.O-N'H'H+L/P%F*K&6W'H>Nqs€¦>MonzŸQ_„?MrFUyO]‚N\Sa†^l‘`o•`n“^m“M[€\k‘gtšnzŸ\jgtšn{¡n{¡bp•JX}7Gj0?a/>`*9[-N"B <9844" ". * " ,. ,04." ""&& , @+L)J%E'H-N"1Q/P*K"B = (" $ " ,$D+L.OO]‚lxP^ƒGUz@NsJX}LZ`n“w„¨{ˆ¬€±’¿ž«É˜¥Å­¹Ô«·Òš§ÇŠ—¹Ucˆ,M94 (   " ,898 =&G"2S.O)J(I%E$D&G-N%E-N&G"2S%5V)J=Lnu‚¦Vd‰IW|BQuIW|M[€KY~M[€Tb‡O]‚Sa†Ve‹IW|Xf‹cq–nzŸbp•lxp|¡gtšQ_„=Ln5Df0?a-<^)J"B<96 *  ,. ($$ ( , ,284&  " ( (. @+L(I&G%F%F'H(I)J%E#C *"$" ,+L'H;KnXf‹Tb‡IW|5DfP^ƒFUyAOtTb‡w„¨œ½›¨È¥±Î¨´Ñ£°Î§³ÐŒ˜»ft™GUz,M:"B ,"     $"09926 =&G(I*K+L)J$D A A)J#C$4U(7Y"2S%5V6EgZi;KnAOtDRwAOt>Nq@NsDRwGUzJX}LZTb‡KY~R`…O]‚^l‘cq–es˜`o•P^ƒ:Jm,;]'6X/P%E;8.. (" *.. ($. *088 ,"  ( *. ?*K'H&G%F#C$D&G'H&G%E.""  0-N-NR`…>MoQ_„:Jm@NsHV{=Ln?MrQ_„ivœŒ°”¡Áž«Éš§Ç¬¸Ó{ˆ¬IW|*9[%F;80&   ""& *298469%F%F&G%F"B A @ @#C&6W"2S$D6Eg>Mo+:\`o•5Df?MrAOt8Hk4Ce:JmBQuDRwN\GUzKY~BQuAOt5DfGUzXf‹M[€ESx4Ce#3T*K%F =40$".2 ,& , ( *8:6 ( " * *. @*K%F%E%E#C"B#C$D$D$D2"$""8'H:Jm;Kn8HkHV{?MrJX}6Eg.=_>MoTb‡`n“huš~‹¯œ½Œ˜»Œ°BQu-N$D9:9  ""$ (0888998%E#C @ <; ="B%F+L%E.O'6X,;]?MrP^ƒVd‰3Bd3Bd1@b/>`1Ad8Hk>Nq?Mr@Ns5Df5Df*9[+:\/P,;]7Gj/>`'6X,M$D ?;4&&  " (00..&$6 <:. "$ , *. @*K&G$D$D#C!B A!B#C$D8$"  (:+LJX},;]=Ln7GjJX};Kn7Fh3Bd+:\.=_@Ns\js€¦nzŸR`…:Jm.O#C @0.4     ""$ *6806:929< > > > @!B"B%E/P.O,;]7FhR`…`o•0?a(7Y.O*K$4U1Ad6Eg5Df5Df)8Z-N,M$D*K#C(I'H/P'H!B <8.&$   " (082"2 = =4$ $ , *0 ?*K%E"B$D#C!B @ @#C&G9$" ,<'6X=LnBQu)8Z8HkCQv/>`DRw&6W-N 0Q+:\6Eg=Ln3Bd.O-N$D<4$ " "$&$$ *.02646889; < = ? @ A"B$D"B,M'H(7Y3BdHV{Ve‹+L+L*K)J-N#3T#3T.O(I$D"B A ? > <:9;96.$   & ,.:"$20;<  && , >'H$D"B"B"B"B!B!B$D&G9$ ,.(I5Df/>`'6X%5V6Eg0?a>Nq5Df&6W'H,M#C 0Q"1Q,M&G!B;62 , &  $&$& *00468689:;< = = = ? @!B$D-N)J'6X+:\8HkHV{(I&G$D$D&G*K*K%E @ > =<998200 , (   & , ,9$&02<<"""& ( , >(I%E%F$D#C#C#C$D%F'H%E ( *"$4U/>`)8Z"2S 0Q-<^&6W3Bd)8Z-N A'H A.O-N&G A <80 , (   $$& * ,44488689:;; < < < < = @$D,M'H"1Q-N#3T1Ad#C#C @ ? A"B A <898440. (&     $ , ,9 * ( ,2;;&"" * ( , ?)J%F%F#C!B A A#C%E%F @&:@Ns*9[&6W"1Q 0Q,;]$4U/>`%5V 0Q!B'H ?+L*K$D A94. , (" $& * ,24288889:<9; < < = = ? @#C%E"B'H#C#C.O ? @ = < < =<94840 , *&"      " ( *60 , *2;9 *  * * , =)J%F$D!B @ ?!B#C%E%E(I$ $" 96Eg&6W$4U"1Q"1Q.=_%5V0?a&6W%5V$D%F;%F$D!B A980 *&"" $$$$$ ( ,268688888;<9:< = = ? A"B!B A = A A A#C < <;9;;:62. * ($""    "& (282 (4:8 ( "0.. >(I%F%E#C A!B"B%F'H(I*K ( ($";,;]"2S"2S 0Q/P+:\ 0Q*9[ 0Q-N = A8 A =:;98.$  "$ ( ($"    "& * * ( ( ,2688889989; <9:< = = > @!B ? ? = >!B"B @ =8888862. ($"    "$ (.;8 *6:2 ($ (884 ?(I$D!B"B$D"B!B"B%E%F$D&$D/>`%5V#3T"2S/P(7Y*K$4U)J&G: A<#C =99860 (&&"& ( *0. ,& "$$$$$ ( *02. *06898889999< =:; < <<< = > < @!B < @"B <;86640 , * ($    $& ( , >: *89 ,$ *4<;9!B*K%E%F(I*K)J$D"B$D&G$D.& A 0Q&6W&6W"2S.O&6W'H"1Q&G$4U!B%F >%F >; >89;::<92 (" (.2244. ("  """""  "$ *.260028999899999; <:;<;999;9 A$D< < @8988440 *&"$"    $ ( ( , , @< ,99 (".8 @ @ <$D+L&G/P$4U(7Y$4U,M&G(I,M , ,&)J%5V"1Q"1Q.O*K"2S%E.O%F5Df+L)J< @;<!B< @$D%E'H(I$D =:82& &.488860 ,$"$$  " ( (& (48:989:;:89<<99 < << = ? <9:96:9::;<<:9000 , (&&&  " (0. ,.; A.;86&:8$D @< @ @$4U>Mo=Ln8Hk)8Z#3T(I A'6X$9&6,M/P%5V"2S.O-N+L+L"1Q)8Z"1Q,M$D A%E*K)J#C*K*K'H#C >;9; * *&" (068896."  "& (& *299:;;<<99 = @ A ? @"B @ = = @;8988;99;<<<:9222.&$"$   "& ,..2; > ,9.2 ,2<&G9:#C%F&6W8Hk3Bd3Bd*9[&6W/P*K*9[$ (" (9)J/P$4U(7Y.O%E)J#3T*9[0?a"1Q(I%E+L/P,M(I'H/P(I!B ><960$$ $ *088962 *"  " " ( * ( *289 < ? @ =<<< @"B$D%E&G'H$D > < >94988;99;<<9884240&$    $"& ( , *$  $ *028: <.9&.20;<&. <*K>Nq9Il)8Z+:\&6W.O-N'H,M6"$ 9'H 0Q+L(7Y.O%E$4U1@b.=_.=_'6X%F A%F*K(I-N'6X"1Q&G <888 ( $ ,24680 ,$  $$& "& * , * ,269 <#C#C @ < < > A A @#C&G(I%F!B = ?96996:99;<:4246684 *$    $ *..46. * ( ( *.2689 <4;" (8240286/P\j:Jm"1Q#3T"1Q'H*K&G%E'H&" =)J#3T.O&6W)J(I1@b;Kn6Eg7Gj"2S(I#C&G,M/P$4U+:\*K!B8. , ( $ (.002&"  "&& (" $& *...269 =%E%E A < < > ? < < ?#C%E'H'H A!B<8;948989<8. *.8886. ($"   & ,.4680022244448 <6 <"&. ,4.89<0?aes˜5Df*K-N.O+L$4U%5V%5V"2S" (" @)J 0Q&6W/P'H/P7Fh>Nq>MoESx%F+L"2S&6W,;]/>`(7Y+L A<4 (  $$ ( ( ( "$&&&"$$ *.22469 =$D$D A = = > =<; = A#C)J.O)J&G >9;948889 <8 *&.0666. *$$ " "& ,.000266668808<.<&$$ (8" *"1QM[€Ve‹,;](I*K+L-N%5V'6X/>`"B" "<%E'H+L*K'6X=LnCQv;Kn5Df6Eg'H/P"2S"1Q'6X.=_"2S A880$    "" ( ( (&"$$ *.2866: =!B"B ? < < <<;< > @!B'H"1Q&6W/P A8986988: >9 * (0 (.24 , *$$"" $ , , ( ( (024424698:< *:0." ,2&9(7Y\k‘vƒ§FUy"1Q)J+L(I-N.O*K*9[.."9+L/P#3T-<^Q_„es˜M[€8Hk/>`#3T$4U/P(I%E*K.O%E9.. *   "$ * ($""$ (04888: = @ A ? << <:: = ? > >%F/P.=_&6W A4444;88; ?: , (4$ (.0 * ("$""" ,0. ,&$020 , *.8;< ? > *<98 ( , , @HV{~‹¯¨´Ñš¦Å>Mo)J(I+L(I/P.O&G+:\& =&" *:*9[4CeFUySa†{ˆ¬|‰­KY~7Gj:Jm+:\)8Z-N%F*K-N'H: ( , *$ "$$ , ($ 0. (499: < = ? @ ? > << <<;< >#C+L"1Q6Eg,M<946994: <:9:98"$& ( ( * ($"" 20 , ,.0. , (42 *&2:: < ? ><; = > = ?+:\Sa†˜¥Å¯»Ö©µÒcq–0?a 0Q+L"2S$4U'H#C"1Q0?a)JKY~Ucˆ < **K 0Q)8ZVd‰~‹¯‡”¶vƒ§Ucˆ6Eg3Bd3Bd"1Q.O)J$D >92 *&"  "   $ ( , , & (& """0. *699: > > ? @ @ > = < = =< < >"B)J.O1@b(I;948989< <:9<96 ($$& * , *$ "  (.. , , * (" 20248620884 * *09:<"B'H$D > A/P1@bR`…z‡«š§Ç±½Ø£°Î™¼Tb‡/>`+L#3T*9[.=_*K"2S(7Y+:\:2Xg.O$4U(7Y,;]`o•s€¦‹˜º…’´lyŸN\4Ce1Ad1Ad.O*K%E ?90&""  $$ (& ( (     """.0.898; @ @ ? @ @ ? ? > = > > = >!B&G)J*9[$D996898 < =<;; <94 ,& " *. ,$""""$ *.. , ( (&&& ( * , *08:<<;:960069 < @"B'H 0Q'6X,;]8HkVd‰s€¦œ©É±¼Ö±¼Ö®ºÕ›¨È†“µN\%5V+L.O-N"2S%F"2S'6X*9[9$ (4Ce"1Q"2SSa†^l‘{ˆ¬‚³es˜GUz0?a-N/P/P+L'H!B;2$      & ( *&$  "    ...888 < A A!B A @ @ ? @ ? ? > ? ?!B#C&G%5V @8969<; @ =;; < <90.&& , *"" * ( ( * ,. , *  $.89 ,29< @!B"B%E @:89 < > A$D,;]%5V-<^GUzgtš~‹¯•¢Â§³ÐµÀÚ¯»Ö¡®Ìž«Éš¦Å…’´N\"2S.O"B%E(I-N/P(7Y(7Y"<08&6W\k‘`n“jwq~¤lyŸHV{0?a"2S&G)J'H*K&G @90&" "$&&$ " "&& (& $"""     * , ,668 ?"B!B#C#C#C"B!B @ ? A A @ @!B$D&G"1Q =8989 > > @<:; <;84 ,& &&"" "$&$$$ *289960 ($& ,8:89 < > ?#C'H*K.O%E<; =!B&G,MBQu7GjAOthuš”¡Á§³Ð«·Ò­¹Ô±¼Ö«·Ò§³Ð ­Ë•¢Âr¥HV{*9[+L"B"1Q'H.=_,;]7Gj 0Q6 ,8N\$4UVe‹:JmivœQ_„M[€0?a"1Q,M%F(I%F&G"B =90 ( ( ( $ ( , , *$"&""""""""  "&& (208 A"B#C%E%F%E#C"B!B A!B!B A A"B%F&G,M<898: > ? >:99:886 *&  "$$&" " ( *   $.4662 *$"$.89 > ? @ ? > @%E'H/P*K%E @$D 0Q+:\0?a:Jm?MrTb‡z‡«›¨È¨´Ñ©µÒ§³Ð®ºÕ¬¸Ó¨´Ñœ©É”¡ÁnzŸHV{(7Y)J)J"2S A*9[7Gj?Mr%F ,%E^m“#3T/P`o•GUz+L,;].=_+L&G&G @!B @!B ?:4. ( ( ($ (.2. *&"&$"    " & ( (&$$ , *6"B"B$D&G&G'H%F#C A A!B!B!B!B$D'H*K$D98;:9<<:8899449 ( * *& "& * ($  $ ( ,"  (.48; < > = = >!B$D)J$4U)8Z'6X,;]9Il>Mo:Jm3BdAOt\k‘}Š®˜¥Å¥±Î¨´Ñ¨´Ñ±½Ø©µÒ ­ËŠ—¹™¼w„¨O]‚-N(I(I*K#3T1@bAOt0?a =8nzŸ&6W#3T\jcr˜?Mr#3T.O'6X+L*K)J @ A A ><80 (&&$& (044.$" """" ""$"" ( , * ("  (&2#C A#C'H)J)J&G#C @!B!B!B!B"B%E)J-N @46 = <:;884686029 * ,. ,$" (. *&"  $ ( ,  * ,22.29< = = >!B%E+L3BdCQvDRwESxJX}BQu1Ad9IlIW|bp•}Š®–£Ã¦²Ï¬¸Ó¨´Ñ­¹Ô«·ÒŸ¬Ê{ˆ¬Ž²vƒ§Tb‡*K&G"B,MXgVd‰Q_„+L9Ve‹:Jm"2STb‡^m“P^ƒ#3T$4U'H#3T+L*K%E9:; <;80 (&$$ ( *2660&"&&$ 40 , ,.. *" *  (4 ,(I'H#C*K)J*K*K > > <"B @(I A+L&G(I889842694662.06:9840. ,&" , ,&  "  "& *2: <:9< @!B*K*9[7Gj=Ln>Mo>Nq>Nq>Mo8Hk>Moes˜Œ°™¼£°Î¬¸Ó¥±Î¦²Ï£°Îœ©Éˆ•·}Š®w„¨Xf‹&6W'H.O*9[‰–¸y†ªCQv#3T3Bd7Fh$4U-<^>Nq.=_,M+L#3T+L,M+L'H!B <962420 ,$  (9 ,88 ,8 (209<8 *&" ," (68,M(I&G 0Q-N)J)J ? @ >!B%E!B&G(I+L&G888688442440 ,0899962. , (&$$$""$ "  $ ( ,29;;< ?!B"B-N(7Y1Ad7Fh;Kn>Nq>Nq:Jm6Eg>MolxŒ°ˆ•·–£Ã§³Ð«·Òž«É¥±Î”¡Á›¼es˜lyŸCQv&6W&G%EZiŒ°Zhƒ´x…©jwr¥u‚¦~‹¯n{¡AOt"2S)J$D*K*K*K&G!B<60220.&" " ( * (9.8808& ("$..$ $" (9 <)J&G&G"1Q-N*K)J ? ? A!B+L ?*K%E+L @8624994 ,20. , ,08: =:82 ,&" & ( (&  $ (.49;< ?#C$D#C"1Q%5V+:\1Ad9Il?Mr?Mr=LnFUy@Nsgtšq~¤Œ°ˆ•·¥±Î¯»Ö«·Ò©µÒˆ•·x…©KY~O]‚7Fh1Ad 0Q*9[n{¡%5V”¡Á`o•\jgtšjwn{¡w„¨jwJX}1@b"2S%E*K+L*K'H"B<4 ,. , , ("  "$ ( * ,829:44  (& "  &$2; A(I%F%F"1Q/P/P 0Q"B ?!B%F,M#C*K'H%E98668982 ,0 , (&&.69 = <92&& (&&"  "& *29;;< ?%E%F#C.O$4U+:\3Bd:JmAOtDRwDRwZhESxcr˜p}£ˆ•·‘œ¾¥±Î«·Ò§³Ð–£Ãw„¨Sa†DRw:Jm8Hk=Ln)8Z)8Z+LZiFUyXf‹ft™^l‘n{¡es˜cr˜`o•IW|*9[+L(I,M-N,M)J%F >8 , * * (" ""&&&4869:8. $$" * *& "2249&G+L+L+L%5V#3T&6W*9[)J#C#C'H%E+L'H,M >668:98400 * ( "$ *02996 ,$ "  " "4440 , , * ,  "$ (.6 ? > =< >"B%F%E*K#3T.=_7Fh;Kn@NsIW|Q_„LZ:JmVe‹lyŸŽ²‰–¸’¿œ½…’´s€¦Vd‰BQuESx@Ns>MoBQu?Mrn{¡4CeGUzJX}HV{lx{ˆ¬z‡«{ˆ¬s€¦Zi7Fh'H"B-N*K*K*K'H%E >6 * (&"  & ( ,224;89;<9&$62 ,00. ,&""""" (84 @%5V+L.O.O&6W"2S&6W.=_"2S.O*K*K#C"1Q(I-N;869;92 ,.2&" $&&$ * , *& & ( * ( "89998624$&&&& ,28 @ A @ < ="B$D%E&G 0Q-<^5Df6Eg:JmJX}XgZiLZ^l‘r¥z‡«”¡Á ­Ë©µÒ‹˜ºy†ª>Nq>Mo;KnTb‡CQvR`…IW|Ucˆ;KnESxKY~`n“lyŸŽ²\k‘lyŸ\k‘8Hk#3T/P+L'H&G$D#C#C @<4&&""" ,6: = > @ =8;; <;"" 0 <9"$9:2$&&&&& * *8%E9IlLZ.O-N 0Q*9["2S%5V5Df6Eg9Il1@b"2S'H/P-N#C988984. , ( ( " * , ( ( ( , ,&"" (.6820.2 , , , * (.48 <!B"B ? ?!B"B#C%E,M%5V+:\+:\1AdESxXgR`…CQvESx\j^l‘‘œ¾›¨È¦²Ï¦²ÏŒ˜»>Nq4Ce:Jm`n“Ucˆgtšbp•-<^5Df>Nq;KnBQu4Ce6EgCQvQ_„?Mr#3T#3T(7Y*K @ A ? > <<90"&$  &2: ?$D&G&G =2;< > >""$2; <:9888 (&$$""6 (90?ar¥z‡«%5V.O%5V0?a'6X*9[@NsM[€\jDRw)8Z"1Q+L"1Q962:80 ,. ,$&.2 * (& , (&" $.42..000. * ,.689 @#C#C A!B"B"B&G)J.O"1Q"2S+:\@NsUcˆUcˆHV{ESxlyŸvƒ§«·Ò§³Ð£°Î£°Î†“µGUz,;]N\es˜gtšn{¡DRw 0Q)8Z.O-<^&6W%5V'6X"2S1Ad-<^"1Q/P&G @&G ? =;;;9."$"  $ *6< A%E&G'H <.<< ? ?&&&: >9:"B ?4"$ (   "  92$4Ur¥ž«É™¼(7Y.=_%E1Ad)8Z3BdFUyR`…`n“O]‚$4U*9[%F @848662. *$ ,;9. *  ," ($ $ $ ,..2.4884268:!B)J+L&G#C"B$D'H#C(I"2S"1Q,M)8ZAOt:JmAOtM[€y†ª’¿ ­Ëž«É§³Ð¨´Ñgtš4Ce>MoVe‹lxy†ªgtšM[€"2S,M#3T-N)J$D%F)J)8Z1@b'6X.O,M'H ?806 <<2 (2&""&&.8 >#C$D @ =:98<#C< ,.< >9$D A8 =$ ,. "$ ( **9[ ­Ë£°Î“ Àz‡«:Jm/P%5VN\/>`'6XGUzft™y†ªgtš5Df)8Z A<899640 , ( $09844 * * ,9 02 *." * <8 ,0899999: A+L.O+L&G%E$D&G(I%F&G 0Q.=_/>`'6XZhFUy,Mr¥Š—¹¯»Ö¥±Î¢¯Í…’´R`…5Df\k‘hušjwivœes˜R`…%5V)J(I"B!B @$D-N*9[.=_"2S'H%E @9 ,26640 ( $  $& *.49 @#C$D A =998 >$D<.4 > ><&G#C:;0 ( ($&&$#Cp}£®ºÕ¢¯Í¡®Ìvƒ§r¥Xg 0Q.O:Jm"1Q%5VIW|ivœr¥p|¡=Ln"2S <986420 ,&" 2:8 , ( (&$ (&"$890 *.4: = <<: <#C,M"1Q,M&G!B @(I(I&G)J$4U.=_%5V%F%F-N*9[ƒ´™¼|‰­Ž²vƒ§cr˜\jUcˆ`n“lxn{¡p|¡Vd‰JX}/P%E"B< < =!B'H"1Q#3T'H A!B =8 (66&". (   ""& * ,089 < A#C!B ?<9< < A#C:09 ?<9$D%F"B A ,$ 4& ($2 ( ,:ˆ•·²¾Ø¬¸Ó§³Ðlxp}£cr˜GUz 0Q(I9Il4Ce)8Z/>`Zh…’´Ve‹1Ad%F:98. ( , *& $0&&.<"B:.9&$; * "22& (40049 < > >< ="B+L 0Q 0Q+L(I&G*K%E.O1Ad.=_'H A)J#C"2SQ_„†“µz‡«Vd‰gtšcr˜n{¡n{¡ivœLZbp•cq–s€¦O]‚4Ce%E!B"B < = < >!B&G&G A < > =922 ,"&"   "$ ( ,088;< > A"B @<9: >!B#C"B8.; =98 <!B&G)J ? ?;%F9 <8664 A*9[CQv¯»ÖŸ¬Êž«É…’´}Š®N\IW|+:\$4U#C.=_7Gj.=_$4UHV{p|¡>Mo)8Z >980 ($ ($   2 A"2S'6X!B$   (2" 9 >6 ( (8428; > > = < A&G-N"2S&6W'6X'6X+L%E&6WAOt7Fh!B:+L#3T8Hk`n“s€¦8HkESxGUzft™~‹¯lxP^ƒKY~ZhXg^m“Ucˆ#3T < A"B; <<<"B%E"B <99908&."  $$"  "& ,28:< @"B$D%E#C @ =; <"B#C$D A4 ,; > <&G"2S1@bHV{Q_„M[€^m“N\GUz"1Q,M&G,M 0Q.=_R`…Œ°›¨È‘œ¾«·Òƒ´lxXgR`…+:\7Fh%5V#C 0Q)8Z1@b.=_?MrBQu7Fh,;]<80 ,$ , " @%F,M$4U$4U"B0.2$8 "0 <. A+L'H >::988689 < > ?"B"B$D(I,M 0Q"1Q 0Q+L*K)8Z=Ln;Kn$4U&G)J5Df@NsnzŸ\j>MoXg^l‘{ˆ¬r¥p}£BQuUcˆP^ƒhušTb‡Q_„-N; ? >4: << < =<999900  *""$$& ($""$& ,49 = @'H(I)J(I%E A ? < ?"B"B!B >0 *;89"B$D&G&6W)8Z)8ZESxAOtFUy7Gj>NqQ_„`n“n{¡‹˜º¦²ÏµÀÚ²¾Ø©µÒ}Š®jwR`…KY~=LnBQu6Eg-N 0Q7Gj7Fh1@b*9[CQvCQv4Ce0?a80 (& & (:*K/P,M)J 0Q"2S'6X1Ad ( ( *4 ?/P^m“IW|JX}>Nq$4U >68:689:< = A"B'H&G%E%F(I(I&G%E+L*K%5V4Ce>Nq;Kn/>`&6WESx1@b@Ns+:\Sa†p}£€±x…©w„¨}Š®Sa†Tb‡Tb‡`o•P^ƒFUy&G9 @< ,9;<88889:82 & (& * , , ($$$$ *4: @#C)J*K+L(I$D ? > = ?!B > =;. , < >"B*9[,;]5DfUcˆhušw„¨z‡«‚³™¼Š—¹‡”¶›¨Èš§Ç£°Î®ºÕ±½Ø®ºÕ¢¯Í޲‹˜ºlxFUy?Mr>Nq/>`BQu$4U(I%5V1@b7Fh/>`>Mo1Ad1@b.=_ , ,$" >"1Q&G.O(I"B$D'H+L$4U5Df?Mrft™lyŸ}Š®’¿…’´Ÿ¬Êvƒ§@Ns!B8982208< < > ?!B%E)J'H&G)J-N/P+L)J*K&G/P3BdAOtAOt;Kn:Jm7GjJX}HV{Ucˆcq–‚³‰–¸Œ˜»”¡Áy†ª`o•N\ft™8Hk?MrESx ?0 ? >09<9:98888 ,  $ , * * , , , (&$$$ (2:!B%F(I*K*K&G A =<; > ><::.. >(I)J-<^#3T'6XJX}es˜}Š®~‹¯Š—¹œ½”¡ÁŒ˜»£°Î ­Ë©µÒ§³Ð¥±Î§³Ð®ºÕr¥Xf‹R`…9IlBQu;Kn9Il7Fh.O+L$4U1Ad.=_(7Y0?a/>`&6W#C.$  0#C @$D @ @"B#C(I,;]@Nss€¦†“µš¦Å£°Î¥±Î’¿hušESx%E @9. (.9 =!B%F(I(I#C!B!B#C ?.=_'H*K/P#3T,M)J(I"2S,M.O4CeAOtTb‡Vd‰?MrAOtGUzZiŒ°ž«É¦²ÏŸ¬Ê‘œ¾Š—¹es˜M[€GUz5DfSa†BQu89;9848:968<:&$$  ( , *$ ($  & *29 A&G-N*K%E A =;998: < >8 ,.8)J$4U*K#C*K-N7Gjn{¡ft™jwes˜\k‘ivœˆ•·š¦ÅŸ¬Ê¥±Îœ©Éœ½…’´=Ln5DfBQu6Eg:Jm0?a,;]/>`'H.=_-N'6X+LXf‹IW| ?/P#C4"  "B)J!B ?<< ? @ A+L*9[3Bd4Ce.=_"2S+L'H >42 ," &288: > ? @ @"B#C.O)J$D&6W A#C/P$D*K)J/P.O/>`'6X#3T#3TKY~CQvR`…w„¨’¿–£Ã›¨È¥±Î”¡Á‰–¸Ve‹Xf‹7FhKY~LZ/P<:;:888888980"  & * * (.. (& ( * *08 < A"B A ><99998 < A >8 *8 @-N#3T&G!B'H*K1Ad`o•gtšFUy4CeAOtXf‹\k‘XgXgz‡«q~¤hušbp•+:\%5V1@b)8Z+:\%5V$4U,;] 0Q#C"1Q&6WM[€9Il @"2S(I!B8& ("(I%F > =:9<;9; A&G(I!B6$& , *& * , ( *08; >!B"B#C&G'H&6W$D(7YBQu?Mr/P(7Y#3T7Gj"2SDRw8HkjwSa†ft™}Š®‰–¸‘œ¾—¤Ä˜¥Å•¢Â’¿{ˆ¬ivœ\j9Il4CeLZ 0Q<9869884699. $$"   "" (.0 , , ,..049<:99888889 ?#C ?2 (9'H.O/P%F!B'H%F"1Q?Mr$4U 0Q*9[:Jm9Il1@b?Mr\k‘^l‘\jZiZh5Df$4U#3T-N"1Q"1Q,M"2S/P#CAOtCQvGUz!B!B =%F!B8$ #C"B < =9888. , ," (   "$ ( ( *29 >!B"B A%5V'H%F'H#3T)8ZESx6Eg*K/>`"2SP^ƒ^l‘Zicr˜r¥q~¤ˆ•·ž«É—¤Ä~‹¯Ž²—¤Ä”¡Ávƒ§Xg:JmCQvFUyR`…#C98889988696 "$$"$& *064 , ,..048898866689 = A!B <2 ,<*K+L+L%E$D&G A A-N.O$4U*9[-<^1Ad7Fh;Kn=Ln?MrCQvHV{JX}&6W)J*K,M,M 0Q*K$4U*KhušIW|IW|>Mo ?<8(I"B8  ,4%F ?!B = <920 ,&   * ( *09 =!B#C+L/P @(I$4U*9[,M/>`.=_%5VAOt(7YM[€^m“`n“hušu‚¦˜¥ÅŸ¬Êˆ•·w„¨‚³‡”¶}Š®u‚¦{ˆ¬?Mr+:\1Ad`n“=Ln:9; <<989<99 ,$$  "&" " (068:22..0244688899;<$D"B A =99 @)J*K'H A!B#C ? ?$D%E'H%F'H-<^DRw@Ns+:\"2S(7Y.=_1@b+L%F(I-N(I%5V/>`M[€M[€Sa†lyŸKY~%E99"B(I#C9 ;:,M*K1@b <9882 ("   $ " (09 ="B%F(I&G*K+L$4U\jO]‚&6W.OO]‚es˜n{¡JX}}Š®Œ°¯»Ö¢¯ÍŸ¬Ê˜¥Å‹˜ºu‚¦cr˜gtšr¥XgVe‹8Hk3BdGUzBQu-N A9 < =<968984 * $&&" """ ( ( ,49;840. ,. ,.268; < ? @&G"B @ @ ? A%F,M-N%F @ ? ? A'H/P.O#3T"2S,M&G%E%E%F*K/P$4U'6X"1Q*K(I.O&G*9[8Hk^l‘Ve‹O]‚ivœ%F9 ? ,%E%E%E = ('H"1Q0?a'6X-<^; , , , *& "$" ,28 <#C'H%E 0Q'6X#C)Jgtšgtš8Hk1@bSa†~‹¯ˆ•·›¨È›¨Èž«Éž«É¢¯Í£°Î”¡Áp|¡\k‘`n“^l‘R`…\j-<^+:\6Eges˜;Kn*K99:<<;:< <6. , ($"$ ( ,. , (& (. (&.9 =:2 , ,.0.269; = @"B#C A > > A"B#C(I.O,M%E#C A >#C-N&6W*K%E"B%F*K+L*K-N*K,M.O 0Q"2S'H$D 0Q,M)8Z'6X>NqivœR`… A$4U9;%E * A%F"B2 $$D)8Z+:\ 0Q*K: ,8$ ($   *289<!B&G(I$4U/P(I,;]Zhcq–‰–¸>MoTb‡ivœ†“µž«ÉŸ¬Ê£°Î¡®Ì–£Ã޲lyŸbp•ZhQ_„N\R`…5Df/>`4CeCQv9IlAOt"2S:<;< ?"B%E&G&G0 ,06 (&$0996 , (.89608 ?<90 ,04669< = ? A"B#C#C99< A!B$D'H.O&G$D'H'H!B#C,M"1Q-N"2S 0Q)J'H*K-N,M/P/P/P 0Q#3T&G*9["2S"2S5Df+:\3Bd,Mq~¤ ?&G&G >;!B%E"B/P" & @"B%F'H!B:0 * ,   $.06 < > @*K-N 0Q+L.O"2S`o•|‰­jw~‹¯Vd‰jw‡”¶œ½|‰­†“µ”¡Áˆ•·~‹¯\k‘Ve‹M[€Xf‹M[€3Bd:Jm1@b0?aBQu3BdLZ8 A =9;%E/P+L9  *68 ,""$& *2 @)J$D999: A'H'H @8<92.0488 < << = ?!B$D$D:9989 <%F/P(I'H&G&G&G(I)J+L,M-N 0Q"1Q/P*K*K.O"1Q 0Q.O,M"1QGUz%5V%F`n“œ½Š—¹6Eg-N\jZh ?%E"2S<; A A A$ . ?; = =:2 *"$   ,8 =%F)J&G&G.O*K)J)J/>``o•ft™bp•gtšSa†lyŸƒ´Œ˜»y†ªz‡«z‡«jw|‰­JX}Vd‰`o•O]‚>Nq5Df#3T%5VP^ƒ:JmGUz%5V >: >&G.O&G9" & .64.$ (.6 ?&G%F =;99 >$D%F @9!B <6 * *49 < < > @!B"B @;8 ,0006;$D+L$D#C#C#C%E%F&G'H'H&G&G)J-N 0Q"1Q 0Q%5V$4U"2S"1Q&6W&6W*9[=Ln“ À™¼w„¨8Hk&6WXf‹ =/P!B @$4U4$D'H6& ($8 >;;960 ($    08 <*K1@b6Eg1@b+L(I-N%F5DfXf‹bp•n{¡UcˆR`…nzŸ~‹¯‡”¶q~¤nzŸ`n“`o•Zh*9[R`…Xf‹1@b6Eg;Kn4Ce=Ln>Mo9Il6Eg)8Z$D =&G&G"B8"&0."$ ,44<#C!B <;88; A"B A >"B ?942 , * * = > A A @ <82<<<989 >"B%E%F%F%E%F&G&G'H$4U#3T,M)J 0Q(7Y%5V+L 0Q.O-N,M/>`;Kn&GIW|¢¯Í‹˜º~‹¯.O`o•!B+L8)J/P9 <!B'H$0"& 0;< =:82 , ("  "28;-NAOtM[€>Nq-N"1Q"1Q#C+L+:\Tb‡^l‘N\P^ƒcr˜s€¦z‡«\jVe‹LZ^l‘BQu1@bSa†;Kn7GjO]‚8Hk9Il^m“8HkDRw =%F >%5V!B6$  (0448; <:9628 <!B$D$D @ <9420. * > <:99:;;224469 < ?#C%E$D$D"B$D%E#C @"B A A+L+:\+:\/P/P 0Q 0Q/P-N$4U.O%5Vcq–Vd‰"2STb‡1@b <"B =*K @#3T8 A A&&4:9:4 *$$      ,: >/PAOtGUz*9[(I"1Q.O)J%E.Ohuš^m“M[€LZVd‰jwnzŸ>Nq8Hk6Eg=Ln=LnESx=Ln%5VQ_„Q_„'6XQ_„LZ.O*K'H @<"  ( ,...899:848: >!B"B!B =866; = @82 * ( ,49<<<;:9;< = < @ > < = @ @ = @$D%E!B%E.O-N#C4446.O 0Q.=_(7Y$D,;]>Mo'6X"1Q <6#C:)J+L A-N#C$"  286 , (   &. ,9<)J>NqHV{+:\$D*K%F#3T"1Q*9[gtšbp•Q_„N\P^ƒivœjw,;]&6W+:\7Fh=Ln7Fh$4U*9[IW|5Df@NsBQu9Il(I:9"  04 ," "& ( * ,08:; <<999: = ="B"B"B#C#C @;8"  $ ( * ( @ ? = > = ? ? @!B$D#C ? ?#C$D!B)J,M)J @:6 , ( * ,. ,%F8Hk"2S8Hk)8Z#Ccr˜es˜ 0Q%E2/P =#C#C,M;4"  $022&$    $ ,;28:$D9IlJX}1@b)J)J&G-N/P/P*9[Sa†R`…R`…JX}^m“cq–(7Y*9[5DfGUz?Mr&6W)8Z5Df;Kn4Cebp•ESx(7Y 2$ (0222220.2899;:;<<:;< < = A#C#C @8 " *8 <$D)J+L+L.O)J ? = @ @< ($$  <80?a:Jmr¥’¿ ­Ë‰–¸Zi7Gj *;"B A%F)J6.0 (" ( *..0$    &.;.: ?%E1Ad;Kn 0Q#C%E,M.O(7Y'6X%Fy†ªN\O]‚@NsO]‚Vd‰$4U3BdBQu1@b4Ce"1Q&6W"1Q3BdESxCQv/>`%E &$  *8< > <988:98869< < << < ><8 , !B A @ A$D%F(I)J,M,M$D9 ,. * *$""$$& ( ,2)J0?ap|¡¬¸Óš§Ç¡®Ìcq–bp•/P+L'H8"B+L,M$"$$"$$$  * ,$""  $ ( =69"B$D"1QQ_„)8Z&G"B)J%E+:\-NR`…^m“KY~KY~4Ce7Fh*9[AOt"2S%5V"1Q#3T1Ad%5V%5VAOtjw+:\42 , (" *$&(I-N < = <:999 < ?99:;;8 ,$$2 ? ? ?<: ="B$D!B.O%E9 ,"$ ,2 ( ( " * ,!B2$4UP^ƒlyŸ©µÒ ­Ë‘œ¾"2S'H8%F#C#C)8Z (  "$$&"   ( ,$"  " (0!B)J&G$D#3TQ_„1@b+L1@b"B)J%F"1QivœO]‚BQuKY~/>`4Ce/P*K&G)J+L*9[)J)J:JmjwUcˆ488662. *&  , A(I%E ? ? <:9899;0 , , , *&"00 *8 < =;:< @!B A"B >80 ($ 80264. ,2$& * ,$2"2S)J%5V.O@Ns*K$4U%E#C ?$D-N ?$&&&    & *$"    " (4&G,M$D#C.OVe‹Xg#3T'H =(I*K^l‘es˜JX}ESxO]‚7GjGUz7Fh%F$4U"2S/P 0Q1Ad7Gj`o•$4U)J$D22.00.. * " A+L&G!B"B > <;98444. ($    *&$ ,. * ,699 =;862 *&"208::822.022:"B<%E.=_+L#3Tu‚¦4Ce%F,M&G&G"B2$$$""" $ *$   $ *; @!B#C'H#CESxlxN\"2S+L/P)8Z^l‘1Ad4CeDRw=Ln:JmN\HV{+L#3T-N+:\LZESxBQu0?a"1Q89"""     40&9&G'H$D%E$D A<;:860. , , *"  "" ("$ (4999 >!B#C @<80..44& ,08986264202 A$D-N)8Z€±@Ns$D)J<"2S 0Q$0  "$""$ ($   (.89 @$D.O @-<^P^ƒIW|?Mr$4U)8Z8Hk7Gj6EgJX}FUy-<^DRwQ_„LZ"1Q"1Q(7Y9IlO]‚ft™+L = *&G4" . ($6*K$4U'H ?!B#C <99984. , *$"  ""$$0049 < > A<6 , * , ,.22688888620 ,!B96"2S&G\j1@b•¢Â ?)J&G%E =$ ,$" $$$ ($   &.48 <"B <'H+L:JmSa†cq–`n“Xg>NqLZ@Ns1@b:JmHV{-<^Q_„\k‘N\-<^7GjR`…^m“&6W!B%E.964" " (.0$ "/P.O+L'H%E!B <:9884.. *&"    " .8489 ?!B!B"B%E%F$D @ ?<982 *&8996466488649 ?%F$D)J"BJX}-N#C.O (8 ,$"$$ &$   $ *48;<$D9!B#3TR`…r¥y†ªcq–ˆ•·p|¡n{¡u‚¦P^ƒFUy@Ns,;]AOtZiHV{)8ZAOtUcˆ7Fh @&G$ (86  (8;;< ?$4U)J%E'H'H A<<:982. * (&&$ 6#C'H#C&G*K)J,M&G(I'H%E$D$D @< = = < =<92 ,699669988886#C > ?9!B'H9IlZi<<9"  $& & ("&.69 <0$D#C'H/PO]‚~‹¯Ÿ¬Êš¦Å¢¯Í«·Ò{ˆ¬^m“lyŸFUyESx5Df1AdZiGUz"2S;Kn8Hk$4U:82<" $$"2; @'H"1Q&G(I)J&G"B > = >;:80 *&$&" #C"1Q"1Q(I'H*K*K/P*9[*9[&6W"1Q/P+L$D <8648998829:9< ? @ =0000 >#C-N#3T"1Q(I =880$ &"   $& ( *"      &269< >%F)J>b‡Xf‹‰–¸ ­Ë¥±Î¦²Ï«·Ò«·Ò•¢Âes˜FUy1@b`n“KY~'6X(7Y7Gj$4U<4"& (  "0984 <*K,M 0Q)J"B/P:!B&G;:96. ($" "$.%E"2S-N(I"B A!B#C&G(I'H%F$D!B ? <;99888420.2689:;;<9;;9$D A<82.. ,982 , ($&&     $ ( *$""  $ ,899 ? @!B&G)JKY~DRw}Š®š§Ç¬¸Ó ­Ë±¼Ö¦²Ï¢¯Í‡”¶M[€8HkXf‹nzŸ.O$DXg!B. ( "  ,862;%F ?"1Q,M-N.O+L#C29986. (&   9%E*K'H#C A =<;<<< <<<;:99868642.. , ( (& (&"  $8%F"2S20 ,&&$$$66864. (""" " ( ($$"  $08;9"B > =%F$4UM[€CQvivœ‘œ¾§³Ð²¾Ø«·Ò£°Î”¡Ár¥>Nq\k‘Tb‡cq–(7Y)8Z+L-N&$ $$ ,6869 @)J)J ,0"$D*K @9986. (   *:&G-N'H ? ? =<9984.000.0000000 , , , ( (&$$  *8& ,0. ($ * ,222.& $"   &$&"  $.89 <!B;;#C$4UDRwDRwft™n{¡¡®Ì±¼Ö¯»Öš§Ç•¢ÂLZDRwVe‹^m“Zh4Ce,;]%E"B * *&  (& ,6989 <!B. ,$9%E @9886. ( " 8#C'H$D#C ? = =<:986. ( ,. , * ( ($& ( ( ( (&$$$&$$$ 42 *$& "$""& ( (&$&$"""$ " (08 >"B < ?!B%F$4U/>`r¥Zh©µÒ¥±Î®ºÕ›¼«·ÒJX}JX}Tb‡Ve‹FUyR`…(I8Hk8. ,$ *& *48899 > ( *8<8%E99984 ,&  <%E-N)J ?;< =9640. , *& , , * ($"  """"""""    "   ""& (&&$"  $$   &.6;!B @)J)J'H#C/PlyŸp|¡£°Î±¼ÖŒ˜»›¼˜¥ÅIW|LZHV{FUyBQuFUy9Il)8Z<"  " , ,.24688+L&G =.2)J9 =<94 *$" *+L,M(I!B > > <:82 , * ( * * ( """"   "$ "  ""$ ($&$&&"""& ,29;%E#C+L"1Q*9[&G/PHV{u‚¦†“µš§Çjw‰–¸{ˆ¬Q_„R`…3BdM[€Zi6Egbp•%F.$89844488"B(I; *9; ?2 A >:4 (""2#C-N)J"B = = ?:484. , * ( ( (   $ ( (&$  & ($" $ (08: ?,M#C%F.O4Ce.O 0Q)8ZR`…gtšLZlyŸu‚¦‹˜ºr¥:Jm`o•Xf‹AOt‰–¸\j2.& = > =96689"B#C 4; >:"B"B ?;4 (   (!B)8Z$D$D!B <:96 *2. * ( ($ "   ltris-1.0.19/src/gfx/balloon.bmp0000664000175000017500000000270612140770047013372 00000000000000BMÆ(Àà à tt(((sÐååõ•üÿ–ýÿ˜þÿ—ýÿ’ùÿ‘øÿ“ùÿ˜ÿÿ’ýþ+++uÔé’ûþ™þÿšÿÿ™ÿÿ—þÿþÿ„îÿƒëý‚ëý„ðýƒëüŒôýøþ’þÿ}áô‚ìüüþyÛïqÌâ~ãö‚ëüxÙí–ÿÿöÿzÛï“ýþuÓænÈÖ)))w×ëqËá^ª¼`®ÁzÝðæø^«½`­Àæô^©»b²Å”ýÿ\¦¸OŸ'''”úÿa¯ÂNŽ$$$ÿÿ`­¿Ož_¬¿OŸ,,,’ÿÿ_¬¾_­¿¤ÿÿ¨ÿÿPŸ•þþ²ÿÿP‘ ¢þÿ¦þÿŸüÿJ†”Bx…ƒêûGŽEŒ‘øþkÁÕD|ŠG‚Bz†T˜¨Av„V­AvƒAw„ f·ËU˜©Cy‡c³ÆUš«I…“H‚Wž¯Q’¢Q’¡NŒ›I†”By†!!!"""rrsGG/GAkDNlKKKKmno`pq;GGGghhhhhhhhhhhB>i`ajbW#""""""""""""""".cde`SfWW(""""""""""""""""""""_`ab,WW""""""""""""""""""""""\]^WW.""""""""""""""""""""""GZ[WW"""""""""""""""""""""""XUY T""""""""""""""""""""""""UV""""""""""""""""""""""""RSQM""""""""""""""""""""""""0>?PM""""""""""""""""""""""""CD?OM""""""""""""""""""""""""CK?LM""""""""""""""""""""""""/N?,IJ""""""""""""""""""""""""AK?E""""""""""""""""""""""""H:?EF""""""""""""""""""""""""GB? """"""""""""""""""""""""CD?@"""""""""""""""""""""""AB?< """"""""""""""""""""""""=>?8""""""""""""""""""""""""9:;5"""""""""""""""""""""""6712"""""""""""""""""""""""34- """"""""""""""""""""""./0)%"""""""""""""""""""""*+,%&'%"""""""""""""""""""(  !""""""""""""""""#$    ltris-1.0.19/src/gfx/menuback.bmp0000664000175000017500000113206612140770047013535 00000000000000BM6´6(€à°ë ë W=HVwЦUdy$^~ª)7Ÿ¶Öþ•¦¿fwFR^p‚žÂMZl¦Î%W[k7VEP_~š¾° † 6f>jz–ºs &NzJjšÌÜïj†®2V†Nnž6G`zެÌ-9ar¿5E"*ºÎæ‰Gd*FnÑ>b’Vv¢Ž(BbŽ¢»§¾Ú2b8AQFj–>n¨d{BŒOjb)G'.8ÂAQhBf’2;GZz¦]%E_qŒnŠ®Zzª:^ŽVv¦nв6ZŠNn¢È&1Bf–r޲P"*ªÊt")"Jv¾GWv’¶7^Jjžr޶<":fFrJb‰v’º:jK^ƒ"JzFvðYl‰§dSq1BXpIdçòú$*2W'8&_EV{[0;n~—BZ€4Nr[4DÓ*·g~žK+E2fp‚ b!)Bb’(9QD",j‚ªq!Bbt†£†¢ÂQ.:^zªˆ¢ÆHWn†®B^†bGhQ2U&0>>^ŽP&0Ûêö¡bzJj–*Nz>g*^:ZŠFf–ЦÆ))6;R~.>TަÊ>nrв:jŽ_"(-C:V}b?Wv޶bxš2R‚.N~6!6V†,5DBr"Fv¯kz’ºè >Ts&JzBn,Eå6bDI`n>j†š·R ‚š¾6fy]?Z".ylFT´)’ªÎ«ÂÞ2Hg(?^b~ª¯.a&2`=Ib~–ºÀ>PC,Rà¬xŽev¢ºØ3)<@[Šžº†žÂ+2:*>fJp*:BJ„b„ÁÔéYp”Лk -?7Ëz½zØYz»Ð±7´!oi;µ!ciiiiÈYzÆÈhhhh--X›h?ËË !¤f§¼§fž44žç!-ÐÐ7?ÅÆÐ Å ´hk´hkkhhk h-§u ¥ÛuÃ}¥Í4ç4ç Êؽzѵž444ž4çii;;l!;!;-hhµal¼ E1q¥ujÃofo§4ç444444™ççc¤ii;içžž44 Èhµa-››;žuuÃ4µ knww!!;¤c444ç4¼¼ihË€cã?€ÐÐܳ›çlnЛk ¬?7{zØz½YzÑ€77h!oc;;!c;cicikY½Æ h-¬´-nµnh?ËË !g§jff§444ç!-€€7ÅÅÐÐ ? hh´khkkhhk ´-}Û¥ }u}¥Í44 2ØØ½zѵž44444ç¤g;;;;;!;lw-h-µ°›!§ E1q÷}§füjÃ4444444444çcii!içžžž4ÈÈhµa-aa;ÃuÃ4X Èawww!l;i¤444ç4§oihËÐiã?ËÐ7½Üé-4lnËЛk ¬ÅÐzØÜ½Yؽ½ÑÐ77´!xg;;!c;gic;ÈY½ÊÆ h¬hh¬-µa´?Ë !g4fjfffžžžžç!¬s€7 7Ð Å hk´khkkhhk ´-u ¥}uu¥}4¤4ÅʽzzY½Ñµ444žžžçciiill!;;;°X-hh°›!¼÷E1ã¢Ã§¼x¼¼ohÐk-´´?ÈËYz~½»ܽܽ»{€?-çwl;µ›¬X!i;´€Y? ´¬h´¬-nnhÆs{?´µ!içfxf4ž§4ç;n?Ð??б7 ? kk kkkhhk?Å cx¥¥ÃxÃ÷44!hʽ½YY~444žç¤;.;;!;!;!wµµa´-nµ;§ ãEºí¼fj§f4™4ç4ž4çç4çcci;;¤4ç44ç!hk¬n!›¬h-!ioÃg-hnµµ°XXµl;g4çcicžiwÐ7w}UcÐ7Yé 4;h€k-hk?ÈÐY~~»ܽÜ~»{s?-çll!µ›-µX!il´sY? h¬khh¬a›hÆsË7hµ!i4jx¼ž4žžç;nÆ€??±7k?? ÈkkÈkkhhk È3x¢¢}ÃÃÃ÷ͧ4ž4!hÊz½YY½44žžçc;i;;l!;l;µµnh¬nwX;jÛEEºf4j§§§4çç44444çç4ççc¤i;cç4ççç!hk¬nw!n¬´-wioÃ.›haµµXXXµ!ig¤çç¤içži7uU¤Ð{7Yékž4;h€ -hk?ksY~zY»ÜÜzܽ2{Ë?-4!l!µ›-µ°li;ksY? hhk´h¬µ›h?sË7hµ!cçjx¼ž44ç;µ?±€ÆÅ77ÈÅ?ÈkkÈkkkhhkÅ 3x¥¢ÍÃÃÃ÷ͧ4ž4!hÊzYYV~žžž444çci;;;!;!l!wµ´¬awX;§ EEºo4¼j4¬h´È 7kÜ~»ÜÜV˜z»Ë?;h??¬ h-hhµ!ln Å kkk´hh››´Æ€Ð7ÆX!li4§§çj§§ži!h7ËÐÆ?7È?Ð? ÈÈk´´-›¬ ?7´ç÷÷ÍÃÍ}Û}§ž44i?2½»Ñܵž4ž4žžçç;il;!;l;lwµ--µn;ãE¶oçž444444ççççžžçççççi;.igcc4gn›X;¤- 7 µli;§l´Èk´h--››n!ic¤çicg.Å?ȵ11hÊÆÑ˜j4¬hkÈ??´±½ÜÜ»{ÜV˜½»ËÅ;-Æ h h›h¬µ!;aÈÅ k´khh¬a›h7€Ð7?µ!;cç§§çj¼§4i!h?ËÐ7?7±ÈÆÆ?ÈkkÈhk-›¬ ÆÐhç÷¥ÍÍuÃj444iw?»½»Ñܵ444ž4žççii;l!!;;!X¬¬nX;§EEºo44444ç–ç4444ççççç¤c;l.i¤¤çga›X;c-Å7kµ;i;;hkkkh-›››n!;cççicc. ? hÆ»V§j4hhh ??k7½ÜÜYÊܘܘ˜~½Ys?;hÆ hÈ h›hha;la ´khhh-a-h?ÐÐ7?µ!;i4§§çjjži!hÆÐ77Ð7È?7? kkk´k-›¬ 7Ðhç÷ ÍuuÃf44žiw ÑØ»2Ôܵ4444žçi;;l!;l;!wwnh-nwX;ãE¶ožç444fikËÐ?ÐÐ~ܽÊzzz~½Ê±h»Ü2ÊÊÅ7Ð ´kÅÅ kkh-a-È7±7 -w¤444fç¼ojik€s7??? Æ7ÆÅ khhh›a´ÅÐÐ} uÍíuf4žžçi!ÐØz2½½a444444çcciilll;;!X››µnl4qEºj4ç44ç4çç4çç4ž4ç¤ccçc.;.cçç;wµ-›µ;ž 7?hµ;lnk Å?Èkhhh-nlii¤¤¤¤¤c;-h€Æu8ç??ÊÜVç÷Íífi´Ë77Ðsz½ÊzzÜܽ2д»Ü22Ê?€7s7 kk? Å È´¬-›-ȱ±7 Å-wgç44§o¼¼iÈ€s7??? ?ÐÆ? kh¬¬›n´?Æ€u÷ÃÍÃf4žçi!±Øz»½½a44ç444çci;;;l;!llwµ›aµaw4íãE¶4çžž4çç444çç4ž4ç礤ccçc.;cccçç;µ--µ;ž! Ð?´µl;µ´ khhh-µ;i;cçc¤¤ilh´s7Ãä4??Ëܘܤ¥Íí¼ikË7ÆÐ˽»{zzÜÜz½2±´»Ê22?€7€ËÐ ´kÅ ? È´¬¬›- ÐÐ7 Å-wg444§¼x¼i°kÐsÆÅ?? 77Æ?Èkh¬-›a´ 7Ð}¥}Íxj4ç;н½»~a444444ççii;;ll;;!µµ››µ›w4qEºj4çžž4ç4÷Í!7s»Ê˜Ü½Ñz~ܽ½zÜ{±-›Ð½~ÜV~½ÊË»ØÊÐsÆ777 k-µµh7sÐ?hh ›gf}¼çç§Ãux§4ç;›Å±Ð7Æ???77Ð7 h¬¬›Xµ-k?Ðhç ¥Ã}¢Ûu§4jg›½½Ü»ž4çç444ç¤i;;;ll!!Xa›µ!nµl4qE¢ž44ž444ç44çç44fž4¤çgcgççççç4žžj4c;!l;44;¬Åhl!Xahkk ´´kh-µ!;;;igc;w-µÊËaã ÆËYÜé! u¢}!7sÐYјÜÊ~½~½½z½{±-›ÐzÜÜ~½YØÊË€7Æ7??k¬›µh?sÐ?hk ngfujžççjxÃx§žç;› ±7ÆÆÅ??77ÐÆ khh-µ-k?shç Í}¥u¼4fçi›~½~»°44444ž4çgci;;l;!!a›Xwµlͺ㢞ž444444ç–ççççž§4çc¤cg44çççç44§çc;!l;ž4lh?h!;n-hkÈ kkk´-X!l;igic;!-µ{˵ã÷ÅÆË½zéw â}!7s€YÑػܽ~½zzz{Æ--7~~~½Ê»Y{Ѐ77Æ??k¬nnh?s h´ µg¼Ã¼žçç§xu¼f4ç;n ±77? ??ÆÐ±Æ?khh-Xµ-kÅÐhç }Í¥ͼž§4cg›~~z»µ44çç4ž4ç¤gii;;lll!XanX!µn;ÍqE÷44444çžxoµËʽ½ÜÜYÜz½ÜØË ¬µ´2zzYÑ»Y2ÐÐ777ÆÅ´a´±€?Ȭ¬h-i§Ã¼žçfuü¼žg;› Æ7? Å??ÆÐ7Èhh-µXhÈÅ{Ð-žÃfÃ¥}¼§çi!›{zÑ!4žžçç¤ccgg;;;l!wµ›nX!µi§íººížž§§ç44ççç§44ççcç44ç44çç¼¼¼¼§çç ¶4;w.lla¬hhh´´¬µw!.;l;;;l›Ð{7à 7€Ñz³´ÍxoíÛõËÊØ½~ܽYÜØz½Ë -ahÑzÜÜ»»ÑYÊб±77Æ7 haXkÐ˱?Ȭ-¬-ifüž4§uüfžg;› Æ7????ÆÆÐÆkhh-aXhÈ Ð-ͧu¥ÛÍfž§žçi!›ËzÑlž444ççcccii;;l;!µ›a!µµ;§qq§§§444ççç4§§4ç4ccç4ç4ž4çooj¼jççwçÛq 4;w.;l!µ-¬-h´h¬›w;.;!;;;!w›!€ËÐo 7Ðѽ³hooíõËÊY½Vzz½YzØzܽË?¬µkÑÜzÜÜYÑÑØÑ€Ð±7777 hakÐËÐ?Èh-h-;jüž4fuÃo§žcl› 777ÅÅ???ÐÐÆkhh¬µXhÈ?{Ð-žÃ§Ã¶ÛÍfžžfçil›ËÜ2;4žçççcccgi;;;!lwµ››X!;§ººž§žoÃà g2VÜzY~Y˜zÜÊÐk¬-ksܽ2Y½é˜zÊ€±Ð±±77 nw›?sÐÆÅk-µhk¬!c4§oÃx¼fcclak Å?Å??Å?? k--nXnk ?2hXgÃj¼§4ç4ži;lk€½Ê;xo§§çc¤ic¤g¤ii;!;wa---µc§qºuf§§§4žžçc4ž§44444çcçççç4çg¤4f;;ii4}¥º÷í4çg;;lwn-kkh›;il!;l;;!Xw?Y7§ÆË{½?xüÃ} cѽVÜÜ»zؘܘܻ±k¬¬k˽ØÊzVV½s7Ð7ÐÆÈ-aÅÐ7??k-Xh ¬!gf¼uüfcclak ?? Å? ???k¬-nn´Å?ÊÑÐhµµcojf§ççž;.!´s½Ê;xo§žžccig¤gci;;ln--nµncjº¶x§§§ž4çc4žžž4çiç4çççgç4¼¤;;ii4}¥¥÷ížçgi;lµn¬´kh›!;;l!l;;;lµ!ÅYj7{˽VÆxx¼Ã} c±Ñ~˜~ܽY~Y˜Ü˜z»7k--´s½½ÊØz˜V½ÐÐ7б ››Ås7? È-XhȬ!c4f¼Ãü§fgc!ak ?Å????k¬›nnk ?ËÊshXgo¼fç4i;!ksÊ;Ão§4cicci.;!;a--nµµµijº¶x4fjž§jfÃÃxÛgÆ»»zÜY»ÜØÔ˜V{?kh ´ ÑØ½˜½½½zYYY2»»Ñ»2Ð ›-±Ë?k È›h--ann!g¼x¼¼¼fžg¤cl-hkk kkk¬›µµµkÆÐл»ÊË ncçci¤j¤;!›{lÍo§ž4ciicçc;i;!n¬¬-¬hµ;í¶¢¼4§¼fžffž4çç4§ffjž4ç4ž44çc4f¼i.ii;.4à ¶ã¢ogi;!µa¬hhaw;!;.;i;l;w! V?xi »ËËzÜÐouÃxgÆ»Y~zYÑܽÔ{?´hkk ؽ½½~~½Ø½Y»Y»ÊÑÑÐk--7Ë?k ›h¬›a››wg§jüjfjg¤cl¬hkÈ ÅÈk´hhnµµµk?бËÑ»2s µcççcjllw›{lÍç4gii¤¤g;il!!µ¬¬¬--µ;íq÷¼ž§j§fj§ç4§§ž4ç4444ccç§¼c.ii;.4à ¶E÷x4¤;l!µahhhaw;l;;i;;l;! ˜?ÃiÈÊË{z½¼Í}ÃxÛg7»YÔz»Ü½½{?´¬ kÅ»z½½½Ü½ØY2»»ÊÊÊÐÈ›-7€?kÅ ›¬¬-aan!g§jxxj¼§c¤gl¬kk kkkh¬naµnkÆÐÐ2»Ês µiç4c¤§ç;!w-ÐË!Íçžççgii¤¤¤ci.;!!n¬¬¬-hn.íº¥o§¼§¼¼ }§ÈÊzÜܽzz˜˜~Ðkh´kk ?€½YØz~Y»»½»22½»Ñ»?€Ð h hhkÈh››-hi§}uo§4i!;;µ-h-È7Æk¬›-aXa!! ÊЀѻ2ؽ2»Æ›;;;i44ž!µli!l¤ÛÛÃjjfcigiigiii;;l!!X--›h-;x ¢§§§žj¼f§f44§§§§§f¼§§f§4ççcc¤g¤gi;igç§}Û¥¶¶º¥ÛÍži!°¬kh°l;;;ll!w;;g7zk;´ÐsÊ7cÃj}Íj ʽÜÜY½Y½½˜˜˜~дkkkÈ ?ÐØYYzÜ»2»½ÑÊѽ½»Ñ»?€€ k hhk h›n-¬;uoj§çi!;;µ-h-k7?kh-¬nµn! ÊÐs»»»Ø»227›l;liç4žlXl;!l¤ÛÃfxcigiiicg;;;!!wµ›-nk¬;x ¥ff§j¼§44§f§¼f¼ff§ç¤¤g¤ii;iiç§uÛ¥¥¶¶÷ÛÃi;X¬k¬µl;;;l;!!;;i?ÜÈ!hz€Ê7cÃo}ͧȽʽÜzYYYz˜˜˜½€k´k k ?sYYY~z»ÊY½»2ѽ½»ÊÑ?€sÅ´ hhk h››¬¬;ÃÃf§çi!;;µ-¬¬ÈÆ7Ȭ›¬aµn!!ÈÊÐsÑ»»Ø½ÊÑ7-llli4!X;.!;c Ãf¼figiiigcil;l!X--ah-.à ¥Û§§§ž§ffoí}Í}hY»~V~YY˜~ÜY7kÈk ÅÆ7ËÑéÑ{s»ÊÊËÐ{ËËÐ k 77 ??Èk k¬›l¼ÃÃ}¼c;l!aµw-Å?Èh¬´hµµµw¬7ƱÊÑ»YYÊY{ -µ;ç!X;g¤}} Ã}Ã;iicciig;lln-a›µc¢ ͧj¼o§§jj§f§§§§¼jff§jf§¼¼fo¼x¼§ç4çcgi;lciiç§¼ouí ¥¥¢÷ jç!-´›!.ll;;!!;i;ƽ i!nsYÐYYl¼o}ìY»zz˜VzzY7kkkÈ ?Ð{»ØV˜»{s»2Ê€€ËÐËÐ ´ ÆÆ ?Å kÈkhalžoÃÍÃjc;lnawhÅ? -¬h´XXXw¬772Ñ2Y½ÊYÊk-µwiçç!;g¤}Í xÃÞ;iicgicigi;!a-n›µ÷ ͧjo¼fž§ff§f§§§jff§ffj¼¼¼¼Ão§4ççgiilcicçf¼ouí ¥¥¢¢ §ç!-k›!;l!;;!wl;ii7½ki;-ËYsY»lf¼}uhY»zz˜ܽ½˜zzY?kkk ?±{»˜˜YËË»ÊÊËsÐsÊ€Ë7 k ?Æ ?ÅÈkkkhalž¼xÃÃjg;!µn°w-?Åk¬-hh°µµwh7Ʊ2»ÑYY»»Êkaµ;ççlµl¤ž}Í÷x}Ã4c;icccgigg;llµ-µ›µ¤ §§j¼o§§joÍ}íµY½zVVzYØé½ÜÊÅ ??Æ ?sË»~YÊ2{€±±ËYY{Ð k´?€Ð7ÆÐs±Å -;žuÍx§4g;!°-nµ!n 7Ð? ›a-µµh 72ÑÊY½»ؽÊÅ-ni.w;žoíÃ÷Ã}ͼ§iiigigci;;n›nµµ4¥÷íÃjxfj¼o¼§§f§§fffjff§§žžjjxxÃ}o¼4¤gi;;cicçf4gçxíÛ÷¢¶¥fiwnw;l;;;l;c4;7½?!!Ê˽s§;ooÍÃííµY½z˜VzYéÜVÊÅ ??? ???€Ë»~ØÑ2{б»½ÊÐÈkk77€ÐÆ7±€7Å -;§ÃÍo§4c;!°nn!µk7Ð7Æ ?nµ¬µµh 7ÊÊ2Y½ÑYØÊ?-a;iµ;4Ãíà ÃÍoji.i¤ccçg;;ln-n›X4 ÷xjx§§oÃx§¼§§f§§ffjj§f§4§jxÃuxxož4ç¤ii;lcigç§žçoÛ ¥º ¼iµl;!;i;llc4;½?l!72€½s!oÃÍÃííµYØ~VV˜~Y»VØÜ˜Ê?ÅÈ???Æ Å?€Ë»ÜÜÊÊÑ{€±ÐYYÊÐ hkÆÐsÐ77sÐ -;§uÍoj4g;l°-ala ±ÐÐ?Å?›a-µµ¬ 72»2»½»YÊ?¬ai;wµi4Ãà ÃÍͼ§cii¤¤iiçii;;n-nnµ4 ¥íx§xžf¼o¼x}Ãí!»YY~V˜˜Ü½V˜ Æ ??? ÈÈ È ?7лËs€Ð€»½½Ë?k--´ÆÐÐ7{ÊË7Ë7-.§}ufü!¬Æ7k´´?€ÊË€Ë kk›ak7ÊYÊ»YÑØYz½sÈ-!!°µi§j}}í}j¤;iciiçcii!›-¬-°÷¢}x¼Ãj§jÃx¼ff§§žžž4444çç4j¼¼Ãu4gii;iili¤f;;iooxÛ }žcici;ii;;;iç!Ëzskh›ÆÊÑ{Ñçi¼x}}!»YY~VVV½Y˜˜± Æ È ??ÅÈkk k Å7€Ë2ËsÐÐË»~{?k-›hÆ€ÐÐÊ7ËÆ-;§}x¼Ã¼ç!´Æ7´´k?sÊ{ЀÅkk›ak7ʻʻYY½Y½½ËÈ-µ!!µncj}Û}Í}j¤;iciggcg;;wa-¬a¥¢u¼¼Ã¼jo¼¼ff§¡444ççç4§¼ÃÃ}f4gii;iilicžf;;g§¼ÃÃ}íÛ }c;ci;;i;;;içËzsȬ›7Ê»Ê2çc¼x}}l»YØ~˜VVz˜˜V±È? ¸??ÈkÈ k ?ÐÐ2s€ËÑ~½{?kh›hÆÐÐÐËÊË±ËÆ-;§u}fü§çlhÆ7khhÅs{€€ kk-ak7ÊÑ{YYÑY½ØË -µ!Xnµižj}}íu§¤;iccgciil›-¬›X¢÷}¼oÃxjxo¼¼ÃÍ;YÑØÜ˜˜˜˜VzzéYkh?h´hk´hhhhh--››-hÈ?Ð77Ë»Yѱ h-µ›k ŠƱÐÐ?ÊÑkç¼Íj¼xçiµ-?Ȭa-È7{Ê{Ð h-›-?ÊYÊÑÑÑYYYÐh›h!wnµ!cçÛ u§už;!;icii¤c;!µn-›4¼j§xuÃo§jjÃf§ž4ž4ž4ç4444çç¤iiçž§joÃjçi;;;iiwcžf¼§¤;Xiç§¼ÃxÃ}íÛfçcçiiccc¤gn~Ë7ÅнY´zhçxÃÍÍ;»2ܘ˜˜˜˜Ü~éØkh?hhkkk´hhhh--›--h ÆÐ77Ë2Y»Ð ´-µak Å ?7ËÐÆÊÑÐk!ç¼Ío¼xÃiX-Å h›- 72ʱ ¬-›-?ÊYÑ2»2ØؽØÐhµ-!XX!¤çÛ u§Ãíž;!;ii;c¤i.µ›-›µ4í¼¼¼xu}¼j§¼ufž4žžžçççççççiižj¼Ã¼ç;;.iiilcž¼¼§lµw;çj¼ÃÃx} §cçgigcc¤cn€~YË?ËYYk¬44¼ÃÍ;YѽÜV˜˜VV~zéØkh?´hh´khhhhh--›aahÈ7777Ë2»» h-ak ? ?7ËÐ?Ê2€k!çÃ}¼¼oo§i-Å ¬›- ÐÊ{ÊÐ h››-?ÊYÊ»»2YØY½½Ðhµ-!!µX;¤çÍ x§};!;ii;ggc;!n-›µ4Ûo¼¼xuÃx§f¼ÃfÍÍ;»ËYØÜ˜VéV阘2¬µ¬--¬--››››a¬kkhµµ°-hÈÆÐ2YØËÆÈ´-nahk ??777?л27-iç4f}í}¼c!a-µnh 7ʱ¬hh-µÅØ22»»½½Ê½~»kµ›nµX!.¤Ãí¥ºxçç}fiXµ!l!;;;;w›¬aµçÃx¼§4§¤i¤oíÍo§j44ççççççç4ç;iic4jx¼ç;;i;;g.4xx¼j4;››µ.4j¼Ã¼¼u xž4çgi¤žž4?Ê»ÊËл27iYÐ4cjÍÍ;2ËØØ~Véééz˜V2-µ¬-¬----›-››¬kk¬µ›h ƀʻYs?kh-a-´k ??Ʊ7 Y2Ð-i§¤4¼}ííüi!a-µn¬È7{Ьhh-µÅÊØ2ÊÑ»YØ»»zÑkn-wµµ!.cÃí¥ºÃ4}¼in!;!;;.lwXn¬aç}Ãj4§g;ç¼}¼§§44ç4çççç™4çç¤;iic4fo§¤;l;;;g;4xxojçi›-Xi4fouoo} Þ4çcicžž4ÆÊ»ÊÐÐÑ»7.Y€ççfíÍÍ;»ËY~VVéV˜˜2-nh›h¬--›----¬kkhnXa´ÈÆ€2»Y€?kk¬›-´kkÅ?Æ7?л2Ð-;§4¼}ííÃji!--nµ- Ð{±h¬haµÅØ2ÊÑ»½½»»zÑ´n-nwXµ.uíÛ¥º}çÍfiXnl;!!;;;µ›¬açÃç4¤içÃíx4§}2{½½½V˜Vézhna¬h-›-h---hkÅ?´aXw°›k7ÊYØ€7k-a›¬´k ?ÐÐ?űÊYYÊÅai4§§j¼§¼iw;cwhnln¬nhs½ÊÊÊ2»ÑY²Y?›XXw°µl¤o ÷¥í4i4§¤-?´nXµ!wµ°µ-awc§žicn k;o¼§ž4ç4¤cçç4žc¤ci;iç4§§ž;!;i;igcÃÃÍuc-halcžo¼¼uüj4cccžçw¬Æs€Ñ€µi€iç4žÍ2ʽ½½V˜˜V˜~hna¬--›----¬hkÅ?kaµX-´7ÊY½sÆ´-a--hk ?7Ð7??ÐÊ»Y{ ai4§¼jfxiw!;g¬µ;a-µhsYÊÊ»2»Y»2zY?›µµµwn°l¤x ÷¥4iç§c-?´nµ!°µ-µw¤žžjžginÈ´!¼¼jž4çccç4ççç¤c;;iç§j4ilici;cc§ÃÃÍ}gµ-h›!ij¼¼ÃÛÛÃfj4cicžh?ÐË€2еcË.çç2{½Ø½V˜V˜˜zhµah----h-¬¬-kÅ?´›µµak7Ê»½ËÆÈ-aa-hk ??7s7? ÊYY{Åai¤§fffÛoi!w;cg!¬µlµhnµhs½ÊÊÑ2»Y2Ñz»?-µnnl¤x ¥í4i4¤›?hanw!wµ°a-awc§§iiµ ´!xjçç÷ž{YØz˜é˜˜é?X--››-¬-h¬khhkkh›µµµXXh7sÐ7knXn-h´´ ÆÐsÆ7€Ë»Y7 h!;cço§}}ž4}÷¼ç4!nµ¬ÐÑ{»ÑY»YY½Ø€kw!!;µX!çx¥¥} xiw44hʀȴnwwµµµµiç4jfiµaÈÐÊÅloj§4ççç4ççc¤i;ic4žg!wiccicç§xü¤;µhh¬µiç¼¼f4çc444;wh sËл?.XÊеç4í žÊ{»Yz˜éV˜˜éÆX---›-¬hh-khhkkh-aX°µh7s±Ë7ȵµa¬´h´ÈÆÐ{ËÆÆ7»YÊ7 ¬!;cçÃuž4Ã÷oç44w-µµ-л{Ñ»YYYYØYk!!!!n!ço¥¢} xc!4hÊs h›wwwµaµ;4§f;Xa €Å;j§f§4çççççcc¤g;.cç4žg!!;¤iicçxx¼ç.XhhhX;4§xf§fžç4ž4iw¬ÅËsÐË»7cnÊ7µ4ç4Í žÊYØzܘé˜VVéÆX›a›-›--¬-k¬hkkh›aµXh7s±{±´µ›¬´hkÈÆ€ËÆÆ7ÐË»Y{7 -w;g¼ÃÞ}¢¼ç44wnn-ÐÑÊ2»YY»YØYËh!!;!n;ç¼÷¥Í ¼iw4hÊË h›!wµµic4fiX› s{?l¼;gj Û§€Ë»Y~VVVVܳYÅ›--hh¬hÈ k Æ? ´hn°›È h7 ¬a›h´kk űÐÐ7777±Ê½»{ÐÆ´µw;¤c4§ÃÍíf4;µwµµk ÐÊ2Ðs»2Y½{½½´a!w!wu÷÷ žiigÈYÑÊk-µ!!!;;wcçž§ckÆ7€»È;§4ç§4ccicçciçc;icççg;l;iig¤4§fj§xÍÃjg!n´kh;4jüj44ž44444žcXhƻ˱YËž »Ñ-c;¤j Ûf€sYØ~VV˜˜ÜY?›--h¬¬hk È ÆÅ h¬›XaÈ hÐÅha-h´kk ?Ë€±777Ð{½»{Ð?knw;¤c4fÃÍfçiµwk ÐÑÊ€€»Ñ»ʽ½ha!w!!u÷Û÷ ž¤iig Ø2È-µ!!!;w¤4žcw´Æ7л€È.4jžç4¤ggç4cgc;c¤ççg;;;;ci4§ff§ÃuÃfcl›´k-i¤4fÃo§4ž4žç44žžcµh7Ñ{ÐYs§Å»2¬glc¼ fÐs»Y~VVé˜~Y --hh-h´È k Å ÆÆ hha°›ÈÈhÐ ha-hkkk È?±Ëб777{½»7Ækµ;4jÃíí§4.Xµµh Ð2ÊÐË»ÑY½Ê½zh›!ww!µcu÷ íi;g YÊÈ-!!l;wc44žgk?Æ€»ËÈli4í÷uÆY½Ø½Üz˜é˜˜N½7hkÈkk Å ?ÆÅ?Ð? ´--kk›ÅÈ-›a¬kk´kk ?ÐÐ?7??7sÑÑË77?k-n.§fouÛžçž;nw;; 7Ê2{2»YYʽÜ?nµw!µwi¶¥ ¥§§c!;µÐË2ËÆhµw!wwi;4¼§ffç;-?±{ØY{2hc44444žçciiçcgcç§4!!w;c¤4§ž44§o¼;›h´h-X;g44çc4ž444ž44inÈ7{˽Æfj7Ê»›gl;4 ÍÆ»YY½ÜܘVéVVN³½?hkÈÈ È Å ??ÅÆÐÆÈ h›hk´›?k-a›-kkhkkÈÅ77?±7?7ËÑÑË7Ð?´›µ.§joÍžç4;n!l; Å 7ÊÊÊÑ»½YѽÜ?nµwlµwi¶¥ ¥Ûfiw;µÐË»s7hµ!l!w;;4¼§f¼ç.-?±{ؽÊ2¬g44ç4çžžç¤iiççciç4;w;i4§ž44§¼¼¤!nh´´-µ;gçžž4çc444ž444iaÈ7€€7f§7{»nc;içí Í7»½Ø½Üܘ˜˜V˜VN³½7¬kk ÈÈk Å Å?ÅÆ7?ÈÈk--kk-?k-››¬hkhkkk?±7?77Æ7ËÑÑËÐ7Åk-µw;§joÍç;n!;;ÅÅ ÆÊÑË2»Øʽ~?aµwg¶÷÷¥ §c!;µÐË»€7´Xwli;ç¼f¼4i›ÆËYØ{ll;§ hYY½½˜VVéé³³ËhkÈ ?Å ?7ÆÆÐ€Ð±Ð? ÈÅkahh››-¬hh¬hh´kÈ Æ?ÆÅ?7? kµ;¤44444§x ÷f.µ!!!kÆ? ËÑÊÊÊØÑ»½zX°!w!l;º¥ ÷¢§fcµ!;k€Y»Ðh;!;;4¼ffj4in?s2YzØ{Æ-!gçžç4žžçç4çççc4fi;;;c4f¼¼f4ii4fx4;µ-hk´hµ;icgicçç4žççc-7s{ˬo¼Ð€Y›i!;i§Û kYØØzzVV˜˜é³³Ë´k ? È??ÆÆÐÐÐ7ÐÆ kah--›--´h¬´h´k Å7??ÅÅ7? hX;c44ž44à ÷¼.µ!!! Æ? €Ñ{{2YÑYYz{µ!w!lµiº¥ ÷÷¢§¼cX!;h€YÑ7´;!µ;.4fffj4in?€ÊYzØØË7h!g4ž44žžçccçg4¤g4fc;l;i4§jo¼4gi4¼o4i¬hkk¬Xlgggiççž44çg-7sËÊ´¼f€Yn;l!if ÛkYY½z˜VVV˜é³³Ë´kÈÅ?? ?Æ77ЀÐÐÐÐ7 Åkah--›--h´¬´hhk Å7?? Å7? kµ;¤4444§x ÷jž;µ!!!k7? ËÑÊÊØÊ»zʵ!w!;iíº¢ ÷÷§§cµl;hsYÑÊ7hw;!i;4oj¼j4i›?sÊØz!!!c} 2»Yz˜Vé鳘{h´k Å?Å ??7ÐË€sËËÐÐ7k›µµa-›-h´hhh--k k?Åk›µw;gž4xužgççç4§ÃÛ÷4žc;;!lµÐÐȱËË2ÊY2YÑY-ww!nn;4÷¥ ¥¥oçni-±ËËËs?awl;.çžž4;µk7Ë»ËY~»±´!cçcgc444c44ç4¼4;g.;gž§¼Ãux§gii4§c!a-hkh-µ;i;cg444ž4çc¤hËÊÊ»Ywí±ÊYh;!w!c !2½Y½zVéééé{hkkÈ ?Å ? Å?7sˀˀËÐÐÆk-µ››››¬-´-h´--´ kÅÅk-µ!;g4ž¼}žgççç4§ÃÛ÷ç4¤;;!;XбÈËÊËØÊY»YØa!Xµ!4 ¥ ¥¥o礛ih7ËËÊË?nw!!;;ç4;µÈ7»½Y˽~»7´gž4ccc4ž4ç4¼ž;g.;gž§¼ÃÃo§iii4jiµ-hhk›n!;iig44ž44ççgch€ÊÊѽ!ÆÊ½´;!lwcÍ !2½Y½½zéééé{hkkÈ ?Å ??7ÐËÐs€ËÐ77k›µ›››a¬hh-h´h¬´ÈkÅÅÈ-µl;gž4oužgççç4§}Û 4žc;;!lµ7±ÈËÑ{YÑY»Yawwµl4 ¥ ¥¥x4nih7sËË?›w!l.çžž4;XÈ7ËY½Yllw4¼;€Y½Y½zܘ阘ééÊ-´kkkk ?ÅÅÅ 77ÐÐsÐË€s?h›wXa-a-hhhhk¬hh´k kaifÃu}}}í¥¶÷xç§o}Íll4žçcžc 7 ÐÊ2{Ð22»ÑYÈn›hh›¬h!} ÷÷÷¥Ížg›µiµÈ?7sËÆ´µ;;;;icç44na¬?2z½½½»½z~€´ççcç¤ççÃjç.!lcž§¼ooo¼¤i;cç4i!µn¬¬-›µµw!;g¤žž44ç¤ggih€2»YYi¥ç ½»?lllXç¼;ËYYY½½Ü˜˜VééV³éË-h´´kÈ ?? Å??7ЀsÐsËsÐ?k›wXaa---hhkh-hhkk knif}Ã}Ãuí¥q÷ÞoÃ}!;44ižiÈ7?ÐÊÊÊËY2Y» ››-¬›hhn;}÷÷ ¥Í4c-XiµÈ?±€s±hµ!;li¤¤ç4çžXµ›-ÆÊzzzØ»zÜ€hççcçž4ç}¼ç;!;jxo¼oj¤i;cçži!Xa¬¬h››°!;iiçž44ççggi-Ë»»Ø»c¥ç ½Ñ ;;lµç¼iлYY½zܘ˜˜é阳é-h´kkÈÅ??Å? ?7Ðsss€ËÐÆh›wµa---¬hkh--hkk kai§xÃ}Ã}í¥º÷Þžžf¼uÍl;ççi4cÈÐÅÐÊÊ{€»2Y2YÈ›a-¬›¬kn!} ¥ ¥}žc›µiµÈ?Ѐs±´µ;;;iic4ž4µµ›-?2½½;!µ›lii7»ÑYؽ~˜˜ééé˜ÑÈkh--hhhk k 7ÆÐÐËËÊÐ?kaµ°µn›-hhh´hh-kk´È¬w}çžfÃÛºã¥í§§§f¼Ãf›Xcjçoç´´ ØËËÊ{»Y½?Èk? k?Æ nž¢ ¢í.È›l!-Å€€s7h!;;c4jÈ h›ÐY½½½½YܘÜÑ µççiç4§çiižuÍÃçgžfjf4§§çicciçclµ--››aXµ!;c44çcci;µÆÊÊÑY{4q笽Ñ;!›l;i7»»½»½~~˜˜Véé˜ÑÈ´h¬-h´hk kk?ÆÆ7ÐËË{s?haµ°X››¬h´h´kh-kk´ hwžÍ}çÃÛ¥ã¢í§§§¼jofaf4j4´h ËY€{{»YY?kk??kÅ7kµž¥÷ ¢§.k›;!-ŀˀ?¬°;;.cccžoÈ hµ›Ðؽ½Y½½˜ÜÊÈXc§çc¤žçccžÃ}o4¤¤4§§§f§§çicciçglwn--nanµµwlgc44ic;;µ?ÊÊÑY2çãç¬z»€µ;lnli;л»YØØ~z˜éVéé˜2Èkh¬-hhhk kÈ?ÆÆ7€€Ë{{Ð?kaµµX››¬hhkhk¬¬kk´ hwo§fuÛ¶q¢íjj§§¼xf›µ§ç¼çhh Ys{»»?k Å?È??  ¥ ¢iÈ-;›ÅËÐ?h!;;c444¼kÅhµ›Ð½i;!nµ;?»ÑYؽ½Ü˜ééV½€? k´¬-››khhkÅ ?7{{{Ë7k-›µnn¬´kh´kh¬hÈkh-µco¼§44ou ÷¥ÛÍfjoÃüc›X;g44¼çcnX! ØË2ÊʽY?hkkÅ ÅÐ{€¬i¢Û¢ ;¬aXnnk7s?-l;;4礞žx Ðhn?ѻ˻½zYÜеiççççiw;4j¼ffžfoj44žccc¤¤g;;›-anannXw;ižž4i;!!-sÑYËžqfn2YË›i;!µX.Å2ÑYz~ܘéé˜Ü½??kh¬-a›k¬hÈ ??7{ÊÊs?´¬›µn›-hk´hkh¬hÈkhhgoož4oÍÛ ¢¶Û}f§ouo¼›;¤žž¼4inX ½{ËÊÊØÅ¬kk?Å Ð{€h; ¢÷ ;h›Xnµk77ÐÆhwl;;çççž4¼?€¬a?ÑYËY½~½½еgççç4;!µ;çjjf¼§§¼f4ç4žcc¤c¤c;;›-n››anX;iž4¤ii!!hÐsÑYËE§n2Y€›i;!nµ°;?ÑÑYؽÜܘéNéVÜ»Ë?Åkhh--›khhk ?ÆË{ÊÊ€Æk-›aµ›¬hk´kh´hhkkhhgo¼§žžo}Û÷¥ Ífž§ouÃoç›X;g4žo4cµµ Ø{ÊËÊʽŬkk?? 7Ë-;žÛ¥Û÷ ž;´a°nk7ÐÐ7hw;;;4çc§žo s¬n?Ñ»;;;!°gÈ2»»YÜVéV½Ü»Ê7?k´-n-a›¬hkk ЀË7?kh--›-hkÈ´khhhhk´hlç¼Ã§çž¼§}÷¥¶q¢}¼4ž¼Ãf!-n!ž¼x礵ž22Øs{s»°!›-kkk±Y»kµiÍ ÷;l›hwµ ÆÐЬwii!çcc¼›ÊÜÆhÆ»½zØ»ØÜÜz˜~n¤4g;-µi§ççç4¼xü¼§ççc¤cççc!n›n›-¬¬›µ!;§4çi;!n;µÆÐÊ»Ëã}X7€k;;;l°¤È»»ÑYYÜV³V~½»Ë7?kh-µ--›h´hkÅЀ€Ð?kh--›-´kkk´hh-´k´h;¤oç44x§} ¥¥º¥ ͼž¼xj!-aXwžfxçcµ{ÑYËн2µl›¬kk´±Y»È°ià ۥç;!›¬wa Æs7¬wiilçccço›ÊÜ7h?ؽzØ»Ø~zézÐa¤4¤l-µif4ç4ç4fÃuoffç礤c¤çc!n›µ›n---!;ž4i!!a;?ÐÊ»Ëquµ7Ëh;;;!XgkÊ»ÑY~V³z½z»{7?kh›µ-n›h´kkÅÐs€€?k¬--a-hkkkk´--kÈkh;¤oÃjç4x§Í÷¥¶º¥ ͼž¼Ãjžw-µX!žj¼çgaÊ2ØË{лµ!›¬´k´YÑȰ.}÷¥;l-´µn 7s7¬!;i!çcžç¼-Ê~7h7Yi;ww!!XÑYÊÊØÜzNV˜?Êz~YÊ7Ð? Ȭ›--››hÈÐ2Ê7 ´´››¬h´kkkniµ k´´›çfÃ}Íxu÷¥¥¥¢¥}joÃoçwkk›-ij4§!´a¤c´ÊÊÑÊ2ÊÊ.g;-¬È?7Y»sµ;¤¥ºgwlc;´È ÐÆhwiigç444§ÃkËYY€Ë½Yؽ½z~½ÜØÈ!!;µµ;žÃfž¤çjo}¼44žžçic4cgc¤ž4;aµa¬hh-Xlgfçi;!µnµa--?s71º›ÐƱhi;www!µÑ»ÊÊYÜzVé˜V?{z½½ÊÐÐÅÈ ¬›-››-h Ð2{Ð k´n›¬hhkk´n;µ kk›çfuÍu4ÃÃ÷¥¥¥¥¢í}joxoçkk›¬if4§lhµ¤¤´ÊÊ»{ÑÑÊ;c!›-ÈÅÐY»Ël¤¢ºgwl¤;wµ´k Ð7hwii¤c4444§Ã´sYY€€½Yؽz½ÜÜYkl!l°;çžž¤44§xu¼žž4ž4çic4c¤¤44;nnah´´-X!gžfçi;!µXa›-?s71º›±Æ7h;;w!!wXʽ2ÊÜzVééVÆ2½zYÊÐ7Å ¬›-›››h Ð2ÊÐÈkh--¬hhkk´ai°ÅÈkk›çfuÍ}4Ãx ¥¥¥¥÷}joÃoçwkk--;j4l´ngkÊÊ»2ÑÊ.¤l--kÅÐY»Ël¤¥ºglg;hk 77¬l;icçž4ço´ËYY€s½»wµa›X!?»Y{2Y~ééNé½h7ÊYØØÑÊË77?Å Èh-hk 7€Ð? k¬¬a›h´kk?µggµÐÐw§jfffçÍÛ¥¥¶¶¥¥¥ÛÍÃuxihh-¬!fuc!acl?ÑË{½Ðçc¤XkÈÅ2ÊkniÛ¥í¥µµ;¤cg;ak7Ðk°iicç444ç§aË{Ê˽»½½z½½~zééÊ-;lµ!4j§444§xÃx4¤cc¤g¤4¤gcç4ç.l-¬¬nµw¤ç;wwll¤uEqn{Y7;!µa›°w?ÑYÊÑØ~V³Né½hÆ2YØÑ{ËÐÐÆ? h¬hh 7Ð7ÅÈk¬¬a›hhÈ ?Xgg7Ч¼§§¼4÷¥¶¶¥¥¥ÍxÃxžihh--!jÍc!›XcžlÆ2˱˽Ð4ggnk 2Êkni÷¥í÷µµ;cc¤i›k77k;icç44ççf›Ðs{{ʽ»½½½~ܽé˜2¬llµw°!4jf4444§fxüçcçcc¤c4cicçžç.lµ›h¬›µ!;µwww!wl¤}EºnÊYÐ;!µn›ÆÑYÊÊY~˜³NV~h?2ؽÑË€7Æ?Å hhhh 77?ÈȬ¬n›¬kÈ ?µig77§j§§¼ž4÷¥¶¶¥¶¥Íxxxži¬h›-;fÍ!aXgžl?ÊsÐ{½Ðçcc!nk ÊØ2ÈacÛ¢í÷µ;çcg;›k77 µii¤ç4ç44j-ËÊ{ÊY!°-›µ!w›ÐØÊ2»ØÜ³N؛ȱ»Ø½ØYÑ{ÐÐÐsÐ?ÈkhkÅÆ7?Å k-aµn-k Åkž§7¼jžç4fí÷¢¥¥¥¥ Ã}ÍlXµµn›-l§çnlccaÐËÐ7½ 4ç¤c!Ðn ½ËÐ7›o¶kµ;;gii;nÈ hwiiç4ç4žžj§77»Ñ½Y½zz~zÜܘénwµX!g4ž4§f§§f¼f44¤ç4cc4çciç§j#çiwµ--››;4¤wµnµµµµ!;çí ¥¥iÅÐ?!µ-›nww!a€Y2{2YܳØaȻؽYY»{€€ЀÐ?k´hÈÅÆ77? khaµn¬È ´w4§µÆ±w¼¼4çž§÷¥¶¥¥¢ ÃÍ;°µµn›-!§›;¤nËÐz çcc!77µ ½Ë7ao¶kµ;;i;;XÈ hicç44ç4j§77л»Ø»½½zܽzVéʵµµw¤4žž§fjj¼jçc4çcc4çgcçfoj¡çi!n--›n;4¤!µXµXµµµwlçí ÷¥c €?!!°a-µ!!›sYÊ{»ØÜ³YakÐÑY½YY»ÊÐsÐsÐ?khh ?ÆÆ7? k-µµahk kjµÆÐ!¼¼4çjíÛ÷¥¥¥¥¢Û ÃÍ;°µan-¬l§µ›l¤žµÐËб½ 4çc7е Ü?µ¼¶kµ;;cgii;XÈÅh!iiç4ç44§§?ÆÑ»Y»lXXµnX?ËÑ»ÑÑzééÑah7Y½Ø»ÐÐ7€Ë±ÆÅÅ?7?ÅÅ? knµ¬Èk ?Í÷lÑÐhc§¼x§ ¥¥¶¥¥¥íÛí§!-nh¬n?7µx¬¬ç4igi›Ë2ÆØ c4cç.?ËÈ?ÐÊ€±7lq÷-´;i!!;!i;;›!icccçç4§!Æ ?YØY»z½½z~z˜˜é˵a›µµwµ;g4§4ç4§žžç¤çççççccçcc4§§ç;wna›a;g;wµ!µ°;j¶E¥÷çXwµ-!!X°°XµµÅÑY»ÑzééNѵh7{Y½Ø2±7ÐÊ{ËÐ?Å ?77 ? hnX-kk ? !Ñ€hifffxjÛ÷¢¶¥¢¥¥ Û§w-nh¬nÅ7n¼¬-c4iii›ËY?Ø ižg4i?{ ÆÐÊsÐ7lº÷-h;i!ll!c;l›µligc¤ç§§w? ?YYYY½z½½ÜÜzésµµ›µµ°;gc¤4f§žç444¤g¤4çççccçicž§ç;wµµa›l¤iwµµw!°!;f¶E¥çµµ-!wµµXµµµX ÑYÑÑzé黵´ÆÊ»ØØÑ{77€{ËÐ7Å ?77 ? kaw-kk ŵ} lÑ€hifff¼§ ¢¶¶¥¥¥÷Ûí§-a-¬n?Ƽ--ç4.ii›{Y7Ø ggçi?Ë Æ{ÐÐÐlq -h;;!;;!i;!nµligçcççž§§!Æ Å»Y»Y!!;!w›-a¬ ½»Ê½˜éN7µh?sÑYØY»{Ð7?ÐÐ{Ê{€7±€s7Å ?Æ?knl;akkÅkc¢.Ð?µ44¥¥¶¶º¥¶º÷¶¥ÍÍji›µkhÅÊÆf¬-ciç4i Ëл-c44ci´Ê½Åz˱Ê?Ãnk!.w!!;!;wµnµi¤c¤ç4w7 ÅØØYY~zz½ÜV7;µµµ!;.içž4g.i¤44g;!;igçç44¤c4ç§çi;!!l!;;!µµµwijqä1º;hiç!l!!!wa›a- ˽»{~˜V³Ðh?ËÊYØØYÊÐÆ7ÐsË2ÐбÐs7 Å77?kµl;wµkÈ?kc÷;ÐË?Xçí4 ¢¥ººººº º ÍÍÛ¼i›µkhÅ2?f--g;ç4. Æ»-g4çcžik2Ø z7{Åunkl.w!!w;w;!µa;ccçc¤4ž4w? ÅYØYYØz½zzzzé7lal;gžçg;i¤ž4gi;iggç44cççç§çg;!!wl;;wµµwµµµw;xãä1qi´i!!lll!a-›¬ {½»Ê~˜V³N±°h?sÊYY½»ÊÐÆÆÐÐ{Ê{ÐÆ±Ðs7 ÅÆ7?kn!!›kÈÅkc¥Ù;€Ë?çíž ¥¥ºº¥¶º÷¥ ÍÍoi-µk´ÅÊ7-¬¤ciç4. 7Ñ›g4çc4i´{Y ½ËÐ?õÈ!.!!;!lln›;cccç4!7 ?½½YY;igg;;!µn›?»2YVNÅh ÐË2»YY2Ë7ÆÆ7Ð{ËÐÐÐÐË ?Ð€ÐÆ´X!;lµhkkhií¥hsÊ7h¤ÃÃÛ ¥¥¥¶¥¶¥¥ox iµ›!kÑ{›l;çjçiX±l44ciçci; ÑYØÅ-ÅÊknµwXµµ-k-!g¤ççž§§4! 7»Y½»½²½½ÜzÜéÆ;cllll!!liigg;l!c¤¤i;l;ic¤4ç4çç§§ççcgi;;;ilµXµw›°!;§ºº11Ðȵ!ligg;l!›a›Æ»ÊÊØV µ´ 7Ê»Y»2Ë77Æ7ÐËsÐsËÅ?7ÐÐÆkXlllµhkÈhg¶hsÊ7hgÃà ¥¢¥¥¥¥¶º¥xx÷iµ›!k2Ë›µ!!çjç§i°ÐËl44cigi; €€Ñ»Y½Å-ÅÊÈnµwXµXµµ-k-!g¤ç4cžf4!?Å7»YØ»½~z½½Üܘ˜7.cl!llw!!;ii¤g;lliçill;;i¤444çç§çç¤iii;i;;XXµ›ww!;§¶º117 ;icc;;lµµ›?»Ê»Vŵ´ »»YY2s7777ÐËËÐÐÐË7??±ÐÐÆ´X;l;µhkkhi¶¬Ê7hgÃo ¥¥¥¶º¶¶¥xx ÷çcµn!k2Ë›!;çjçi°7Ëlž4ciç¤i! €»»ØØ -?ÈnwXXµ-h-!içç4§4wÅ ÆÑYØYh-µw!.iw›µ-Å€ËÊVN-X 77ËÊ2»2ÊÐ7?7€Ð7??7€€ÆÆ7±? -w;.a›n´› ; ÐÐk4 Û ÷¥÷ }§j¥ºí}4;;hs?›lµµiçižj7Ëai¤iiiw¤4X´?ÐÐËË{YYÆ›Xn-›a-kk-liç44žfxjihÅÐ2»~ʽzz~½~é{µž;;;;ll!l;;l;;l!;ici;;ii;;gicg4j¼jçgi.iiilXµnµXµµl;igcj¶Û¥EuhsË?h¬X!.gwnn-?s{2˜N¬µ 7ÐËÊ2»2{ÐÐ??7sÐÆ7Å7ЀÆ?7ÐÐ77È-;;nµµh›ž ; ÐÐÊ´žÛí  ¥÷u§f¥¥íÍ4;;h€Ê7›!g4i4j7s›;¤igg!¤ížµhÆÐsË€YØ?›XXµ›n›-kk-;cç4çfj§ihÅÐ2»½»²zz½˜Êµ4.i;;;lw!;;;;;l!.ci;l;;;;igiig4f¼¼çci;;ii!µnnµµ°l;iic¼¶Û¥Eì˸h-µ!liiaa›Ås{ÊVNhX 7ÐË{2Ñ2{ÐÐ7Å7€s7Æ?7s€Æ?7€€? ›w;;nµnka ; ÐÐÊ´ž Û÷÷÷}§f÷¥íÍç;;¬s{Æ›!µiçg4j7Ë-;cigc!c4µh7€s{ËÊYØ?›µXµ-››-kk¬;gçž4ž¼¼jih?€2Y½»»ËsÐ h›;-›!-{{˜é˜µµ 7ЀsËÊÊËsÐÆ?7ÐÐ??k Ð7?ÆÐ7ÐбÅ-wwwccX4xj´Ð7ËÈçuíÛ ÷ íxfž¼Í ÞcµÆÐÊh!X;ižÐ2ËÈi4ig;;§Eh!gk?Üs-››°›h----!.¤c4j¼§4µ?{Ê2ÜÑY½½Ø½ØÜÜØé˜h4žcçiii;l!;;!;;;li;l;;;;lµµ!;¤§¼jçç¤i;l;;;µ-aaµXal;cçÃq1Û÷i€˜Ê»{Ð7 h›µ;››!-7˘éVXX ƱssËÊËs€Æ?Æ€sÆÅ ÐÐ7?Å77Ð7Å-!!icµ4Ãj´ÐÆË ç}ÍÛ ÷¥Ãfž¼u ÞcµÆ±h!µµw;i4лk.4;¤¤;.E´!gwkÆËs-››X-¬---›wi¤cçj¼j4µ?{{ÑÜ2Y½½½½½z½½éh4žiçii;ll;l;wl;;;;;;;;iilµµw!;¤§¼jçç¤gi;;;l!a›››µX›!;cçoºÛ÷i2»s7Å´›i-›w-7{ééV°µ Æ7sËË2ÊËË€Æ?7ÐÐ??È ÐÐ7ÅÅ7Æ7Ð7?¬!!icw4Ãjk±7{ çuÍíÛÛ ÷ ofž¼} u4iµÆÐ{h!!µX;ižÐÊËki4;¤g;.§E´!c!k?Ë~€-››°›h---›;c4fx§4µ?ÊÊ»z2{»½½YÊËÐ?khhÅÊYY³Ê!¬k ÅÆ±sÊ{ËÐÐsÆÅÆ?7Å ÈÆÐ±?7?Æ?ÐÐ?kk!i¤žfµ-ÆÊÆ;¶÷¢ Û º¢ÛÍÃ}}ÛqE4;k±-nXµ;4fk{7»Y›liiii ž?µjlhË»z½´w;l¤;µË´µµ!wµw;lwcjf; ÐËØÜ»Yؽ½z½V½˜Ëi4l§çcii;;ll;;;;;;;ii;l;;lX›hnn;cffççgiiccil›hn°››lgiiçúE¶Ûž-Ë{{YY½YÊ€? h¬?ÊYY³lhk ?7Ð7ËÊÊË{Ð±ËÆ????? ?бÆÐ7??ÐÐ?kÈicfžµ-ÆÑ?i¶÷¥Ûí q¢íÍÍÃ}}íÛãE4;kЬµX;4f´{7ÑY›lii;i÷ níj!¬Ë½½½Ë´;lç;nË´µµwwµ;;lix§; ÐY~Yؽ½½z½V½Viçlfccii;;l;;;;;;;ii;;;;;!°›hn;gffçç¤i;icilahµX-›;giiçx qq¶žhËÊÊY½½YÊ€Æ hhÅ2YY³³l´k ?7Ð7€ÊËËб€7ÅÆ?Æ? ?ÐÐ7ÐÆ?ÆÐÐÅkÈicž§4µ-7Ê?i¶÷¥÷ º¢ÍÍÃuÍãE4;k7-°µµX!4fkлY›liiii  ¼lhËYܽ˴w;w¤;µË´µµwwllwg¼f;ksY½»Ð€{ËÊ{Y2Ê€ÆÐË€2˜NçchÊЀËË{Ê€Ë˱ÐÐ7??Å ?7Ð7ÐÆ?7±7 È7 ¬!§§¼g!ln7sXº¶º¥ÛÛ }¼÷ ííº¥¬kkÊ7Åh-h›;4žËÊÊÊhµµµlç¬7-g͛нYÐn;;içžµµ;;i;;ç.;i4;hÆ€Y~»½»½½½zzV2!¤;çc¤cii;i;;;;;ii.;;l;ii;!µn- ´°çí§ži;i¤gi;ah›µµl!;;igç¼qãã¥fµ ?ЀÊËÊ{YÑ{Ð77ËËÑVNÊ4i´Ê€€Ë€{{ʀˀ7ÐÐ7Æ ?7Ð77ÆÆ7±7 È7 ¬!4j§¼g!ln7sµº¶q¶ Ûí}¼÷ Û¶¥¬kkË7Åh›h-;žž§µÊÊÊÊh°µ°lçh±-gu›7{½½Ðn;;;çµ;;!i;iç;;;4;h?7YÜ»YY½½Ø½½z˜VÑ!ç;ccici;;;;.;ii;;i;;;;.w°a-ÅkXçͧ4i;icgg;nhn°l!l;cg4¼íºãã¥f??Ѐ{{{{Y2Ë€?ÐËË2˜Ê4gh±€ËËË{ÊÊ€ËË7ÐÐ7? ?7±7777Ʊ7 k7 ¬lž§¼g!;›±Ðµººº¥ Û}¼¥ íº¶hkk{Ð h-h›;žË{{Ê2h°nµwlçhЬiÍnÐ{½½Ða;iiçžµ;;!i;i.;;4;kÆÐYzY ???Èk´h´ Å?ÊØYÐYcul?sÑ»ÊÊ222{Ê»{€€s °°µ-k 77Æ?ÆÆÆ?kh- È!¼j4çç;c;kÊ?EE㢠¥ ¼4ž}¥¢÷÷ÛÃÛE4nËËÊ»s±Ð ;ü4´€szÜ7k-°!li4n½Æ¢Ã; ܱha!!i- ;g;;;i44iliw´?Ê~ØYY½½ØzÜÜzܘ½´icic¤cgccgigciii;;;;;;iiic;;È kwo¼ç;w;cccçi›´-°!!licçžxu÷ºã¶owk´ ?ÅÅÅÈkh´k??€ÊØØÐYÜcÃ;?sÊ»»2»22{Ê»Êsss °Xa›´?7777777Åkh-kk!Ão4ççii;k2?EEq÷ ¥÷o44}¢¥¥÷ÃEó4›ËËÑ»sÐË iÃj4h€s½½7´hXw!;4µËYÆž¥}; zhµ!l;› lg;l;;g4çg;i!k?лÜYYؽzz~Üzé½´iii¤¤¤ggiiciicii;;.;ll;cciilw kxÃç;w;ccç;ak¬µµw!!lic4¼Í¥qE¶o! k ÅÅÈkh´´ÈÅ72ØØÐYzcÃ!?Ë2»ÑÑÑ22{Ê»ÊÐss °°µ-´?7ÐÆ7777?kh¬kkloo4ç.ilh2?EEq¢ ¥÷o4ž}÷÷¥÷Ûu Eó14aËË»2ÐÐÐ ;ç4´sË~~7´h°!!;µËØ?÷xž; z±hµw!ia lc;l;i¤44i!iwk?72zY?7ËËÐ?hh--a›Å{{ËÊé!Åл½Y»»ÊË{ÑÑËÊ7nççc;›ÈÐ7ÐÐÐ7?kk´ ?ajͧgl¤žçh?纺qº Ûf44¼í qUE}jihÐYYY~{h}¼¤ Ð~YØÊÅhh›lhÈ7ØzËo¥¢§›s{ÐеµlY µwwww;4ç; 77{ØYYYؽ½z~Ü~VVs!c;¤cccgiiciigiiiiii;;;ccçii´Ð7;;°;¤g4çwh›!l!w;ic4¼Ã¥qº}!È ?7ËË h¬-¬››ÅËÊ{€{éXíž;ÅлØYÑ»ÊË{ÑÑÊ7µç4¤l›ÈÐÆ7±?kk´ ?nfÍžgw!žç¬Å纶㺠Ûjžžoí qU1E}jikÐYYYzʬ}jgÈÐzYØ{ ---;hȽzsµ¼¥¢›ÐËÐеX;µY nw!!;44çiµÈ77ËØYY»ØØØ½½Ü~V€!ç;cccccgcicciiiii;i;;ic¤çciihÐÆ;;°;gc¤4w¬n!;w;icž§oo¥qºÍ!kk?ÐËËÐÅ´---a›ÅËÊ{€Êéí! ÐÑYY»»{Ë{ÑÑ{Ê7nççc!›È77±777?kkh Æa§Ícl4ç¬?ç¶¶q¥÷Ûjž4¼ ͺU1Eͼih7»½Y~Êh}¼g Ü»ØÊ -h›;´ÈÜÐwö¢§¬€{ÐаµlµY nwižçikÆÐËØYÆ7ËÑÊ{Ð ›nÆ2€ÐY{zV-Ûx!h7{Ñ»Ñ{ËËËËÑ7n4c;lµ Ðs€sÐ777±ÐkqE¥µwµa .¶¶º¶í¼f§§§x}ÍÍq1¥ÛÛ§i-Å7Ê»Ê.f44a?€Ëkh›Ð{Yz˜ØÈ¤q çw-Ȱ! ¶¬7Ð?µµX-µiççc!ȱƱÊ2YØØØ½zz½Ü˜Øhicccigcicgii;;;;;;ig¤cçi44ik7!4µl¤¤;;c4;°;cgiliicç§fooÍ÷qEÛih Æ7ËÑÑËÐÐ aXÆs7YÊ~˜- oçwhÐ{»»»sËËÊ7µ¤44cila €ËËËÐ7777€È§ãEºµµa ;¶¶º¥¼j§§jxÍÃ}Íã1¢Û c›?7YË;Ûf4žµ?нYÐÈ´›w€Ð{YzVYkã çw-ÈX!Û¶-ÆÐ?µµ-µi44¤wkÆ{2ØØ½½½½Üzzܘ½´icg¤cc¤iiggiii;;;i;;ii¤¤g44iÈ7!4µ!g;içž;µ!g¤;;.ic4joÃ}¥qãÛihÈÆ±ËÑ2{ÐÐ? ›µ?2Ë7YÊzV- o!´ÐÊ»22{ËËË27µç44ciln 7ÐËËsÐ7777€kEE¥!n!› ;º¶ºº¼f§§§ÃÃÍÍ}E1¥ §i›77{».§44a?Ð˽ØÈk›€€{»½˜½ cq 4w-kX! ¶-ÆÐ?n›X;ççg Ð772277Ð7€€ËÅ?aµ»Ë±ÐYÜk¢í§çlkÐÊYYYÑ€ÐÐÐË ;4ž4cµ Æ7ÐËËËÐÆ?Ð7EUfc-kÈ?h÷ãE÷4xoÃÛuÍíuÃ}j ¥¶¢º¶Íc;n7Ð4j4§lÈÅËʱ µ´{л2YÜ7lº¢xu;!¢8 çµkaa›hhµ;iiµ s€2»Ø½½½½½zz~ܘФçcççç3i¤giciiiiiii;;gggçžžž!›ln;ci;iwwlgcccicç¼¼xo¥º¥ž-k±ÆÐ7sËÅ?›µ½ËÐÐ{»Ük÷jç!hÐYY»»€ÐÐ7ÊË ;4çcc Æ7±ÐËËËÐÆ?Ð?cEófg-kÈ?h÷EE¢ífx¼xÍÍíuÃͼ¥¥¶¢ºº}¤;›?ʱ4¼ž!È ËÑ{ nµ´Ës»ÊYÜ7líº¢xu;!¢8÷çakaµa´hµ;;iÅ€л»Y½z~~ÜÜ~˜Ð¤çcçççcccccgciiii;ii;iiccç§žž!›w!n;¤;w!;!!;icciig4§§¼¼Ãí¥ã¥4- 7777Ѐ€s ?nnл€ÐÐ{YÜk÷jç!h7»Y»2€ÐÐ7{Ë ;4ççc 777s{ËÐ7ÆÐ7¤ãó§§g-´È?h÷EE÷x¼xÍ}íuçÍj¢¶º º¶Í;›7ÊÐ4jžlÈ?sѱ µ¬ËлÑYz?;º¥xx;¥8Ûçak-a›hh°;ii sл»Ð777Ð7ÐË´µ±ÊÐ? {»~ËÃož;a »YYËб?7ËË›;4çgwkÆ?77€s€777ÊlÍ oÍ Í§i?ÊjEã¼xÃf}Ã}í¼ÃÃf§ › }qºEã¢ji!?!¼Ã¼fiX7{ËÆ ››ÐÊËsËÑ»Ø~Y?!§ÃÍ ºwxãE¶Íž;l››a!!kÐÐËY½Ø½½ØØ½½ÜÜzz?lccç4ç4ççccc¤igii;;;;iciciii;kk?k-!w°XµµX!;;iiic4žf¼¼xí¥¶faÅÐ7Ð7ÐÐЀ´µ7Ê7? ÊÜËà x4;› »ØsÐ7?ÐËË-;4ççwÈÆ??7s€€777ʱ!ÍoÍ Í§i?ʼEº¼oo§ÃÃ}ÛíooÃf§ - }ãºEq÷jcw?¼xf¼iXÐËÐ7 a›±2sÐÊÑYÜ»Æ!fÃͺwxEE¥u;l››a!!µÈÐËØؽ½½Ø~²Üzܽ?!cççç4礤¤ciiii;i;;iig¤i;;ç;hk?k-!°µµnµ;.iigg4j¼jx¥¥faÅ77ÐÐ7ÐËÐËkn±2ÐÆkʽà ¼4;›?˽ØYËб?ÐËË-;4ççcwÈÆÆ7±ÐË777Æ{;} Ûx} ͧ; ʼEº¼xÃfÃÃ}í¼oÃf§ - wúºEã÷Û¼g!?!¼Ãf¼i7€7 ››Ð»s€2»ØÜYÆw§}ÍÛº§wxãE¶};!a-›w!!ÈÐÐËØØ ÅÅ7ÐÐ7ÐÊ ›€ÑYн{Øzx Û}§¤µ {»»Ë{€Å?Ð{ˬ;c¤ç;ksÐ?7Ð7?Å7±h4}ÃÃ4i4jof! ¥!4üÍÍo4žj4xfÛ!È7ŵͥ¶¶º÷Û¼!¼Ãfº¥°7?››-- {Y2ËÊYY˜?l4§Ãí4÷ }¢¶í¼;°wl› ?€»Y½ØØ½½½½Ø½ÜܽÜéÊXg¤çç4çççççcc¤icg;;iiiic¤¤ccžlk?ÐËÆ´haXµ-›nµw!;iigçž¼Ã}} ¥¼n Å77ÐÐÐÊ nнÑY7~2zÃÛÛÍjcµÅ{ÊYË{ËÅ {Ë-;i¤ç;hsÐÆ7Ðs77Å7±kçÍÞi4fxf! w¶lçͼ}Ío4f4x¼Û! Ðŵͥººq÷í olfü¶¥X7?›››- {Y2Ë2½YYé?l4fÃí4÷ }¥ºí¼c;°l!-Å?€YY½½ØØØ½½ØÜÜé2Xi¤ç44ç4çccc¤¤gg¤;;iiigicçcžlÈ?ÐËÆk¬nXµ-aµl;g;g4žž§juuu÷¥¼µ È Å?7ÐÐÐÐ2È›€YÑØ€½2zgoÛ Í¼cµ?{2Y{{ËÅ €sh;i¤ç;hs?7ÐÐÐ?Å7´çíÍxžc4fofw ¶!4}¼Íožf4xj!ÈÐ °Í¥¶¶¶¢íx!¼Ã¼º¥§°ÆÅ››-- {YÊËÑYYYV lç4fÃ4¥ }¥ºí¼¤;°l› ?€YYËÐÆÐ€ËÊ»ÑYØÜ˜Ü~~˜?i¼ ÛuçwÅØ2s?Å??Ѐhwlgc›?77?ÆÐÐÅ´ ´gž!.x ¥íüçw;;!4ÃÍxÛÛÛÃçç¤Íh?7Ð{?!¥ ÷÷x¼u º¥ §i!X›k72YÊË»Y»»˜Yh.iižoü¼}Û÷¥ Ãf;µ-hk7»zØz½½Øzzzzz½zÜÑ€;4ž4çccccc¤iiii;iggççççiX?Ëб? ¬aµnµ-X!°çc44§¼oxÃÛ¥ÃnËÐ7ЀÐËʻʽ½z˜ÜÜzV?ioÛ Ã4 Ø2Ë? ?ÆÐ€´w;ci›?77?7€7Åh ´cw;u ¢x¼çw;!l4}}ÃÛÛÛuç¤çÍhÆÆ€{?!¢ Û ¥ÍÃj}÷¶¥ §gwµwX-kÆÊ½Ês»Y»»Yh.iižoü¼Ã¥¢Û}§lµ-hk7»~ؽz½½ÜÜܽ½½½Üz»w.4žž444ccccci;i;iiicç¤cçiXÅËs?È-›µµa-µXww°çc44§ooÃà ÷onË7±€sÊ»ÑØØÜ˜~~zV?coÛx4È€YÊ€? ?Æ7±Ðhw;cg›?7Æ?7€ ´ ´¤w;u ÷üç!;!l4ÃuÃÛÛÃççççÍ-77€Ë7;¢ ¥üu ¶¥ §iwµX›k72½{s»Ø»YY´.ccžoo¼¼u÷÷}§¤;n-hkÆÑ~½»ÑÑ»»YzؽzÜz~½ÜVV7!4§u§;-ËÊ2Ð kÅÐsƬX;¤!k ?Å?7? -;;hÐÐ ž}¥ºq¼l!žÍu¼¥qEºÛü¼jÛ¼-Ð7ÐË»ÐÈ;Ͷ¶Ãfj¶¥¢¥Ã¤;l-h Ð22Ñ2Ñ»YzÜ7°.cfox¼}uxÛ xç.n-hk?˽~ܽ½½z½½½z½Ü½»-i¤ž§f4444ççccii;i;icicci¤ccµÈ€ssÐ h›n›µµwniç4444444jfoíoÆY½»»Ñ»YYØz½zzÜz~zܘ7!çjuÍ!-ËÊ2€Åk?ÐÐs?hµi!k ???77 Å -;;hs7?4ÃÛ¢ºqf;ž}Ãf¢qã¥ÛÃoj§Û¼-777»ÐÈ;}¶¶}§fÛ¶¥¥¥xžc.!›h?Ð{ÑÊÑÑ»2½7µ.cfoxxÃÃx Û Ûx4in¬¬´ÅËØ½zܽ½zؽÜz½Ü˜z»-iç§fž44çççgcii;i;cc¤¤gccµ €€ÐÐ kaXnn°ni444ž4ç44¼jÃÍxÆY»Ê2»»Y½½½½zzÜܘ7!ç¼u Íj!¬Ë2ÊÐÅk?ÐÐÆhic!k ?Å?77 -l;´s±ÅÃÛ¥qºíj;žÃf¥qãºo¼oÛ¼¬777Ê2ËÈ;ͺ¥Û}§j¶¥¢¥Ãc.l-h?{»ÊʻѻÜ~7°;¤¼o¼¼}uu ÛÛÛÃç;µ-hk?ËØYؽ»ÊÑÊË2Y~~VéÊ-lçx ¥ u4µ ÊË7 ?€Ð?hwc.°-ÈÈ ??È-›;!h±{2Ê ;4j}ºÍ;!ž}x¼¥EóE¥¢ Ûu±ÆsÊYÑ7›i¼ͧ¼ º÷ ¥}ci;µ¬ Å»Y2{Y2ØÜÑÈlçžž¼xo§§¼oxÍÛÃj!°-¬hÈÆ{ÜÜzzzܽ½zzYzÜÅ-l.çffž4çççciciciccig¤cccgwh7±€Ð? hµµµµaXµ-§f§§§ž4¼¼¼¼¼fl¬Y½2Ê»{ÊØ˜~Ü~˜³{-lç§}Û¥ }žµ?ÊËÆk?ËÐ?hi;X¬È ¸Åk-a;!¬ÐËÊ iç¼uºÍi!uü¥1óE¥÷Û u±7ËÊY27-co}f÷º÷ ¥Ûͧçi;µh Å»Y2ÊYѽz»È;ççžž¼x¼j¼jxÍ Ã§!µ-hhk7{½~½z½z½zzØzÜz?›!.çff4ž444çc;iiigic¤gciccgwh7±ÐÐ7 -nnµ-µ-§§§f4j¼§¼o!¬Y½½½»ÊÊÑÊsÊØz~~~˜³Ê-lçx ÷ x4a?ÊÊÆk?ËÐ{Ð?hi;X¬È ?¸kh›;!¬ÐË˜Ê µiç¼Ã¶}.!}ox¥1óE¥¢ Í u±±ÆË{»Ñ7›i¼}§f º¢ ¥Ûui;µ¬ лY22Y2z»klç4ž¼ux§§¼¼x Ûufl°-hhÈ7Æ€»YÆ?ÐÆ7 ?јzܘ³2Èagç§¼Ûlks±7777Ѐs7¬wl!µhhkkh-Xw-Ð7Ðл»ha!Ãjçcç4}Ûq11ãº÷ ¤ Ð7ÐÐËÑËhix÷º ¥÷Ûo4i!aÈ?Ð{»ÊÊ»{ʽç§4¤çjÍÍxjž4xÍÍÍgl›h¬h ?ÊYz½½½z½z½½½Ø½˜{Èw;44§4444ç¤icigiggcc¤çc;›?7Æ77 h-n°°µh›Xh-j¼j§¼¼j§xoj¼ç!n?лYËÆ?77Æ ?2VÜ~Vé»Èagçžoí Û;ksÐ7±ÐÐÐsÆ-!;!nhhhkh¬ww-€€ÐsËÑY±knlÃjciç4} ã11Eq÷÷c ÐÆ±sË{ÊËhižx¥¶ ¥÷o4i!›È?ÐÊ»»Ê»{Yzç4¤çjÍÍxož4jÃÍ}g!ah-h ?ÑØ½z½Ü½z½Y½z˜ËÈww;ç4ž444çccccig¤ccçc¤¤c;› 7Æ7? ´›µ°µw-›µ´¬jj¼f§¼¼§¼oof§4;n?ÐÊY{7?ÐÆ7??2˜˜ÜܘéÑÈagç¼í Û!kÐÆ±ÐssÆh!;!nh´k´h-Xw-s€7ssÑ»±´al}j¤içžuÛq11ãº÷÷c €7±Ð€€2€hižžÃ÷º ¥÷¼4i!nÈÆÐÊ»»Ê2Êʽz€çžž¤ç¼}}Ãj44žj}}Íl›¬-hÈÆ- ËYsÐÐsÆÅ˽˜ÜÜééék-l;ç§Í ¥Íj;h?ÐÆkÆÆÐ»Ê7-!-´kk-nµlµµ?»ËÆËн~Ŭµ!44ç¤g¤oÍ¥ããE11Eq÷¥X€€±€Ê{€ËÊ2€a;jí ÷¥÷º¢Ížç4cwkÐËËËYY»2Ëѽ»kgjf4cžÃÍÃo§žžž§o4iµ¬hhk €Ê»Y½zz½z½zzؽzÜØ?µXiç§f4ç4ççcc¤¤cc¤;› ? È´¬a!ww-›nk´¼Ã§fxjoÃx¼ç;!-?ËØËÐÐÊ€?ÅËz˜z~VéééÊk-l;c4§uÛ¢}j;h?Ð?k??л27¬!w›hk´¬-n;µn?»ËÆsÐØ~Ë?¬µlž4ççi¤¼¥qã11ãã÷¢€ËËÊËsË»ÑËai¼Û÷¥¥¶¢Í4ç4g!kÐËYY22{»Ü»k¤jj4cžÃÍÃo§žžfoi¬hhk ÐÊYؽz½Ø½½z½½Ø~ÜØÆnµi4§¼§çç4çcçcççc¤¤cci› ? ? Èkh›ww!¬-nkh¼ofžjo§xux¼ç;-?{zYs7Ðs?Å˽Ü~éééÊk-l;c4§}Û¢Íji¬ÆÐ?k??€ÊÊ7-!w›hkh--nlµ?»€ÆËÐY~{ -µ!4ž4ççic¼Í¥ãã111E㢢€Ë7ËÊËËËʻ˵io ÷÷¥¶¢Íç4cwkЀ€YØ2»Ëʽ»´¤jo4cžÃííü§44f¼ž;µhh¬´ hн˜½YY»Ê7 7»Ü½~éééV» ´h;c4¼íÛÛ4n ÅÈk- {ÑÊ !µhhk´¬¬!h7s7?ËYY»ÊËs?higci444}¢¶qE1ã1¶qº4ÅÊÐÊÊsÑ»Êhiu ¢ ¥q¢xž§µ s€ËØÑØÊ2½zе4çfÛ}Ãxf4§žiµ-¬hk Æs2»Ñ»»ÊYؽ½zØzÜ€hµ!cçj¼4çç4cççç4–çccgiciX??Å Å k-›;;;wwÈ-xÃ}§§j¼¼§o¼f44gl-н˜zYYÑÊÐ 7»z½z˜éé˜2 ´h;c4xÛÛ}4n ?Èk- {»ÊÈwµnhhkh¬-¬7s7ÆYY»ÊË€?kiccgç44Ã÷ºqE11EEººº4Å{ÐÊ{€7€ÊYÊ´i§u ¢ ¥º¢x4g €€sYØÑØÊ2~е4ççfÛxÃxfžf4iµ-¬´k 7€Ê2Ñ»Ñ2½½½Üz½Ø~shnlgçff4¤ç4cççç–çççc¤ici;X??Å Å ´-a;;;Xkhx}Ãj§¼¼f§¼¼f4çi;-7½˜½»Ø»27 7»ÜÜéééV2 ´¬;¤4o ÛÍ4a ? k¬ ÊÑÊ wµµhhk´¬-°h7s7ÆY»Ês?kigccç44Í¢¶qE1ãE¥ºº4ÅË€{2ÊsÑYÑ´;u ¥ ¥q¢¼4µ ËÐsYYÑØÊѽµžxçcfí}ux¼žfcµ›hkk !µ´{ÜÜÜYY€??{zzV˜é˜Y?´haw;g4fjíÛÃçh ¬;!k77a››-h´hhhaµ´ÐÐÐËsÐs{22Ë´µ!lcç;;žíººº1EãEqãã!7sË€{ÊÊËн i§ Eãžf§ç?ÑYYYYY2»z½kc¼x§ç4Ãx¼xxj§ff4g!X-hkÈÆ€Ê2»2»Yz½½½ÑÅa°µwlc¼4¤ç4çç–ç™çççc¤¤iggÈÅ??? k-a;!ii;µÅh¼Í¼ff¼fjjf44g;!µk{ÜzYYË ?{½½éVééØ?hha;iç§¼ÛÍç¬È¬l!k7Ë7nnn-¬´h¬-›nkÐÐÐË{Ë€ÐË22{ˬµ!!ci;4¶¶ºE1ãããqE!7€Ë€€ÊÊË€YË µifÍ÷EEí¼4µÅËÑ»»YYY2ÑÜØkc¼x4üÃÃoj§§§žc!°-hkÈÆÐË2Ê2»ÑÑz½ÜÊ anµlc§¼4ç4žççç4ç44ççccc¤g ÅÅ?? k-µl!i;;µ ¬¼ÍÍx§§j¼f¼fž4giwµ´{zÜܘYY€Å?ÊzzVVééY?´hn;i4§¼ÍÛuçhȬl!´77›nn-¬´h--›kÐÐÐË{s€ÐË{»2Ëhµ!!gçi;4ºººEEEEqEE!7ËË€{ÊÊË€Ø Xi§Û÷Eã§¼§çXÅs»YYYYY2»ÜØÈcoç4xío¼Ãojj§§žilX-¬k w!XÆ»zܘVVs€»~ܘéVVh-››µ;gcfouÞlnažji›7sÈ k´--°!;lgX?ÐÐ{ÐËËѻˀÐ{hlwa¬lx¶qºã1EºEqqº§h€Ës2Ѐ»s»»Ð-;ž}uq xÃc´ÊY»ÊYYY»Ê½Ð;Ãuç¤oííüoxj§4cilX-´k7ÐÊÑÑ2»ËÊsË»½ܘ½Ð¬n-´-!¤§44§ç44ç4¤çgçclh k¬nwwcc;a?hç¼Ío§§¼§4çii!lµÆ»ܘVézËлzz˜˜˜³7´-›n!.gi§ouÃlaaji-s ?È´h-°wllg°?ÐÐËËËÑÑËÐÐ{Êhww!›h;¼ºãºqEEºEqºº§hÐssÊÊss»Ë»Ñ±-lÍÃq1 ž¼Ãíçk{YY2ØYY»Ê½˜ÐlÃuç¤oí}xxooffç¤iwµ-k 7sÊÊ»»»Ê€Ë»Y½~zЬµ-hh!c§ç4cçç4ççcçc¤gçlh khn!!cciµÆk4oͼfj¼fççg;!lµÆ»zܘVÜËÐѽ~˜˜éN7h-›µ!;gi§o}Ãlnnfi-7skÅk´h-µwlli?ÐÐËË2ÑÐÊh!w!›h;x¶ã¶q1ãºEºº¶§hs{€Ë2{Ðs»€ÊÑ7-;žuÃã ¼ÃçkÊ»ÑØ»Yѽ˜Ð;žÃuçxíxÃo¼f§ç;lX-´k;;!-7Y~ØØ»˜VYYzVééé˜Y´k¬w!;§§žc4§4.¬lx¼;››w;i!li;;c;-7€Ë{Ê{€€Ës€ËƬ;ih7k1ã¶E¥÷¢ºqqiÅ˻ʻÑËÑËËÊѱ-i¼Í8íjojÍÅ»ÊY»YØÑ2½kçÃuu}¥Íuçž4çclµ›hh?7ËÊY»½Ø½Ñ{{2YYY{hnµ--µ!g4žž44žç4ž4礤ccii;¬hÈ ÅÈ´hµiciç!?kioux¼žžf¼fž¤;;;;!a7ؽYØ»˜Ø½˜VééééYkh¬µµw!;f§§cž§4.¬l¼í¼;µ›ii!!i;Xic;-7€{ÊÊËssË˱h;iwh?´µí1º¶E¶÷¢¶ãqiÅʱ˻ÊÊ2Ë»{Ê2Ð-i¼u8jç§c YÊY»Y»Ø2ÊØ{k4ÃuíuÍ¥ÛÍÃç4çclµhhÅ7ËÑYYYØØ»ÊÊÑYØY½½kna¬›°lg4žžžž444ž44çc¤gi;;.¬h ÅÈkhµ;¤i4w7kix}x¼44§¼§ž¤;;;;!a7Y~ØzY˜VØzéééVé»kk¬Xµµw!.f§4çž4i¬;¼j;››i;!!i;Xic;¬7sÊÊÊÊËËËË€Ë7-!ih?´µÍ1º¶E¥÷¢ºãqÛi 7Ë»Ë2ÑËÑÊ{2»Ð-ixu8í¼x§§g »2Y»YY»»Ø{kçuuíÃÍ ÍxÃf4çi;µ›hh-?2Ñ2½ÊØz˜V阘³z h-µ!liçç!iží¶ u¼4o¼jž§çi;!µ¬?±€ÐsËÊÊÊ{ËËÊÐhlc!hkkÈ;¶EEq¥¥¥¥º ž!ËÊ{ÊYÊËØËsʻ˱ag¥4žÍÃ}í¼ç-{»»Ê»{»½»Ø»?goÍ4f¼íÛ }üf4çc;!a¬´ ?Ð{Ê2Ñ»ØYÊÊÊÊÊËÊ7hw;w;!l;icçcç4ççççç¤ççggigc!nhÈkkkk›lggçÐÈi§Ã¼¼¼¼o¼fj§çi!µw-?2»Ñ½ÊYV½Ü˜˜ééVé½Å´›µw!iççççžli§¶÷}¼jÃjçgl!hÅÐÐË{{Ë€{h!c!hÈkk;qE1º¥¥¥¥º÷4!sÊÊÊYÑËY€Ð»ÑsÐag¥žž}ÍÃífç¬Ê»»Ñ2Ê»½½YÑ?coÍžf¼í íÍüf4žçc;w›-h ?лѻ»YÑ2ÊÊË{±h!;!;wl;gcçç4çççç4ççç¤cggc¤!ah kk´´›;cgç7kiüoo¼¼¼fj§çclµww-?ÑÑ2YÊØ~½˜˜˜é˜˜ézÅh›µµ!liççcc§ž!;§º u¼žjÃj§4cl!-?7ÐË{ÊËËË{´lc!h kkiqE1q¶¥¢¶º žwsÊÊʽÊËYs€ËÊÊ˱›g¥4ž}uÃíjç¬{Ñ»22Ê2YY½»?gxÍ4¼¼Ûíuü§44c;!n¬hl!-Æ»ØYY€~˜˜Ôܘé˜é³Ðk¬aww!gž4¤ç礞ccj¢¥÷ç§j4çcc;wh7ÊË€2{{{ÊÑÑ?wcwhk´kXjºE1E¶¥÷¥Ûux›ÑÑ7»»s{Ê{ËËÑYY4}Ãío4;н{ËÊsÊYY½˵4 xÃà ÛÍuÃxž4çi!µ-hk 7s{Ê22Ê»»YYÑÊ?›!!wc!;;iggc礤c¤¤çç¤gi;;;;cigw¬ È Ènc4;hifijuíoÃÃx¼fžll!µ-Æ»ØY€ÜV˜é阳˜Ðkhawwlcžçcc礞ccf÷¥ íçž§§žç¤c;wµ¬ÐÊ{sÊÊÊÊÊ»2?wgw´khkXfºE11E¶¥¢¢uÃ-»2±YY€{{ÊË2»½wçuíxo;7Ø{{ÊË{YØØY˵4÷¼xx ÷uÃx4i!X-hk Æ€Ë{Ê2Ñ»ÑYY»»{?nl!!gl;;iiiç¤cg¤¤¤gciiiii¤iw¬ ÈÈ ? niçlh;¼gfÃíÃçxÃx¼fl!!µ-7»YYY€s~˜VVVééé˜Ðk¬aww!!c44ççgžcc¼÷¥÷ç§f4çcclwµh7Ê{Ë{Ê{2Ñ2Å!gw´khkµfºE11E¥¥¥÷Û}x›»ÑÑÑË{ÊËËËÑYw4uíÃož;7½Ë{ÊË{»½Yµ4í ¼Ão Û}ÍÃoç¤i!µ-h;;!›?ÑÜËÐYÔVzVV˜éÊ k›°!;;l!c§4ci.44ç4jj¼;;iç4gç!w;i;h7sËÊÊÊ2»ÊYikÈ-›!¼÷¥ºU1㥢  o?»ÐsYÊ2Ê22{ËЀÊwµ4§}o}¼§hz€{ÑÐÐÊ2ÑØY?;à íÃj Íu¼¼44ç¤;›-hÈÅ7ÐËËÊË{»YYØØ½Y€k-hkaw!liiicç4gcggcgcc;i;;ii;;c!a´ ?77€?lžf¤.ͺ}q¥¶EÍ}x¼¼¼fç3;;;!›?ÑÜËÐ2˜˜z˜VVVéÑkh-°!;l;!g§4i.44ç4f¼f;;i4¤cç!;i;-ÆÐË{ÊËÊY{»Ðihkh›!j÷÷¶Uq¥¥  o?»7s»Ê2»»2{˱Ð7{wµX4§uoÍ}¼kz€Ê2€2ÊY½Y?;à Ãj }u¼¼žç4¤;a¬¬k?7sÐ{Ë2»ØYYÐ -¬´›w!;iiigç4ggcgccgc;;;;;;.;c!n´ ?7ÆÐÅ!4f.u¥Íã¶¶EÍÍüj¼ç.;i;!›?»ÐлÜVVV³V2kk-µ!;llwg§ççi.444fj¼;li¤4¤gç!!;cl¬7€s{Ê{ËÊ2Ñʻеihk¬›l¼÷÷ºU1㥥 ÷o?»ÆËY{ÊÊ2»2ËÐÐÐÊwµX4§ÃoÍ}j§kzËÊÑлʻY?;x Ãj }u¼fž44g;›-;;wµÈ½~éÊ7Ëz˜~˜˜˜˜˜éØ k-liii!;g¤ccçççžçç44§wa›wiiihµ!;gg!akűsËËËË€{7c!hhhagjÍ Eq¥ ÍÃÛã4ÅˀˀËÊÊÊs77{¬;ž¤fÃ}ÍÃw»Ë»½Ë€2ÊÊYY{›§÷ xç¼ ÛÍx¼jç4çi!µ›¬h Æ7€€{ÊÊ222222ÐÆ h-›!;;;i¤ggcgiigggigicgi;;i;!nh ??s7µ;i!!¼  ¥81ÍÃooxfç¤;;!µ ʽ~˜Ê7{z˜˜VV³é Ȭliicl;¤¤ccçççžççç!a›!cigçhµ!;gg!ak?7€ËssËÐÊÐ!c!¬´´µg¼u Eq¶Ûu}ã4 {€Ë{ÐË{ÊËsÐ7ʵh;§çfxÃ}Ã}!2Ê»YËËÊË2ØÊ›§ Ãç¼ Íüfç44¤;!n--k Æ7ÐËËÊÊ»2»ÊÊʻʀÆÈk-nwl;;ic¤icggigg¤gigigc.l;;!nh ??s±aic!!o Û÷81ÍxooÃf4ç;l!µÈÊÜéÊÐËz˜Ü˜éV˜³é½ È-;iii!i¤çcçcç4žçççž§aa!cicçkµ!;ic!akÅ7ËËËsËÐÊÐ!g!h´´ng¼} Eq¥Û}uq4ÅËsÊ€ÊÊ{Ës77h;§cfxÃ}Ã2ÊYYËËÊ{2Y{-§ xç¼Í Íüjž44ciwµ›;l;whÐYܘЀYz˜VéVééÜ7È›w;iicgi;licç4çcž§4!›hn!..;Æk--µ;ilwa ±s€7ű€ !ih´¬µ;§oà qEEã¶oo}qºg€Ë?ÐsË{ÊÊËYÆ7!cç¼¼Ã}Í?»ÑÑ»Ês{½Y½ cx¢¥÷o¼Í ¢}u44çc;wµa-k ?7±ÐËÊÑÑÑ»»»ÊÐÊÊ7´¬-!;iiiicg¤ggi;iggicçc.lwl-È?ÆÐÐknX›Xž;¼Í÷ääóÃxx¼4¤4ill¬YÜVÐÐØÜ˜VV˜˜ééÜ7k-w;iiicc;;;i¤ç4çcc4§4w-hµl.;;7k¬-X;ilnÈÐsË7ÅÐkwihh-µ;§¼} ã1ãã¥ü}qºcÐË?ÐË{{Ë{ÊËËØ?Ælciç¼ou}ͤÆ2ÑÑ2ÑË{YÑY gx¥¶÷o¼Í÷¢ }}4ççciµ›h´ ?Æ7sËÑʻѻѻÐÊs7k¬›!;iiicicgiiiiiiigiç¤;!w!l-ÈÅÆ€knn›µ¤ž;§¥äUóíxxo¼4¤ç.;lh±YzVØÐYz˜VVééz7k-w;iici;l;;ççççg44!›hµl.;;?k¬-Xiiln €€7ÅÐÐkc¬h-µ;fxà q1Eã¶üÍqãsË?7ËË{ËÊ{ËÆÆlcgçoju}ÍÆ2ÑØ22ÑËY»Y c¼¥¶÷x¼ ÷}uçççg;µagii;a7»ÊÐÑÜÜé阘ééz{?-!igcc4çi;l;iç4çciç44gi!!!iggi Å? ha!µh Ѐ±Ås?›;lµ¬›!çç§÷¥q¶ }ÃxÃ÷1º!7 È€»»2ÑÊÊ»»~»Ñk¬w;fÃüj›»22Y{sÊ»sY ií¥ã¥Ã ÷÷¥í}ž4çc;wa-hkk ?7ÐË2Ñ2Y½ÑÐsÑÑË?k-l;iic¤ii;;;iii;ig¤i;wµ!µ´ ÆÐ ¬-nwig ›o¥1)®ºxÃÃf44iii;a7Y˜ÊÐ2~zVéV˜Vézs?-!igc4çg;l;ic4çccç4çgi;!l;cg. È ? ´aµ!µh?€7Ås?al;µ¬›n4§Û ¥ºº÷}xÃÃ÷1ºw7 ÈÐÑ»Ê2ÊÑ»YzÑ»kh!ifÃü¼aÑË2ÑYÊÐÊ»€Y?i¤¢ã¥Ã ÷ íuž44g;wµ--hkÅ?7Ѐѻ2ؽ2Ê7sÊ»ËÆh-µ;.iig¤cgii;;;iciigci;!wµ¬ 7Ð h¬µwc¤ ›x÷E)ˆºÃÃ}j44gii;a7Y2Ð2ÜÜV阘˜˜V鸛!iccžçc;;lic4çcc¤44gcl!l;cgi È?? h-!µh?7s±ÅsÅal;›h-µw4cž÷¥ºº }xoÃ÷1¥w7 ÈËÑ»2Ñ2ÑYYz»Ñk¬!;§Ãüj›ÑËÊÑYÊ€{»ËØÅi¥ã¥uí ÷¥¥už44¤;wn-;ii;µ {½é½s»~VéééVVéYЛ;ic¤çig¤cicçcžçi¤çžcill.c;l¬ ?Å?7Ȭ´hhÈ7ÐÐk;c!›-wµ;oµ!u ¥¥íÃ}Íuºíh?hÆs{Ñ»»»Ø»ÜÊÊ›!i§¼ox;2ÐË»ÊÐ7Ë´;!4xº¥}ÍÍ ¼44glXa--hÈ ?ƱsY»Ø½Ø»Ð?±ÐËYYËÈa›!l.¤cigci;;;iii;iici!!!!µk?7Ë h´µ;X ´;žE®ˆ1 ÃÍ}§4i;i; ʽé½€»½z˜ééééVéYЬ;i¤ççcgccic4c4çi44cil;.i;;¬ ? ?? -khhkÆÐ€Ð´lgw›-w;¼µlà ¥¢ÃÍu}ºhÆh7Ë»»Ñ»YYYz2Ê-!i§¼Ãxl»ÐÐ˻ʀ{ÆËk;!žÃº¥}}Í ¼4çclµn-¬hk ?7€YYØY2Ð?ÐÐÊØ½€Èaanµ!!.cggci;l;iii;igc;!!!!›k?7ËÈhhXlX ´;E®®1 xÍí}§4;;;; ʽÜé½€»z˜éVéVééYЬ;i¤ççig¤icg4cžçc4žiil!.g;;¬ ?Æk¬khhk7ЀÐklcwa›w;¼;u ¥¢íÃÍÍ}ºÛhÆh?Ë{ÑÑ»ÊY½»Y22›!ijoxÃ;»ÐлÊÐ{Æk.lú¥ÃuÍÛ ¼çi;°a-4i!;wkÊzÜÜÑY˜˜˜Ü›!içcg;;cçççccc;lici¤ç;!-?Ð?--hk ??sÊÊh;gw›aµfj;njº¶Û}uÃ}qóih¬nhн»2zYYØØz?!§o}fƱÐÐÐ777777kµ;l  ¼4jÃj§Ã§ž4¤;°››--hk??€2Y½½Y€77ÆÐËʽ7h-n¬-lcgci.iiii;;icigiciic.ll!a 7?k´hn!;¬›halÛ)8ójí ž;;;!È2½zÊ{˜V˜˜˜ÜЛ;ii¤i.ic¤çç4ç¤g¤¤c;!.iggl!›?Ð?›hhk Å7s{{h;c!aa°µž¼f;njíººÍux}qóih-nhÐz2л~Y»Y½½ÜØÅw¼xuf°?7€ÐÐ7777ÆÐk;;  ¼žjü¼xjž4lXa-¬-¬ ??±€»YؽY€7ÐÆ€{YØÐh››--lggi;;iici.iiicciigi;;wl!a 7?kk-nw;h›hn;Ûþ8í¼÷4ž.;;!È2½ÜÜÊÊV˜˜Üs-;ii¤c;ic¤çcç4礤gcc;l.ggcçl!¬?Ð?--hkÅÅÆ€Ê{higln›Xµ4fj;›¼ºº}x}qU;h-nhÐ~»ÐÑÜ»YYؽØ?!§xuf?7€Ðб777Æ7hµl!¤Û ¼4jÃj§Ãjžç;µ-›jž;!h7Ê~zÊÊY˜V˜˜˜˜˜˜VVzËhl4çiciicg¤ççççç¤ggiçccccggcçi;!h? -kk ÆÐË€È!wl!ç¤g¤4Ã÷¥ ÷ Íà Û18Í?±¬;nн½YY»Y½Y½½27°cjͼµ?ÐбÐÐ7ÆÆÈ¬Xw!;§Û1Ãcoox¼jž4iw›h¬¬¬ÈÅ?ÆÐÊ»½ÑÐÆ777{Y»sµ°››!ccciigccccicccggc¤¤ci;w›È k-°Xh? ÈÈnaiþ8Û¼ÛoÃxjc;wh7Ñ~~ÑÊY˜˜V˜˜˜VV˜zsh!çžçg¤ciic¤çcççcicç¤g¤cic¤çi;w´?Å-hk ÆÐÐËËËÈ!µwl!çcgcžu÷¢ à Û18Í?Ь;XÐÜ»Y»½Y½z27°i¼}¼wƱ±7ÐÐ77Æ hµw!;1ü¼Ã¼fž4g!›h--hk Å7Ð{»½½»ÐÆ?77ÐÐ{YÑ€n›-!cc¤ccggc¤ciccgci¤ci¤ci;w-È È-µ°h? ȵ›;þ)Û¼xÃÃjciwh72~˜~ÑY˜˜˜V˜˜˜VV½€h!ž¤ggiiicççççççiigçgcgcii¤i;!´??¬´k ?ЀËËËȵ!µwl!ç¤ccu÷¢ } 1ä}?Ь;nн½»YYYØØz»7i§Í¼µÆ±7ÐÐ7Æ? h°!lif1Ãcooüf4g!nh¼Ãxcw› ÊÜÜÑ{YV˜VVéééV˜½±cçi;ii3¤ç44–ççç¤ii;44ççgi;;l!l!- Åk´ ÆÐËÊ€Æknµ›µ;gh;Íí÷q¶÷¥¥Ío Í8EÈÊ?lcµ½€Å ?Ë2YY½½Y7°§x7Æ7±Æ777??hhaw!!iç118í ¼¼of§f.Xhhh-kk ÆÐÊÑØ½»Ð??7±Ð7л»Ñ›w!i¤çççcçcç¤礤ccic44c;lk Ȭ°°-Èk-!µw¶þ1íÛ Íüüga Ê~Ü»»éV˜éééV˜½Ðcçi;;iccçç4¡çç礤;ii44ç¤ci;i!ll!- kk ÆÐË{Ë7knnnµ;g!h;ÍÍí÷º¶¥º¥Í¼ Í8EÈÊ?l¤µY€? 7€»»z½»7§ÃÐ7ÐÐÆ77?Æ h-a!liç118íÛjoo§§jžiµh¬hhkÈÅ7ÐÊ»ØØ»±ÆÆÐ7Ð7€»Y2›!g¤¤ç¤gccccç¤çc¤cgccç44c;;k -!µ›È´-waq)1íÛ }ÃxÃjga ÊzzÑËYVVVVééV阱cçi;;icçç4–ççcg;iiž4ççc;;i!l!w- hk ÆÐË{{Ë7knnaXµ!;g!h;ÍÍ÷º¶¥¥¥Í¼ÛÍ8EkÊ?!c˽€? ÆË»YYz½Yưf Ã77ÐÆ7Æ7?Æ?´-›w!;çí18í ¼¼¼§§jžiµ´}ͧc°ÈsÜY2YzV˜é˜VVVV˜˜Y¬i;!licççç–44çççci;;;c;ii;w!nµ°µ›¬k´kÅÐËÊ{?¬µ°°µ.wËÈççÃ}¶¶ Û 1Uó;Ê€7!g°hka;w-?ÆÐ{YY»Ðn4fµ?б77?? kh--µµwl.çóþº¼ Ãjfx¼ç-´-hh´È?2Y½Y{777Ʊ±7ÐÐs€kµ;c4žççç–ççççç44ç44ççgi¤4¤wµX››aµn-››Xl! )8E}¥ í}fcµÈs½ÜÜY»YzV˜éV˜V˜Vé˜2hi;!!ccç4çç4žççççii;;i;.c;!lnnXµnhÈhkÅ7€Ë{?hµ°µµ°içwËkçço}í¥¶ Û 1Uó;Ês7!gk´n;h 7ÐY½»Ða4µ?7±77Æ?? Èhh›µµl.çóþºoxjjÃoçhkhhhkkÅÑY½½{Ð?77±±±±€sÐȵ;cž4ž4444ççççç4ç44çççig4cwµµ››aµa›-aXX!; þ8EÍÛ¥ÃÍfiµÈs½ÜYÑ»z˜˜V˜VV˜˜˜éY¬i;!;3cçç–ç4çççii;;i;ii;!!!nµXahÈkkÅ7ÐËËÊ ¬µµµ°µiçwË´ççÃ}Ûíº¥  1UU;ÊÐ7li°h´µi- ÆÐÊ»YYе4µ?7Ð?7?Å khhanµl;çíþº¼ xjjÃoc-¼lkл½zY½z˜é˜Üܘ˜˜é½h;;;c3ç444çç4ççççgi;l!w;llw;i;;;!X¬hkÆ€Ës{22Å›µ!µµwlc¤µÑÐ!µcc¼¼ííÍí ºU8 sYÆn;l¬›ii;;ilXh´ÅËki! ÊsÐ7 Å È´h-›µX!ig4E81 }¼§§xo4w›h-¬hhk?Ð2»Y{7?Æ7ÆÐÐÐÆ777?n;cž444ž4žçç444ž44çc!ks{ hgçi;w;µw;ç§ÛE81x¥¼lk»ØzØ~˜˜˜ÜVV˜½´;l;ccc4žçççžççççii;l!;l!w!!;;;;!µ-hÈÆÐËs{Ñ» -µ!lccµÑеgfjíÍí qU8÷sYÆn!!--iiii;;¬´?s{h.; ÊËÐ? khh-aµµ!i¤žE81 íÃo§§oo4-h|--´k?sÊ»»7??Ð?7ÐÐÆ777?n;444žžž44žçç4444444çc¤lhs{ hgçi!!!wi¤¼Û18Ex¥¼;k»ÜY»½˜éV˜˜Ü˜ÔééY´;l;ccc444ççžcççç¤i;;w!;;!w!i;;;!µ-hk?sËs{ÑÊ ¬!X!lcçµÑÐwµccfjííí÷qU87sY?›;lh-;;i;;lX-kÅËki; ÊËÐ?Å kh¬-›µ!igžã81 u¼f§o¼4!aíÍ÷çh»Ø½½ÜV˜˜½zÜzVV l;cç4ž4ççcççççciiiw!l;;l;;cc;;;!a-?€€Ê»»ka!µ›-X!;´ µ-¬-!içfjj}Íu 81´ÐÐѻśkÐ?k-X!;igçžc;µ?Ês? khh-¬›Xµµw;w!Ã¥¶qEÃxjjo¼4!›¬---hh ÐÊÑ»ÐÅ ?Æ777?7?±Ðȵl;ici44žfçžžž§§44¤ ËYYе4¼§;µw;c;i Eºí Í÷çhÐËÊYØY½VéV½½ÜܘéØÈ;;cç44ž4çcccç4çci;i!!l;l!licc.;;!µ-?€{sË2»ÊÈ›w-¬X!ç;kÊÈ-h¬!iç§fjÃ}Û81´ÐÐÑ» ›ÈÐÅ´hµ!l;gçcwµ;µ?{Ê€Æ k´¬-¬›nµµ!;w!Ã¥¶qE}üfxjç!a---¬-hÅÐÊ22€Å ??77777Æ77 Xllicg444§444§§ffž4žžµ ËYØÐµ4jjiµw;c;; ã¶íÛ¥ç¬ÐËÊѽ½~V˜˜½zÜܘVéYk;;cç444ççcççç4çci;;!!l;l;iic.;;lµ-ÅЀÊY2Èawµ›-X!çlkÊ X-h-!iç§f§}uÛ8ÈÐÐYY?›k± kh!;ig礰!µ?ËÊ€? Èk´hh-anµnw;!!u¶ºqExx¼fxjçw›ÍÛ xÆ€ÐËÊYØz˜VVÜz½½z˜½?µl.ç44çç44ç¤çc44ccii;;!;i;ic;w!;!µhÐËËËÊÑÊs-µlwa›nµcµÐ¬X›7?´ai¤§¼xí1ólÐ?Ñé½ kËY½ØY»Ë?¬Xcjj4¤ Ë»€?kk´´h-¬-nnnµ!.!!jEãÛíííÃ4!›---››- 7»»± ??7?77Æ?77hXµ!!li;iç4žfžf§ff4ž§fcwÐY˜ØÐhX;!°;;ilwxÍÛ ÛÍÃÛÍÍÛ ¼Æ€sÊY½z˜˜V½zzz~˜˜?nl.ç444žççcçç4çccig;;l;i.icl!ww;!µhÐsËËÊÑÊÐh;!µ›aµcnÐ7-X›7s?kn.§x¼1ó!Ð?Êé½ ksØØØ»ÑË?¬Xcjj4¤w ËÊs k´´´hh¬-›µXµl.!c!jEãÛÃ4!›-›--›¬ 7YÑÐ ?ÆÆÆ77???7´°µ!!;;;içž4ž§§ž§¼j§§žff§cwÐY˜ØÐ´!!µ;!iluÍ Û}xÛÍíÛÛ¼7sÐËÊYØz˜Vzz½~z˜Ænl.ç4ç4444ççcç4ç¤cig.;;;i;iil!ww;!µhÐËËÊÑ2Ðh;!a››µcµ±-X›7Ë?´niç§í¼¼1ó!7?ÑVØ kËY½Y»»{?¬µg§f4g! »s Èkk´hh-h›µn!i!c4¼Eã íÃ4laíÛ ÷ ÊsЀÊY½z˜˜~~~½ÜØ7n;ç4ççç4çççcççççc¤cg.;l;.;;;;!l;!µksËsÐ{» ¬gçi;çn€Èn›X ÅÅÐÐ hn;Ã÷lUf7ÐËzÆa?Y»»½½Y»Y?ai¼¼›»ÑÐ ´´kkh´kk-µµX!.§Ȭií¶¶¥¢lµna›-››h?{YY€? ?ÆÆÆ777Åkkhww!!!içç4jfjf§§jj§4çf§4?Yz»?nhnl›w;-!xÛ}ü§ Û kËЀÊѽzV~~ØØ½½7a;ç4ççç44çc¤çç4çcig;;l;;;;;l!!;!aÈsËs€Y?hgc;;lwµ€ n-µ ??77 h;§u÷;Uj7ÐszÆn?½Y2Y½½»Yŵ.of›»»€Åkkk´hhkk-anXµ!iÛȬi¶¥¢ ;n›-››aah?{»YsÅ ?7777±7 È´hµ!!!li444fff§§f¼§jç4§§4?Yz2Ånhln;-wxí }Ão§í  ¤kËs€{Y½zV˜~½ØY~½7›;ç44çç4ççcccžžç¤ci¤;ll;i;.;!!!;!aÈsËËÐ{»Ë?¬ici!!wçnË n›µ ?ÅÐ7 hn;u ;U7€€½Ü?aŽØÑ2½½Y»Y?ni¼§›»ÑÐÅhkkhhh´h-aXµ!. khiíº¶¥÷;µÃ¢¢ÛíÛo-±»€ÐÊÊYVVVé˜~~€¬;ç§§4cç4ççççççi;w;.;;;!w!!w-ÐË€{{ØË°ç;cçc;!Æ;µ›µ¬??? ?Æ? ho÷a§¶È±Ê»Üz kY»»ÑYYY½½YYÆX?YػР´hh´kk-¬k ƬçxíÍhѬ;¥¥¶¥ ;°-›µ››an›ÆËÑÐ?ÆÆÐÐÆ7?k-Xµ!!!µXw!içççžf§§§¼Ãx¼f4¼¼çµË½ÜÑ´´-µXn--g} ÃÍuo÷÷ÛíÛÃ-н€ÐÊÊY˜V˜é˜½z½Ð¬;ç§§§çccç4çççççç¤c;!l.;;;!!!!w-7s€ËØË°4!l¤4;ž!7;µ¬µ-?? ÅÆÆÆÅh¼ µ§¥ÈÊ»z?´»»22½YØY½Y½½Æµ?YÑ€ ´hhh´h--hÅ7-ço}hÑh;¥ººº ;µ›µµ›››››?ËÑÊ7??Æ7±7Æ7?È-XXw!www°X;iç444ž§§§f¼x¼x§¼fçµË½Ü»´´›µµµ--g}¥ÍÃu§o¢÷Ûí Ã-н€Ð»2Y˜˜VV˜˜zÜ7-;ç§§§çc3ççççççççccl!;.;;;w!;!w›7s€Ë{ØË4l4¤i4!?;µ¬n-Å?? Æ7Æ ho÷µ§ºkÐʻܽÅkYY»»½YY½zYÆ?YÑ€Èhh´h´k¬-hÅ?¬ç¼}¬»h;÷¥¶º÷;µ4}÷qº }i?{Æs½2ؘ˜V½Ëkicccçççç4ccçç礤cg!!l;;l!l!!wµµ›?sÐsËѽ€n;;44c¤Ã-;µaµh?Æ?77Æ?c¢ã-l?7½»~½Ê{YYYYYYØØzYYØY{ÊYY½zØÊ€?h-hh›nh?7µžã¥;2ÐhjE Ã4w;akh--›-hk ÅkÈ ?7ÐsÐ kh›µµ°wa››X!igcgçž4ž§jxÃo¼f§f§444n˽½Y€k-µah4í}}uÍ¢qº ui?{ÆÐ½2½˜Ô˜˜VVØ€kwicccçççç4ccççcc¤i!l;;;lll!;°µ›Æ€ÐËËY½Ðnllž4¤¤ÃÛ¤-;X!›µ´???7???c¥ã¤-!?7z»~½Ñ2Y»»Y»YYØz»YYÊ»YؽØÊ€?h¬k´-›´?Æ7µ4ã¥;27h§EÛÃ4!;›kh----´k ÈÈÅ?7€ËÐ Èh-µµ°µ-››µ!;ii444f¼o¼x§jjj44a˽½Øsk-µnh4Í}ÃÍ¢EºÛui?{Æ€YÊØÔ˜˜Ü˜VYËÈwicccçççç4ççcccç¤i;ll;;ll;llwXµ-7€ÐËѽ€›l;4ç¤c}Û¤hi°!›nh?Æ?Æ?Æ?c¥Eg-!?ÆØz»zzÊ{»YY»ØYY½»YØY22YY½½Ø»ÐÅhhkh-›´?7a4ã¥;ÊÐhjEÛÃ4!¼ÃÛU¶çÅÐ Ð2{Y½˜VÜé³éVÑ w4xçç44ç¤çccccci!;;;ll;l!;!nah±ËËYÊkn;jžií ¤ž4ççggw--hÆ7?µ¼ó¥µa´€22јVÜ½ØØØYYYØY½½»½V˜Ø»Ø½˜zs ¬ kµµ¬ ÅËЛ;oU1nÊ žEÍi¤;a-nnh¬µ››µµn›--?ÐÐk¬¬¬µwwwµµnXwwwµw!!l;igçžf¼§§§4fçµ?2z½È´››h¬!§uÃÍx¼U¶íçű ÐÑ{Yz~˜˜é³é˜ÑÅw4Ãxç44çcg¤cci;;!;ll;l!!wnnh7ÊsËY{kµio4;cží Íçž4ççic›¬k?77Ƶ¼¢XahsÊ2»˜Vz½YY½Y»½ØY½½»½˜˜½ØØÜzs h knµ- {Ð-;ÃU1nÊÅEui¤la-µahh°›aµnµa--?ÐËk¬--wwwwµµµX!w!!;;igjo§§§44¼çµ?ÊzY h›na´¬!§ÃxÍx¼Ûó¶íç 7ÈÐѽ~ܘVéN³³» 4Ãxç4žçcççccçcci;!!;l;;l!!nµh±ËÊsYÊkaijžicí Íçççic--h?7?¼÷°n´ËÑÑ»V˜½½YYYYYØY½½»½VØY²½˜zË hÈk›°- ÅÊЛixU1aÊ žãuicoxE88Ežh h-h ÊÊz~z½z~ܘVéY?§í¶Í44–ççç44ç4ççcil;;i.;!llX-kÐÊ2sË»7›a¬žçic§ Ã÷Ûuxux¼¼f¼x¤nÈk´gºqci ÆÐ»zzz½YYY»»YY»ÜY2ØÊzzz~˜Y€k È›n¬--kh°l÷8U!7?ígxç;µ-´hn¬-aµµ- 7?¬a--Xµwwµµµ°µµnµµ¬hhh¬-aµ!i444§ç4;нØ?knnµna¬kµc¼ÍÃooíxÃE88qžhÅh-¬ÈÊʽzzzzz˜V˜VY?§íº44çcçç–4çç4çcil;;iii!!ll›kÐ{ÊËË»7›ahµ4çcçf u }xuÃoxjxxç› kgãã¤giÈ7Ð2z½½ØØYÑYYØ»ÜYÑØØ2½z½Ü˜YËk kaµ---Ȭl÷8U!7ØÅícx4;wX-´-n-›aµµw-?ÐÅhn›¬µµµµ°°Xnnµ¬-h¬-›aliç444žžç4;нY?k-µµµ›-knc¼Íu¼oíx¼E88E4hÅh-¬Å{ʽÜz~½zVV˜˜Æ!fíºÍ44çççç4ç™çççci;;;i;;!l;X-kÐÑËs27›ahµ4i§à ÃÃuxox¼¼¼¤› kµgqã¤ciÈ?€Ñ~Üz½ØYYÑYYØ»zY2ØØÊz½zz˜Ëk knwn--ak-°!÷8ä!7Y?§cÃooíóþ8íh›içÐ7{€ËËËs˻ػ7›;gÍf44ççžžçç–ç4™ççci;;l;;;;!;!›¬h?s2ÊËË nhk¬igl;Ío¼Ã¼Ãjjà Ã;k?È;ž¶iç›7Ð˘˜Ê½½½Ø»»½Ø»zzØY»Yؽ½½Ü~YÈ ÈhX!!;lc¢8ºµ±Ë hžÍog›h¬-¬aa››X¬k´--›n-n°µµX›h-a!!!a-¬hhh--hµ;gg¤çž4;¤¼4›€½Ë nµ›h hnl4}}§xx§íóþ8!h›içwÐ7ËËËËËÐË»½27a;cu§44ç™4çç4ç4™ççii;;;;;;!!!!ah´?sÊ{Ë{ ›hk¬cg;l¤wžo¼Ã¼Ã¼§ÃÃ;h?k;4¶í°.Ã-7Ð{˜˜»½½½Y»»ØYzzY»YYؽ½z½Yk Ȭµ!!;!c¢8ºµÐ€ h4Íjgak¬-h››-›Xµ°µ¬kh-›---aXµXµ--¬a!l!a-¬hk´-¬¬µ.cc444ic¼›€½Ë ››hÈhµl4ÍÃfxxóþ8í!´›içw77{s€Ë{Ës»Ø»?a;i}§44çç4žçç444ç4çci;l;;;.;!l!›¬´?€»ËËÈnhk-g;;¤!žooo¼Ã¼§x };h?k;4ºX.Ãn7ÐËVѽ½ØØ»YYYzY»Y½½½½½Ü½Yk ¬Xµ!;µw!l¤¢8¥n±Ë h4ͼ¼÷äþE›-lç77k´´ 7sÐÐs2YÊ7kkÈ!cf4ççccçççççççç¤g;!l;;lµhhhÈÐ{{7¬µµ´-i;nknž -44cç4c;ižfi Y?µžãÍ ›j f-±Yܽ½½zYY»Y½Ü½ÜÜܽYY½½~zØkkkh-°!!µwgç óÍ-YØ2Ð7µçjg¬k--µXnn›-hhk kk¬-›Xµµw›››µw;;;wa-h-¬¬hX!;iccc¤444c´€hµ-kÅÅÅk!¼}xÍjf÷äþE¤›-lçµ±±Èhk 7Ë€Ðs2YÊÆ kk!ç§44çççççççci;w!;;;wµhhhÈ€ÊÊ7¬ak-i;›´nž -žž4cççi;iž¼;ŻŞ㠛j f›±Ë»ÜØzz½ØYYYYܽÜ~½Ø½Ø½ÜÜÜØ ´kh-°!µXwçgç÷óÍa½½2Ð7µ4¼i-k-›!µµnnn-hhkÈÈ Èh--nµµw››anwlll!n---h-hn!;iig¤¤44çc´zÐh!µ-k? ´!f}¼§Í¼f÷äþE¤--lçµÐ7k´k ЀË2½{7 kk!çf44ççccççççççc¤i;wl;llµhhhÈÐ{ÊÆhµak›i;›´a4Ånžžžççi;i4§iŻŵžãÍ ›j ›±½~½½z½Y»»»YÜØØÜÜܽYYØz~zzY kkh-!µµlccç UÍ-ØØ»Ð7§Ã§§f¥äó¼lhÅh »»7?7{»»½z½Y7???axž44cçç44ççççcc;!;.;wllµ›h€ÊÊ?k-µ›n!››alk7gççcgi!;c4§¤¬ÊÐh;¶u ´l§ È€±ÑzzzØØ»YØzYzÜYÑY½½zÔ½» h¬ÈÈnwµµXluãUf ÐÑV .;h? kkh-›¬´ ű€€€s7Æ ´-nµnaXµanX!;i;;!µ-¬-¬--w!!;ii¤c¤gižwÑz»?¬µ!X¬È ? hl4u§Ãfx¥äóf!h?¬ Y»7?77»YYz½»Ð?Å?nxž4çççç44ççççc;!;;;wl;X››h±Ð2?k-µ›n!µ›an;k7cççcgi;;¤4fch{Ðkl¶} ´;§Û§ €Ðѽ~z½Y»»Y½YzzØÑYzz˜zÑ -hk µwwl§uãUfÅј ;;h? kk´-›¬´ÅÅ7€€s€Ð7ÅÈ´-›nµnann!;i;;wµ-h¬---µ!wl;i;cgçgi4wÑz2?hµXh Æ?hlujÃff¼¥äój!h?h »Ñ7?7ÐË»Yؽ½½2ÐÆ ?nx4ççcçççççççc;!;.;l;°µ›h±€Ê{?Ȭµ›µ!µ›aa;k?iççiii;;gž§çh{Ðk;¶u h;§ § €Ð2Üzz½½YYY½Y½zÜY2Ñz½˜z» -¬kÈ›µwXlž§uãUf ÐÑN˜jçcjó8žh»ÊsÜØéV~½½zÜzÊÆ k-§÷Ãçç§4444ž444çç;;i¤c!;4j4;l›?ÆÊ2ËËÐhX›-¬;ožc›±;çi;lc¼xihs{È!ç ha!ÃÍ.-л2~ÜzY2ÑY2½z½YzzYØØ½Ü˜ÜÑÅ-› ›µaµawi;;çjó Ð{ÊVYsÐË»YzÊ7 ?ÐsËÊÊÊÊÊ€7s± È ÈkhÈk¬µwiig!a--¬--›nw;;;c;iccç; ½YÊ7-wwnh Å k;Ãjçc§§ó8ÛhÑ2€~éV~½ÜÜz{7 k¬÷Ãçççççž4žžž4çç.;cc!l4f4i!µ?7{YË€Ðh›--;¼ži›±;44i;lµfÃg-Ë{ !4?h-!u}.-7Y2zzÜzØ2YY»ܽY½½YY»»½~½»Å¬›ÅÅ-µnµ›i;;çjó 7{јYÐË»½Ü27 ?ÐÐsË{ÊÊ{ÐÆs7ÅkÈÈkhkÈ´›wicc;a¬---››Xµ!;;;g;;ccç; ½ØÊÆ-wµ¬È ÈÅklççi§jíó8Û¬Ñ2€~½éV~~Y~~~zØ{7Åk-÷Ãç4ç4ž44444ççi;ccc!;4¼4;lµ?ÆYË€h---l¼4i›Ð;4žgilµ¼x§i¬Ë{ lçÅ´-!Ãu.-72»½~ÜzØÑ»½»½z½YzzØØ»Y½Ü½»?¬nÅ?›n-wi;iç¼ó ÐÊÑç44ç¼¥E§cÆzzVN˜˜˜é˜é³Vz2Å ç žc4ç44¤¤ccçç4cccçç!´ .ífçh€Æ?-!h?k;¼x¼!žigalçxjžca7ËÊkñ»hµio¼wÅ77ÊY½½½½Y2Y½Ø½YY½½½z½YÐÈhhh¬-w¤žççžÍxEÍÐ?˽ܘzé~ØË2{Ê{{Ê{ÊÊËË7Æ€ÑÑ€Ês{ÐÈ?Å!;µ-µµ›-a-ww!!l;igiii;!YYs h›µ°›khƱh;çžžç¤f¶ãjgƽØܘN阘é˜é³V2? ç÷4c44¡ççcc3ççžcgg¤çç¤!´kiͼçµhË€??¬!°h?´;jof!§ccga!4jj4g›Ð€ÊhÃлhµix¼wÅ77ÊY½~ØYÊØØ½ØY½½½ØØzz½ÜzzYÐkhhh--n!¤4çç4ÍxãÍÐÅËYÜ~VzØ22{ÊÊÊ{ÊÑ{Ë77Ë2ÑÐÊË7k?Å!;µ-µ›-›-n!!!;icigii;!YYÐ h›°akh?Ðh;ç4çc¼¶óEjc7½ØVN˜˜é˜³NV˜{ Åç÷4¤44¡4cc3ç4çcgc¤çç!h i}¼çµh{Ë??h!°hÅ´ijüw;ccin!4¼f4ca7€Êhí}±Yhµio¼Å7Ð{ؽ½½»2YؽؽØYYzzzz½½Y±kkhh-›µµ!çžçc4ͼãíÐ?{Å´Xlµç¢ãx!7Ë2˜˜VVééééNééé˜éé˜Ë;Íž;ç§44ç–ccç4§žž4žžg›?klxͧaÈhµ;ga-k77-;çžfçciµ-i¼§4w´?ËhÍ€YÅh!Ã4kбʽØ»»YYY½Ø½½½½zz~z½Ü27? khh¬hi¤icfÃí847Ê{Y˜é˜éé½7ÐлÊÊ{ÊÊÑY½Ë? ÆÊ½ÊÊ½Ñ ksÊÈ7€Ð7ÐÅ´µµ!;!!;i¤çcgÐØYÐkX!µXkÈ?h´s kX!ç¥ãͼ!7{ÑV˜˜VéééNééé˜éN³;u4;§žççccççç§4žž4ž4g-7klžxu§aȬµig›-k7Ðh;çf¤;µ-iÃfžç!´ÆË´usY?-!Ã4kб{½½»YY½ØØØYY~½z½½½½2Ð? h´hh-nicicfÃ)žÐÊËØ˜é˜˜éé½ÆÐ±»Ë{Ë{Ê{ÊÊ22Y? ?2½½Ñ2Ø» ksÊk7ÐÐ7±?kµwlllµµw;;¤çgÐØYÐkµwµµk ?h´Ð kX!wµç÷qͼ!7{ÑÔ˜˜ééééééé˜é³VË;u4;ç§žçççç4žfžž44žžg›?k;4xu§›khn.cn›´ÐЬ;çf4ç;µ¬iÃjžçwkÆË´u€» -!uç´ÐÐ˽~YY»ØYؽ½Ø½½½~~ÜzzYÐÅÈhh´-hµ;ggguí)þ§Æ€7´ ÐhÍíÍÃkÈʽ½˜éÜV˜˜˜VéV2-cçii4ççç44žž4çc¤¤;!X›´k4Íõ?k°;aµ›ÈÆ µ¤¥}ç§lȰc§Ãf44ih7-Í€»Ë wfc?±7ËØ~Y½YY½ØØz½½½zz½~½~Ü~½Ð ÈÅ ? ¬µ;iiigoä;ÐËYV˜³³~´¬?2sËË{Ê22YY»s ¬´Ð»½»Êz½?nƽY~Vz±´iil!l;cç¤g›˜Y?¬µ››hh -!› 7Ë7´ h4ÍÃwÈkÊV½½VéÜV˜Ü˜éV˜2-g4giçççç4444ž¤¤¤i!°›´kwžÍ}µ?kX;µaX›ÈÆkç÷Íçf!k°c§x§ž4;µh7-}¤€ÊÐ7Åw§fcÆ77ËØ~Y½ØYY½Øzzz½Ü~Ü~zÜzܽ7ÈÈ? ÅȬ;iiigoÛþä;±Y˜éNÜk-?2s{ËÊ222ÑYØ½Ë ¬´Ð»zÑʽz?›Æ½Yܘ阽s±´ii;w!;icç¤i›˜½?-X--hh ¬!n Ë7´ h4xÈkʘ½zVéÜVV˜˜˜2¬g4iicççççcçžžž444¤¤¤i!µ›´kw4Í}µ?k°;wnµ-È?kç÷}4§!k°c§Ã§ž4i¬Æ-}Ë»sÐÅw§7±ܽYYYY½z½½z~ܽ½z½~»7 Å -;icic¼ þ8lдknk€sÈg§uÍ4µa!ÐsØVééVé³éV˜VéYµ4cç44çççççççççgiii!;ç;´7kç-ÆknXk-h-h ?h;¼xfjX cçou§4¤i;a wç7{YÊÊÅwc4;›ÐÐ7€YÜ2½ØØ½½½YØzÜ~~ÜÜÜÜØzYÆ ?7Ʊ?Åk›;gc;ç¼j÷ä¥Ѐ{ÊØVéé³h! s7ÊÊÊÑʻؽË?hhk±{Ë2~2Èk?½z½Ü˜˜˜N˜Ñ?-!iill;;;icicÆÜË ---h›haw;µkkn´ËËkcÃ4X›!77sÔ˜éééé³éVé³Yµž4cç444çççççççcc;ii!;ç;kÆ ç-Æ´µ´-h-h Æhlj ¼jfµ cçoufçcc;n ç7ʽÊÊŵ¤4;nÐÐ7€Y½ÑYYØØY½Y½~ÜzÜ~Ü~~YzY7 ?Æ?77Åk›;gg;ç¼j¢ä¥µÐËѽVéé³h!kË7Ë{ÊÊÊ2YYYÅh-kÊ{½2Èk?½Ø½½zV˜˜ÑÆ›!;i;;!!iicccÆzË -a›h›¬a!X;k´nkË€ki§ÃX-!77ËY˜éé˜éééVVééNصž4cç44çççççççcg;iiw;ç;ÈÆÈç-?´µk¬¬-h?7h!¼ çfn cçoufçci!n ç7{YÊÊÅwg4;n777ÐYz»Yؽ½ØY½zÜÜÜ~ÜÜ~Yܽ7kÅ7ÆÐÆ?Èa;cc;çoj÷ä¥Xç;!i;›Ë~ ›cçf;kÃc;°µn-k {Y~zÜVéV˜7;ç4ç4çççççç4ciii;nwx¥xµ žžµ;;;µ››››k7Å-Ãxjži››c4xÍj4cil›´;¢fk7YÊYÑ7´wi;k7€7½ÑYYØYY½z½zÜÜ~½zYYÊÆ 7Æ€€ËsÅa.c§xº¶ok7Ñ{~˜éé˜Å;-?ÐÊÊ{ÊÊÊ»»YØ{7h-- ÐÐÐлܻÐ?ÊÑYYY½ÜV»Æ-!l!!lg44çhѽYÐ-h›;µh;ç;!i;-€½È›çj;È}g!Xµµ-kÈ{YzzÜéVV7ižçç4ççççç¤ç44¤icii›wx¶oµ žµ;l!°a›››k7 ¬uç.-›gžxͼç¤iln´;¥§k7Y{27hwi;k±€77YÜ»YØYYؽ~ÜzÜzz½Ü»½Ê7Å77Ësss?a.cç§x¥¶¼hÊ{z˜éé˜ ;h7ÊÊÊ2ÊÊ»Yؽ{Æk-¬Å7Ð7лÜÑ?Êʽ½½~ÜVY±›!!!!!li44çhѽYЬµh›;µ´;ç;l;;›ÐÜ µgç¼lÈÍc!µn-ÈÈË{»zÜÜVéV˜7iç44ç4çççcç44iciinwÃ¥o° žµ!!!X›--›k? h}x§4c››g4xͼçciln´;¥§´±Y227´!i;kÐÐÆYz2YYYYØØ½½½½z~zzzz»½{?ÅÐ7sssÐ µ.gç§öºoçil;44ÆY{khi°Ðxgl!4iXX›´ ?ÅË€{ÜÑhiçç4çç4ç444ž4gg.¬´i¥E¤}ucçiic.l!!°h ÈÛÛÍ-X;!ÃÍÃc;!nniÛ¼n´Ð{½ØÑ?nX!?2sÆËYYYØYYØYØY½z½zzzz½Ø2бÐ7ËÊ22Ë?›;gçxÛ¥÷k2»»Üééé€;´s{{Ê2Y½Å¬µn´?Æ7??s€±Ë?Æ7»ÜÜz½z˜˜½ËÐX!!;c44 ÑÜ{ k´È-µ kÍçc;;44µ7Y{Èhi°ÐÃg!!4iwX°µX›k ??€{½Ñkiçç444ž4444žž4gg;-ki EcÃucçcgi;!l!°h kÛ c›µ;ÃÍÃc;!›nionk72YØÑ?nX!?Ñ€ÆË»YYYY½½Y»Y~~ܽzؽ2±7±Ð7ËÊÊ2Ë?›;cçx ¥ gkÑ»Ë2ܘééÐ;´7s{{Ê{{Ñ»YÊ?-µah?77?7˱Ë?ÆÐѽzz½~˜½7www!i¤44 ÑÜ{ ´kÈ-µµ hÍ4i;;44µ?YÊ´hi°Ðxg!!c4iwXµ›k ??{ÐÊ~Ñkiçç44çž4444žžçgg;-ki¥EÍcÃuc4igi.l!!X´È´Û ›n;ÃÍxg;!aaion´ÐËYØÑ7›X!?YË7Ë»ØYØØ½YYY»½z½Üܽ½½½ÊÐ7ÐÆ{»»Ë?›!cç¼÷ }fg;gçÈЀ€Å?Ê-;ižxͼgw!;¤¤!Xl4i;;;!wi§44ž4ž444ççci;µ-›§Eã¼oÍj§ç44¤ciilwµa¢ã i¬;!ž¼ux¤i!µi¼wµk?7772Ë?? ËÊÐÐËYØYYY2ÊÊ»Y½ÜÜܽYY»Ê{€Ð±s{2Ñ»Ñ?-ngçíÛ Í¼i´ËÊËYééÑ;l›±±ËsË{ÊÑØYÅhnµ›k ? k? k€-°µÅ2ؽz½½Øzz7kw!ligcµÐY€È kX›´Ðhºu¼g!g§çkЀÐÅÆÊ-;i4Ãͼg!;¤lXl4g;;;!wc§444žž4444444çci;µX-›§EãÃx§§ççç¤giilwµn¢ã i-;!jux¤.!µ!io§µ´Å7±Ð2ËÅ?ÈËÊ€Ð{YYÑÑ2Ñ»Y½Üܽ½Ø½YÊ{Ðбs{2»»Ñ?-µcçíÛ÷Íoc´ËÊ{YÔééÑ;;aÐË€ËË22ؽË?hnX-kÅÆ kÅkkÐ-Xa?2½Ü˜z½½~7kµ;;ginÐYÐÈ ?´Xµhh¥Í§c!cçÈÐsÅÆ-;i4u¼g!l;c;°l4gi;;!wc4444ž4ž4444ç¤i;°X¬›fEãxç§ç4礤cilwXn¢qÛi¬µ.!¼uçc.!awio§µh?бÐ2Ë?  Ë{€Ð{YYØYYÑ22ÑY½Üz½½»»Ë€±±sËÊ2ÑÊÆ-µcÛ÷uEºíži¤4§i ËÜY€hià ¥wicl¶ ÷ío¼¼¤ž§44çžžž4çg;!›µh¼U1¼ íÃÃÃoxo¼fj¼¼¥qí.µ›gç¼f4ç;!µ;lççµ!!µ´?Å?ÆkÅsÐÊYYY»Ê»Ñ2ÑY~z½Ø»½½z»s7ÐsËY~Ê? ›XͶož}Í4 Ñ2{zNéY!cÐ7ЀËË€2»½ÊÐ ¬n›-k? ÆÐÈ´7 µ!hsYzÜV½Ü˜2kµw;gcž4!kЬw›¬µµa-sËiE¶íi¤4fÍi sYËhgx ¥wiclº÷íç¼§ž44ž444çg;!›!nhjU1c¼÷ÃuoooÃf¼j¼§÷q;µ›ç§¼f4;!µl;çµ!µwlµ´???7 ÅsÊÐ{YY»»»ÊÊ2ÑY½zzz½YY»½zYs7ÐËssY½Ê? ›µÍ¶ožÃÍ4 ÑÊ2½éYlgw±7Ðs€sËÊ»YÑ7 h›n-k Æs h€ µ;hËY~~˜ÜzÜéÊk!;ccž4!kÐhwn-nµ›hÐËiE¶g¤4fi?€½Ëhg¼ ¥íii!º oj¼§¤žž444ž4ççc;!-!Xh§U1cj x}oo¼x¼¼¼¼§÷ã;µawçf¼f4;!;lµw!µ´?Å?ÆÈ Ë{€ÊYYØY»»ÊÊÑ»~Üz½»»Y½zYsÐ7ÐËYzÑ? ›µÍºoº¶¶u4žž44›sÜVV½±;§xà ;Íçí¥ºº¢}¼uÃf¼¼ç4žcžçcçi!X!!4Uþ¥nh.žo}uü¼Í}¼¼Û¶}çla!o4¼§i!;i.;;ahç§çnnhkÈh-´7{YY½Y½»Y»2ÑYؽY2½½ÑY½Yʱ7ËË€ØØËдa¼E§çož¼ÈYËÜ騛;?ÐÐs{»»½Yʱ ´--h È ËÐ h›an-ÈÐYÜÜÜ~ܽØYÔzh;gij! ›!XµXX-Å7 ?íº¶¶Í4ž4ç§ç›€ÜV½;ž§ou iÍçí¥¶q÷}¼}xf¼¼44cžžcçiwwXw!4Uþ÷n-;žx}}ÍjÃ}}f¼÷quç;›!¼4¼§il;i;;;wahç§çaa¬kkh›¬ÆËYؽ½½»Y½»2»YY½»ÑzØ»»YÊ7ЀËËØËдnxE§4o¼k»ËËé½›4!?бÐË2»Y½½ÊÆÅh¬-hÈkÅÐ7È´nµµhkYÔz½Üܽ½ØÔ¬liij! ›!XµµµX-????ººº}444ç§çµËܽ±;ž¼Ãà í;}žç¥ºº÷}xÍxjx¼§44c4çççi!wµww4äþ¥-;žxÍÍͼoÍufj ºuç;alž¼çj§ill;i;;wnh4§çnnhkkk-hÆËY½½Y»»ØY22Y»Ñz½»YØÊ±Ð€ÊË€Y½€Ðknxã§ç ºq¥Íoçcž§g-˜~Ê›j¼fqi!ž¼}ÛÍ¥¥íÃxfj¼¼ççcii;!!;;w;EþÛhÐh!;;x¼¼xffu ¢¥jglç4ž4ççç;!¤g;;;wn›.4g!X›-kk¬nwËÊÑ»½z~½ØØ»Ë7ÆsYË€{2Ê7ÐÐ?ÆÅ´hhXaµ!xãÛjjçfÛ çk{»éé»-ii-Ë7ЀÊÊ»2½ÑÐ hh´kk ÆÐ{€ ¬›-k?{»z~ܽzÜzz½½ÜØ7µ444µkil;X›-h77ÐÐ4 ºº÷}o4žia˘zÊ›çj¼Íqiw4¼uÛÍ÷¶Íx}xjjxjžççcii;!!!;.w;E´Ðh;;žo¼jo§ju ÷¥jç.;44çççcilci;;!wµ-°.4gw--´khaËÊÑÑYzÜØØÑsÆ7YË{{ÊÊ€ÐÐÆ??h¬¬Xnµ!xãÛjjçf çk»é˜Ñ-gg¬€€Ð€ËËÊÑØÑÐ h-hÈÈÈ?sË€?hX›-kÆËYÜܽzÜ~½z½½z½74ž4µkwiw;a-h?бÐ ¶q÷ÃÃ444gaËVz2›fjf¶i!fuÃ¥¶ÍžžÃx§jxjççž;c;w!!;.;ãþÛkh;;žo¼¼¼¼ju¥÷¥jcilç44çççci!cgi;!wµµ›;c!°›-kh-µ€Ê»2Yzz½YØ»ËÆÆY€Ë{ÊÐ7ÐÆ??k´-µµxEjj;Ã÷ºº÷ç4fxx!ks» !ž§4ÍE§!;jÍjçà }ç§Ã íÍÍí}¼xocw;!wµi¤i;}äUgÅ{Ð? k-!çj¼Ã º¥Û4;§xÃüfj4c;;wµµl!;ç4c.!wXhkk-!¤-?ËÊÊYYz½k°l!µn¬h¬›a›hXn-nw;µµnž ¼¼žoouoXËʽY?  ?Ð€Ë€ÑØ½ØËk¬hÈ ?7€22?µ;µXnhÅ7½~ܽzܽØéÐa4¤› ›X;X¬hh 7Æ?;u¥ºq¢íç4žfuÃw s» !4§4ÍE§!;¼Íjçu }4§ÃÛÍÍííÃj¼xcwl!wµ;¤;;}äói?{Ð ´›lç§¼Ãí ÷q¥Ûçi§¼Ãüff§4¤.;µ;µ!;ç4.lX¬kk›lc-?ËÊ2Y½YÜܽËkX!;µ›-h-aahXµhµwlµµn4Û¼¼žo¼ÃoµËÊzY€? °µ 77€Ës{»½½ -´ ÅÈ?ЀÊ2?.µXµ¬ 7½ÜÜzz½zVØéz›4g› ›iX¬¬h 7??;à ºº¢çžž§uuw Ë» l4ž}Ej!;¼ͼçu }4çfÃÛíÍíÃj¼xwl!µ;¤;.ÍäUi?ÊÐ k-lçfooí Ûq¶Û4.j¼Ãu¼fj§ž¤;;µ;!;4ži!¬kȬ!¤-?sÊÊY½~ܽ{kXllµ¬hh-›ahXa-!!lXa›Û¼§¼X§¢¶¶g44§§f§¼Ãµ±Ð¬!cÛã ç;fíͧoÃooxjfÍ ¶¥  í °µµµµw;ii4ž äUçwkkËÊËÆh;o¥º÷Û¥1í4¼j4§xuuü¼§çil-k-!;žg;;i!nk?ÈaçXлÑsËÊY»½YY´wi;.;l!l!µ¬-h´´nh´g¼4žoÃç¤;kнsw4!!;-›hÈ Æ72Ñ{ -k ÈÆ7s»Y i;Xnl;--»Vܽ~˜z½Ü~½;µ¬h ´a›kk´ÈÅkk°§Í¢º¥cç§§ff¼Ãµ77¬;c ã ç;fíͧ¼Ãx¼oofÛ¶¥ ¥ÛµµXµµ.ic44Û8ä 4wkÈËÑЬ;x¶¶÷¥EÛçjj¼}}ü¼çil-È-w°;c!;c!ak? -wçµ»»Ë€2YY½½YËhµ;;;l;!lla¬-hkhn´´¤x4ž¼xj4¤;ksØÐ!4!l;››´È 7ÐËÑ2YÊ -h ÆÐYYÅ;;nl;›h7ÑVz~~z˜Ü~;µ-h ka›kkhÈ?ÈkX§¢¶ºÛcçf§§§¼Ã77¬;c4ÛqÛç;§u§Ãüxxjj ¶¢ ÷ÛžµnXµ°.cgç4 äU 4kÈË2ËÐhl¼¥¶÷ ¥Eçf§4¼Ã}ü¼çc!-È-X;4žil;ilak?k-çµÐѻˀÊY»½YYËk;;.;;l!lµn¬¬h´h›hhcx44-¤fí¥º ;4§Í¥o!hkai÷¶ºÃ4oÍÍ÷ÍÃxÃÛ íxj¥÷ ÷ ¢¼!-haX;ilg4UUͶ÷4k?7{½Ð;q¶¶¶äó¢Ûu§4¼Ãjffc!kÆÅ›È4cigçi!µ¬kkh›i;¬{»ÊYYÊYVVØ{´h››¬hkkk?7Æ?Лhhf4ffff}§;c!ÐØY}çii!µn¬k?±Ë»Ë?kÈ ?ÐÐËYÈ4!a-w;l!›7½VzzÜz˜˜½½é»Èa-hh-hµhkÈ?Ð?Ð-cf¥º i44Í¥o!hka;÷¥qÃ4oÍ ÍÃx}Û í¼jí¥÷ ¥÷x!-h›X;ilgžäUÍ}¥ 4k?7{YÐ;Ûºº¶Û¥ä çž4¼Ã¼§¼§c!k7 ›kw44¤igç;!µhÈkhai;-ËÊ{Y»{YéØÊh----kkkÈÅÆ??Ð7›h-f4fffj}žlc!€YYµÛÍçii!n¬hű˻Ê?hÈÅÈ?7нYÈ4;›¬w;lw›7½V˜~½ÜؽÜ~˜Ñka-´h-¬µhk ÆÐÆÐ-¤jíººÛci44u¥xh´a;¥¶ºu4oÍ ÍüuÛí¼¼í¥÷ ÷÷ ¥o!--›XliliUä}¥¥4k?Æ{»Ð;Û㺶ۥä÷÷ͧž4xü§jcwkÆ ›k4igçi!µhÈk´›i;¬½ÑÊYYÊ{YVVË´--›hk´kÈ 7??sÊÐ-hh¤§4§§¬.ç}¶q÷žµ;cç4j¥¼¤a-;§÷¥÷ÃÃ}foxo¼o}ÍÍÃÃÛ÷ í÷uiµh´!ic4ç¼1ºó§›±ÐsÊËh¤Íº º8äã㺠}žoÃüfhk-µ?µi4žžç4¤;-´Èkhµig-2~ØYÊÊÊYYYY2»Ë7€ËsËËË»{sØ~Ê€Ë?Xli¼¼¼¼Íçaiçk{é2ix¼¼§žçg.;!µ› 7ÐÅÈ kÅ7sYY i4wµ;g!lhs½~~~zzzzÜéÑÐË?glc;-È 7{¬iö¶¥4nµlgçž¼¥j¤›-.÷¶÷xÍ}§ÃxoxÃÃÍÍ}Ã}¥ Íí ÃihhX!ig4ç¼1ͺój›77Ñshuº ¶88ãºq }§oÃxjfwhh›µË?µi44žç4¤;›kÈk´ai¤hÊzY»ÊÊÊY½ØYʻʱÐËËËÐ{YÊsØÜ2ËË7Xli¼¼¼oÍ4ni4k{é2;¼¼f¼4çc.;wX- 77 ÅÐÐY gç!X;g!µ!!¬s½zÜz~˜˜Ü½½zé»ÐË?c!c;› Æ{¬.ç}¥q¢nµlcçžx¥o¤›-i§÷¥÷çÃçÃxooÃ}}}oÍíÛ¥  Ãgµ´h!ig4§ç¼11ͺj›7ÐËÑÐhcͺ ¶88㺺¢}§¼uÃff¬k›µËŵiçžç4cl›kÈkhnig¬ÊzØ»ÊÊÊYYY»ÑÑÊ7ËËËsÊYÊsY~{ËÐ?°;iooµ!!4Í ¥}Xµw;içÃͼak;f¥¢ooÍiççž444j}í¥¥ í i-kn!c4fžc4¢ºäq4h¬ÈÐYØ7µ¤Ã¥ãEEºÛÃx§jžçlµµl.;Ës µgçg¼žcw-kkk¬;4.ȻػÆËYzÜܽz»ÊÊË{2ѽY2½˜Ü˜ÐÆn§¼xü;-l4.ʘzkçÃÃfžçccwX›hk ÅÅÐËÊYØÐhiµ4§;!X´7YÜÜÜ阽ØY½½z˜z22€nççççç;n7µl!ž ¥Í!.cç}¼ak;¼¥¢í¼ÃÍžiççž§ž44f}ÍÍ¢÷Û i¬knl¤4§ž¤4í¢qäqž¬hȱYY7n¤Ã¢óãEóEºÛu¼§f§ç;nn;;!{Ës µcçc¼cw-kkk-;4i´»Y»ÐsYzÜ~Ü~zY2ËËÊѽ»{ؘzVØÆn§¼xÃj;-;4;ʘ~k4}Ãfžçci!X›´ÈÈ Ð€{ØØh;°w4§;!w°´7YÜÜéVz½½Üܘ½Ñ2€µçççç;!nnll4Í ¥}X!;cçž}¼ak;¼÷¢ox}cçç44çž§uÍ¥÷Û í§;-k›!¤4§cç¢qäq4¬hkY7µcÃ÷óqEóEºÛu¼§§ç;nµli!{€ µ¤çcjžg!-kkk¬;4.k2YÑÐËØzÜܽz»ÊÊË{22YY{½˜zéܽÐ7›§¼!lµ!4Ã÷¢Xµ!;!!i.fk˵¼÷¥ÍÍ ¤;cgiiii¤ž¼Ã¢Íx¥¶¥¥ Í4›Èh¤ç4ççç4§cº¥¥ã ; 7 ?Ë{7cí1111UUEÛx§j¤k-;;nË{YYЬ;i44i°hh›an.ç!Y2Ê{ÊYzܘzÑËÊØÊY»»ÜVzØ»»Èj¼}ji;;i§ €˜é.ff¼¼¼fž444¤;µ¬hk ±{»½YYÊÆ?a§4l;µw´ËzVÜzÜV˜Ü~z½VY?´k¬w;cçii; l;µlžÃ¥ Xµµ!l!!;;§ksµ§÷¥Í c;ccii;;¼Ã÷íÃí¥¶÷¢ÛÍ4n ¬¤ç44ç4§ijºº¶ã1 ;Å7 ÅËÊ7c111EUUã o§f§cµ´›;;XË{YY7-;iž§4iX-h››nicw±½Ñ{ÊÊYzܽ»Ë{Ø2Y»YVÜz»Y j¼}§i;li sééÐ.f¼¼¼¼jžžç¤;XhkkÅÈ7Ê»YY»Ê?7-§4;lXw´½~˜~½éY?´khw;wiçg;¤;È;lµ!4Ã÷÷µµ!l!;i;§ksµ§¥¥ÍÍ÷ígliciiic¼Ã ÍÃ¥¶÷¥}4n -¤ç44çç4§gº¶ºã1 ;?7 ?€{7c111EUUóã ojj§¤µk-;;XËËYYÐ-liž4;°-h›aµiçwнÊ{{ÊYz˜˜½ÑËËYË»Y»»zVzzY»kjnnanw4 iwl!w!!iiçµ-¼äþUÛÛx!žg;iiil;4u¥Ã›.44jí¥Í;-ki4jf¼§;¼ Û ¢ ºã4µk?ÐÐhwo¥qEUUóEÛ§¤°µw.c¬±{2»»s€Æh;¤;µ¬¬nw;çµËËѽ½Y½~˜˜z»{2YÊÊÑYØØ½z˜Ø»½z-;}}l hµµw-Yé˜Ðµwç44444i!wµhkÊÊ2ÑË7sÆläcl!ahÐY˜~½z½˜˜ÜY½Y?-´k-hh-h? ››µa›nç÷iw!ww!ic4µ¬jäþUÛÛolžg;iii!;çu¥}µ›ižf¢;¬´;4f4f¼;xÛÛ÷ ºq4Xk?ÐЀÐhw¼¥¶1UUUEÛ§cX;i-ÐË»»»ÊËÐ?h!¤;µ¬¬n!;4aË€72½zY½˜~˜z»{2»22»»½z˜½Y½z-;Ã}lȬµaw-Yésµwç444ç4iw!¬kÊ22»{Ðs?;äil!ah7YV~ÜÜÜÜØsYÅ-´k-¬hnhÆ a›n›aa4 gw!w!wwic4¤nhjäþUÛÛ¼!4ii;i;!i4Í¥u-i4jí¥;hk;4f4§j§;¼ Û÷ ºq4k?7sÐh!¼¥º1óóUEž§cic¬Ð»»ÑËs?h;iµ¬-nw;4as€Ð2½½Y~½zYÑY2Ê»ÑØØ½Ü˜½Yؽ-;ÃhkkÅżiµ;;;;l;c4¼cl§Eþq¢¼44ii;g;;g4jxí4!nh-¬Xicw ÐÈçf¼Ãfc;E1íÛ÷÷ fgkÅ7Æk;§EUóUUE¢§cµ!i¤; 2ËËÐsÊ2Ê{ËÊÐÆ? kk›µ;lkЀÑzÜÜܽzz½2ËsË2»»Y½z~z½½Y2ngÍ¥÷4›hh ?hk{ܘ kwlg¤çç444i;;;aÈÐÐ?77Æ?7€hj¢u4ii!wakËz˜Üzz½77€Ð -kÆÈk´´´? !hkkÅ?j}.µ;;;.liiž¼gl§1þq÷¼ž4ii;gi;gjoíí4!n´--gcw Ðk4fox§¤;ã1ÛÍ÷¢ jgkÆ7Ʊ´lj1UóUUE¥cµwig;ÅÊ€sÊÑÊ{ËÐÆ? kk›µ;çlk±ËËѽÜÜ~~ÜܽÊËË{ÊÊ2YY½½½zYY»µg¥÷4-hh Å-´Ë~˜Y?k;gçç44ž4i;;!nÅ7?????±Ð¬§¥u4c;!w› s½ܽÜÜܽÐÐË€ -´Æ kÈkh? !hh´ ż;µ;;;.;;i4¼gl§Eþq¥o44c;igi;ižfoíí4!›´--°ccÈ7k4¼oçc;E1í ¥ í§¤ÈÐÅ77klfEUóUU1¢§cµwicl ÊËËÐËÊÑ2{{Ê€7? Èkaµ;ç;ȱ€ËÊzÜÜÜ~ÜܽÊËË{Ê2ÑYY½z½ÜØYY2niµ›¬?7hclnl!lll;;¤Ã§¤žÛ8ˆ8¶x4¤ciicii¤§ÍxžjÍuçi¬´n!nÅ h!cžj¼çç8)¥ÃÍxiÅб ›-; qóUUUUU÷fl;i.! ½YÑsЀѻY~zÑÊѽÜÑË7kn;a€ÊÐ˽˜~ܽÑÊÊ2»»Y½~½Y½~Yh!§¢q;n¬ 7ÅkYÐÅha!iigcç4ž4ciici;¬Ð±?Æ?Æ ÆÆ;÷ºj4çii;µ нÜzܽÜzÜY7kÅ? ?Ð7ËÐk€7µ›-?7¬c§!n!;!;l;!ç¼§çÛ8ˆ8ºx4cicici;§Íçf}uçiXh´µµ?s h!iž¼¼4ç8)¥o ÛÍçiű± -a;ÛãóUUóUU÷¼l;ii;ÈYYÑÐ7€Ñ»Y½z»Êѽ2Ë7k›!a€»нVÜzÜ»2{22Y»ØØ½ÜY½½Ø-!§÷q;µ¬È?ÅÈYVs ¬nw;i¤¤ç44cic¤g;h7ÐÆÆ7Æ?ÆÐÆ!¥¶jžcgi;XÈнÜÜzzÜÜzY?k ? ?ÐÆË±kËÆžµ›h?ÐhclnXll!!l!;ç¼fçÙ8ˆ8ºoç¤gig¤iiçjÍxj}uçgh´nwµ?ËÅh!i4¼f448)¥ÃÛÛÛ}i Ð7È›a; ãóUUóUU÷fl;ii!k½YÑsÐÐÑYY½½ÑÊ»½ÊsÆkal›€»ÐÐz˜½zYÊ{ÊÑ»YYz½Y½˜Ü½¬!j!!nk 44!µµ!wµ!!µ!ciiç¶®º¼§žiicccg4j§!µi¼¤wa!whÈ´k´¬µ;;iUþ1 ÷¥¢¢  ÛÍk€7ƱkX4¥UUääºu¼çiiµ ËÊÆ-›-kÐлYYYѽ½Ê¬›»½ÊsYzÜÜzؽY»Ñ»ÑYYØØØz»Üé´µ4Ã÷4;.laÅʘé€k k›;i4ž4cig¤¤µ?{2{sÐ7Å?h¼¥Í¼žç¤gl›ksѽ½z~~½VÑÅ--ÈÆÆÑÊY€ÆÅ¼!›k 44;µµlww!nwg;;祮¶¼4ggigcg4jͧwµg¼¤!aµlw¬ kkk¬µ;;;Uþ1ÛÛ ¥¢÷ ÛÛÛÍk€7?ÐkX4¥UäUä¶Ão4i;nÅsÊ7¬›-kÐËÑYYY»½Ü½{--»~ÊËY~ÜÜÜz½YØ»»2»»ØY½½zYé˜Ykµ4u÷4;.lµnXÅ2˜éÐÈ ka;;44žž¤i¤cccµ7Ë2{ËË77 ?hj¥Í¼c¤glakËÊz½Øz½é» -›ÈÆÆÑ2Y€Æ j!!akk44!°!!!wnwgg;;¶ˆþ¶jžiiiiccgçjflµg§c!›;w- kkkhµ;i;¤Uþ1 Û ¥¢ ÛÛ¤kÐÐ?Ðk4¥óUäUUºÃo4iin sÊ7-a-k±Ë{»YØY»z½½Ê-›»~{ËYzzÜÜ~½Y»»2ʻؽ½½zYzVkµ4!nk?hc¼g!!;w;i!µ!lw!cU¥f¼cçggcgcžo͵›a›µaanl;;h k-n¬h; 8U¥ º¶ºººººº¥º÷};›È?µhncó88Uä1¶ºº§waÆÊ€ ›!;ah´È7ʽ½Ü½Üzk-½Ü½Ñ2ÔVØYØYYY»2»YYØØ½½zØVzØ´Xçuͤžžn€˜é±k?kh-µ;iç4žçgicç!k€YY»ÊÊË?77! Ãjçcci!È7»zz~²½z½7X!nkЀ7Ë€a!nk hcjg!;;iw!;w;cU¥fo¤çiiccc¼n›a-µµ-n!!;´ ´-nhh;÷8ä¥ qº¥ºººº¶¢ ¶÷};›È?µhµió88ää1ºq¥Í§!a72€ a!;wa-k 7ʽYÜzÜzÈ-½ÜØÑјV½ØYØY»ÑÑ»YؽzzØV´Xç§Ãͧccn€VVk k´¬X!;içžcicgç!´ÐYØ»2{Ë?77!Í Ãfçc;!µÈ»½½z½Yz½7µ!nk€€±Ë€a!µkÅhi¼c!wlw;iX!;!w;¤Uº¼¼gçgc¤c¤çžoÍ}¤µ›a›µ›a!!;h k-ahk; 8U¥ qº¶ºººq¶¢ º¥};›k?µhni88ää1ºq¥Í§l›72€ ›w;wn-´ÈƽYܽÜzkhzØ»ÑY½YØ»YY»2»»½½½Ø½VÜYhX4c° Ålç;ww!!iç§žfjjž44E®Íjli;i¤c¤¤¼Í¢íçXhhµ---›-µ!cµ¬kh¬hkÈiÃE1xÍxuíÛííí º¥ž-h›µgE8)8óºqE1qn?ѽY{k!;;!;c.k{2zؽŬ{Y»½˜½½½YYYYÑ»YY½½½½½Ü˜˜Ükh!f§o¼f¼4xÍi7z7È´kÈkhµwig4ç¤cgi;!nÈË»YÑ»€h4 u¼ç¤ii!a Ð2Y½½½zÆwi!n ÆË2µ4i° ÐÅ!§ç;!!!wwiž§xf444çE®}j!iic¤¤¤¤žxÍ÷íçX´¬µ--›››Xlcw¬kh-hkÈc¼E1Ûx}o}íí º¥4›ha°¤Eä)8ó¶ã11qµ?ʽYÊkl;;w;¤.k{ÊzY½ hY2Y~ØYYYY2ÊY½Ø½½½Ü˜Ô~kh!ffo¼§joÍi7Ü7kkkkkh›wicç4cciciln sY»Ñ»Ês-ž u¼žççg;lnÈs»½½z½YYÜÆwi!µ ÆËʵçiX ÐÅlç;w!!wi¤§xfž4žçE®ͼ;i;¤ccc¤¼¥çX´hn--›--µli-k¬-¬kkgoE1ÛÃ}oÍÛíííÛº¢4›hµ›°c1ä)8ó¶ã11qžµ?ʽY{k!.!w;c;k{Ê~Ø~?¬Ê½Y2½˜˜½½½Y½YY2»Y½Ø½Ø½½Ü˜˜ÜȬw4inÆÆnc;wµ°!;ÃÃÛÛíxº8÷g!iccc¤çfoj j-µwXµ›h¬aiXh¬¬hhnguÍçcçžccçfožgiç¼§akµµ!;i§ºä)Uº¢ãóó i¬Ð2ØÐkµ›¬a;§4´7»ØÐk7½YY~~2Ë»ÑÑÑ»»Ñ»YYØØØz½½½z˜Vzh´h;;§}¼§j§¼÷4Å~ØÈhhkÈk ´h¬a!cççiii;;w¬ÐÊYYÐËYY»ÐÃ}¼4ci!n 7Ë»½zYYܽЛ;!XÈÑÑÈižin?Æag;µµw;¤ÃuÛú8¥¤!iccccçfo§ f-wXµX›hhniµh¬¬hhngÃÃÍgçžcg¼žiiç¼§a µwl;ºä)Uº¥qU ;h7»ØØ€´Xa¬a;44´Ð»ÐkÆØYY½ÜÊË»»»Ñ»Ê»»½Y½½½Øzz˜V~´k¬;;ͼo§¼ 4Å~Økhkk kk--a!cç¤gig;lh7ÊYY€ËYY2еo}xç¤cg!› 7{Ñz½½~Øn;!XÈÑ» .cnÆ7ag;wµ°w.¤uÍíÛÍxº8÷c!iccc4fÃjÍÛ§µ-w°µX›h¬agµh¬h¬hn¤ÃÍÃcç44ccç§¼žgiç¼§a !li¥ä)亢qU i-Ð»ØØ€kµ›¬a;f4´Ðs»ØÐk7YY½zÑs»ÑÑÑÑÑ»»YYؽ½½½zz˜zhhh4ç;h7›l!µaµµµ;gccc4fxÃoí88¶!giç4§Ãž}¥í;›°µ-¬-nµ;›hh-kÈh!Ã;Íj;cž§çi;i¤ç;;;4-h--µwl;çxU8EqU¥ç›sÊ2»» -nµ°l4¼;h€Ê7?Ê»VéY7 ËË{Ê2ØØ½½½½ØØ½zzË;!hhiÍf4¼xx¶xÈܽ kÈ ?Æ?? k¬lcccicgi!-?{»»€?±ÑØØ?¤Í}u¼4clµ›kÆ»Y½ÜÑ»½s¬-waµÐ2h4ç;´?›!lwaX!µµ;ccc¤4ž¼xü8)¥!gi¤ç4§xâ.-Xµ-h-›µ;ahh-kÈ´!u;o;§§çi;gç.;;4›¬¬-µ!l;4xU8Eqó¥4-ËÑ2YØY ¬nµ°;ç4¼;hsYÊ7?½Ê»VéYÐ ±ÐËË{{ÑYؽ½½zYY½Yz~Ë;!hhi}f4jxxºokܽÈÈk ???ÅÅÅkhlciii¤cl-?ËÑ»s7ÐѽØ?Í}Ão4c!-k?Ê»Y½z»½½Ë¬-!µµÊhçç;h?-;!µaµ!Xµlcgc4ž¼oüí88¶!gciç礤秼}¥.›°µ---nµ!n´h-kÈ´wu;Ío;§çi;iç;;;4›h¬-µ!l;4xUäEqó¥4-sÑÊYØ» hnµl¤4¼;´€YÊÆ?½Ê»VéY7Å€ËËË{ÑYؽØz½ØØ½YÜ;wÅwiµµ;!-µ!µlcç44ç4§ÃÍ81µažcçc¤ž§ÍÍžÛ c°µµwhha›hµ¬kÈ ?k-;ooµl;¤¤cllicçi;i.›h¬-X!;;;i§º1ºE8ãÍi 2»ÊY½½?h--wc¤fjž;›ÈÊËØéØ?h? ÐËËË2YY½zÜÜØYؽ˜½ lg›-joÍÃí ¬~s ????7?777ËÆ›cc;c;;;hY2sÅÐY»½ÊÅuÛ}fž4çc;X¬?{»Ñ½½z»Ñz2hµgj¤çXÅÅwiµ°!lwµ¬µ!µa!444ç44§u}Û8EXnž¤c¤§ÍÍž ÷gµµXµwhhµnha¬kÈ??È-.xjµlµlçc4žc;li¤çi;ii›hh-µ!li;;º1ºã8ãÍiÈÊ2ÑѽÆh--wc¤jj;›ÈÊÊËY齘?-? ?7Ë{2YY½z½ÜØØ½Yܘ½ !c›-çjoÍÃíÛ¬Üs 7 ?¸7Æ777Æ›gžc;c;;;¬Ë½ÊÐ 7ÑYØ2 ÃÛu§žçc;µh?Ë22½~Ø~YÑz2hµijcçX? !;µµl!µ-n!µn;çç4žç44juu81µn4cjÍž ÷c°µXµwhh››´a-k ÅÅ -iojll¤¤ž§c;licçi;iiw›h¬-µ!l;iiºóºã8qÍ; Ê2Ñ2½?---cç¼j;› ÊÐYéØ˜?¬? ÅÐËÊÊYØzܽØY½YzVÈ!ci;µ-X;laµ-µ!nX;cç44ç¤cçž§u1¥¬gçç4žfo;jÃ;--°!wµ›h-¬-k?ÐÐÆh!4çiÃ4iccçccici.cgla¬hh›µliii;çÛEääóUÛn7ÑYÊÑ?Ȭnw;c4žc;nÈs2z˜˜kkkk ƀʻؽzz½Y½½zéËh!›-µiž§¼oË??7Æ???Æ??7ÐÊ{?wçžcici?ÊØ7 7Ê»sl¼÷Ûxx¼44c;µh7s€ÊYY½YY€Æ ´.uEni;°-n;!aXaµwn;cçç4çccçž4§uE¢µ¬cç44žfo;§x;--!w-h¬--k?б7¬!44.o4iigç¤cc;¤iicilahhha;;iiiçEU8óUÛ§n±»Y»2ÑË?Èhnw;c4žclnks{2ÜVkXkkkÅ7Ê»»Ø½½Üz½YzØzéË-!--µiž§¼xs??7Æ7???Æ777Ê{?çcii;?ÊY7È7Ê»½Y€;¼÷Ûüf4çg;h7ËË{»½Ü»Ë»sÆ h.ÍE§µ;l-X;laµ-lnµ;¤ç44cccç44§uE¢hgçç4ž§o;§x;--!w-----ÈÆ77-!44;Ã4iigcç¤cii¤i.cc!ahhhnµ;ii;içíãU8óUÛµ±»Y»»ËÆkhnw;i44c;nÈ€Ê2ܘVkkkk ÆÐ»»½~zz½Ø½Ø½˜sh!c;i;µlç4wn°µw;;iiig¤cççou¢ík ;çjjx¢ lwhha›µ;ikh--k?7Åh!çç-ÛÛífç4ž4¤ç4ç;X›-h›l;;;;!¼äþä8¥lÆ{2»½»½»7´hµ;i¤ž4l›kЀ»³V´´ÈÈk ?7s»½½½ÜÜzØÜ½½˜V~¬--µlçoÍÍ §wXhk??Å? ?ÆÆ€227´!ççg;›ÆÑ7?±Ê2½» 祢}Ão44çgln 7ÐËÊ»½7»Ê´ahXx¥çc;;;n;44wnµ!;;cic¤c44Ãu¥w´ lç§jžx¥ ;g!hhn›µ;iµh´a¬k?7?k!ç› Ûíj44ž4g4cçç.°›--›µ!;.;i!¼UU8¥l?2»Y»½Ñ7´¬µ;.¤ž§4;›kЀ»éVk´ÈÈkk?7Ë2»½½z~zØYܽzVÜh››nlçoÍÍí §wnhkÅ? ? ???Æs2ʱ¬l4;-7ÑÐÆÐÊ»Y½»Å¥¢}uxžçc;µ 7ЀÊÑØ{»2kahµx¥¤c;i;µl44wnµn!;;iii¤ç44§ÃÍ¥wk ;¤j§o¢ lc!h´a›µ;;µhk-h´ 7Æk!ççw›Û¼44444c4ç;°››-›µ!;;;i!xäU8¥;72»Y½»Æ´¬µ;;ž4;›k±sØéVk´ kkÈ?7Ë»Y½½½½½½Ø½½z˜éÜÐ-i;44-´!i›¬h-c;!!;i4fx}÷i¬ µi§¼xíãã;;ž;¬k¬kichȬkÈk´-wcž4w-!çu¥E¥ }}}¼ž4çççc;w°nµ;ii;ic;;¢þ)þ4h7ËÑY~ØË?kX;ic¤ç4iµnƽ» 7?ÅÅ??Ë»Øz½½½½zz~˜V» Èhha;§¢ ¥¥çlw¬hkk Å ?Æ7ÐÊ€ ›¤çž¤i!-7ÐÐ{Ê»Y2Ë}ÍuÃoç¤c!-?s€Ñ{{Å´2zË´k°§ÃµÃi;ç-Èwi›¬h-µiç;wll;4žžfx} Ûch aif¼xíqãl;l¬´¬kic´k¬kkk´›!gž4whwçÍ¥q¶ÛÍ}u¼žž4ç4çg;wwµXl;;;;i;;¢þþþ4´±s2ØY½½Ë?kXliccç4.µnŽVYk7?Å?Å?€»Øz½Üؽ½z½Ü˜V»Å khal§¥Û÷¥4lw-h´k È?Æ7s{Ë a¤4ž¤c!-7ÐÐÊ{»Y2w}Ãxj44¤iw›ÆsË22 h2Üд´X§xµuii4-´li›¬haiç;!!;;¤çžž§xu÷ ih µc§o¼qã;;ž;-k¬ki´k¬´k ha!gž44!h!çu¥E¶Û}}ͼ4ž4çç4g;wwµX;;i;ii;;¥þþþžh±s2YYz7kX;ci¤ç4;n›?Y˜2kÆÆÅ???sÑØ½Üܽ½½z½zVV2Å!khhÐËÆ?sÐ?h;§gi;;c4žc¤§ 4Xnn;4fuÛqã!ç;nhh i!-´´hn°!gjÍux¼}çl¬›!4f¥¥ºã÷uj§4¤gil!lw!;;i;;l;ãþU8 .?»Ñ€2Yؽ»Ðhµ;ciicçcl››~Ë?7Ð777ÆËÊØ~~zz½½ÜܽÜVY7Ë7?Ŭi}¶¥÷Û¥÷§g;!µhÈÈkÈ ÐsÐ7±ÐÐX;ggci!-ÅsÊÊ2ÊÊÊÊÅi Ã}¼§4g!´7€Ê2Ë›!Å»½7?-jhcl´h´ÐË??sÐ?h;§§g;;icç4¤§Û 4µn›i4jÃÛqã!ç;Xhh µc!-hhhaw¤jÍÍxÃ}!-al4f¥¥¶ã¥ufjçc¤;l!!w;;iiwi;;E)ó8 .?»»s»YؽÑÐhµ.giigçgl››zzÐ?ÆÐ777Æ7ËÑØ½~½zؽÜÜz½VY7€Æ Ŭc}¶¥¥º¢§¤g;wµhÈÈkk?7ÐÐ7Ѐ€µ;gcgi!¬Ås{{{2ÑÊ» i Í}Íxj4c;´±€{ÊË-!?ÑØÐ?-¼¬c!k´´ËËÆÆ±sÐÅ´;§fçi;l.c44c§ 4Xµ›;žjuÍ ºE!çia´h µi!¬hh´nXwc§ÍÍxx}ç-›!4¼¥¥qã¢u¼§ggil!w;;i;w;;;žE)ó8 ;?»»s»Yؽ27hµ;icicž¤;›§a½ÜsÆÆÐ777ÆËÊØ½~zzØz½zYÐ;kÐ˽zÑ»Y»sËË´§º¥Û¼ç¤¤ç4ç;4Ínµ¼ÃíÛºE;l4iak´¬w!-?khhlc¼¶¢í ¼§!µh››ijxí¶Eº Íf¤il°wµXµw!l;!!XilääóE¼›s»»Ø»½~{Åkw;gcç;›¶4ÐYsÆÐ77Ð7Ѐ{Y½Üܽ½~˜˜zzz½ÊÑËÐ7?ažqã ÷ o§žžc;-h´h ?ÐËÊ{ÐÐkX!;.lµ-?ÐÊ»2»½{h§¥ íu¼4žg°ÈÆ{ØhgXkY?Ë›Ãw.ksËzz»»Y»ssËh¼¶¥Ûo4c¤4;4}žµ!X¤¼} ºE;;ži›kk¬!l-?Èh´w;j¶÷í¼§lµ¬›nij}¶ãº Ã.lXwµXw!;;!!µilä8óEja€»»YY½Ü?kw;gc¤;›º4ÐYË7ÐÆÐЀÊYÜܽ½z½~˜ÜÜ~ÊÊÐ7?›žqq x§žžc;µ-hk´k?7ÐËËÐÐk°l;.l-?sÐÊ»2ÑØÊ¬§¥ íüž44cXk?{½Y´¤µÈY?ËaÃXw;ksËzÑÑY2sËË´f¥¥x4¤¤ççi4}žµ¼ÃÛºE;!4;nhk¬!!- hh;¼ ¥÷íÛ¼!µh›aif}í¶ãº ç;l°wXXw!;;!!µi!4ä8óEj›€»»Ø»½ÜÊ?´;cc¤clµ›¶çØ7Ð77Ð7Ѐ2YÜܽ½½½~ܽÜ{l›Ð½½2»Ë{kj11Eq¢íof¼o§Ãžµ!4¼xöEççf!hÈhw!-k´khk-X!i¼Ãx¼ÃÍqjh--µ!i4qºº¢j4;µnXXµX!;µwµl÷888UÛik€ÊsʽØY7hc¤g;µha¶;k ÐÐ?ÅÆ7ÐsÊÜz½Ø½ÜÜzܽ½»Ê2{sË?µcÛã ¢uüf4c;-hÈh´ÈsÑ{Ð2€Å¬nw!k?ÆÑ{ÑÑYÐ!u÷ }Ãfž4ç;nk€½˜Æi.wËYÊÜÑ;›;cl-7Y½2»Êk¼E1Eq÷ÍÃf¼¼¤fÞnXw4xxÃíÛ¥Eçç§!´kh!¬k´h´khµi§xo¼ÃÍã§h--!;4qºº¢¼ç;°µXµXw;µ!µl÷888UÛi €{€ÊYØY{Ƭc¤g;µh›¶;k ±€ÐÆ?777ÐÊYzÜz½z½Ü~z½»ÑÑ{ËË?XcÛq ÷}üfžc;›¬k´h s2ʱÑÐÅhnXwk??Ê»ËÊ»»±u÷ íuçžçlµ нV7c;!€YÊÜÑl›;l-7Y½½»YÊË{kfEEã÷íof¼¼¤4fÞnX!4¼¼Ã¥Eçç§!hÈkwl-kkhkk-µwi§xo¼uÍã§h--µl;4qºº¥¼4.µnXµµw;µ!µ;÷888Uck€{€Ê½YØËÆhg¤g;µhn¶;Èk±ÐÐ??Æ7±sÊØ½Üz½Øz~ÜÜ~ܽ»;¤4çi›77YÐÆnuEE1óóE¥ÛuÃççgµµ!uÃ}Í¥¶cµÈk›;lµhk ÅÈ È-;fÍ}¼f¥}Ã!-hµµ-!¼í¢ºº¥¼4!!l!µ!›µ;°;cþ)Eh´n¬7s€ÊÜÊÅnic;lµ-µ ÷÷ž-ËÆ??Ʊ€{Y½~ÜØ½½z½½ÜÜY»Ñ½½YY»Ð-c Û¥ oj¼xj4;µ-hÈkkk?€ËË€7 hµ!wk??ËÊsÊÑÑ çÛ Í}Íçžçi;¬ ÑV7ic¤½½Ê½Æ?;g4çi-7Æ{Y»Ð?µÃEE1Uó1¢ÃÃçç¤X!ÃÃ}ͶºcXkÈ›il!µh k -.fÍ}xf¥ }x!¬¬µX-!¼í¢º¥¢¼ç!!!µw!›µ!µ;cþ)E¬´›¬7Ë€ÊÜÜÊ?nic;!µ-X ¢÷4-±Ð7 ?ÆÐ€ËØ~ܽØÜÜY½ÜzØ»»½½YY»Ð-c íÛ¶Ûoj¼xj4;µ-hkÈhk?€{€ss7 hn!!k??€{ËÊY»kÛ }}u§44c;-?ʱic¤µzØÊ½Æ?;¤44;›77YÑ€7nÍ1ã1UóE¥uÃ礵!u}uͶ¶gµ k›i!µ¬ÈÈÅÈk -.¼}u¼f¢Í }Ã!¬hµX-!¼í¢¥¥¢í¼4!!!wX!›µ!µlc1þ)E¤h´›¬7s€ÊÜÜ2?ncc;ln-µ ÷¢g-Ð7Å?ÆÐ€{Yz~ܽzܽ½ÜzØYË´!;;;;aÆÅa4 ¥ºqqE1E1q¶Íí¼çi;waijÍÍÛ  ¶4§i›-hnçff;h¬-Åk È??a¤§fíí4lX-Xi¼x ¥÷íÍççgi.lll!!l!;ç8þäõ»7Èk›µ› ËÑÑÐh;i!µngÛ ¥÷i´7?h?s7€YY½ÜÜz½˜zØzzzØØYË?lí üj¼¼§ca-´k 7ÐËs77Å´n›kÅ ±Ð€ÐÐʵx¢Û Û}xf4.µ¬Ë˜Yaçç±V˜˜Ëh!;;;;-Å?až÷¢¶qãEE1Eãºxç;;a;jÍÛ ¥4i›-haç§f;´h-Åk??k ?µ¤f§ÛííÛÛ4lµ›µijxíÛ¥÷Û}}§çgi;;!;!!!!!;ç8þäõ27kk-µ› s2ÑÐh;i!°n¤Û }º÷ikÐÅ´?s±ÐØY½ÜÜz½½Üz½zz~YYYË7! x¼f¼¼jgµ¬hÈ 7±ËËÐ7ÆÆ´µ›´ 7€ssÐË{›Ã¥ ofc;µ¬V»aç4c!7˜V˜˜Ëh!;li!a??›4 ¥¶ºqEE1EãºÍx4;;›ij}Í Û¥4ia›¬›ç§f;hhh?k ?›cfjÛížlX›µijxí ¥÷}ççgi;ll;l!!!!iç)þäõ»7kk›µa €ÑÑÐhli!XÛ }¥÷i´Ð?h?€7ÐYYÜÜz½½z~˜YÐÈ-µl;Í1ºÛ¥¥ººEEEã¶í¼gµiÃ}í÷ã¼oc›-hµ¼§çw›!-?7?k Æh4xÍííÛ  Å›;ž}Ûí}uÍ}¼4çi;;;ll!!w;i 8)¢¤ ØÑ?ha!;-X;g;!!i›ç¼Ã¢q -777 ±»ÜzYY½Ü½zܽYYY½ØYYY€7µi§o ÷ }o§§}Íi!!µa-kÅ7ÐÐÐ7Ð ¬µ-kÈÈ??ÆÐÐÐËÈç¥ÛÍxf4ç;-л؛44X?7€V»7È›µl;ÍE1º¥¥ºããEãã¶íífgµgÃÍ}í¥ã¼oc-¬hn¼jçw-!-??? ÅÆkžxÍÛµ? ›.4} u}Í}¼4çc;;!lllww;i÷8)¢g?{YÑË?hnw;-X;¤;!li›Xç¼u¥qÛ-77± ÐYzzY½ÜzzÜܽYYYYØYØ»€?µi§Ã¥ }o§f}}§ilX›-kÅÐÐÐÐ7 hµhÈk Æ??бËk÷ Ûͼ§4ç;-7Y½Ë-礵 7€˜»ÐÈ-µwµl;Í1q¥¥¶qãEããó¶íͼgaixÍ}Í¥Eüg›-hX¼fçw›!›?7?ÈÅÅh!§4žxÍÛ §µ? ›.4}ÍÃ}}jžc.;!!l;wwlc 8)¥cÅ{YÑ?¬µ;›;c;!!;-µç¼Ã¥qÛ-Æ77 7»~zYYÜzzÜܽYYØÑÑ€?h›awg;!}EE1q¥¥¥¥ããEEEE1󺧵hioíÍ¢º çnh´µ!if4!??ÆÅ¬››X!4çç§}Ãu÷¼;¬?kXc¼ÍuÃ}ͼ§çç;l;;lw!;gºþþEja»ÊY½½Y2€Æk¬°!°l4°acf}º1÷j;›Å7ÆsÊzz½ÜzzÜܽػY»½YYYY»s?¬µ.ç§ÍÛü¼uxžgc;;!µ-kÈ????Æ??X›hh ? ±ËÐa§÷¥¥ü§ž¤kÐz˜7i4¤l;µ´ÅÊ2Ë7h-aciwÍEEq¶¥¥¥ºEEEEEóºj¬ioí¢q¢çahhµ!if!??7¸-›-X;4ç4§u}}¢o;¬?kµc¼ÍÃxÍ}¼§çc;;;;!!;g¶)þE¼›ÊË»½YÑÐ?kh°!Xl4°awcfÍ¥1¥¼in 7Æ€{~˜~½Ü½½~zÜzØ2»»½½ØYÑs?hµiç§Í ü¼}íÞgii;!-k ???7Æ?°a-hÈÅ È Ðs7n§ ÷÷xx§w´Ðܘcç;lµkÅÊÑ?h-µg;!ÍEE1º¥¶¥¥qEEEEãóqjhgxí ¥º1 4ahhnli§f4! ?Æ ¬n›µl44ç4§}ÍÍÃ÷j;h?kµc¼Ãoͼçc¤;;;;!!;iº)þEja2ÊY½ØY»s?kh°!l4ncfͶ1¥¼i›Å7ÆsÊzܽÜz½~ÜÜzÑ»Yk?khh›µc?;ç¶ã¶¶¶¶¶qºº¥ºqã1u}Û¢ ¶E÷X´hh;c§4§°›h-!ii¤4¤4çgfÃo¼xxÍ Ûc- ?h;§}¼ÃÍufžžç;;;.;!!!cž÷8óÛw7s2YzÔ˜zÜÐh›n!¤ww;g4ú¥ººi›?ÐÊzؽÜØÜz½Y2ʻؽØØ»Ð?haw;oÍÍu¼oÍíujc¤cilµhhhn- ÐËnaµ›h ? k ?Ðki ÷ uuÃjç?Yz»Ð-;ciig;;µk?khh›c?;4¥ãº¶¶¶¶ººq¥ººEEÃà ¢÷¥ã÷hkh;c4žž°›h›w.c¤ž¤4içjÃo¼o¼÷ ¬ ?h;¼Í}¼ÃÍíuf4çil;.;l!!c¥8óÛ!ÐÐË2ØzVÜÜYд-a!cww;¤4ú÷º¶Íi›?л²~½½zYÜzYY»»»YØY½Y»€?haw;cÃÃÍu¼xÍÃfcc¤g;lµh´¬›-kË››µ-k Å ´ ?бÈi¥ ÍÃÃf§ç?YzÊÐ-;i;gc;;µk?kh¬-cÅ;ç¶ãºººº¥¶qq¥qºEEä}ÛÛ÷÷¶óã¥4kk-lc44µ-h›!;cc4çççgçfxooxx÷ ç- ?h;¼Í}¼ÃÍuf4ç;l;;ll!!ž¥8óÙl7ËÊYz˜ÜzYÐh››!g!;g4Ãq÷¶¶i›?ÐÑØ½Ø½ÜØÜܽY»»»» 7Å´´›l!kg¤hi§ ÷÷÷¥ º¥ÛÛ¶º÷fÍÍu Û÷11÷fl¬hk!;ççg4fçi;cccç4g4çi;¤§¼xxjžfÃo›È7ȧ¼oÍÃxfçi.;ii;;;çcää1ç?ËÊÊÊÑY½ØV» -››µaww!i4ouÍ ¥çл½YYzz˜ܽ»»Y½½½Y»s?h-lgžfÃÃ}}}o§444ççç¤i-h¬nµkÑ hnµ-´ hÈ Èw ÷Íf§g°?»YØ w;w!..i  h´›lc!kgch; ÷¢¢¥ ¶¥Ûºq÷fÍÍÃí Û 11¥fl¬´h!iç4¤4¼çi.i¤¤4i4çi;c§¼¼Ã¼§x¼ž›È7Èc¼xuÃx§4i;iii.;;çgUä1ç?ËÊ2ÊÊY½ØV» -››µµl;çou ¢Ûç2½Y»Ø~ܽ½½YYY½½½Y»Ð?h›lgžfxÃ}}u¼fç4ç44ci-hh›n´ÐÑ hna›hÈ ´ È !÷÷f§cX?ʽÈw;!;;.i 7 ´´a;c!kichiÛ ¥¥¥ ¶¥Û¶q fÍÍuí ÷1E¥§;¬hh!.ç4¤4j4i.icçc4cç4i;c§o¼Ã¼4§x¼4›È7ȵc¼xÍíÍÃx§4ciiii.;;¤gUäçÆËÊÊÊÑYzؘ˜» --aµali4xà ¥çл½½YØ~z½½½Y»Y›7Ë?h-cçi;¼c?È›igž§x}Íío¢¥ xfo§j4¤¼÷¥ã14iwXa ›cçž4çc;;;;i;ç;!;çfžo¼fjjjg´?7È!4jÃÍÍͼci.cccccç4;÷ä)¢Å€{Ê»Yܘ˜½˜~дhh--aµ››µ!wl;!cÍ nнܽܘܽ½YØØØ~ÜY2€Å´-›XlgžçžxÃÍͼžžž44ç44nh h›¬ÆÐÅ-a››-h´kÈ´kka;ÃÛ¢Û xf4ž4ÜÑ?°;;l;!w-7Ë?¬-gçi;¼¤Åk›ic4§x}Í¼í¥ºo¼ojfí ¥E14iwX›È›c¼44çi.l;.iiç;!;çff¼§§fjch?7k!¼ÃÍÍÍxž¤i;ic¤ccç4!÷ä)¢Ås{Ê»½ÜV˜~VzÐhhh-hnµ››;!ll!gÍ cµ€½zzܘzYYYØØYzzYрŴ-›°;gžçžxÃÍÍož4žç444µhkh›h?ËÐ -nn›hhhk hkÈ›;à ÷ Û xç4žµ{~Ñ7µi!l;!-7Ë?h-wcçi;j¤ÅÈ›ic4§oÍͼ÷ºx¼o#4¤¼í¢¥ã1ž;wµ›Å›c¼§žž§çi;;ligiçç;w;ç§f¼ff¼¼ih??k!¼}ÍÍÍxžci;gc¤ccç4; U8¥ ËË2»½Ü˜˜½Vzдh´-¬µn›µlwll!¤Í n€zzܘ˜ÜzYYYØ›?7È-µ!gcç;hk-h›lgçfxç4Eqolç4cu ¥q1¼gg;i;µ°.çcç¤gil!wlccg¤i!;4ç4§oÃÃfžžiw-?7kw.xÃouuo4ci¤cç4çgj;!188;ËÊ2YzzzzéVËkkÈk-k-- kak± ÈkµµiÍ÷Í. Y½½~Ø»½½½Üzػʱ k-nX!.çcç¼o444444444;a k¬h?ÐË7k´-n-h´kkhhkhn4}¢ Û í¼žžfc´Ñ›;;;i!-űÈ-›!ccçž;hkhh›w;gçž§Ã44Eqxç§4cžÍ ¥qE¼cg;i;Xµ;çç秤ci;w!!icg¤i!;çžfxuü4žgw¬?7k;4o¼xuu¼4cicçç4gj;;88;7Ë{ÑYz½zé˜ËkkÈ´-h-- k-ÈÐÈk´›X;Í Í; ؽ½ÜØY»Ø½½½Ü~»{7 k-nXX!.çc4Ãx4ž444ç44ž;aÈÈhh?€7Èhh›-hkkkhkkhn4Í÷  o¼i´»Ëa.;i;!w- ±È-µ!i¤4;hk-h›w;cç4§¼44Eq¼ççgu ¥q1¼cc.i;µ.ç秤ci;!;iiigi!;çç4§oÃÃf44gw¬?ÐÈ;4¼xouu¼4¤iccçç4gj;!)8;ÐsÊÊØzØzé˜kkkh-hhhÅkak± kh›niÍ÷Íi Y½½½Y»Øz¬ Æk-aw;i4¼¤¬´ k-Xµ!;i;žžcjº1Eü4j¼}qã4!¤çf4ig4ç4¤ççcl!;i¤i;i!µiž¼¼f¼Ã4c;w›Å7?-l44xÍ}§iiçççÃi ãä÷7ÐËÊÑY½½éÐ´È ´¬? k7 ¬ ~s??7ËÆ;§¥º4È{ÑÊ~½YY½YØzz~~YÊs7 h-µ°µµ!iççž¼Ûxççç4çž4žcµÅÅhk72{±Æ ´-´hhkk k¬;Ã¥  u¼4cçiȽ»hl!l;wn- ?k¬aw;i4¼gX¬hkk¬µµ!igi44§º11x¼4jj}ãEž;¤çf4žcc4ç4çççi;w;ig;;;lµwcž§¼jjoÍ4c;!›?7 ›;4§xÍÍ.cçç44Ãi?ãä¥Ð€Ñ½½½é7kÈ k¬7È´7 - zsÆ?ÆË?;§¢q4kÊ2ÊzØØY½YØzzz~YÊ˱Åh-µXµµliççžfÛ¼çcç4444žcn hh7ÊÊ7?Åkh¬hhk´kk k¬;x¥ íÛ Ã¼4c4.Ƚ»hl!!;µ-Å?k¬a;;缤!Xh´ ´-µ!.ci44c§º1Ãx4¼jÃqã;çfci4ç4§cç¤çi;!!.cii;lXwcžj¼¼¼u4c;!› ? -;4žÃÍÍcic444uc ã䢯Ð{{2½½z½V7kÈ k¬7È´± ¬ ÜsÆ77ËÆ.§¥¶žÈÊ2Ê~½ØYØØ½~a- h¬hna!gg;!µ¬khh¬h-nX;igcͺ1¶} º÷Íx Ã4ç4¡4çccgi;›µ;¤¤¤ccçc;!µ›cj¼ÃÍÃoç;wXh kn;içj¼ç¤c4çç4ž4nµ1®þ-Ê??YÜÜY˜ 7h sËËÐÆÆÆ ÐÊËÐ7»Xçö 4h??ƱË2ؽ½½»{Åk›-›µna!icçfuíxžçcç44žžl¬ kk Ð7? ÈkÈkÈ k´hh´ç í ¥}j¼4µhY?!i°!l›µ¬ h-hµn!gg;!µhkkhhh-nµl;g¤žº1¥Í ¥¥¼÷Ãçc¤4¡4çc¤ii;›µ;c¤ccci!X›cç§¼ÃÍ}¼fçlwnh Èali¤çjf4¤çççç44§4nE®)¬{ ƽYzzØ 7h ÐËÐÐ77ÆÅ€±ÐÑ€çúÛ4¬{???лؽ½~½½»Ë?k›-›nµµ!;cçžf}ío4ççç444cl¬Å h?7€±7? È kk ´´´hç  ¥Íj¼ž4hØ?l;µw;›a¬ h-hµalcg;wµ-khhhhhnµlicçºE¥Í¶ x x4c¤çž§žc¤¤i;›µ.cg¤cçci!°›wcç§oÃuüç;wnh ÅÈa;gç¼f4¤cççç4ž§4›µ1®)-??½~Ü»˜˜ 7hÈÐËÐÐ??Æ sË77ÑXço¶ 4hË??Æ»½½Øllww!ah¬›lii;!µa¬¬¬h´h¬¬µ°!;gf ãÛ÷¥÷Ûo4¤gcç§ž4ç¤gi.annµ;cçççç;ah-w¤çžfx}}o¼4¤i!akkk¬;ig¤ç4çcççcgccž¤¬ }88§Ð{ÐÊYz~zÐ ¬µh 77±€ËsËËË{Ь;cÃ}çÈÆ7? Å€Y½½zÜ27?Åhh-a››µwgcçxux4ž44žž4žçinkÈh ÆÆ77?? khkÈÈk´´khl§ÛÛ ¢ºÛÃo§i.Å?µ;!;c!;;w!nh¬›wiii!n¬¬¬hhh¬-a°!;g§ q ¥÷÷ o4gccç§çcci.›nnw;i4ž4çc;›h›wcç§oÍxxci!a´´k-;gc¤ççccçcciç4¤¬È)8j€Ê7{Yܽ½˜ÐÈ? hµh Ð7±7€ssËËË€27¬;cuͤ Æ7Æ k €ØØØzÜ»7 Åh¬-a››n!ggç¼ux444žžž4inkk´ÈÆÆ77Æ? k ´hkkkhhkh!§Û÷qÃxfž;. ?›;!;i;;;w!nh¬n!ii;!µ›¬¬h¬hh¬-aX!lg§÷E Û ÷¥ Û o4gcc444cciiiannw;iç4ç¤l›h›wcç§oÍ}oocila´kk›w;ig¤ççcççcii4¤h Í88ËËÐ{YÜ~zsÈÅ hnk Ð7ÐЀÐs{Ë2Ьl¤Ãí}ç 77? k €Y˜w;..;µ›µa!;ii;l!°Xn-¬-h´hh›aiÃ÷¥¢ ¢¢¥o4iic4§4çci;;wµl;ç444ç;aÈk-;c4žoÃÃxjc;µ-hhh!iggiç¤gç4cciic-Ð.1äEkÑÆ€»˜7ÐÐkkXah Æ7?Æ777˽ÑÊË?n4x÷ík Æ?Åk?нÜØ½ÊÆÈkk´¬›---n;;c4xü4ž4§4chÅ?ÅÅ ?ÆÆÆ k´´kkkkkkkk›c} º }Íx¼¤4g-¬!;lwl;.;µ›a!iii;l°na--¬¬´k-aaco÷ ¥ ÷¢¥Ío4cic4§44çci;lµwwiçž44çiakk-;iççoÃuç4;X-hk-µ!iigiç¤cç4çiii¤c-Ð;EäEÈ»7лVV?7дkah ?7?Æ7Ð7˽ÑÊÐÆ-4¼ í!h?Æ? È?sYܽ½½Ñ?Èkkhh››--µ!;c4x}¼44žžžgh???? ?77? kkhkÈk´kkkkn¤u  º÷ÍÍÃj§g›h;.;!wl;i;µ›µnici;l!°Xa›¬¬¬kk-›nco í ¥ ¥¢¥¼žccçç§4ççg;lwµwwižç44;akkh;içoÃ}x§4¤;X-hh-µw;gci¤¤c44çcic¤c¬±.E8EkÑЀY˜77€kk°›- ?7??77ÐËY2{Ð?n4x íwkÅÆ? È?€Y-wll!X;°liiii;l!µ°Xn›-h---›!c¼ºã¥ üj4cç§4ž4çci¤ci;iiicç44cw-k X!i¤žxÍÍç4;n¬´´-µl;;;;ic44¤i;¤ç°7hÍUU;ÐбÑÜVY7{ÊÅÈ-››h ÅÈk ?Æ»2{s7Å›icÍÛwah? Ʊ~½»{Ðk›hhh--¬h¬´›lç¼uj44§f¼f§§4c!´7±Ð? ??7?Å kkÈ Èkhhhh-l§Û÷ u}¼cçÍ;-w;a--!;l!X!°l;ci;;l!µ›-¬h-››wçoºq¥Û ͼ¼§4cç§4çcigi;i;gcç44¤w-k ;icžxÍu¼ç;µ¬´hhnwl;;;;igç4çi;cç°7hUä;±7лÜVYÐÊ2?È-››hÈÅÈkÈ Æ»2{˱ ›iÃcwµh ÅÈÈÆ~ÑÐk›hh¬-¬hhhh›!4¼Ãj4ž§§¼j§fç¤!´7Ð7? ?Æ? ÈÈÈkÈÈkh¬hh¬!§ Ãͼg¤ul›;wnn¬!;!!°;°l;iii;l!wµXXX›--¬››awçoºq¥ÛÛ ÃÃj§ç¤c4§4ciigi;i;icç44cw-kÈ;ic¤žxÍÍ}¼4;µ¬kkha;;;;ii¤4ç¤g;cçXÆhUU;77±»ÜVY7Ë{?È-a›h ÈÈ ??{YÊ˱Å-iç}Ûc!ahÅÅÈ ?±;gi;µlll;ici;;;wwwaa›-›-X;4ºEº÷ÛíxxxÃçççç444çc;iii;;gcçç44g!hÅh;g;iç¼uÍ}f¤- khµµ!!;;i¤ç¤¤c.ic!ÐiE8Ѐ?2˜½È´±Êkh¬-h ±€€ű2ÊsË7ÐkµwÍl;l!w›k ~é½Ë€ ›----¬›--7?h!4jfž¼f§4i›?ÐÐ?Å??? kk kkkhh-›h›ioí ÃÍÍíucioc;lnµiii;µlll;ciii;;wwµµXaa--›-X;çº1ã÷o¼¼Ãx§çççžžž4c;;ii;;ccç4ž4i!hÅhX;ciiç¼Ã}çw¬ k¬µ°!l;;;i¤çç¤.cç!бiã84€€ÆÑY´´7{Ëhh¬-h Ðs€Ð?ÐÊ2sË7Ðȵwç;;;!wX-k Ëzé½ËÐ -----¬---7?hlžjfž§jfžž4;›?Ð7Å??7Æ? È kkÈkk´hh›´aix ÷ x}Ãcio¤llµ›µiii;µlll;cgi;;;!wwµnn›---µ;çq1ã÷ üooç4cç4žž44çc;;ii;;34žçg!h?hX;ciiçjÃÍç¤w¬ k-µw!l;;;i¤cc;i!7Ðiã8ÐË?2YÈk±2Ëhhh›h ÐË€±Å±ÊÊËËÆÐkwžÍ;;;!°-´Åµgçgi!°;.ic¤i;;l;!!wµµµn-´-›µl¤º11¶ }¼§fÃÃx444ž¡4çç.i¤i;;i444ž4in?Ŭw!!µ;4fÃÍog›?haµw!!;;iccc44¤çç!?Ê-Íäx»È2½½!;µ7ÑkhkkkÅËØØYÑ»½½»ØYÐsÐha4¤!iiii;l!w°Ðzs? h››¬¬›››h€Ð7h!cçžfjj44žžç.µÈЀ±7ÆÆ7? Åk´kkk´´´h´kaix÷¶÷}xxÛc§cliiµniçcilµ;.i¤gi;;;;!!wµnn-hh›µ!gͺEE¶÷ͼffoÃo4444ž4ççç.cci;;i¤ççç44i›? ¬lµ;4§u}¼c-?h-Xw!!;;i¤ççcçcl?2›Íäus» 2˜½w;µ7ÑÈhkkk?sYØYÑÑ~Ø»YYss7ha4Ícwiii;i;ww€z€? ´-›¬h›n›hÐÐ7hc4žjj§444çiµÈËÐÆÆÆ? Èkkkkk´hhk ai¼Û¥¢ÃüÍcg;c;nµigil°µ;.cggi;;ll!!µXaµ¬h-›µ!gÍ¥EE¶Ûͼf¼xÃxž4žç44ž4çç.cgi;;i¤4çç44c›Å ¬l;4fu}¼c-?h›Xw!;;igç4ç¤4ç¤l?2›äÃÑ Ê˜½!;µÆ»Èh´kkÅ€ØØYÑ»½½Ñؽs€Ð´a4¤!iiii;;i;;ii!!iiiçil;!;ll°°¬k-n!io÷E1ºÍjj§ffžž43ç44ççççç44çc..;¤¤çç4¤´Èhn!w¬kkµ;çfjž ›aµXwl;g¤ç44¤4i¬Ë?g 1Ñ €Ü½˜µ¼çkÈhk? k7ѽ½˜½½z~Ø»2±È;4a°Xµ!;;;nÆË7k´kkhhh-a-k7Ë{Æhiç§j§ž4ž§çgwhÐss77Ð7?Å?ÅkkkkÈkkhhh Åh¤¥÷ÍçÍ÷¼çj¤4iµµ;i.ii!!ciiçcil;lll;w°X¬´¬!ià E1¶Íf§fjj4ž43ç44444çç44c..iç44hÈ´n!-´kµ;4¼¼4k›aµµµwl;c¤ž4ç4¤c¬ËÅg¥Eµ» ÐÜzVjç hk? kÆ»½~Ô½½Ü~ÜØ227È;žwµµµwli;aÆË7È´kh¬hh›a-k7Ë{Ƭwi¤§§fžžfž4c!hÐËs77Ð??Å??kkkkk´hh´hk hcº Í}fÍ¢o缞cç;X.i.ii!!cii¤c;l;!;llwµhk¬µ!iÃ÷11¶}jf¼f444ç44ž4ççç44çc..ig¤ç44¤wh kn!-kkµ;ç¼¼4k››µµµwwl;g¤444ç¤c¬Ë g÷E»Å€z˜¼ç hk?ÅÈ7»~YV½½˜ÜÜY2Ê7 ;4wawµµµ!li!;;!;;iic;ic¤;;lll;;!wwµhk-wlix E1÷jç44444žç444ç4¤¤cçc¤;!iccç¤ç;n-›°;;Xk?k-wižç!hhhhh›››¬›;iicccicçwЛiþÛÊÐÆØééhÃo§¤k¬h?Å´kÜ~V{VܽÜ€´nk-hkÈkh¬-¬X;!k7?kÈÈkkh-nh ÆsË7hµl.4§jo§ciµ ÐÐ7Æ77Æ??? ÈkÈkk¬-h›k€ÐX§ x¥x¤ç§44§i;!i;w;;;iiiic;;l!;;l!w!µhk-µwlio÷E1¥j4žç¡4çžç44ççç4g¤¤ç¤g;w;ig¤¤¤;µ-a;;nk?k-wi44lhhhh-nn--›;;gccigi¤¤€a;þÐ7Y˜é´uç¤k¬¬?Å´kÜ~˜ÊVÜzܽʀk›´-hÈkkh¬-h;!k7?kÈ kkh-n¬ Æs7hXl.4ff¼f;µ Ð777Ð7??ÅÅkkkÈkh-h›kÐÐjÛÍíx¥Ãcçj4g;!i;w;i;ii;içç.;l!l;;!w!¬h-lio E1¥jç4ž4444cç44çcç4c¤¤çci;wicc¤çln›a;;µÈ?k-wi44lhhhh-na-¬›;;gc¤ic;c¤ÐЛ;þÛ{7ÆØ˜é´Ão§k¬¬??hk{Üz˜{½zÜÜ€ka´-kkkkhh-hl;;;;c;!!;gçci;ll;;l!wXanwnµ;§ Eqf44žž4ççç4ççç44444cccgigiiiccic4;na-µcc›ÐÅk›!ak Å h-¬kha!;;i¤ç礤w›´Ø-)µ€ss~{}} }Ë?ÐÊVY»½½z˜Ü½Y»ÈwȽ½»22sÆÐË7Å ?ÅÅ k h-hµ¬±Ð?kk-!ž¤§4¤4í¼f4gla sÐ7ÐÆÆ?7ÆÆ? khh--µ›kÅÆ l ÍxÛx44§žçi;;;;;;ii;!!!!g¤g;!ll;;!wµµn!µµ;j Eq§4ž44çççç44çç444ç4¤cccgciiiggi4inn°›µ¤c›ÐÅk›!!›kÅ Åk´¬¬´ha!;iig4ç¤w-´ØhþwËËs~Ë} uÆÐË2˜Ø»½~z˜Ü½½2Èwkz½YÑÑsƱË˱? Å? k ´-hn¬Ð7Ð?kk¬lžç§ž4¤4í¼4c;a €77Æ?Æ7Æ??ÈÈ´h--µn´Å7 lÛ }}¼44žž4i;;l;l;ii;!!!;gc¤i;!l;;l!µnaµ!µµij Eq§44ž4çççç44ç444ž444cc¤iggiicgcçinµX›µ¤›±Å´›!!akÅ ´hhhha!;ii¤ç4ç-h½-)µ€Ë~}÷}{?7{ʘ˜Ø»½½Ü˜Ü½»kwkz½ÑÊ2s77c¤cçcill!licc;;;;;l!wµµ!°ij ãã§44444çžž44444ž4cgcccçç¤çççfgii;wižÃ››h›!;whµ¬k?Åkh-h›µ!;i;i.i.iµa-2»g1ÆÈÊzé~žuxµÐÐ{ØY˜ؽ½z½kµhÊ~½»Ês{»ÊsÐÆ7?Æ hµnhÆÐ±Å ´´;xÃfž§f§o¼§§4cwh 7? ??бŴ›naµh a¼ í Û}¼¼¼fžcccg¤i¤c¤il!wliçcic;;;;;!!wXµµwX°i§ EqÍ44444ç4444444礤c¤ç444çžfžgii!;ço-¬h-w;whn¬k? kh-h›µ!l;ii;;.iXµ-Ê2g1ž7 Êzéz4ÃÛxÐs{»½½zÜz½Üz{kµh{½½½»{{YÊ€Ð7ÆÆ7Å hµnhÆÐ±?È´hµ;¼Ãf§§xo¼žiwhÅб7? ÆÐ7Ð h-››µµh?7±a¼ ÷ }o¼jjžçgc¤cc¤¤¤;llwlic¤g;;;;;!!wµµwµX;§ EºÍž444444žžççž4444c¤cccç4çžççžfžc;il;¤¼›-h›w;w¬n¬È ´h¬h›µl;ii;i;iµ¬Ñ»i1ÆÈ{zéz4uxÐÐÊYYzؽ½ÜÜzzzØ{ȵ´Êܽ½YÊËË礤cçg;!lw.c¤cgi;;;!wµannµ!µcfÛqºÃ44ž4žž444ç4žžççççcç44ç44ç4fjž4iii ¢uiwli;!µn›--´k¬-nl;;;ll!;nµËYnÛбÊY˜V;uÃÍíÛ§k˻ܽ~ØØz~½zzYÐkµ-ÅzÜÜܽ½½½½YÊ€7Ð7Ð7?´µµh±sÐÐ?k¬h-acou§§x¼jj4i›?ÆÆ ?7?77?ha›¬nk ÐËÅ;Û Ão¼fççççcçg.!;w!.ccçgii;;!!µaanµ!cj ã¥Ã4žž444ç4žžž44ç¤ccç44çç4ç4jjfž4iic÷¥Íg;;;!n››h´È¬¬al;;;l;;;µµaËYnÛ¤±{Y˜V;ÍÃͧÈÑÜØzzØYz~~½zz½Yдµ-?~ÜÜz½z½Y½»ÊË7±Ð7± ´µµ¬±ssÐ?´hh-acÃu§§füj§çcw›??7Å ?7Ʊ±?haa-!ak?7Å;íÛ ÍÃü§4¤c4礤ççc.!;!.c¤cccii;;!waaµµwX¤f ã¥užž4žž44ç444ž4çç¤cgç44ççççj¼§ž4gig§ ¥Íi;;;!a-¬¬kk--n;;;l!;!;nasYn Ð7ÊY˜V;ÍÃÍíÛ§ÈYz½½ÜYYz~z~~zYдX-?½Üzz½½½4cçc;!;llig¤¤çci;i;!°-¬¬aµ!ç§ ã ožžf444cç§§ž4žç¤ç4ç4çg¤ç§¼§žiig;;¥qq÷ug;;!wahkh¬µ!;;l;;llµµ€Ë¬µYѽVw¼}ox›sYYzÜYY~ÜÜÜÜܽÊ7h-hk2ÜØÜz½ØÑËsÐÐ7 kn!¬ÐÐÐ?kh----hižç4foÍx¼§žg;!hk?? ÈÅÅÆ? h--h-ÅÅ?sЬžÃ ¢ͼ§xfžçg¤§¼4cççc;!;!lig¤cç¤;;i;w°--¬aµç§Ûã x4ž§§44cç§§4žž4¤ç4ç4çic4§¼§žigg;;¤÷qq¢Ãg.;!wµµhkh-µ!;;l;;ll°µ€Ê¬ÐYÐѽéwxu¼o›ÐËYY½VÜY~Ü~ÜÊ7h-¬´ÊzYܘÜÑËsÐ€Æ ka!hÐÐ7?kh›---hi4çç§¼}o¼f§žc;!¬k ? È ?7 ´››hµ- ?Ë€hžoÛ÷Ûxf¼jçž¼4礤çg;l;llicççg;;i;!µ›-haµçjÛã ¼ž4ž§§44ç4§f4444ç4çcg4j¼§žii¤;;c¢qq¢uc;;!w!ahÈh¬µl;;;;;l;µµ€Ë¬7½ѽéw¼}xx›ÐËYzV½ØØ~Üz~ÜܽÊ7h¬¬hÊÜYØÜܼ§44ç.l;lµ!;iicžci;i;!--hh-¬Xc¼ ¶í§žf§§žž4ç4f4ž444žžccjfcl!i;;¤¤Ã¥Eq og;!µ›- h!;;l;;;;;!!ws~k°?½Ð2~éµuÃÃ}Ë»½˜½ØY½zÜz~Ð h´k´ÑÔ»½zzܽYÊ2ÊÊ»ÑË?›h?? kk----¬µnuÃxx¼f4ci;lµhkÈ´ ?? k´-n!w¬77?sË ;j ¥}¼f§44žf}o§žç;lllµw.iic4ci.i;!--kh--°j ¶ífžf§§f§žžž4ç4fžž44444žžžccçžj§cwl;;;gu¥Eº¥Íx4c;!a›- h!;;;;;;!;!lw€½hͰÆY±Ê½éuuíx}Ë»zV½YYØzÜÜÜY€ hkkk»Ü½ØØ~ܽY22Ê2»»Ê?-h7?? k´---h-aµuuxü§çi;ln´Èkk Æ? h-nwh77ÆÐs ;f ¥}¼ž¼j§4ç4¼u¼§4žç;!l!µw;ig¤ç¤iii;!--k---°fÛ¶íff§jf§ž4çžjž§44444žž4¤çž§f!!i;;cÃ¥Eº Íx4c;!µn--kh!;;;;;;l;w!ÐÜk°Æ½±2~éuuo}íË»~˜½Y½zÜÜØÐ hkhkÐÑܽ½½½uÃo¼¤wµwµaw;icgc¤ic;;ln¬--h›g} ÷}§fff§§§§§ž44f§§f§f§§§§§ff§4¤çžç;;ii;§fo} ãããÛx4iw›È hµ!ll;;;!wl!i!z4!7ËËËÜn¤xÃíÍgÐ2Øzܽؽ˜Ê?k´k ´ÐY½z½½~zY»»Y½YØØ½ÑÐÐËÐ ÈÈkÈh´´-µhhwçoÍÃu¼f4çci;wµ›nh Ð k¬-¬›wl!›ÆsÐÐsЛcÛº÷í}fjj4jxuü§c!Xµn;igiç¤iii;lµ---k-ià ¥u§fj§§§jj§44f§§ff§§§§§fjf4cçžçi;gi;çjo} ºEq ¼4i!-k hµllll;!!wl!i!{zµ!±ËËsz›g¼ÃÍg±ÑY~zؽY½˜ÑÆk´k kYz½½½Üz»»ÑY»YØØ»7ÐËÐ Èk ´´h›µhhw4¼ÍÃ}o§cii;!nn›¬ ±È´---nµl!aÆÐÐËЛ ¶¥ü§§ž4žjÃ}uofc!Xµa;iiiçcii;;ln-¬-k-ià ÷u§§j§§§§§§žž44§§§§§f§§§§jfj4ccç4ci;ii;joÍ ãEq ¼4g!›kÅhµ!l!!;!!l;il{~4l7ËËÜ›¤¼Ãíc±ÑÜz½Y½2?kkk ksY½½zzuÃu¼iaha-h-;ccicc¤i.;l!µa›´-;}ÛÛof¼§¼¼f¼fj¼j§§§fj§§§§ffo¼f¼¼fžç¤ç;¤çcii;cžf¼ÍÛ÷ÛÍ¥¥¥÷íf.µh-!l;;;lw;.!ÑÊw;kÊYY€;;oÃo}Íf7ؽܘ˜z½½Ü kÈ h ?€»»Ø22»27€ÐËÊs77 È ?7?Å??hkÈk›i¼ouxx§4g;lµanµ´Æ khhkhnµ°h77Ð{Ê?w}¥ Ãj§§çž§ÃÃÃujcnh›-hhiic.ccci;;l!n››´-;Í Û¼j¼§jff§§§¼f§§§fj§ff¼¼of¼¼§çç;çci;;gžj¼u¥ Í¥¥¥¥íf;°´›!!;;il!;iw»Êwik½Ð½Ë;.ÃüÍf7½½Üܘ˜Üzz~ËÅkk hÈÆs2»½ÊÊ2»Ê{7ЀËÊË7± È ?Æ???Åkkkk-;xoÃÃxçci!µnµµXk7?kh´k´›Xh7ÐÐÊ{?wÃ÷¥Ûuff4žfÃ}uüinh›-hhicci¤cccc.;l!µµ›´-; ojj§jjfff§¼f§f§§§§§§¼¼¼f¼¼§žçç;çii;;c§joÍ¥ÛÍ¥¥¥¥í§;X´-!l;;il!;.c!»2;w ÊØ±ØË;.xÃo}ͧ7½½˜½ØzÜÊÅkkÈ Åhk?sÑ»½¼xÍÃc›´¬´Èkµigggc¤çgi;;wwX-›;í jžxx§¼o¼§¼§f¼fff§§§§§žf¼x¼o}}x44;çiw;icç4cu íÛ÷¥ }nµ!;;ii;;;gçl½Y´;n;ÊYÐÑȼc}ÃíÍŽ{VVV˜zØzÜzÜs È ÈÈÅ€ kÅ?7ÊYV½{Ë{ÑËsЀ2˜»±± kk?ÐÐЀˀÐ7Èh›;j¼ÃÃjç;;!a-›wnkË7?Å k›°kXk?7ÊØÊ-íÛíuÃu¼§ouoÃÍuc›k-´ hµ;ggg¤¤ççgi;;lw-›. f¼o§¼x¼ffjf¼f§§§§§ff§§fj¼¼ouu¼§44;çiw;ccc4žž¤žÃÛÛÛ ¥ }nnw;;ii;;w.iç!Y´!›;»Y€ÊÈogoÍÍŽËz˜VV~ؽÜÜÜskk ÈÈÅÐ?kÅÆ7{VØÊ{2€Ë€Ð2Y±ÐÈ´k?€Ð€ÐÐ7Èhn;joÃü4i!!a¬nwn´Ð7 ´›´k?7ÑØ2›§í}}xo§xüÃ}Ãg›k-´Èhµ;ggccçç¤ii;w!µ°-›ií ¼¼Ã§¼oj§¼¼f¼fffjffjffffo¼¼}uož4;¤i!;cccçžžcž}ÛÛ ¢ Ínµ!;;ii;lw.g4wYh;a.2Y€ÊkfgÛÃíÍŽÔ˜Vz½½Üz~skkÈ È?ÐÅ´Å?Ð{YÃx}x4lan›h-lgciiigccccgg;;!µh›¤¥Ãf§§§jjj¼Ã¼¼f§§ž444çç¤gç§§jj¼¼4;iigi;cç4¤!wcjxuuÍž;;¤iicicclcža½»Ë´›ÅÑ?2»4fjÃí} Yʘ~˜˜˜½é7űkk? ?Å? kkkh7ÐËÊÊË77ÐÐ{ÑY€ k-ah?€72»{ËÅX;§ͼf¼f;µk? khÈ?»ÊË7µ -kÆsYY€! ÃÍojf¼xÃÃxxžl›››-›!cgiiigccgccc;l!nh› íÃff§o¼f¼ÃÃjf§4žžçç礤çffj¼x¼ç¤;i;gi;iç§!wcfoÃÍÍÍÛÍi;ciic;i;c4aØ»k- 2 ÊÑ4§§Ã} Y{V~VV˜˜~VzÆ?7kk? ?? khkhÆË2{Ë7ÆÐÐ{ѽs h-a¬?±€77ÊÑ{ËËŵ;§uff¼iµk?Åk´È7€»{Ð˱X -wµk7ËY»Ð! ÃíÍÃffoÃÃxÃÃ4!a››-nlcciigg¤ggigi;;wnh›÷çfo¼¼xüf§ž444¡çc礤çf§jox¼§4g;iig;;iç§çlwcfoÃÍÍÍÛÛÍ;i¤iii;glg4›Ø»Ë´› »Å»Y4f§Ã} Y{V½˜V˜˜~zéz?Å7Èk? ??Å k´hhÍ}ü4il;!;cgggcggggiiii;µ›´XíÍo¼j¼f§¼f§jfffž44ž4žžçççgiic§¼xüç;;;ii;;¤j§§§!µl¤ž¼Ã}}uÍí o4çcic;¤i¤›ÑzY?±Ê»ÐÆY;4žÃÃ} Y{z½ÔVV˜Vz˜€´hÈkhk¬-hh¬---¬µn-h 7Ðs7€Ê»»{7Ȭ›µ- ÆÆ?ű±?±{{7k!žoo¼j§ÍinÈÅÈhhk?ÐÐsËh´--h Ðz»YkžÛíuÃÃÃo¼¼Ã}}}fçi;;µwlccgggiggigiii;µ›´Xž}üj¼§§ff§ffjfž4žž44çc¤¤;i¤§j¼}¼4ii;ii;;cj§fç!µlfÃ}ÍuÍ ¼ž4çcic.¤;¤›»z»± ÐÊ»ÐÆ½;4žoÍÃÍí YÊzؘ˜VVÜV€khÈ´´k¬-¬h¬-h-hµµ-hÈ7Ðs7€Ê»ÑË7 h-nh 77ÆÅÐ?Ð{{±k!xüj§ÃiµkÅkh¬h?Ð7€Ðhk¬ahk½YYk4Û}Ãuu¼¼¼ÃÃÍxf4i;;wµµlcgggicigggiii;µnkXÍx¼¼¼§fff§jjjžžžžž4çççcii¤§§j¼}jçii;iii;c¼§¼f¤!µl¤fÃÍÍÍ ¼44çci.¤ci¤¤›Yz»Ð?ÐYÐ?Ø;4žoÍÃÍ YÊz½V˜VV~Vдh k´k¬-¬hh--¬¬ÍÞc¤cg;;;;;cciigigiigii;!wa µxoooxx¼fff§žž4žžžžçžçccçci;iç4j¼i!iii;icx¼¼fç!›aµcçxoÃÃu ͼ§žccc44žž¤aлÊ{ÐИ›z-çç§u}Í´Yʽ½˜˜˜˜é~±¬n---h›a›››-¬¬h haX-kÅË»YÊÐ?´-››-´ 7ÐÐ?Å€2YÊ?µcf¼Ã}ži°-nµµk? ÐËÆh›´ ?YzË! ¼xo¼¼oÃ}Í}Þ¤ccgi;;;i¤¤iigggigigi;!wakµxoÃÃooo§f§žžžžžžçžç4ççççci;.çç4jožgl;;iiicx¼¼¼cw›aiç§oooÃu Íof4çgçcç44gaÐÑÊ{ÐÐs˜w-z›ç}}k»Êz½˜VVV˜~z7--›-haa›-›-¬¬´ h›n-k?ÐÑY2Ð?´›››-h ?ÐÅÅ€2»Æn¤§¼u};X›µX›k?ÅÐÐÆha´ÈÆ{Yz{!÷f¼¼jjxÃuÍogci.;;;i¤giigggiiiic;!!aÈüooÃx¼§§žžžž4444ççççgi;.çç4§ožgl;;iiicx¼¼§c!›acç§ooÃÃ} }ofžcciç44ca7ÑÊ{ÐËV!›½-çç}}Ík»Êz½˜˜V˜˜VÜ7hµ-›-h›a›--›¬hhÍo4cg..giicgg;iiiigi;ic;l;nkÍž§o¼¼ž§ž4444ç4ççççççç¤g;;lic4žg;;;;iiç§Ãu¼4;µh-X;¼fÃÍÃjfgçç4§fiµh±ËsËË{iÜÅç¤çÃíí-»Ê»z˜Vé阘z7-›¬a---h¬-h´Åk›wµn-kÑ»2s?´µn›hh´ 7{ʱ?ÆÐ€Ñ»€-w;g§ff¼Ã}f4!w!!X¬ÊY7kkÈÆË2Yzkx¥Û o¼¼f¼x}ͼ4çi;;ggiicgiiiiigii;g;l;µÈÍ4žfj¼¼§§ž44ç4çççççççcççg;;li¤4žž;wii;;iç§Ãu¼;µh¬;¼¼Ã}í}j§ccçç4fjžcµhÐÐËsËÊ{iÜ ç¤4Ã}í-ÑÊ»½˜˜ééV˜zЬµ›-››--h--hhÅk-µ!n-kл»ÊÐ?haa›h´´È ±{ÊÐ?ÆÐ€»Ñhlgf§¼Ãu¼ç!w;lµhÊz»Æ´k ?Ëѽ½kÃ¥ ÛÃoj¼¼o}}Íuxž¤¤gi;cgiicc;iiiggiiii;llµÈµÍž§fof§f¡4ž444ç4çcççççç¤i;lic4ž;wii;;iç§}uo;ah¬;jfoÃÛ}¼§4gçç4f§cµk7ÐËÐË{Ê;Ȥ¤4Ã-Ñ»½V˜é阘zÆ-µa-a----h-hh¼4çg;iiii;iiii;iii;ii.;;;µ´uçžž4žž4ž4ž4ççççc¤ccçççccgii;;;iiiccjoíÍÃjçw-h´›;i4¼ÃÃj§4ç¤ççž4;a-Ѐ€ËÊ2µl-˜igf2ÊÑz~VééV˜˜˜~ŵµ-----hh--hhkkh›nXµ› 7Ë€ -a-hh´k ÅÅÐ??7ÐʽYÐ hn;iig4j¼Ãx4;igi¤cX7»Y€ h?ÑYYÜˤ¥¶÷}o¼jxÍíx4çgiccci;gii;;iii;i;.;;;µ´uçç4ž§ž4žžžž4žž44ççççc¤ççç¤ccgiicžçi;;;;;gfoÍÃfc!-hhalgç¼Ãx§žç¤çç§ç;µ-ЀËÊÑl¬ggcfí 2Êѽ~VééV˜˜˜½ aµ--¬-hh¬¬hhhkkhnµµµµ› €€€?-n›¬h´´ ?Åб??7ÐÊØÐ hX;ggg4jÃ}x4;ii;c°?Ys ´?»Y»zËg¥¥ Û}x¼joÍÛxž4çc;iggi;giii;ii;;i;.;;;´uççž§ž4žžžžžç444çç礤cçç礤ii;icçi;;i;;c¼oíux¼cw-hh›lcçjxo§ç¤4§4;µ-ЀÑÑ;-˜±cggfwÊ2»½½ééVV~?nµ-¬h--¬hh-hhÃf44¤cgggcgi;.i;i;i;ii;l;;;!aw¼gcçççççç4ç4žç444çççcçccccccic¤ii.ç§ži!;i;ig¤4§f§xoxu;nhh-›!;¤fÍx§4ç444ç!-{ËË»Ñ?u;?zËi.;çâiÊÑʽ˜éVéNVk¬´hkh´kkkkÈ ??Å k›°hÈ ?7Èn›hkkÈÈ ?±Ë7??7sÑÐÆ h-;;;g4Ã}4iiicç4!?ÊÊÐÆÆÊYÊØ2µº¥¥ }¼xÃÍÛç44cigcgiii;ic;i;;ii;il;;;!-w¼cççççççç4ç44çççççççcccccccccg¤iiiçfži!li.iccž§¼§¼oÃ};µ¬khaw.¤fÍÞ§4444žç;µ¬Ês»2?Ã;?ÜËc;içÃí÷iË»ÊØVéééNéh¬hhhhhkkk´È Å??Åk-¬ÈÈ?Ækµn-hkkkÈ ?ÐËÐ??7s»Y±ÆÅh-µ;;;ižÃ}4;ggcç4w ÊÐ?Æ{Y2Y2µq÷¢ Ío¼ÃÍçççggcciii;ic;i;;iiiil;;;a!¼ccçççççç4444ç444ççccçcçcciicciiç§ž;l!;;3c¤4§§§oxÃÃ.µ¬k-awi¤¼Íx§žj4ç444žç!µ-ËÊs»»?Ã;?zËi.;çÃí¢;ʻʘé阘˜NV€k-hhhh´k´´kÈÈÛo§§cii;;c4ili;;;i;i;;;il!!°wžc3ççcçcçc¤44ççcç¤cc¤çcçiccci¤ž4;w;;.44fo§44žju§ga¬´¬›;c¤ž44žž4¡4çln ÊË»YµÍcs»Ël;;;¥çË»2½YܘVV˜VééY kkh k Å?? ?7±7?Å n´´-hkh°›-hkkkkk?7Ð7Æ7Æ7ÆÐÊËÐ±ÐÆ›nnhk-;4ç;;gii4¤n ±ËsÐs2ÑÊÊÈ4÷ ¥ ÍÃuÍÛjff¤ii!lci!i;;;.i;;.lil!!X!žccçççcc¤c44ççç¤c¤cçgcccci¤ç;wli;¤4jj§ç4jx§gahh¬›lc44444¡4žç;›ksÊ€»YµÍcsÑ{;l;;¥çËY2½Yܘ˜˜˜éé Èkh ?? Æ777? kn´k-h h°a¬hkkkkk?77Æ??Æ77ÐÐÐ?››n-´-;4ç;iiii4¤nÅ7Ë€€»ÊÊÊÈ4 ¶ ÍÃÃÛxf§;i;;gi!i;;;ii;;;!i;!!wçccççc¤¤ccç4ççççcc¤çcc¤¤ciciic4;l!i.çf¼f444¼Ãf¤ahhh-;cçž44žž4¡žžç;nkÊs»YÍcË»Ë!;;;¥ç€Y2zYܘéVVé³YÅkkh ÈÈ ?Å?¼j4;l-µç¤!l;;;;i;.il;;www;ccç4ççc¤cicçççcçccigccçççcçççžçi¤4fg;;.i¤4¼¼xf¤;c§Ã¼¤!µ-hkk›;.ggcic4žççžç¤;h±ÐsØcç{€!l;!}º4€»zØ~zé˜Vé˜Ü?kkkÆÅÅ?ÅÅ Å?ÐÐЀ7? È? ¬-´´n›hh´hhhhhk ??Å?ÐÐs±7? ´h››´ ?;;;cilgµ?7772»YY2a§x¢Ûu}íÛÛx¼í4;;›ç¤!!l;;;;ii;l;;wlccçç4ccggg¤ççcççcicc¤¤ççcççcç4çig4§g;;;.ž§¼Ãfç;¤§Ã¼çln›¬kk-;;ggccccžççž4c!hÐÐ{ÐØc4{€Ëw;il¤Í¶4€ØÑz½~z阘Véé½ÅkkÈÆ Å?ÅÅ? ?ÐsÐÐ7ÆÅÈ?È--´k››-h´hhkhh´ ?Æ? ÅÐËË€77? hh›-´ ?X.;;;lg4X?77?7ÑY½Ñ2µ§x¥ íuÍí¼jž;l-çíç!!l;;;;...l;lww;cç44çccgg¤çççc¤cgicgcç™c4çç4çig4g;;;i¤§¼o§;¤§Ãjwµ›hk´-;;cicccc4žççž4c!¬ÐЀiçË€w;;!¤Í¶žÐYѽ½~zV˜˜Vé˜Ü ÈkÈ? ???? ??¥gÍqkx4;c;;l.iiii;;lX;iççççcc;i¤cigiccçc44çç44ççgçç;;ic¤4f¼ox¼žçggç§i›¬hh-›µ!;;;¤cgç444ikYÊËÑY2íxlн2›;!i¤ ´YÑY½ÜV˜éé³é½?-È ´k ??? Å ÆÐËsÐÐÐsÐÐ haµna¬--¬h´´hh´´kÈ È kÈ ????ÅÅ k-h ?k!;w!lµkÅ ?77Ê{˱?hwc§jf¼Í ¢ ¢gžu§EwµkXÃÛ4;i;;;.ig;i.;;Xw;cççççc¤;;c¤¤g¤iccçc¤44çç4ž4çg4ç;;ic§oxx¼žcciçj;µ›hkh-a!;;;ç¤gçž44gh»{ʽ2ío;7½»niµ;¤ ´Y˜»YØÜ˜VVéé³éN½7hk h Å??? ?77€ssÐÐsÐÐ h›µaa--¬¬h´´hh´kk kÈÈ ?ÆÆ?Å ´-h ?´w;µ!!;k ÆÐÆÊËsÐÆhc§§§j} ¥ ¥gu§ãµwX´µÃ4li;;l.iiii;;lX;icçççcc;;c¤gccçcçc3çç44çç44¤g4ç;;.cžf¼Ãx¼4¤ciçj§;X›h´¬-nµ!;;iggcç§444gkYË»»ÊíolÐz2›iwi¤ ´½»ØÜVVééé齯¬k h Å?? È ¥4ic¤ºµ?´Åhc¼ž;l;;;;iiiiii.l!iççç4çççl.ic¤ccçççç¤ççç4ç44ž4§o¼§;;iç§f¼o§ci;cž4;µµ-h¬--nµwlicç44çcig;k»€ÊYÊÍg½»-gl!°§§nÑ»»z~˜éééNЬ-hhkk Èk ?7€Ë{ËËб?hnµµ-h¬hhhh´hhkÈ ÈkkkhhkÈÈ khÅ? -hÈÅ?kw.µ!!;h? ±ÐÆ7ÐsÐ7´cci¤§uÛ¥4cgc¥›Åh ¬cj4;;;;;;iigiii;!liçç44ççç;.g¤ccccçcç¤çç4ç44ž44¼¼f;;iç4f§¼ofçi.cžžiµ-h--¬›µ!liicç44çgii!È2ÊÐÊYÊÍiн»¬i;!XnÑY»zz~Vééé7-hh¬hk Èk ÅÆÐÐËË{Ë€7Åhnwµ-¬-hkhhhhhkÈ k kkhhÈ kkh 7 ¬hÈ?Ækw.!!!kÅűÐÐ7€Ð7´cigf}¥4i¤¤¥a?´?hc¼4;;;;;;iciiic.lliççç4ç¤liggccgcççcçççççççç4ž4ž§¼¼j;;iç§j¼ofciicžçiwn-hh-¬nµ!liccç444çgii!´»ÊsѽÊ}g±½»-g;w!X§nÑ»Y½z~˜˜Vé³VN±hh´¬´kÈ È ÅÅ¥ui;;µËËs ç4i;;;l;;l;;;i;!!liiçççç¤g;iig¤cç礤ç44ç4žžÍÍujžçf§f§§§c¤icçi;a--nnaX!.i4žçççg;;´ÐYÊ»½iÆYØ ;i!hl;!ÊË»½Yܘ˜éé阳VËk¬h¬h¬hhkÈ ??7Ë{Ë€Ð?h›-hhhkk´hhhkkkkkk¬¬h´hhh-nÈ7Æ´´ 77Èil!!!µk?7ËËÐÐÐ7?´n!wwij  ui;;Ín€{Ë wç4g;;;;!;l;;;i;!w!licç4ç¤g;;iicg¤çççç44444žÍÍu§4ç§¼§jf§žciiiçcila--››nX!.ižçççg;;!h7½Y½{i?ØØk;ilhl;l{Ë»½Y½˜éééV³˜s´¬hhhhhhkÈ Å??±ËË€±?h›µµ-hhkkh´hhh´kkk´hh-h´hh--µ 7?´hÈ7± ilw!wX´?7€7бÐ?hnl!!;¼ÛÛ ui;;}a€{€ ç4g;;;;;;!;;;i;!!!icç4ççg;iiicg¤ç¤cççç4ççžÍ}§ž§§f§f§žçciicilµn--a›aµ!.içžç4çg;;!h€Ø{»YËiÆYY ;;wµh!;lÊ»ØØ½˜VVééV³Vsk---hhhh´k í ž;çw-½»?gc.;;!!ww!;l!!lw!l;;.iccgigcc¤cccç¤ç44444§jž§§oxox¼§ž§¼j§ž4ccicc¤c!X-¬›nna!l;¤j¤ç;l!!a´ÑÐ2ÑÆ¢ºc´ÊY7µ;;lµ!!2Y½½VVV³éé˜2?Èk¬h¬›a--hÈÈÅÆËË7?´›nµh-hkhkhkh´k kk´khhh´h-›a-h 777ÆÐ wi;l;XahÆ7sʱs7Æ ha›!X;o¥÷  4¤;4!h½Ñ?ic;;l!lww!!!l!!w!;;;i¤gcccgggcccc¤ççç44ž4§f§§§oÃxÃxj4f¼fž4c¤cçccX--anawl;¤§çç;l!wn´2ÐÊÑ?÷ºckÊYÐ;;l!!Ë2{ѽ½˜˜V˜éééY€?Èkh¬-›››-h ÆÐËËsËÐ?k-nX¬hk´hkhkh´k kkkk´hhh´¬›a-´ÈÆÐ7Æ7 wi;l;!°µkÅ7ËË7Ë7?È´a›wµ;¼¥¢ Ûí÷žç;4!¬½»Åcc;.ll!ww!wll!ll!!l;;;iççcccccc¤cccç¤ç4444§§§ž§fxx¼Ão§§4¼¼f4çç¤ccç¤c!X›-›nXawl;g§ç;l!wah2ÐÊ»?÷ºçk27µi;l!!Ê{Y~˜ééééY€ÆÅ h---a--hí¥¼§¤;;iÐÐ-;;ww;!l!µwwXµ!;!;;i¤ç¤c¤ccggccççç4žžž§j§§fjfž44žžxü§44žçççcç¤clwµ›--¬¬¬µ!i§§4çc;!wn€7YØ? ã4k{Yе;.;;µi!7ØÊ»YzzVééééÜYY½»{Ð kh-›µXµkkk ?ËËËsÅh-a›n--k´kkhkhk È Èkkkkkhh¬-›-È7Ë˱s?µ;i;;µnhÆ7ËÊ7€ÐÆÅ h›µwnl¼¥¢ í¥jf;li±Ð›l;w!;;lµwwµXw!;!!ii¤¤c¤gicc3ççç44ž§4§§f§§§j§444ž44ÃÃxž4žžçççccçcc;!µ›¬›-hhµ!ifjžccl!wn€YØÅÛEžkË»ÐX;i!;µ;!ÆzÊ»½zÜVVéééÜØYYËÐ kh›nnXµkh´ 7€ËË h›aa›--hkk´´kh´ ÈÈ Èkkkkk--¬››kÐss7€?ii;;››kÅÐË{ÐË7Æ? hnµn;x¥¥ ¥j§c;;i7ËÐ-;lw!l;!wµw!wµµ!;l;ig¤c¤g¤gig¤cççççç4ž§ffffj§ž444ž4xxx4žçççcççc;!µ›¬--¬¬n!i§¼4ç¤;!wnÐYY EžÈ{»7µ;;;;µ;!7Ø{YY½ÜVéé³NéÜYYYY±Èkh-›nµn §f4wµcaË7›!!;ll!Xµµ›››an°µ!;ccciiiii¤ç4çž§fj§ç§ff¼¼j§4ç44çç¼Ãožž44çcçççcçççglµ-kkh›µ!4f§cilµXµXhÈ€Ð-1o ËÊ ;!wa;w¬½{YY½V˜NNéØÑ˜YÑË€? k´hh¬--- ?€ËÐ7 k--a›¬´k k´´k´kk ÈÈÈkkkkkkkh-h-h Æ7€ËÆai;;l-›k?7{Ê€7 k? ¬X!f º÷ ÷§§žlgn˽Ðal!;!!!wXXnn-›a;ccciiicgcçççžž§§¼§44§jfjoo§44444çfü§444žc¤¤çcçglµ-hkhaµ!ç§fi!µXXµh´ÐÐ-Eo { l!!aiwkY{YYz˜é³N³Y72½ÑËÐÆ Èhhh---hk?€Ë€7Åkh››a-´Èkkkkk´Èk È kkk´´k´hh--h ?ЀË7›;;;;w--k?7Ë2€7 k h°°l§ ¥÷ §f4wµg›sn;!;!!lwµµXµ››-›µ°Xµlcgc;iiiccçççžžj¼§çž§§¼j¼¼fž444çç¼Ã¼fžž4ž¤cçccçcçc¤lµ-hk¬aµl4§j¤ilµXXµhÈЀ¬ÛEo È!;!!aiw´½2»»½zVéN³YÐ22ÐÆÈ´´h¬ Ãç-g?ÑÑ?;g;..;wµµXannanµµµli¤gi¤¤ç4ž4fj§fžf§jf¼§4444foo4ççççcçcççccjž;!---›µ;çjc;µXnl;;4¥UÛh€h;;µµaw;nÐʻʻY˜˜ËkÐYz½YYËÐ7?ÅÈkh-¬h?7ÐÐÅ hh››-h Å È k khkk´´´´h¬¬-´ ?7Ð{Ê-l;i;-¬ Æ7ÊY2Æ´-kk¬aXnͺ¥ Ã絬iµÅÊ2?.;.;;!µµµµµaµ›n›°µli¤gi¤cç44§§§ffžj§jf§ž444žjx¼f44ççççççc¤§jžç;wµ¬¬-›µ;4filXnX;;µ!4¥ó hÐËk;lnµµ!;a7Ê»»Y˜éN{´ÐYܽ»€Ð7Æ?Èk´-¬´?7€±Åkh--µ¬k Èk kk kh´h´kk´h¬-hk Æ7ÐËʬ;;.;µ--kÆ7{½ÊÆhh´Èhµµn¤¶¶ ÷ uç-gµ?»Ñ?µ;;.;;!µµXµaaaaµµµli¤ciçž44f§§§fjj§ffž4ž444j¼¼fççççcc¤çççcçjž;!µ¬--›µ;4fi;µnXnµX;l!ž¢ó h€Ëk!!Xµaw;µ7Ê»2YܘVN³k±ØÜYؽ»€Ð7?Å¢¢žcµ´cµnkËÊ !cçç¤i;;;ww!!!lwwl!l;cçç4ž§ff44žžf¼§§fžçççç4žž¼xj4cççcçççç;4oof4c;°n››nižilµµµµli§xíãjµ±´!wµnµwiXh2Ê{ѽÜéé³€-ks»Yؽ2{ËÐÐÐ7ÐÆ´¬´ÈÆ€7ÅÈ´-µhÈ ?Å k ÅÈkhhhhhhkkkh-k¬- Ðs€ÐÊÐh;;;;µ›-È?7{½Økµ›´h-¬hh-!¼÷¥í÷ žµkX›ÈË{ ¤¤ç4¤;;;;!!!lllw!w!l.cç4çž§jž44f§fž4çç44žž4§¼xççcçcccç4çç;ç¼o§g;Xa-›nii!µµµwµ!ixãjn±{k!!µµnµik2ÊÊ2½½VéNÐ-kËÑ»ØYÑÊsÐб7Ð?k-hÈÆ77Å k›ahk Å? kÅ Èkhhhh´hhkkhhk--ȱ€ÐËÊÐ-!;;;X¬¬È?±Ê´X-h´hhhh-!§¥¥÷÷žcµ´cXakËÊÈ!g¤ç4¤;;;;!l!!llwll.cç4çžž§§jj44žfff§ž4çç444ž§oo§4çcc4ç3cç4çç!çxofc;X›-›n;ilXµµµ;ioqjµ±k!!µnwiXk2{Ë»Y~˜³NNЛkËÑY½YÑÊËs€Ð7íã¼ihX! ËÐÐh¼Í}Ío¼¼¼§jjoxxxÃÃÃÃ}Û¢ oÃjj§ž§jf§j§§4žž444444444ž4g.çççççç4çc¤çž¼oçlwµanµ!i!wµXµXµ!cÍEUq¼çn!µ¬i.an›µ!n?{½YË2z³NNé -È7ØYYYÑÊËÐÐÊËs±Ð777? ?Å?Å-›hk k ÅÅ ?Èkh´´È ÅkÈ kk?7s€s2€ ;i!µ-k?7ÐÊ»»€k-h k- ?˱¬gu ÷qoihX!w {s€h¼ÃÍÍxjx¼§¼¼¼x¼x}ÃÃ}}Û÷ xuf§§ž§žf¼j§ffžžž4ž44ç444ž§4¤.4ççç4ççç¤c4f¼4;wµaµ!;wwµµµXµ¤Í1Uqo¤µlµ›i;n°µaXaÅʽY{ÊܳNé -ÈØYYY»2s77€ÊËs7Ð77Ð?Å??7Å-X--´ ? ÈÈ ÅÅ??È´h´kk ÅÅkkkÈkÅÐËËsÑs µig;µ-h 7€ÊY»Ðk¬¬È nÈ?˱-cu íã¼i¬°w ÐÐh§ÃÍ}x¼o¼§j¼jxxxÃ}Ãx}÷ Ãu§fžžžj§§jj§4žžžž4žžç44444gi4çç4ççç¤4žj¼ç;wXµaµwiwwµµn¤Í1Uqo¤nlµ¬i;aµ››µwn?{½Y{Êܳ³³ - ÐYYYY»2s77±Ð ¥íjiµ›--µ¬ÅÐÑŧxÍÍÍÍÍÍÍÍ ÷÷¥Ãf§žžç4§jf§§j§4444444444ž44¤.;çç444¤c44çžžci;!w!!l;wµ°µ°XÍEE µ¬¤çX!;!aaµµhÈÑ2»Ñ½V³È¬ ÅÐÑÜ»ÑÐ777€€±?7€Ð7 ?б ha›-kÈ Å Å ?Å ´hkkkÈ Èkkkk ÆÐÊ»ÑË n;i;-kƱËʽ€Èµh?hÅhYs-¬¢¥¥¼iµµh-- 7ÊÅf}íÍ}}}}ÍÍÍÍí ÷÷÷Ûͼ§4ç4§j§§§§ž444444ž444žçg;;¤ç4444çcc44çii;www!liXX°°µ!cEE hcçµ!;lµµµµµhk2Ñ2ÑzVN³È- ÅÊzY»ÊËÐÐ7ÆÐ{ËË7Æ7€Ð7Å?7±È¬n›hkkÈ ? k´kkkÈ È ÈkÈ ?€{Ñ2Ë X;;lw›È7±€2½Ëkah ´?-Y€¬-ç¥Í ¶fin›-›- ÐÊ fuÛí}}}Í}ÍÍÍ¥¥÷ ÛÍj444§ff§§f§žžž44444ç4žžžžçgi;cç44ç4çcc¤ž4çžgi;www!;i°µµ°°µµ!cÍEã ¬c°!l;laaµµ¬È2ÑÊ»zVéÈ-k ÐÊÜYYÊ˱Ð77¢ o;lµ›na›k7o ÷íxÃÛÛííí ¥ºq¥¢Ížc4žç§§¼f§ffž4¡444444444ž§žžž4¤illigçç¤c4ç§j444ig;;;i;!!XµµXµXwwlÍq1Eºw7´lligi;!X-hh?€Y2ØVNh- ?±ÐYØYYÊÐ7ÆÆ7Ð{Ë7?ÐËÊÅÅÐs7?›--¬hk Å?Å h--hhk´kkkk´È Å?7ÊYÑ»±¬!!!akЀ€sYzÊÅn!› hÅh?{7n.§¥÷Û ¼;lµn›µ›-k7¤¼ÍÛ Ãuí íí ¥ºq¥÷u4c444fj¼§ffjžž4ž444ç4ç4žž4ci;;igçç¤cc44§444;g;;ii;!!µµnw!¤ºEãºw7´ww!lgciiwµ-hhÆs»»Y˜h-??7нؽYÊб??ÐsË7?ÐË{±Å?7s7Æ-›-hhkÅ??ÅÅ Èh-›hh´kkkkkhk ?7ËY»Ñ7¬wl!wa ÐÐËY~Ê ›l- k -7{±n;÷¢ ÷¼iln-n››´{7c¼} o}ÛÛÛííí ÷¥qº÷}žç444fj¼¼§ffž44ç444444žž4gi;!ig¤¤ç¤c44§444;g;;ii;!!µµnXX!l¤}qEEqw7k!!ligc;!X-hh?ËY»Ø˜Nh-?ÆÐÐ½ØØÑÊÐÐ?Æ í¥!;;çw°-aµ ?µÃ÷¥jfÃÍíÍÍ}Íí qã¶xž§¼jxof§ž444çç4ž44ç444ž4žc;;il!;i;icçç4j¼44çgii;ii;!Xµµnµn°!i;¤Íºº¥¥ž7z ¬a-!;iiln¬-7ÊÊ»˜Ø›nÈ?€€s2»»Ês±7?7ÐË€Æ?7±Ë±??7€ÐÐÅ k´´k Å kh¬µµ››-hh´k hkÆ??Æ€»»Y2 µ!w-ÅÐÐ7€2Ø{7kwµ´-kk´»»µwl¥ ºw;içµ›an ?aà ¥íj§}ÍíííÍ} ÛqE¥¼žfjj¼¼ff4444ç4ž444ç444§§žžžg;;;l;;;;ggçç4¼¼ž4çcgi;;i;!X›aanµ°li;Ͷqº¥47z -a›!;ii;µ--Æ2Ë»VNY›nk?€€s»Ñ»ÑÐ7Æ?ÐË€Æ??±Ë?ÅÐÐÐÅ kh´k kh¬µµa›hhhkkÈ´ ???7Ë»Y½2 !w- ÐsÐÐÊØ{Ðkµk-È k»»µw;¶ í¥w;;çw››› ?nfÃ÷¥íj§ÃíÍÍÍÍíÛ ºE¶¼cžj¼j¼¼fžž4çççž444çç44ž§4c;;i;;;.icgçç4j¼ž4çgii;ii;!Xaaaµµ°li;ºq¥¥žÆzË -›a!;cilµ--ÆÊ{YVØ›nk?Ðss»»»Ñ±7?¢ .›;ii;w›µ-kk;§ºEº¼¼}ÍÍÍÍÍ}Ãx}}¼4ͺEÛfff¼§§44444ç4çççç¤44f44i;!!µn;c4¼o4ç¤ggi;;;!µ›››aµµwli;çqq¢¢uX½Ys€7Å´a!µÈÐsјNNÊ›n¬kÐËÐËÊÊ{Ë€Ð7ÆÆ±Æ??Å ÐÐ7ÆÆ7±s€?Å ÅÆ??Èkh›XµXn›-kkkk?7? ÊÑ½ØÆX;!°È7ЀËÊÑ»Ð77nµn-ÆhлË7k;Ã¥;›;iži;aµ›´Èi¼¶Eº¼jÃÍÍÍÃÃÃÃÍíx4Ͷã f§§¼j§žž4çç4çççç¤4žž44i;!l!µµ;cc4jx¤cgg;l;i!µ››anwli;çíºq¥÷uµÊ½»€€Ð?kawµµÈÐлVNNÊ›a¬ÈÐËÐË2{Ë7±7Æ7ÆÆ?Å?ÐÐÆ77±ÐÐËÆÅÈ Å??Å kh-XµXµna¬´hkk ??Å Ð{»½YÆX;!XÈ7ËËÑ»ÐÐ?µ›-Æh7ÊË7h;¼¥ ;›;ii;µaµakki§ºE¶¼¼Í}ÍÍÍÍÍu}ÃuÍx4ͶãÛf§§j§ž4ž4444ççççç4ž§44i;!lwµµµwlcc4jx¤gc.l;;!µ››nnXwli;çíºq¥¥xX2~½»ËsÐ?k›!µµÈs2NN-›¬ÈÐsÐÊÊ€7㥧›niiccciw-ahÅ-ç¥ãÍuÃÃÃuÃuuÃuÃÃÍ;!4ççcç44444444ççç¤ggig4žž4žžž44clwl!µ›hh-µi¤oíf¤cii;iiwa›-a°w;.gcž¶qº¥ÃgÅ»Y2½»YY2ËÐÅ ¬kÆÐ2zékk??77±Ð€ËË€ÐÐ7??ÆÆ k?7ÐÐÐЀÊб7777???È´-›aµµ°-hh´ kkÈ?±YY{h;!› ?ÐË{ѻʀ€7¬h YÈ {½Ð?hcq¥ancigiiw››h -c¥ºÍfuÃÃÃÃxxxuuÃÃÍž;!íç4g44444çç444ççccccig4ž4žž44c!µl!X-´h›µigÃí§çcciic;wµ›-µµµµw!.cg4q㺥Ãc »»½ÑYY2ËÐÅ -k7ÐÑzé k?Å77±Ð€ËË€ÐÐб7???? k77Ð777€{Ë€ÐÆ77Æ?ÅÈ´-›nn°-h´´ ? ÈhÈÅÐYØ{h!l› ?sËѻр77-X-ÈYk ʽ€Æ¬㥧aµiicc¤gwa›hŬ¥ºÍfuÃÃuxxuÃxÃÃÃ;!x4g444444444ççççgcgic4žž444žž4c!µlX-h´-µigÃí§çcgiiciwµ--›µµw;.cgžºqº¥Ãg ËÊYÑ»Y»ÊËÐÅ -k7ÐÊÜé h?Å777ÐЀËÐÐÐ¥iki;;;;g;µ›hhç¥11÷f¼§4ç¤çcjÃÃuÍ.hXc¼u4;icicgg¤ç¤gcgcii;g4§§§§fj4¤;!;;!hkÈÈ-§jçgigccçgwa--µw!;;gçà ºãqÍ4È?Å7»€sÊ22?ÅÐ{Ê»˜h¤wÆËs7{{ËËs777б? ?7ббËËËË€ÐÐÐ7ÆÅ kh-›aX!-´¬›h´´´k´h¬?ÆË»?µw¬ 7Ðs{2Ê{7?¬a›-ÐÐ-€½7˵ºc´c;;;.i;µna´hç¥11¢f¼§4ç¤çç¼xÃÃihXij}4;iii¤cg¤¤¤cgggg;c4§j§§j§4¤;l.;lµ¬k -w§fgiiicci!a--µµ!!!;ig§}÷ºEq4kÆÅ77YÐËË{22?ÆÐË2Y˜hçÆË€7ÊËË{€7ÆÐÐÆ ??бÐÐÐËËËsÐ7€Ð7?? kh¬›a!-hh-hkhk´khh ?€2?µwh 7ÐË2Ê7Ƭ››-Ð7¬Ëz77sXí¥cki;;;;g;a›hhç¥11¥f¼§4ççç¤jÃxu}}§;¬Xiju4;iicgcgcgggcccg;i4§f§ff§jj4¤;li;lµ-kkk-w§¼iigicciwa-›µ!!w;;gu÷qãqÍ4ÈÆÅÐYЀË2ÑÊ?ÆÐËʽ˜hç!7Ë€ÆÐÊÊssi !k!!l;wXi;!›!j¥qE1¶¼4çc;!µžoxxuÍf¤-µç ¥Ãç;;ii;;ii;iccc¤çi4x}}ÍjoxÃü4¤cci!´ ?Ð iüi;!;i¤çi!n¬›Xwl!!.ci4¼fÍ¥EE ¼hÈkÆ?ÐÆ ¬-¬hÈÈËs{2Ê2z±fxaË˽YY»2Ê{ÊÊËËÐ7€ÐÆÅÅ?7±€ÐÐÐssËs?? kkh¬›hµw-hhannh kµlXk{еµhÐÐ2»ÑÊÑÊ?´aµiaÊÆÐ{Ë7siÛ!k!l;n!i.!-l¼¶q11¥¼ççg;!µµ¼xoÃ}§c-n4¢Ãç.ii;i;ic;iicccç¤i4x}ÍÍ}oo¼Ãxf4igi;Xk ÅÐÈi}jg;liiç4cwn-›Xwll!.iižf¼}¥ãã j¬kk7Æ77 h›¬hkkË€{Ñ{Êz¼xn{˽»Y»ÊË{Ê2ËÐÐб7ÅÅ?7ÐsÐ7ss€ËËÆ? kh-›hµw-´hnnn¬È ´µ!µµÈеh7s2ʻѻÊ?h-nia»s±{{ÐËglkw!!;wX;;l›!j¥q1¥¼çc;wµouxÍÍfX›4 ¥Ãç..i;i;ii;icigg¤çi4xu}}uͼx¼Ãx¼žicc;µkÅ?€Èi}fc;!;ig4g!n--nlll;ci4§j}¥Eã ¼hkk7?77 h›-kÈkËs{»Ê{z7jo›€{{½»»ÑÑÊÊÊÊ€X´Åµ°!wl!!i!4¥¶EEqqÍç§žc;§4§x¼¤µcu¢Ûf4ç¤cci4¼xÃxx¼xÍÛ¥¥÷÷ ÍÍoff§44iµk 7 fµ.giicµ´wlw!.iiçç¼¼}¶E¥x›kk7€ËsÅ hh¬-h±22{€Ñ˜Üc}ÐË»YYYÊË{Ê{»ÊËË{ÊsÐ7?Æ7€Ð€Ðs€ËË{Æ?kk´h-a-nn €kw!›k Åkaµwh k-È?sÊ2ÊÑÊ??´;;i4çÐËÐ{é½ËX´Ë µwww;w;i!í¥¶EEqãç§ž;fžžjx¼µwgÍ¥Ûjžžççggi¤4¼xÃÃooxÍÛ¥¢ Û÷ÛÍÃj§jž4çi´ 7 fžµ;giccçi´µlw!;;iççf¼Ã¶E¶o›kk7Ðs˱?kkh¬¬´7Ñ2{Ð2˜cuЀ»Y½ØÑÊÊÊ{2ÊË{Ê{€Ð7?Æ7€Ð€ËЀËËË{ËÆ?Èkhh-a-µnÅsk!!› ? a°¬ k- ÆÐÊÑÊÊ2??kµ;;iç77ÊéËY€µhÊ۰lwl!;iw4ººEEºqç§c;§ž4ž§oo¤µXwi}÷Û¼žžççggi4¼xÃÃo¼xuÛ¥¥¥ ÷Íoj§§4çi°hÅÆ fžwn.gicççiµ´µ!!l;;cçç¼ÃöE¶onkk7ËË7?Èhh--´22{€Ê˜iÃ!±€YYØ»{ÑÐÊ€hµµn-h!ço¥qqãEqãE11EEã¥Í ¥¥ÛÃÃfc;Xµç ÷u¼jjjfžÃÃuÍÍÍÃÃff§¼Í ¥¥÷÷ ÛÃ}}}}Í}xžµÅÆg;nalçgcçg;;ciliiiçç§joÃí¥ºqíX ±ÐËÊ{˱Ækhnh€Ê€ÑYܘiÍoi-ksË»»»ÊËs€{{ÑY»Ê€7?7бÐËËs{{Ë7Æ ´hhh-nn›ÆÊ€›°´ÆÐkl!µµh´-hk ?±Ð€Ë?¬µµw;g;4c€kkYÊÐ{˜˜Ëh°µa¬hµw!¤¼¢qºããqqE11EEq÷Í ¥¢Û¼Ãfc;Xµ4 ÷}¼j¼ffžžžÃÃÍÍ}uÃf¼§¼u÷¢¥ ÷÷ }Í}}}¼4›ÅÆg.µ›;礤ççg!.ci;cggç4¼xuí÷qºí° ?±ÐËÑ{sÐ?ÈhnhÐËÐYܘiͼi-ÈsË2Y2{{€€{{ÊÊYY2ËÐ7Æ7бË{ËËsÊÊË7? ´hhh›aXµ›?Ê€›°h77´l!ah´¬¬k ?7ЀŬ!;g.4}cËkkYÐÑsÊËhµµµ-hµw!x¥ººããqqE11EEã÷Í ¥¥ox§c;µµ4 ÷}j¼jj§§žžÃÃÍÍ}ÃÃj¼j¼Í ¥¥÷÷ Û}ÍÃ}j4a?7g.a›lç¤cçg;.gi;cci4ç§¼ouí÷ººíµ ÅÐËÊÊË7 ¬nhÐˀѽÜc¼;›ÈÐËÊYÑÊÊËÐ?ËÊÑÜ2È›nX›aw›hl§÷÷¥¶ºãqE11óE¶11q¥ÛÃça›4 x}}uÃÃÃu}}¼xxͼo§ffÃí¥Û ¥¥¥  Û ¥¥÷u!hg;!içi;;;;!!wii;cig44f¼oxu q÷;k Ð7€ÐË€?´a¬ÊÊ?ÆÊ»Êi§¤! ÐÊ»½Ñ{Ë€7лYYÑ2s7±Ð7ÐËÊÊË{ÊÊËÐ? khhh-¬µµ-h7ÊÊÅnµh?7 µ;w!!Xn-›-hkÈ??7Å›aw;i;§º¤›¤›¬Å{Ê»zÊ´-nX›n!›hlf¥ ¥ºãããE11ó1E¶1q¶ÛÃçµ›4Ûío}}}}}ÃÃu}xoxÃíͼj§ffà ¥¥÷ í ¥¥¢Í!hc;!iç;;;lll!!i¤i;iii44¼xoÃ¥º÷;kÅ77s7ÐËËÐ?ha¬{Ñ77Ê»{Üi}f¤!kÐÊ»Y»ÊË€7ÐËѽYÊ{˱7Ð{{Ê{ËÐ? khh¬-hµn-´7Ê{Å›µh?7Åa;ww!wa-›hhkÈ?ÆÐÊ?-µµ;ilw§q¤››h ËÑÜÑk›aX-awah!§Û÷¢¶¶ãããE11óó1Eº1ó1q¥ÛÍçµ›4Ûío}}}ÍÍ}Ãu}oxxÃííx¼§§jx÷ ¥¥÷ íÛ÷¥¶¥Ãlh;!içi;;!;l!wi¤i;iii44fjoxÃ÷q ;kű7ЀsÐÅhn¬{Ê7ÆÊ»Üi}!k{½Y2{sÐçµ?Êܽs?-;!lcn´kçÃÍ}ÍÛ ¢ ÷¥¶ã111¥q1UäU11÷¤l§ÍÃÃíííjž4xÍ}ÍÍx¼¼oÃ} Û ¥Û ¢¢}n´7Å-µµµµµµµ!;i;i¤c§f¼¼Ãu¥¥chÅÅÅ7ÆÐË{ kµË½±?7{zµÃíÃçwkÑÑ»27777Y½½ØËË€777s{{{ËËÊËËÐ7 È´-››ha›´´k?7khk-k l;l!lµaa--¬hh Å»Ñhµw!;i- ÆXxçn?ÑÜzËÅ-;;;inkkçÃÍ}Û¢ ÷¥¶q1¢ã1óäó11÷l§ÍÃxííííí§žÃÍ}Íux¼xÃÍ}÷ Û ¥ÛíÛ ¢÷uXk7Å-aXXnµµ!..;cgžfj¼¼x}í¢¶gh ÅÅ7ÐÊ{Ð?´a˽7?7sÊzà íoçkÑ»Ñ{€±Æ7€ÊY½½»Ë€Ð777ÐÊÊÊ{{ËÐ7Åk´¬››ha›´kk?бkhk¬´ k!l!l!µaaa-¬h´ ÑÑд!i;-Û ?xçnÆ»z½€?-;!lcµ´hçx}ÃÍÛ¢ ¥¶ãE¢qEUäU1E lÃ}ííí§ž4xÃ}uü¼ÃuÍ ÷ ÷÷uµËÈ7Å-aµµnµµ!..;cc4ž§¼j¼ÃÍ¥¶g¬ ?ÅÐÆ±sÊ{€Åka˽±?72zµÃÛÃçwÈ7Ñ»»ÊËÛí!ÐÑzÐhcig4¤;ni§§¼fÃÍÍ ¥¶E¶ ºUó1óäE¥í}}íííÃxj§oxÃÍÍ}Ãxo}}ííÛÛÛÛ!ËÆË7k´›aµµa›nµw!!gc44ž§j¼oÃÍ÷¥çhÆ7 ?ÆÐÐб7Åh{zÑËË»~Ü?g÷of;›?»2Ë7Ð7?Ë»½½zÊ2{ËÐ77Ð{ËËËs€ÆÅȬaµa´--kkk´??kÅ?hh-›!;;!wXµµµna›¬kÊÐk-µwiµc X±kÙ!Ð2z~shciiçg.nif4§¼foÍÛ ¥ºãºÛ¶Uó1óäE÷íuuíujff¼xÃ}ÍÍ}Ãx¼x}íÛÛÛ Û lËÆ€7kk-µµn›aaµwllg¤¤44ž§¼fxu¥¥ç´7ÐÅ?Æ77Ѐ±7 h½2{s»Ü~?i xj;-?Y»ÐÐ7ÆÐ2ØzzÑ{ËÆÆÐÊËsËËËs7?khna´¬-´khkÅ?k ?h--al;;;!nµµnn--k7ʱk-µ!;¤°ÐÈÙí!2½zËhgig4¤;a;§§ffoÍÛ ÷º¶Eº qUU1óäE÷ íÃ}í}xjjoÃx}}oooÃ}ÛÛ íÛ ;sÆs7k´›µµµ››aµwll¤¤¤4§f¼¼u ¥çh77Å?7ÐÐÐs7??h½ÑËÊ~z?c í¼§;-ÆY»Ë fç¬Y½Ê¬-;;i?-!cic4ç4f}}}÷Eͼ¥EqUó1º÷Û  Û¥÷íÃx¼¼oÃÃx¼¼x}íííÍ}ÃÍ  Ûí €{ËÐ?h-XXµnXµXlç4žjx} ¥ÈÑÐ7Ð7€ÊÊÑÊY~ܘYÜVÜ-ÍÛoc›72½2Ð7 Å?ss{»zYYYÑб7ÊËËÊÊ{Ë˱? hnµµ-hhk?Èk7´µh±Ë±ÈX!;!µµnnnµµnnwh€Ê aa›!w¼ç7½Ëw f4-ØY{¬-;iiƬliicççžfÃ}} Ex¥EqUó1º¥ Ûí¥ xÃf¼o}ux¼¼xíÍÍÃÍÛ ÛÛ퀀ÊËÐ?¬-X°µµn°nµlçç4§¼xÃÛ¶¤kË27Ð7ÐÐË2Ê»2YzܽY~éÜ-§ÍíÛ¼¤›ÆÊYÊs7Å 7Ѐ»~½ØY2€±{{ËÊËs€7Å hµµµ-¬hk? kÐhµh±ËÐ µµl;!µµµXnµXµnhs½Ê n-awoçÆw §4¬YÊh-;;i?-;3iççž¼Ã}} 1Eͼ¥ãqóUUEº¢í ÛÛí¥÷íÃü¼xÃÃÃoxxÍíÍÍÃÍÛÛ íÛ¤ÐsËËÐ?h-XXnnµXµµlcç444jxà ¥¤ÈË2777sËÑ»2ÊYzܽܘÜ-§ ¼ça?ÊY2ÐØ-ºxa±Ø€Ëh¬µ;ËÅa;l;gigccç§¼Í ¶¥çjÛ¥ã¥EóU1q¶ Û ÛÛ Û }ÃuÃÃoÃu}Í }¼xuí ÷¢ ¥ÃÈ77€? h›µµµXµnc44§¼ÃÃÛ4-7½»{Y»YY½Ü˜˜˜VܽzVé?;4u}ÛÃ4!kÐ{Ë7ÈÈ?Ð?77Y2»ØØ2{Ë»Ñ2{Ê{{s?? knµ-kÈÈ?Å?h!w Ê»sk-;!wµµXna?Y~s hµ-ak7ËÑz-ž ºÃ›7½€Ëh-°;Ë Xlligicigçf¼Í÷¶ó¥ç§Û¥E¥EóU1q¥¥ Û ÛÛÛ ÷ ÛÃ}uÃÃxÃuÍíÍ Û}jouíÛ¢¢÷¥Í 7±±€?Èh›µµXnµ°nc44žžž§¼Ãu ç-нÑÊYYYØzÜVÜØ~éé?;4}}}4!ksÊ? k?7777Y»ÑYY»Ê»Ê22ÊÊË€7??kµXa-kkÈ??ÅË-!wÈÊ»´-;!nXµµXµX›µnÆYzsÈ´µ-!aȱs»½-žÛqxnY€sh¬µ;Ë?nll;icgigçf¼Í÷ºó¢ç§¥ã¥Eóó1q¥¥ Û Û Û ÃÃ}ÃÃo¼ÃÍíÍíÛÛÍjo} ÷÷÷¥}k77Ѐ? haµXµXnc44žž§oÃ} 4-»ÊY»YY½˜V˜Ü½z˜³?;çÃ} }çwÈs{˽½Ð;}Eºjln w;¶chli;c;!!lww!!;4ÃÃ81;oí¶UóEºº ÛÛ Û Û¢¶º í}u}uÍüuÃÃ¥ºj¼x}í÷ººº¥ -Æ?л? k-aµXµµnh›g4ž§§ž4žf¼ou4w?Y~zØY»Ê{Ë7Êz½~z³V µl¼u Ãi´7€7Æ€s7 Å77±»»Ê{ØY»»2ÊÊ˱7?ÆkaµahÆ ´???ËÈ!gh7Ð7¬µll!!!µµµµµµ›µ›kÆÊ½s´hh¤ÆËËY»YzlÍãºjl› l4¥ckwc.i;!!!!!w;4ÃÃäçixíºUóE¶¥ ÛÛ ¢¶¥÷í}ÃÃ}ÍÃÃÃx}¥ºojÃ}¢ºº¥¥ -??»? k-aXµnnhag4ffžžžjjÃ4Í! ØÜ~ØY»ËsÐÐÊܽ½~³V µl§¼} Ãih±ËÐ77€ËÆÅ?7Æ7{»Ê{ËØ½»ÑÑÑÊÊÐ7¸?k›µnhÆ ´?Å?Èlgµh7ÐÐ-X!lw!wµµµ°na›k?{½Ëkhhc7€½YØzlÍã¶¼laÈw;¶gh!.;ci!!!!!w;4x¼äiÃÛºUóEº¥  Û ¢¥º íÍu}ÍÍÍÃxÃx} ¶¶¼jÃÍ ¶q¥¥Û¬??»? ´¬aµµµµµhagfj§4žf¼x4Í4!?z~YY»ÊËÐ77ʽ½zz³V µ;§oà uihÐsÊY½{µuº¥ÛÍX§EEx§žžçi!wµn!cu÷q4içu¥111¥÷u}  ÷ }ÍíÍ}ÃÃÃfÃ} ¥÷íoj¼Í ¥¶¥EÛ-¬?Æ?ÆÈ¬-n--Xk;§Ãfjj§f¼¼¼u4!h?Ë»»Ë7?7±Ås½˜z˜éVÐha;ç¼Í ža?ÊÈsÑÐËÊÈk ?Ð{2ÊYYY»YYs7 ?È--h È ?ÆÐ± µii? Ð µµµ°µX°XnXµ°n-ÈÊÐ nµ´s±Ëz2»½Ëµu¶¶Í°f1Exf44i;lwwµlcu÷qçµ;4}¢111¥¥íuÍÛ ÷÷ uÍÍuÃxçoÍ ¥÷¼¼¼}÷¥¶EÛ›¬?Æ7Æ h¬nw›µ›µkl§Ã§§fffj¼u4ž¤wh7Ë»»ËÆÆ7 s˜zV˜é˜€¬a;žç¼ÍÛ÷4µ?{k7л±Èk Æ€{{ÊÑ2Ñ»»»»Ys? ? ¬-h ??ÆÐ µ;i?? ›µX°XµµµnµnhkÐÊ€ Xµk€Ë±ËÊ»½ËXÍqºÍͤX§EEo§ç;l!wwµX!cu¥qçiçÍu÷ó111¥¥íÃÍÛ ÷÷¥ ÍíÍuxoÃfoÍíÛ¥ o¼¼}¥º¥E ah7Æ7Ækh-n›µ-nkl§Ã§§§§§¼¼¼Ãžž¤!¬?ËY»ËÐ7?ÐÐÅ˽Vz˜VVЬn;çoÛ¥4µ?YØ~Y7!4ÃÍÍÛäuEºÍo¼xx§i!aià ãõh-l4¼ ¥¥Eó1EE¥ÍxÃÛ¥¥ ííÍÍÍ}}ÃÃoxxÃ}í ¥÷}ÃÃoÍ÷¶E¶.h k?Æ?khhµ!w›-›Ål¼u§§j¼¼xü§§¤;°´7ʽYÊбЀ??ʽV˜˜˜Ðh-°¤gj¼Í Û}4;hkËØ½Y±kk´ ?7ÐÐË{ÊÊÊYØØÊ?kkkhhÈkkk?7Ð77 al;lhÆ s?k---nnnµnµnµµwX›- €ÐȬ-k€2Ës2»½~½7!xÍÍ ÃgxãºÍü¼¼§ç;wwµaià Eo-hlç¼ ¥¥Eó11ã¥Ío}º¥ Í}ÍÍÍuÃxxxx}Í÷º ÍxoÃÍ ¢¥1¶;hÅk Æ?khhµ!µn-nÅ;¼u§§¼j¼oo¼f;µh7{ØYÊËsÐÆÅÊ~˜VV±h-gcf¼ }4ihÈËÊYzY7kkk ?7ÐË22»YYØ{Æ´kkhhÈÈkk 7Ð7Æ n;;lhÆ ÐÆh-›-aXaµµXnµµµa- €± ¬›´Ð2Ë»Y½~Ø7w4xÍ o¤uEº}xj¼xçiwµXµià Eõ¬-;4j ¥¥Eó11E¢oÍ ¶¥ ííÍÍÃuÍu}ÃxxÃÍÍ ¥÷Û}ÃoxÍ ÷¥1¥;h k Æ? hhµ!!Xn-aÅ;¼u§§jx¼xÃof;µ´7ÊØ»2s±Ð?ÅʘÜ~˜˜é˜h-µc¤§¼ u4iÑY½Ü½Ðµ}§Ã÷u}uüclµn-;x ¶ch7h-!¼f÷11UU1¥}¼}¢ Í}oxu}Í}}}Ííí ¥¥Ûíuoâºãqj ?È?? khhµ;;;µnµ?;u§§§fooo¼¼f4cilXksz~½Ø»Ês?´Ðzܽz˜˜éhh-w;ç4x }ckË»˜zÐ? ÅÅÅÆ77ЀËËʻؽ½È´hh´È Æ77ÆÅ¬w;c´hÐ7?Èk¬¬›aaa›aµ°wµXµX¬ Èh¬-k7ʻ˻½½Ü€µ¤§§ͧÃ÷Ûí}ÃÃÍÞg!Xµn-µ;x º¤´Ðh-;¼f¢11Uó¶}xÃí¥ Û}ÃÃoÍ}}ÍÍÍÍ ¥÷Íxà ºãºj Åk?Æ kh-X;ilXµnÅ;x§§fj¼Ãx¼¼fžci;°ks½z½YÑËÐ7hÐzܽÜVé˜Ðkh-w.çžxí íÍikËÑV~ÐÆ Å Æ77ЀËËÊ2Yz½ÐkhhhhÈ ÆÐ77?¬;c´hÐÐ?Èkh---›a››µXµµX¬ÈÈh--kÐʻʀ2Y½Ü½ÐnçžÍÍfÃ÷íÍÃÃ}¼g!°n›µ;x 1ºchÐh¬ljf÷11Uó1¶Ã¼x÷ Í}oou}}ÍÃ}Í ¢ í}xÃ÷¶Eºf k?? kh-;;lµµµ?;ç§ffo¼o¼¼jžc;lXkнzzY»ÊÐ7kszz½Ü˜éé~´h¬!;çoí ÷}ÊÑYØz½Å;iiojoͼÍ}ÃÃuu¤!µ›a¬¬µ;ž1;´k ›;g4}¢¥ã1E¥ Û ÷¥¥ íÍÃÍÍÍÍÍÍÍÍ ¢ Û }}Í÷¶ºqÛ ? Æ? k¬;g;;;7!ÃÍo§fj¼j¼ff4i;.l› ØV˜zØÊË ÐYz½VVéËÈ´¬n!;g4Ãí xž!Ëѽ7€Ð777?Æ?±€ss{»zÊ?k´kkk ÅÆ7Ð77? -a!ciXh?Æ? kkhh›››a-›nµ°µµnXn›¬?€»»Ë{ÊYØÜØÅ;;ižxjÃÍouÃuuuÃc;na-¬;ž11;k´ Å›;gž}¢¥EEã¥ÛÛ ÷÷¢ Û}xuÍ}Í}}}ÍÍíí÷  ÍuÍ ¶¶qÛ ?ÈÆ? È´¬;ii;;Ð!uÍof§ffj¼¼j§çg;;!› ½˜V˜½ÊË sYzz~˜Vé{ ´¬nw;gžoí x4;2ØÊ±sÐ77Æ?Æ777€s{»YzÊ7 kk´k Æ7777Å -nwciXh??? k´h-›-›aaanXXµwanµn›h s»2{ÊÑYØz ;iižx¼oͼuuuÍÍugln›-hX;ž11Û;hk ›.g4}¥¶E1ã¶ Û÷¥÷¢÷íÍx}}Í}Íí ¥  ÍuÍ÷º¶q ÆÈÆ? È´¬µ;gi;;wÆ!uÍof§j§oj¼fžçgii!-Ž˜˜z{ËÈ€Y½z~VVéÜË k-n!;ižoÛíÊ»YY~Üs-;;c§oxj}uÃx}ͧ¤;-hkhX;çºEºÃ! ´ k!;!§x¥¥¢÷ ¥¥ íÍuo¼uu}}}Ã}Í}Û÷÷Ûí Û  ¥ºEãa k È?Åkhn!i;cËf}u¼jžjj¼ç¤i;;!Xн˜V˜½~ʽ~VV˜³VØ7h--µ!;4¼íÛÛ¼c€{€ ¬7Æ77??? ÆÆ7?7ЀsÊ2€? ÅÆÐs€±ÆÅÈh¬µi¤w›´ Èkkhh›---›aaµ°nnµwwµahkÆ{YÑÑ»YY~Ë-i.cfoxjÃ}ux}}clµ¬h´hX;çºEqu;kk kX!l!§uÛ¥¥¢ ¶¢ ÍÃüÍ}}ÍÍÍÍÍ}Û¥¥ íÛ÷Û ¥º¥Eãa k È?ÅkhaliiciXËfÃ}¼§ffjçc;;;!°ÐzV~ÊY½~éVééØ?¬-›Xl;4xíí o¤Ë{€?-ÆÆÆ7Æ?Å ?Æ7Æ77ÐsÑÊ?ÈÈÈ ÆÐsÐÐÆ? ¬¬µc¤w›´k kkkkh›-a--›-µµµµµwX›hk7ÊY»ÊY»Y~Ь;.gf¼xj}}ÃÃÃç¤;µ¬hhh;çº1qul ´ k!;!ÃÛ¥¥÷ ÷¶¢ }uo¼Í}ÍÍÍÍÃÍ} ¥¢ íÍí Û¥¥¶Eã› k ÈÆÅkhali;cgX˵fÃ}¼§j§¼f4g;;;!sé˜ØzË2Y˜é˜éV½7-›-wižÃÍ22»ÑØz2Ð;cž§§¼Ã}uu}uf¤;µ¬kkk-!çí¥ãE¥§hkk¬´-;;hn°;c§x¢º¥u¼¼xxÍÍíÍÍÛ¥¶¥ Û ¥ ÷¥¥¥Eãg´ kkÅ k´a;gcia{µç§Íxf§ff4çil!l!!hsÑY˜zYܽ˜˜VééVs-n-nX;ç¼Û¥¢x¼°›¬Åa¬k ÈÈ Å k ?Å?? k ?7 ?ËÐ? k-h-;ç;µ-hkhhk h-›››--›aXµµwµ›hk ÐÑY2YYÑØ½ÑÐliç4§§§¼}ÍÃÃÃ}jçi-kkÈ-wçí¥ãã¥kh´-h-;;hnµ!jâ¶¥üo¼u}ÍíÍ}}Û¢¶¥í ¢ ÷¥¶EEgk kk È´›µ;¤¤gµ{°ç§uxjž§§¼f4çg;!l;w¬€»Y˜½Øz½½˜V˜³éVË-n-µXµ;c¼Û÷÷xf°›¬ ›hk Å Å È ? ?7Èk 77 ?ÐË˱? khhh;;µ-´È´hkk´¬››››-a›nwµwµ›h´Å€ÑØ2ÑYÊØ½»7;iç4§§¼ÃÍ}Ãuuf¤;-k È›wçí¢ºE¥´kh¬´›;lhµX!c¼ÃÛ¢¶÷ü¼xx}ÍÍÍ}ÍÍÛ¥º¥ÛÛ÷¢¥ ÷¶¥ãEgkÈkk Èh-;g¤iµ{°ç§uxjž§jff4çc;!!;!-Ë»Ø~Y˜zY½˜VV³éVs¬n-µµXwlcåʻ»2ÊYY»-ižž444o}ÍÃÍíxçc-k ÆÈ¬cÍÛ¥EqÛlk--k-cwÅ77kni¼ Ûí}Ã}ÍÍÃÃ}ÃÍÍÍ}Û¥º¥Í í ÷÷÷¢¥¥q¥Ãk7´kkkkkh›lçg7lççuuü§¼¼¼j4i!!!w›€2ʽYzV~Ü~VVéVé³»´›¬°nlcjuÃÃÍ;-aµa›-¬hhh¬´hhh-hh-hh››k?Åk 7€{s?kh-kkwci!a¬¬-¬kÈ-¬-›an››-µµµXµn-h?ÐÊ»»»ÊÊÊYY2-i4ç4o}uͼ4i¬´Å7 ¬cÛ¥Eq!´h-k¬c¤wÅ7?k›;¼ Ûí}}}}xÃ}Ã}}í}Û¥q÷  ÷¥¥÷º¥xk?´ÈkÈkkhn;çccÐ!çç}ÍÃf¼jx¼§žçiµw!w-€Ê½YʽVÜ~~˜˜é˜Vé³»k-¬XµXlfuuÃÍç;h›Xn--¬h¬h¬h´hhhh´-hhµak? È 7€s7kh›hkci;n¬h›-ÈȬ--››n-››aX°wµXµXn´?7˻ʻ»Ê2YY2¬;ž4ço}}ÃÍxçc!¬kÅÅ ¬g}º1ãlk-¬´-içÅ7Ækµ;j Í}ÍÍÃÃuu}}ÍÍ}Û¥º÷Í  ÷¥¥÷q¥xkÆhÈk kk´n!ççcÐ!ççuÍüjf¼¼j4iwµ!w›ËʽY{z˜ÜV˜˜é³Ñk-hµµµ;§Ã½YÑÊÊ2YÆ!¼jççÃí}Ã}ä!›k?77 lfx¶1E¶f›´-µµwç4;h7€Ë7´igž44§fo¼oÃÃ¥¶Ûx}Û ¥¶÷¥ ¢¬Æ-È ÆÅkw¤žži´¤4ÃÍüoÃuo¼§ži!!! Y½YÜ2€Y˜Ü˜VV˜é ´kµww!!lcjocg!wµXnnn››››››-hµ;w›h-´hkÐÊÊ7hha´Åµggn--µ-´h-h¬nn››››haµ°µµ°!¬Å7sÊY»Ê2Y½7!j§4žxÍÍÃuíužg!›k?7? l§x¶1Eºah-µnwç4;k?ss7higž4ž4ž§jo¼¼oÃ¥¥ oÍÛíÛÛ ¢¶¢¶ ÷¬7-k ??Èw¤;hçuÍÃüÃxxj4il!!!µ YzYÜ2sؘVé˜é hkw!wll¤j¼wçg!nnnnn›µµ›a-¬n!›h-k´k±22?hhakÅgiµ--a-hh-h-nn››---›µµµµ°wµh 7s2½Y22{2»7;¼f4çžxíÍÃuä›k?Ð? !fÃ¥Eãºfa´-nnlç;°k?€s?higc4ž44§jo¼oou¥¶}} í ¢¶¥¥ ÷h7¬k ??Èwg4.hçç}Íü¼Ãxo¼§ži!!l!µ YYÜ»ÐYV˜Vé˜é½Èh´!µw!;ØØY22»YY-4f¼¤ž}ÍÍ}Ãüc;wa›´Æhí ¼º1º¥ih¬µ!i¤i;lµh Å?ËÆ´µµ!!n-nwµ!çu ¥ ÷¥÷¶q÷¤k?hk???±Ë´ifc!ç ¶¥ãöoÃx¼¼g;llww¬7»ÜzØËÆV˜˜˜é³éˬh-°!!µ°!an;Ëʵµ¼§çg¤;!!!°w›°´-›-n;cwµ›k ÈÆÊ7›¬››-al4;nwhh-¬››-kÈk-Xa›-nnwXwµwk€7ÐYØYÑ»»ØØ›4§jžçÍÍÍ}ü.wn›hÆËh ¼º1º÷gµ´¬µ!igi;lµh Å?7ËÆhµµ!wn›aw!çu Û¢   º¢ºã kÆh ??ÅËhifcl4Û¥¥ãö¼xÃo§oc;!!!w¬?»~ÜË?½˜VVVééé-¬-wX!lµ°!aa;Ë»µµffçcçc;!;!Xwµ-µµh-›hµ;g!µ›k È7ÊÆ›¬››-a!¤4;aX!-´-¬n›¬k k-°›-aa!°w!hË±ÐØØ»2»»Yaç§¼cÍÍÍu}üc;wn›h7Ëhí÷¼q¶÷ihhµl;g;;lµh ?ÆÐËË?hµµl!n›nwwlçu í÷Û Û º¢¥ã¥´?h ?ÅÅ€hifglçÛ¥¶ãöoÃxo§¼g;l!!w¬7ÑÜÜYsƽ˜z˜V˜Véééhh-µ!laµ!YY½Y»Ñ»Y ;jÃj¼}}ÃçiwahkÅ;18¢¥1¢ §w¬-;i;;;lµaµµk7ssÐ -´khkkÈk´hkkç¼ÍíÛ ¢÷÷÷¥¥¥¥ h-´ ÅÅ7s µglcÃ¥1Íää÷üç4c¤i;;!-ÅÊzY{Æ»z˜zܘVVééé2hh-µ!µwlnkÅz½ÆÐ iž444ç44ii;n› ´h›µ!;ilµ›-k7Ð h-›--Xw;n;-¬ ? ÆÆÆ ´›-an›-al!;!.µ?ÐÊ»ØYYÑ»Y ;fuf¤¼ÃÃoç;!µnhk?;18¢¥1¢Û!h-;c;;;lnn›k7s€Ð hhh´´k kh´kkçxÍ ¥÷÷¢¥÷¥ §--k ??7s?µglµcÍ÷¶1ÍäU¥uoÞ¤gill!-ÆÊÜÜY{ÆYzÜz˜˜éééÊ´k-µµwµw;nkÅzØÆÐ i¤4444ç4ii.XaÅ´haµw!lila-k±ÐÅh›---!w;nl-¬ ÅÅ?7? ´-›››-hn!w;!µ;µ?Ð2YY½Ø»Ñ»YÅ.jç礼u}íÍoçi!µn-k?;18÷¥1¢ --;i;;;lwµµank7ÐÐÐ ¬´k´´È kh¬Èkoí ÷÷ ÷¢¥¢¥Û§--´ ??7Ë?g!µ¤u ¥1uäU¥uoÃ4ciil!!-Å2zÜË7Y~zܘV˜éééh´-Xw!!;»YY»»YÜ{›Ãu§ç4ÛÃÃÛÛ}j§c;!›k䥥1÷¥íc;;;;;;;;ic.i4iµÈ7€7k?? Å Èh7{7µcf¼x}÷¶¶¶q¶÷¥Û¼l-›k ?7s7kXnn!c4uíqU8fjj§žçi;;;XÈ{zÜ»Ð{Vé˜Vé» -Xnµ!!wÅYËz›gç¤cžc;!›Ð7hlii;!!°h?7¬aµa-›--!hk´ ÅÅ7±ÆÐ7Ð?Åkk›n-alcc¤ilçgaÅYY½Y»ÊYØz›Íç4ÛÍu üžgi!µ¬´䥥1 ºi;;.;;;;;ii;;žcµÈ7Ë7k??? Å È´{7µ§¼¼ÍíÛ¥¥º¶º¥¢÷Ûfl¬-h 7Ë7hnµa!¤cçÃíãU)1jfíf§4çiii.Xkzz»Ð{ØVVVVV³Y k›!X›°!wÅ»€zЛc¤¤ç4§¤ç4¤;-Ð7hw°!.i;!w°h?7-ann››¬¬!hk´ÈÅ 77Ð7бÆÅk´nµ-a;ggilçcn ½»YØYY»»ØzÊnÃ}j4ÛÃà }¼§c;!µµ¬k䥢1÷ºíg;;;;;;i;cii;cµ ÐË7k?? ÈkÐ7µ¤§¼oÍí¢ºº¥º¥¥¢ fl¬›kÈ 7Ë7hµµµ!c¤ç}ãU)1j¼í§§žçgiii°k{½˜z»ËØVVVV³»ÈÈ-aµwwwYY»YÑÑ»ØÑY gxí§žÃÍíÍo4ilµµwhÍ1¶  Í}xç;i;..cii;Ãojcµhh¬kkkh-hkhÈÐʱ-;gg4§ÃÃÛºq¥¥¥¢ ¶¶fww›k 7Ð7 ´›µl;nhµˆ÷uxojçciig!-ÐY˜z2Y˜˜VéV³z? -!ik›nnw!?ËksVYÈ;cg¤çijçg´Ðдµw!n!!!!wahhhhh¬hÈÈh Æ7Ð{€ÐбÐÐ77Æ´›¬l§§§çc¼¼c-Y»YYYÑÑ»»Ø g¼fžÃ}Û}x4i!µwhµí1¶÷ Í}jç;i;.icgi.oxjgµhh¬hk´h¬h´-k7ʱ-lcg4oöq¥º¥ ¥q¥f!w›kÅ7±7Åh-µ!lnhní®ÛÃÃxjçc;ii!hYVz2Y˜˜˜˜é˜˜N½??-!;h-aµ!!?˜ËÈËVNYk.g¤¤i¤jih€Ð´µwwµ!!!!wwahkh¬¬´hk hÈÆ7sËËÐÐбб77kn-l§žçco¼i¬2YYYYÊÑY»Y?io§ÃÍíÍo4c!°µw¬µÍ1¶  ÛÍÃoç;ii;iic;i¼¼j¤hh¬´´kh-h´hȱʱ-;giçoöq¶º¥÷÷¶¥fnkÅ7±7Å´-n!;a¬›í®ÛxÃojçi;iil¬Ð½V½2ËY˜˜ééVNz7 ›!i°k›an!½ØYÑ{Ê»½Ê½Ð§Û ujx} u jç.!w!aµ!Ã8ä¥¥Û }j4cilwl!ll4fÍfc;!››µ›---7€Ð7 ›µ;c44Ã÷¶º Û¶E¢ÃihÅÆ7?Èk-µ;;µkhiíä®þE¼ͼ4g;;i!›7Y˜YÊYÜV˜˜éé˜ÜÐÆ¬!¤;››--a?z7hYܘ³Y !!;;;i¤4çcc-±hXµ›-nn-¬a-hËËË7ÐÐ7Ð hh Ë2ÊÊËË{ÊÐ ?§4¼j§Íu4w±»YY2ÊÊY½Ê½€§Ûüx} Ã}ͼç.la!}8䥥 ÛÛ}x4¤i!w!l!!ç¼í}§g;!›-nn---ÐÐË7 ›;4o÷º¶ Û¥ã¥Ã;hÅ7Æ?Èh›µl;Xkhgíä®E j}}¼žc;i;;›Æ»VÜYÊYÜVé˜VVÜÐÆ-!¤;››--Xn?z?hY~YȰw!;;;.žžççç¬77hXµa-nn›-a›¬ËsË7Ð7± hh €Ñ{{ËËËËËÊ7 7w§4žo¼§ÍÃ4!½Ø»Ñ{2»½Ê½€!Û Ão¼} u} jç;!wa!}8䥥 Û}¼4¤i!!!l!;ço}§i;!Xa-µa-¬-7€± ›°µi4x ººÛ¶E¥Ãih?7Æ?Èhaµ;;akhgíä®E ¼}}¼4g.i;!-7»˜ØËYÜVV˜˜V˜˜€?hl¤;››--°Y»»ÊË2YYÜ»¬cÍ}foÛÛ}ÃÛÍÃc.llw;ó8Uq}Íí íÍçg!µw!!l4ÃÍxjžç;!›´È? ?ЀÐÅkh-µ!çu¥º÷÷ í÷qãq§´7Æ k-nµ-´¬-4ºþ)º Ã}}Ãfçi;l›ÅÜÜØ{»z˜˜˜V˜€?-cç.!-¬-È€hk½zé{È´-!l!;i;g4i-k--k´ÅÈÅ7€ÐÆÆz~½YÑÊËÅ´hÈÊ{YYY»2ËËË{€2hc!çuu}ck½Y»ÊËÊYYzʬc}ͼo }à o¤;;!wµ;í8Uãí}}ÛíÍçg;µ!!;4}íÃfžç;la´È?? ÐÐÐÅ h¬µlçu¢º÷¥Û qEqç´?7 khµXw-hh›4ºþ)qÛíÍ}ÍÃfçi;l-?{ܘ~Ø{»~˜˜Vé˜s?¬°c4il-¬¬ÈÐkkzNé2 h-!;lw;i;içi¬k--kk ÈÅÐÐÐÐ7~~~YY2Ë{Åkh ÐÊÊØYY22Ë{ÊËÑ´c!4xÍuÍi´Y»YÊËË2YYzÑ´}uͼxÛ}uÍÃg;;!wµ;íó8UqÍÍ íuçclµ!!;çÃíÃfžç;l›hÈ???7€Ð?kk-!çÍ¢º¥¥Û ºEq´?7 k¬µµw-hh›4ºþ)ºÛÍ}}Ãfçi;;-?~~YÊ»~˜VV€Æ-Xcç;!-h2»YÊÊÊØYwfuí¼¼ÍÃu}¼gl;a;Ã¥U)ä¥}âÛíujç;!!wc¼oüçciilµÈ7?´¬ sÊËËÐÆk-¤ju ºE ž kh-µ›¬h hhžUþ1¥uÍ}¼4c;° sØzÜY22Y˜VV˜VË7h¬!i;µÈ-›hµ´YV~ÜNNÜÊÐ ¬-waÅk¬-n›lh7È?ÊÐssÊÑ»»Ñʽ˜VÜ½ÑÆ7?¬k±»Ñ»Ñ{sËssÐYÅ›ç§ÃÃÍ}o§wÑ2»2{{ÑØYY€wfÍo§ÍÛÍÃ}íÍÃoži!wia;âU)ä¢}Ã÷ íÃfç;!!!i¼¼o¼4c.;!›È7?h-Ås2s€?k¬w¤¼Íí ºã 4 Åkh-a¬hÈÅh-µžUþEÛ¥}}Í}¼4g;µk€Yz~ØÊ2YV˜˜˜˜VV€7h-l4i;µÈ--hnhØÜܳÜË7 ¬-!›ÅÈ-¬µ-;h7ÈÆÊ€ÐËÊ22Y2½éVÜØÑ77?¬k±Ð22»»ÊËsÐs» ›ç§ÃÃÍÍoj!Ñ»YÊË{ÊÊYYYÐw§ÍíÛxfÍÛÃÍíÍ}¼c;wia;o¥U)ä÷}x¥ufç;w!lw.¼¼oj4g;il›È7?´- ËÊËÐË7ÆÈ-¤¼uíí ºã µ ?kh-Xahh h-žUþEÛ¥Í}}¼4c;µÈÐØÜÜØ2ј˜V阘€7h¬;žg;°kÊÑ»»ÊËË{»2~½hç} }§xÛ}xíu¼¤!nwcoÛE8þUº}}÷¥÷xç!wX!c4jÃxjf4¤c;›?€7hakÐÊ€Ë{sË7h!ifÍ}Í¥ãã;hÈk¬-XX-´ÈÈ›;g1®)ºÍíÍíü§cw¬7»Üz»»ØVéééVV˜s7´hçžgg;kk¬µnk»˜é³éVØË7?¬!hÊ»ÊÊÐ7aÐéYÜËѽzYÊÑ2s2ÜV˜VzØÑ€k;;kÆ€Ë{2ÊË€Ðб Ðh!h4c§}ÃÍÊ»Y»ÊËËËÑÊÜØhçÃ¥Ãfx o Ãjç;µµwx÷18þU¶}í}÷¥ xçlwµ;c4fuxf4¤ia?s7kahÐÊËÐËËË€s{7h!if}Í ¶ãã;h kh-µX-´? ›µ.c1®þº}Ãjc!h±YÜ~Y»ØVVééV˜NË7´´°çžci;kk-µµÈYééNéV½Ë7?¬!hÊ»Ê{Ð?›ÐéY€Y½zY»»ÊË2ܘ˜VzY»Ð´;;k7ËË{ÊÊ{ËËбŀ´!hžcf}Ã}íÊÑ»»2{ÑÊzh4} ÃjoÛ}¼ u¼çlµµx E8þä¥}íÍÍ ¥ Ãç!µ°;cfuÃf4c;µ?Ë7h›´Ð{ЀÊËÐË7h!gf}Í ¶ããihkkh-µµ›´Å ›µ;c1®þºuÍíÃjc!h±YÜ~»2YéVééVé˜NË7hhµçcgl´´Ø½YÑ2ѻرxÛq÷¼Ã÷¢íujç;!µ!ijÛE11äºí ¢ÍÛ¢º¶Í¤;wX;ç¼§§§§§fj4kƬµ›?ËsÆËs€7ÐsssËs µioºq jh›aµµ›°;!µ!.ó8¢¥ ííÛu;-?ʽÊY~z˜˜˜˜˜˜ééÐkÅ? žçg;µaanÈ»VééVé³½Ês7-.7Y½z€--³é½ØØY½Y»½Ü˜V˜Y2ÊsÈÛ›ÈбÑÊÐ2»»ÑÊÊÊÑÐ-ççžoÃuÍí´YÑÑ2ÑÊ2YÐx º÷Ãà ÷íÛ}o4;wli§ÛãE1äº ÍÛ¢qºÍžc;!nlçff§§§§§§§ç Ƭ›7Ës7ËÐЀ€Ë€sËs µi4oíºã÷h››µn-ll!i4ó8 ¢¥ÛííÛ}ž.-ƽ»Y~˜˜VéV³³€k?? wžçgiµµµnÈј˜V˜éé½{Ë7-;7ØzÜ€¬a{éé½ØØ»»ÜÔV˜YÊ{ËÈ› 7±ÑÊ€Ñ2ÊÑÊÊ{Ñ7›çjÃuÍ´Y½YÑÊʱËÊY½7!à q ožÃ ¢ íÍjç;!!g§Ûq11äº ¢ ¥ººÍžg;!nnl4§f§f§§§j4k?¬µ-Æ{ËÆsËÐsÐssˀŵi4xíºã §¬››µµ-X;!µli4ó8 ¥¥ÛíÛÃ4i›?½»ØÜz˜˜˜˜é³Ð´Å? !žçiiXl€2{2»½ÊÊÊ{»74à ºqÍ ¥í÷í}üžiw;c§ºEE1¥ Í ºº }jµµ;cç44444çž§§¤cic;!-?Ѐ€Ë€ÐЀsÊÐ?hžÃ ã1¥ç!¤4c;µwi;¤ÃqUU¥Í ÷Ã4?Y½~½ܘV˜VVéééV7›h-kwççcc!!°X ؘé˜ééz€Å-žçÈÑØÜYh›ÆYܘéÜÜz½YYz~˜é½YÑÊ7Í¢?kkÐÊÊÊÑY2ÑY½Ñ?-;g4§f§jjl€ÑÊÊÑÊË{2Æ4o q¶Í ¥ Ãüži!µ!gf¶EE1¥ÍÛ íÍ÷ºº uj¤!µ;¤çç44444fçgii;!-ÅsËsÐÐ7ÐÐÐÊ€±?¬XÃÛq¥ç!ç4;Xµ;;xqUU¥ÍÛ¥Û}4ÅÊ»½½»ÜV˜V阘˜éÆa¬-h!ççc¤!XXX Y˜Vé˜éézÊ€Å-žçÈ2~Yh-?YÜéÔ~½½Y½z~˜˜é½YÊ27Í¥?kkÐÊ{2»½{ÑY½½»?›lcžjffxl€2{2»½ÊÊ{2Ƶ4¼÷qºÍ ¥í ux¼4;µl¤fºEE1¥ÍÛ Íí÷ºº u¼g!lcççç4444ž§¤cici!-ÅÐsËs€€€Ð€Ë{€±?¬°oÛE¥c!ç4;µw;;xãäU¶Û¢Û }4µÅÊYz»˜V˜VV˜ééé7ah¬´ççiw;7ËËËËÑsÐs€?n;gfºEÛjà }o¼jiµ;¤¼¥ãEE¥}ÃíÛÛ¥¶¥÷Ûͧ§¤;i¤44ç4žžççfouÃjx}ji›k ƱsË277Ð77sÐ7Ês ;cw!g§xçl!;ili§¥q¥Í  ¥uikËÊ{2ØÜVVéVéV˜éé7›nµ›°c44ilwµ?ؘ˜éé½2€ -¼x›ËY½YÆÈhk?€Yz½½YYØØ½~ÜVéÜØ»YʼóÛ? hk7Ñ»ÊÊYYYYØØØ»ÅµcjÃ}}i7ËË{ËÊËsË€?n;c¼¶E ¼ÃÛ ͼoj;µµ;fÍ¢E1E¥}}Û¥¥¥÷ ͧ¤;;¤4ççžžççž¼Ã}ofxͼi›´k?ЀËÊÊÐÐ7ÐËÐ7Ð ;c!!c§¼çl!;c!c§¥q¥ í ¢}iÈ€ÊÊʽzÜV˜˜VVVVééЛnµ-µi44;lµÅV˜éé½2€ ›¼o›sY½»7Èh´ÆËYV½½½YYØØ~ÜéÜØ»½Ë¼óÛ? hkÐÑ»ÊÊYYYYYØYÅX¤¼ÃÍÍ;7ËËËËÑs€Ë€?n.cf¶EÛ¼ÃÛ ͼ¼oiw;§Í¥EEE¥ÍuÛ¥¶¶ u§§¤;;ç4çç4ççjou¼jÃ}finkÈ?±€€ËÊбÐÐÐËÐ7€ ;ííc!!c§f4l!;i!c§¥º¥}Û  ¥Íik2{ÑYzVV阘éVéЛnµ-°i44i;?€sÐ7ÐÆs7Æ ›!!gͶ¥ÍoÃoÃü¼x;µµ;ç§Ã q11qff} Í÷¥¥¶¶o}ofjx}xxÃ}xj§žj¼u¥ ÍÃg;n´ ?±ÐÊËÐÐÐÐÐË? ?ÈȱYØÊ±-;.Xlµ;c§¥ íÃà ۥ ›7ËËsÊ»z~˜V˜V˜éé2 n-nl¤44ç;lwa?YV˜é˜˜z»ËÅj¼! »z ÈkkÅ7ÆÐsË{ÑÊËËÑ»ØÜ˜˜zzؽØ;äµË?›hÐѽ»ØØ½»»½½Ü½±-;}ͼ;?sÐÐ7€7ËÐ7ÆÈa!!cÍ¥÷}oo¼Ãx¼¼x§in;ç§u ºE1q¼fu ¢} ¥¢¥¥xͼffÃÃ}xxÃ}j4¼¼} ÍxclahÈ?±s{{ÐÐб€ËÆ?? ȱY½Ê7-;i!l¤§¥ Ã} Û¥Û§nÐÐssÊYz~VV˜V˜˜³˜2 ›°›X;¤44çilw›?Y˜V˜VVz»sŵj¼l »½{Å kk 77ÐÐs{Ñ{ÊÊ»ܘ˜zzz½;äµËÆahÐ2ØÑYY½»YY~Üz-;žÍÍj;?ssÐ7Ð7s±ÆÈ›l}º¥}oxoüxo¼;nµ;çf} º11q¼f}Û  ¥¥º¥x}¼§fo}}oÃÃ}jž§¼xu÷ Íoglah ÆÐÐ{s7бÐËÆÅ?Èkл½Ê7›;;X!!c§¥÷oÃí Û÷Û§n7sËËÊY½˜VéVVéééÊ ››n;¤ççç! Ʊ77Ð7ÐÆÆ?kµw;çãE¢x¼ÃÃ}o;-a;çfoq11E÷¼¼í ¢¢¢÷í¼§¼x¼Ã¥íuuxÃÃoÃÍííjži;lwµkÅÐ{s7Ð27Å ?{YÊzz2?´-µwwXµgÍ¥Í ÍfjuÛ íÛÃ; ËsË2Y½˜˜V˜V˜éé€-›µ°;cciç¤;-7YV˜ÜzYÑ7;ž§cµ½7k?? ´k-Xhhhk ?Æ7±ÐË2YÑ{»YYÊwäÀ»´!› YzY»»Ø½Y»zÑ7-i¼}¼lÅÆ7Ð7Ð777??k›w;çíEE¥x¼uu}Þl-µ;4§xq11E ¼4¼Ûí ÷¢¥¢í¼§joÃu }Ã}ÃoxÃí¼4glwµXnk?Ð{{sб27 ?ËYʽ½»?h¬µµ!XiÍ¥Í Í¼fÃÛÛ íÛulÅsË€ËÑY½V˜˜é˜éés-›nlicgçg;-?VVé½½ÑÆ;§gaʽ±k ?Èkk¬X-¬kÈ ???7€ËÊYÑ{Y»»äÃsÑhwn Y~YÑ»Y½YÑz27¬io}j! Æ777Ð7Ð7Æ?ka!;çíãE¥x§¼x}Ãx;›µ;4§¼q11E÷¼ž¼íÛÛ¢¥÷÷x§ooÃuÍÛ ííÍ}ÃxxoÃͼžclwµk?ÐsÐÐÑ7 ?ÊY2z»?h-µw!XwgÍ¢ }¼jÃÛ í ulÅËËË2Yz˜V˜V˜˜éés-›µ°;iccç!Å777±????k-a!!!cEE¥Ã}Ãxž;--!4§jÍ¥Eãã¥jjà ÷÷¥¥f§¼Ãf4žÃÍÍÍío§j¼ooofçi;;;ciµhÈÈÈ ?Å ÆÐY~YY½ØÐhµµµ!ahµ§ }}}¼¼¼ ºck€ÐËʽzVéé˜ééVYk¬µwlillici!h7½˜˜ézܽYÜY±c4ç!Æ{k´kkkkk-wµ°wwn-hhkk ?77? 7ka¶óEÈV€n.l?€7 ?€2YY½YЛ4¢!?Æ7ÆÅÆ?Åk-nw!llc1EºoÍÍux;--!ç§fÍ¥Eã㥼fjo ¥¢¢¥f§ox§çž}ÛÍ}ííç§¼ooo¼4gi;;¤ihÈ ÅÆ ÅÆYÜYѽYÐkXµwµ›´X ÍÍÃxf¼ºíhË{±Ë»½ÜVéé˜VéééY´-°!ilwii!¬Ð½˜˜V~½½Y7c44çl?{kk kkkk-µXw!µ¬h´kÈ ?77? ?7 ¶UEȘ˵.l?ËËÆÅ?€ÊؽY½Y›ç¢!Å777±????k-nl!!gEE¥ÃÍ}x§;-¬!çjÍ¥Eãã¥jfjoí ÷÷¢¢j¼xçuÛÛ}ííío§jo¼j¼fçg;;;ciµhÈ ? ??ÐØzYY½Y€´µµµX›´µ íÍÍÃxfx ºíÛhÐËЀʻ½Ü˜Vé˜éVYk-µ!lillcl?ÐÐÐ?? ? h¬›µw!iÍ1U1ü¼iµh!4¼ ãEã¥Ãj¼¼ÃÛ¥¶º¢fou§¤coÍuooÃxÃÍ}¼j§§§§4i;;;ç4cwn-kµ› Ðs2Y»Ü~½ÊÆh›-wµahk!o}Íuxjº¶º j7s7Ë{YØÜܘ˜˜˜˜ééÜŬ!;iwµ.gi;›ÐV˜ézzØÜØ74çiin -ÈkÈÈk È´h-nµw°µn›››hÈ k-›¬µ 1ólzY7›cXhÅh!wn´7ʽÑÐhiÍlƱsÐ?? ??Èk-›XµiÍ1ó1¼x§žin´!ç¼ ãEã¥Ãf§¼} ¥¥¥¥íjoÃjc¼Ão¼ÃoÃÍ}jf§§4c;;;çžiwn-hn-Ås»2ÜzÊÆ¬›-nhklÃÍ}Íu¼jq¶º jµÐs7Ë{½zÜܘ˜VV˜˜é hw;g!µ.gi;›€˜VVܽØÜYÆç4iia -kkkÈk khh-nXX›n›ah k-›-µÛ1ól½½7a¤X¬?-w!n´7ËÊY»ÐkcÍl?ÐÐÐ?? ?Èh-›µµwiU1o¼fž§ž;µh!4o ãEã¢Ãj§¼}¥¶¶¥í¼žoujž¼x¼¼Ãoo}ͼ§§§§§f§çi;;;44cwn-hn- ±Ð2Y2ÜܽÑ?hn-wµhk!ÃÛÍ}}¼¼íº¶¶ ¼µÐs7ËÊØzÜVVé˜Vé˜³Ü ¬!!ilµ;i {ÐÆÆ? Èkh-µnµ›;iifqãÍfc;žgµ´wç4f¥q üof¥¥¥¥¼iuož4žo§§¼f§jxÍÛ Ãžc4j4§žciiii4oc;l;µµh?7»ÜØ»»Ø~2 aXXXwµkhcÛÛÍÍÍÃÃí E¶Í;ÅÐŀʻ½½zzV³V³˜±hw!!g;°;;ginééV~½½½Ü» ž¼4;c;n¬kkk Å?? Å Èh-µw!µwwakÈ -hl÷8oлËw!la!;iici;a¬ s2Èii €Ð?7Å k¬›µµ›;gifºEÍfci¤ck4žf¥q Ãx¼¼í¥¶º¥¼iu¼çž¼f§oj§§xÍÛ Ãž4j4§ž¤i;ii4¼c;;lh?7ÊÜØ»ÑYzÑ n°nkhcÛuÍ}} Eº};?7 ËÊYYzzzz˜˜³ééVÐhw!li!;;cin˜é˜~½½ÜY žx4;cin¬´kk ??ÅÅÅ È´-µwlµwa´ È -¬;¢8oÐ{Ñ˵l!›;;iccl›¬È€{ ii {ÐÆÆ?ÈÈkh›µan›;gi§ºqÍjgicgµkç§ž§¥q Ãxxj¥¥¥¥f.§Ã¼žçjjjoj§jxÍ }žcçf4§;ig;4¼§3;;lµ´?лz½»ÊØ½Ê ›XXnwkhcÃ}uu E¥};?Ð €ÊYY~~~˜³éé˜Ðhw!lg!X.cÈËs k´h¬h-›Xw!cÃ¥÷¼gia ›;-cj¼§x qq÷ Û¼fj ÷÷¢Þ44§4çç§žfxoÃ}xo§4ž44ççg;lc4jžç4g;;X-h Ë½ØØÜ»?¬nµµh-¬°guxjoÍ1UÃiÈÐkÊYzz˜˜éV阽h;i¤!µww.cµ»é˜˜VzÜY»VYnÃç;;ilnhhkkk ??Æ??Èkh°wwXahÆ´?!÷EUä;?±zÊ›¬7hh¬wc;i44;-Åc ËË{sÅkkh-hh¬›µµw!ix¥ §gi› ?a;¤-gjffÃÛqã÷Û Ûx§f ÷ ÷Ã444f4çç§ž§¼xuuÃxžž44ççc;;gžf44gl;°-hÈ˽ؽؽÜY?-›nµµh¬¬µcÃxj¼Ã1UÃcÈkÐ{Yܘ˜˜Vé˜VéYh;gg;µ!.ca»éV˜˜ÜzØYY›xçl;i!µµhkkÈkÈÅ???Æ??Èh¬Xwµn¬7´?! ãUU;?½{›h±?¬h¬wi;iž4;¬ÅcÈËs kkhh¬¬›!!iö÷¼g.aÈ?n;-jffÃÛqq÷ o§jí÷ ÷¢ÛÃ44f4ççžž§¼xÍíÍü§4žççcci!i4fç4cl;µ-hÈØ½ØØzÜYÆ-aµµhhh°cÛÃü¼}Í1UucÈ7kÐʽÜÔéVéV½h;i!wk»»Ð k ´hhkh›aµ-°l¥q¢fcwhÅ?k›µl4fž4fíãEºííux¼Í ÷¶¶ o4¤ç4ç4§§¼}}íÍ}¼f4ç¤ccçc.g444çžç;;;›k?½ØY½z½Ðkaw›´kk-l瞼ü§f¼Uþäuak?7sYY½~~ÜVVܘVkµ;i;a!!lhYéVz½zz~±;¼c;;;!µ!›hkÈkk ÅÆ???Æ? Èh›µ!wµ›- hƤu¥EUË?ÐaнYY2ËË k›!¤§¼okÑÑÐ k k´hhh-aX-w!¥E¢fchÅ?ka›!4§çjãEºíÃuxÍ ÷¶¶ ožç¤žž444§¼}ÍíÍü¼4žç¤cc¤i;c4žççžç;.lµ›k?{½ØY½zØ€kµ!nhkhalçžoÃof¼¼ÛäþäÃnkÆ7Y½Ø~z~ܘVܘV½kµl;;µnw!lhYéVzܽØÜ;¼c;;;!›hÈkkkk ??????Å ¬›!!µ›h hƤͶEäË Ë±µ€½YÊËË k›!§xxk»»Ð k ´hh´h-an›µwl¥q¥f¤wh ?È›µ!ç§çjãEºí}}¼ ¢¶º ožç¤4ž444§§§¼}}}}of4çcç¤iic44ççžç;.;ak?{Y½YzØ€kµwn´kh-lç¼uojjxÛäþäÃaÈ?7s»ØzÜÜܘ˜˜z˜˜kµli;›j!ËÆÈ´hhhkh›n-¬›h´;Û1EºÍgµ Êдµc§4Ã¥1ã}}Í ¶ã¥Íj4¤c44¼§j§jxÍÍíÍÍÃoj§44¤ççcc4§§4ç4c;;clµhh7»ØYØz½ÑÆ-w!-kÅ ¬i4oÃo¼oxx¶)þÛw!kÆËYØY»Yؽ˜Ü˜éÜ µii;µwl!wkéV˜½½zܽ c4g;;!w;nhÈkk´k Å?? ?kawµ-´´74Ãx4EE´?лz!h2z»»½z½½Y?›lcj!½Ë?È´´¬hÈ´›a-hahk; 1ãº}¤° Ê€´ç§§žö1Eí}ÃÍÛ ¶q¥Í§4¤cç4žjf§j¼Ã}ÍÍuof§çcççç§§4çc;;i;-k72YYؽÑƬlµ¬k ?hi4oÃü¼ux¶8þÛ!!´?s»ØY½YYØzÜzVéz ii;µ!l!wk½éV˜z½ÜÜܽ ¤i;;lw!wnhkÈkkÈÅÅÅ??Å Åk-a-h´ÆçÃÃçEãk?ÐY½!kÊÜYÊzz½{?-!ij!ËÆÈ´hhhkh-n-¬-h´;ÛEE¶}gµ ÊÊ´µ¤f§4§Ã¶1EíÃííÃÍí ºã¢Íj4cc44ž§f§jfx}ÍíÍÍüj§žç¤ççcž§§4ç4c;;i;µhk72½ØØ½½ÑƬ!¬k Åhi4¼u¼¼¼Ã¼¥8þ!!´ÆsYY½Y»½~ÜééÜÈii;µµ!Å»YÑ?khh´´h¬-hk€2¬}EEóãckËÑÑs !¼xj§ÛEE¼ÍíuÍ ¶º¥íÞççžžj¼f¼¼}}uÃx¼j§4¤cg¤¤¼x¼4çc;;;;a¬ÅYz½Y½{Æ›!!µ- 7?a;x¼f§¼Í18÷c¤?˽z»»»Ê2ÊØØVé~Æiii!!;!µµÈYé˜V½½zÊhçžill;!!w!µ-´´khk kkkk´È È-aµnn›h?nçuw¤¶ЀY{Ü? лÊÑØ2YØzܽYÊËÅY½ÊË?kh-hkh›-hÈs{hÍE1Uãi´Ë»»Ë wžox¼§Eã¼}uÍ ºº¥o4ççž4žj¼f¼¼}íÍ}Ão¼fž4¤ggc¤¼o¼4g;;;lµa›ÅÐYz½½Ø½?›!!X¬ ÆÆn;xo§§4¼Í18¢igµ7zØ2»ÊÊ{Yؽ˜éÜ?µici!!;!µÈYé˜VØhç4c;;;l!!!µ-hkhhkk Èkkkk Åk¬µµµa›h?n4äºÐÐYÊÜ? ÑË»Y2Yؽz½»2Å»YÑ?kh¬´k¬›-hk€2¬u1EUãck€Y»s !4xxj§Eãx}uÍÛ¶º¥íÃççžžojf¼x}uÃx¼f4¤c¤ccgxx¼çc;;;lµ- ÐØ½½Ø½?-!!X- 7?n;ooj§žoÍ18÷igX?˽½Ø2»2Ê2½½V~Ƶici;l;ÔË€Y½z~YÐÅhhkkhak ËØ?c¥ãUäq4›7ʽ½2 lÍu§x¶q}¼íí}xÃ¥¶¥j4ç44¼o¼¼o}ÍíÍ}}o¼fžci;;;;liuͼ§ç.w!!ak ËY~½z½Ñ€?›wµXh 7nçÃ}Ãgžo÷UUÍiµ?ËzzÑÊYYY½Üniccci;!XakÑééé˜z½~74çi!;iil!llµ-hh-´Èk Èk´h Å´¬-¬h¬h7ƵíEͬkË7YV½VÊÊØÊØ½Y»Ñ»YØYØVsÐYØzÜY€?h´kkh›k €YÆ÷ãUUq4-7{YØÈ!f}Ãoºq}¼ííÃxÃ¥¶¥o4ç4oof¼¼}ÍííÍÃx¼fi;;;l;i4}}¼§žç.!!;!-k ؽ½Øz2Ð?aw°µ- ?µçÃÍocžo÷Uó}g° Ëܘ½YÊÊYØY~zY7›igcciiwX›kYV鳘~½z½Ðµ4çi!l;ilw;l›h¬hkk Èk´h ´--¬h¬h7ƵÍEu-kË7½YV2ʽ»½zY»»»»YØÔË€Y½z~YÐÅhhkkh›k ËØÆc¥qäUqž›7ÊØ2 !§uçoºq}¼ÍíuÃÃ¥º¢¼çççx¼¼¼¼ÃÍííÍ}Ão¼fžçi;l;;lcžÃͼ§çi!!!›kÈYz½½½2Ð?µwµµhÈÈÆnçÃÍx4c¼¢äóÍg° Ëܽ½YÑÊÑY½ÜØÐaiccc;;˜Ø½Ü~½Üzz2?´k ¬¬h €ËhcoEóõȀØ»ËÅ!¼j§ Ã}ííÍxÃÍ¥ u4cçfj¼fjxÃííÍÃÃf§4i;l!!!;çoÍuo¤;!i;n¬-Åлz½½2ÐÅann-k´?¬;icç4gjEä¶4;-н阘˜V˜~z˜~z~YË›;iç44w›-ÈÊVéé³éééÐlžg!!igil!;i;µ--›h-´hÈk´k-hh-ahh¬ Ðkçºnn2»Ê~z½½½»2ØØØ½½½½zØ»˜½½Ü~ÜzzÊ?hkk-h¬ sË´cÃãUÃkszØ½Ê w¼f§Û÷uuíÍíÍxÃÍÛ¥ Þcçž¼¼¼¼¼oÃÍ}u¼j§§4i;l!!w;çoÍu¼§¤ll;lµh- €Yzܽ»s?nµnhÈk7h;ii¤ç4jE8¥4;¬7½V˜˜VV˜zܘÜzÜËn;iç4c›- {˜é³é³ééV7;žc!wli¤il!;ilµ›-a-hhhkk´k›hh-›hhh Å Ðk4q¤na2»˜Ü½Ø2Ñ»ØØ½z½½»Y˜Ø½Ü~½Üzz2?´kȬ¬¬ €shcÃãóoµÈ€½YYÅ!¼fÛ u}Ííí}oÃ}¥ ocçž§¼¼jjo}íÍ}xf§çg;;!l!lçou¼cll.;a¬hÅÐÑzܽ»s?›nn- k?¬;iiç44cjE8¶4;¬ÐzéV˜VV~zzÜYs-;iç44ËØzÜz˜{Èk ¬;µµµhÈÈ›;xº¥ç-»»»½»?4xžuüÛÛÃÍÍ}¼f¼}÷÷ížç¼¼¼§j¼xí}x¼§§4gi;;;!;cž¼oÃf§çi;w›hk YzzØ»Ð-X›n¬ÈÈ?¬n Ð?¬!µº }xlÈјVVé˜V³VV˜Ü{›..c44l-k Y~éVNN³7i4;wXlii;;;iiln›aa›a›-hha›an-¬µ;-?ÅÈ-;¶¥Ílž´s±sY~˜~zؽY½ØzÜz½Y{ؽܽY~˜Ü ´?¬lXµa´Èkn;uq¥ç¬Ð»»YYÑ?žx}xjÍÛÃÍ}¼¼jÃ¥÷çff¼§joxíÍ}ü¼§çii;;;;;iž¼Ãxjj§çc;!X-h´ 7»zzYÑЬµ›n¬kk?-n Ð?-lwµº ͼ!k»˜VééVVéV˜˜½Ën;.c4žž;-kȱ»zéV³N³7;ç;wµ;i;;;i;i;µ›››aµ›-hh››an--µ;›? È-;¶¥}!žhÐ7Ë~½z½YzY½Ø½Üܽ½ËØzÜz˜{Èk h;Xµa¬È µ;Ãq¥-»Ñ»Y»?wžÃux¼ÍÃÍ}ojjÍ÷¢¤çfffj¼oÃÍííÍx¼§f4g;;;;!;c¼oÃj§çc;l-h´ Yz½ØÑЬX›n¬Èk?¬n 7?hµlµž¥ }¼lkјééVV³V˜˜zÊ-i.c4žz˜YÊ~Ü~˜ÔVY?k?kl!an!ll!;u?s»2ÑÊkcÃf¼fí oxuü§oú¶ ¼¤4§jff¼oÃÍÍÃoffçi;;;;;w;ç¼ÃÍͼfçl°µ›k kÅ˽½~ÜØ?›n°nhkÈw;›7Ê€7ȱ±µÍ÷aËÜܘ阽阘˜z»-;wlcçc-ÈÈÅл˜˜éV i¤;lµ;;;;i;;i;a-›Xµa-››µµ--iuÈ7h!;ºqc x!s7ÐÜé½»~ÜY»ØØ½½ÜÜ~Y½˜Ø2~ÜÜVV˜YÅk?k!wµµ!l!!;cu°?s22»½2kgo§¼jj ÛooÃÃo§o}¥¶Û§g4jjff¼ju}uxffg;;;;l!!;çoÃÍÃffç!µ›´ kŽ~½ÜY aµµn´kÈ;›7ËÆÈбµÍ÷g-s½½ÜV˜z˜é˜VVܽ¬;wlgçi- ?€»é˜é˜Åic;lµµ;.;;;i;;lµa-›µµµa--aµµ-¬ix 7h!;ºq¤kxí!s±Ðé~»Üz»»ØØ½z~zzYz˜YÊ~Ü~˜ÔVY?k?k!waµw;!w;cíÍ?sY»»Ø2kgo¼fj÷ ÛooÃü§oö¥ jcj¼j§§¼}ÍÍÃof§ç..;;;;!!;4¼ÃÍͼjç!µµnk h ˽z~ÜY ›µ°nhkÈ;›€€ÆÈ7}÷c›Ë½ÜzV˜½V˜VV~Y¬;wlgçz½ØY½Üܘ½ÐkkÈkwlµa!¤ç§E¥4´ËYʽ»Ñȼ¼§§§}¥}ÃÃÃ}Ãj¥÷ÍugxÃüfxíÍÍuÃf¼žg;;!!www!;cçfÍujç;w›hhk ?sYÜÜz7h-X›h›µaÈ;;hh¬kÊ»nžxxiÈ?»2ÑzzØYzVé2›lliig4çh´?? zÊzV鵞;wµaµll!;;l;;µ¬›¬µ!l››-›anaµ;4ç´{s-;÷E-hiÃ¥µ7޽½Ü»½½YØzzzzÜYؽzz½±kÈÈ !lwµµl¤ç§Ûã¥4h€YÊÊØ2»k4Ãx§§§Ã¥}xoÃÃo¼¶÷}§g¼Ãü§ÃíÍÍÍ}缞c;;!!!icçf}¼ç;w›hkk ?ÐY½ÜÆk¬XahnµnwÈ;;´h-k{»nžooíck72Ê»½½ØY½˜é2a;!cii4笴?? ʽÊÜéa;!XaX;!!;;;;;!X-›-Xl;››-µan››;44´ËË-;÷E-h;Ã¥a7?ؽÜ~ؽY½Üܽz½ØY½Üܘ½ÐkkÈkwwlwXalcç E¥4´ËYËÑY»ÊÈ4xoj§§Ã÷ÍÃxÃ}x¼¥¥Íͧ¤žj}üfxíÍÍu缞gil;lw;içfu¼ç;-´´kÅÆÐY½ÜÆk-X-h›µnw ;;´¬-k2»›¼oíck?2»»½½½Ø½˜é2-;lcii4½ØY½»½ÜY?›-k nµnai4ž}º¥;sÑÊÑYYY€´fxxx}}jÍ}}}}}Ã¥  Í4¤íÍoÃÍ}ÃÍÍÍÍo§4ii;;;!X°;cçf}ÃofçlµkkÈ Æ7Ð{ѽ7¬µhhXwn›4!w;kÑ» çž4kÐk?77ÐÐs{2YY?aX;içiÈ ?Ð Æ7€Ynf;°XnnX!l!lwaa--Xl;an›µXh›wç4-ˬ¥hµ4 a7ÐÑzz~½zYY½Y½ÜÜz½YYYؽzY?--k ›nµµa;44Ãq¥lË2{»Y½YË´c§o¼Ã}}¼ÍÍÍ}}}xí¥  }4¤í}xu}}ÃÍÍÍÃof§4gii;;lµµ!¤c§§ÍÃo§ç;nhkÈÅÆÐÐÊÑØ?hn¬hµ°››4l!;µÈÑ» wççkÐÈ?77бÐsË{Ñ»Ø?n;cçi ? ?7€Yniµµn!lw!lwµµ--›µ!;nµ›µn¬-!4-Ë{¬¥hn4 a?ÐÑz~½½YY½Y½zÜܽØY½»½ÜY?›-k aan›i4ú¥;sÑÊ2»Øshc§Ã¼o}}jÍ}}}Íux¥ÛÛ}4ííÍoÃÍuÃÍÍÍÍoff4i;i;llwµ°lcç§Íü§ç;nhk ?ÐÐÊÑ?hn¬¬X°a›4l!lµÈÊÑ !ççÈÐ ?77бÐ2ÑY» nXw;cçz½Y½Y½zÜYÆ-¬´Å¬-Xµµlgcc4í1Ë»22½»h;¼o¼ÍííÛÛí} ¶ ;§ou}}}ÍÍÍÍÍÃof4çiciiilµnwic4çxÃ}Ãxž;XhkÈ ÅÐËY½Ëkk h›µa?!g¤i;c; ~±kµ4Å k ¬ÐÐËÊ»YY»Ë7kk c;Æ??€7?7ʽéh4¤µa››nµµ!°Xµµ-›w!!›µa¬µcf4µÐ2È-§÷ 7h;Í4›ÅsYY½ÜzØY»YÑY½Ü~½Ø»½½zܘYƬ¬k -›XµXXlcgcž1€»2Ë2ØYÑhi¼xfuííí}íÛͺ ;foÃÍu}ÍÍÍÍ}uçž4çii;;ilnn!ic4çoxuÃxž;µk´ ÈÐ{Y~ËÈhÈhaµaÅ!c¤iic. ~7Èµç ½kk?hs{22YYY7kÈ µc.7??ËÐÆ?ÆÊ³¬4¤µµa›-nnn°!wµXµnn›µ!;w°›µa¬n§4µ€Ñk-§ Æ´i4›?sYY½½Ü½Y»YÑØ½½zz½Y½Y½zÜYÆ-¬kŬ›µµµlcgc4í1Ë»ÑË»½YY¬i¼¼jÍííÛíÍÍ º ;§xu}}}Í}}}Ãofžžçicii;;aµwcçççox}uo;°´kk ÐY½ÈkÈhaµn?wg¤;ig. z½Ð µç  k h±s2YYY»ËÐÈkȵc~z½ØØ½ÜÜ2Ð? kh-n°µ;4g¤E1h2YÐÊY»kcxo¼Í÷ ÛííÍxÍ¥¥¼c.ž}Ãà Íuuü§ž4çiii;;wn›µ;ç4žfÃÃo4i¬È?Èhh ?»ØÐ´ k››n sw÷f;ii4;´Åн{-s˜{2»{2»½½sËÅ ?›ç§g?ÐÅË{Ð7sј€;;wµ›--hhaµn›µµwll!!µ-›;žf§ç;?»ÐÅç 7ÐÆuÃ;k?±s»z½YYÑY½Y½z½Y½ØØ½½~ÜÑ? kh-µX;çc¤íE´2YsÊ½ØØÑkoü¢ }oÍ¥¥¼c;4uÍÃÃí }ÃuÃo4çgcg;;wXaµi44§jxÍo4i¬ ?Èhk ?»YÐk k-›a s!÷Ûf;;gç.´ÅÐ{aË22ѱÊ2YY½Y€ÐÅ ?›ç§i?7ÅËÊ€ÐsÑ~VÐ;§l!X-¬¬¬-anµa›nµl;!wXX--;žj§ç!ÅYÐÅç Æ€?ÃÃ;´?ÐË»ÜÜØYYÑYYz½~z½ØØ½ÜÜ2Ð?Èkh-aXX.4c¤¤E1h2YsÊØYYkoo¼÷ííÍxÍ¥¥oc;žÃÍÃà ÍÍÃuu¼§4çigi.;wn-°;c44§fÃͼži- ÅÈ´k ?»Y±´Èk›-n s!÷Ûfiicç.h?7Y{a˜2»722YY½YY€s? ?›ç§zzØØØ½ÜzÜzØ{?´kk´¬-a;ççc44U´»ÊÊØYØ2-4üjuííüÃ÷iç¼Ã}}ÃÃÃx¼ž4çç¤gc.;XaX;g44ç44§xÃj!k7 È?È-Ð nXh›aXÆÐhfE¼ižç¤µ7YééNÜÜÜV~ ›cçc7ѱ€ÊÊ»½»Y˜Ô›uç;Xµna›nn-¬›nnµµµ;c.;µ--!çi›?¬Ë--žÃç!-ÆÐËѽ½½ØØ»YY½½z½½½Ø½Üz~ÜÜYÊ?hÈÈhh-µlçç44Uíh»Ê2ØYY˜Ê¬4Ãojx}íííííÃxà íi4j}}ÍÍÍÃÃuÃj4ççcci;;X›µ!cžžç44§x¼j!k7 kÅ -7 µX¬››µ?ÐhjE¼ic¤¤µ7Y˜éé³zzÔVVz€ È›cçcÆÊÐ€ÊØY»YéÜ-Ã.wnXX-›µn--›Xµµµli.;›¬!4fçin7ƬÊË-hžÃç!hÆsÑzzzØY»YYYzzØØØ½ÜzÜzØ{?kkkkh-µ;¤çç44U´YÊ2YYʬ4ÃÃjxííííüÃ÷i4j}}}Í}ÃuÃfž4çç¤gi;lµXnlc44ç44o¼j!k7Åk È-± µµhnwaµÆÐh¼Eä;§çc±Y˜ééNzzzÔV~€kÈ›cç~½½½½½~zÜ~zܽ»Ð Å kµligcž4f¥äþx?{ÊÊ»Y»z»hçjo¼¼ÃuÍÍuÛuxÃ} çci§ÍÍÃ}uxx¼f4ç444çi;!n›››wcçç4444f¼oj!k?7Ë€kkµi!µw›h7ÆÐ-÷¥EÛç4ç4ç;7zéé˜éééééé³³³³Ü2Ë?44´½½YzY˜éV~éé ¼u§ill;w›nX--a°!!!c4çl¬›gj§§¤i;¬ÅÅ4ok½ÊÈÆµ¼ €ÐÐ2½z½YY»ØYÜzzؽ½~zÜÜÜzz»ÐÈ Å Èkµ!gicž4j¥äþ¼?ÊÊÑØ2Ü»´çjoÃÃÃu}}ÍÍÍÛuÃ}}Û çic}}uux¼fžžçž44¤c;!n›-µ!içc4ç44§j¼oo!kÅÐ{Ðk n;!Xwµh77€¬÷¥EÛxç44ç;ÆzéÜéé³ééééé³ééÜ2{?w4çh½Yz½˜éV~½éé ou;lllµnµa-aµ°!!gçlµh-i¼§4§gi;hÅ 4okYÑÈ?a¼! ÐЀʽ~½YY»½YØ~½½½½½~zÜ~zܽ»ÐÈ Å È´a;iicž4§¥äþÃÅ{»Y»z»´foüÃu}Íu}xÃ} Í.cÛÍuÍuux¼§4ç4ç4i;!X›››!gçç4ç4žj¼¼jl´ ÐÊ€k µ;;Xµw›¬7ÆÐ-÷¢EÛçççžçl7~éܘ³éééééN³³z»Ê?4½½½½zÜÜܽ½½½ÑÐ??Æ?Æ7Æk-;cçžÃ8Eg?ss{2ÊÊ»s›ç}Íxo¼ÃÍÛuÍo¥í¤i}Í}uÃÃoof444žci!wn›-›!c¤.ig¤¤¤ç4Ã;¬7ÑY»k;w!°›› sÆ¢EãºÍ4çç4;hËËÜV˜˜˜˜V˜V˜éVé³éz?;žwéé˜VéVééÆg¼çii.!aµµ››nµX!lifÍ!-h¼ojç;ik-x¼ Y{{ËXcçin?±Ë»ÜYY»YYYؽ½z~ÜܽØz½Ñ???Æ7Æ7È-w!gçž¼8EcÅss»22€-çÃͼ¼¼ÃíuÍͼí í§ggÍíÍÃÃ}ü¼fžc444¤iln›-µ!cicgcc¤4Þ;h±2Y2k;!!µ-- ÐÐ?¢Eã¶ç4§;hË{zéØV˜˜˜˜˜˜éé³³é~Å;4½éé˜VéV˜éN鯤¼çci.;›µXn›››µw;i§užw--çüj§;iµk-x¼ Y{ÊËcçin?7±ËÑz½Y»»YYؽ½½½zÜÜܽ½½½ÑÐ??Æ?ÆÆ7k-;cç4o8Ec?ËËÊ2ÊÑ»€-çÃͼooÃíÍÍ}xí¢¤gÍí}}Ãuü¼f4444¤i!!n--›!cciigcg¤ç4x!hÐ2YÑ´w;!µa- s?¢Eºº4çç§i´Ëz阘˜˜˜˜VVé³ézÅ;½½Ø½~~z~zzÜ2?77ÐÐËÅn;¤gi4xÍÃãÛaÐËY7h k!ž§o¼Ã}ÛÛÛíx}ÍxÍÛ}íu}}u¼ÃÍÍ}o¼¼§4žççž4;lwµa¬n.4cwXw!!;iccžçµ ÐѬµ!nha ´Ëkhç Û¢¶xjçf44;›±˜ÜVV˜V˜V阘éé³½k¤;~éV˜N³Ü?!¼4cii¤çç´h--¬h¬-!c4} ¼wk›lçoÍç4w;µkµ¥ulË2Y2Y??aiçn7€±½YÑ»½ØØ½½½Y~Üz~zÜz½2Ð?7ЀË?a;gi4Ã}ÃE ›ÐËÊYÆk ´l§ooÃ}÷Ûx}x} }ÍÃÍÃxxuÃoxj§ž4çžžçi!!µa¬›;礵!;!;.ciç ±Ê¬ln´a?´€k´ç ¢ºÛ¼¼žçf4ç;nИéVV˜Vé˜éé³k¤i{zéV~N³z?!§4cig¤ççhh--hh--°;i4} fk-loÍÃfž!;kµ¥ulË2YÑY??ai¤nÐ˱7½ØY»»½ØY½½Ø½~~z~zzÜ2?77ÐЀËÐÅ-l¤gcžxÍÃãaÐËËËØ?h ´l§x¼ÃÍ ÛoÍxÛÃí}Ã}uouÍÍüo¼§4çç4žç;;µ›ha.çgµ!!!liccž4° 2hXln´a kËk´ç Û¢qÛ¼fžçf44;aИVéVVV˜é˜éVézk½»ÑØzzYؽ»Ë7ÆÆÐ€{ÊÊÊ´!gcg§Ã¢¥f›ÊÐÊz2˜½Ë;ufu¥ºíí}Í¥¥ou}Ãxo§4çc¤i!XXa¬-!ç¼xiwµXnµlwl;-k77?k´-n›´ 7 ?Ð!Û¥ººo!jççh? €Ê½Y½˜˜éVVéVzhcç›Ê½VV˜V~Ê;4ž44ic}!hÅhh khµi¼4µµµ;4¼Íufgg!a;ÍÍlÈË»Y2Ê?h!-ÐË?7»Y»ÊY½YÑÊYzzYؽz½ÑË7ÆÆ7ÐËÊ2ʱ´lic§}Û¢ §aËÊÜYY{;ÃfuÛ¢qÍ} ¥¥x}}Ãü§ž4çccciwµna¬-!4o¼i!nµaµl!!;w- 7±?k´-nahÈÆ ?Ð! ¥º¥jlj4ÃížhÅ Ðʽ½½˜˜é˜VéVV~ܬcçµÊÐVÔ˜é½Ê;ç4;cÃwkÅ´¬ÈÅÈhµi¼4nµ;4¼}}fii!a;ÍÍlÈË»YÊÊÅh;¬€s?ÐÊY»ÑYY½»ÑØzzYؽ»Ë7Æ7Ѐ{Ê22Ðh;gc¤}¢¥j›sÑÐÊzY˜Ø;x§uÛ¥qííÍÍ ¥¥¼Í}xxj§žžçcçci!µnn-›!4j¼g!µa!wllw-È77?´´-nahÈ7 ?Ð!Û¥º¥o;j4}ížhÅ ÐÊØY½˜é阘é阘~»YYYY½½ܽ½YÑÊÊË€Ðs2Ê»7n;ifÛÛxµ7Ø{»Ü˜z;ž§ž§fuÛ Û Í}Í ¥¥}ÍÃox¼fžžçç¤giwµµµ--¼¼¼4;µµl;;;i;h---››h È7?? nif¶¥Í;;;44§ž l›a-hk Æ?2»YzV˜˜½?Xch¬s½é˜VVØ2Ð?kµ!µlÃxç° kÅÐÐ !j÷í¤nµµ;4jÃççiµnw!ahkÅÆÐ½ËÐ -ÈsÊËÐs{2»ËYY½»Y½²zÜY»22ÊËËÐsËÊÊʻƵ;icjÛ xcXÐØÊÑ阽;44§fÃÍÛ Û ÛíÍ}Û÷¥ÍÃÃoxff4çgi!Xµ--¤¼ojç;µwlll;;;l°h-¬--›h 7?Æ nijÛ¶º;;l44§ ;µ›µn--k Æ?Ê»ÜééV?µihh½V˜˜VV~YÑ€?Èllux4XÈ k ±Ð wo÷çµµ;4jÃççcµµw!ahk??s½€Ð ¬ks2±ËÊÑY»Ê»YYYY½½ܽ½YÑÊÊËÐÐsËÊÊÊ2Æ›;ic¼ÍÛÛän7{Y˜˜z;§fÃÍÛÛ Û Í}}÷¥ÍuÃÃüf4çç¤in--w¤¼o§ç;µµw;;;;;;w°¬----›h È7Å? nijÛ¶¶Íl;;ž4ž ;µ›µa›hk ??Ñ»YzV˜VÑÑ»»2ѽ»»2»Ø½½Ü{s7Ðs{ÊzYsÆ ž Í}¼füµ»Ê˘éé˜lççcçžu Û íuÍ ÷ÛíÃÃo¼¼§§f44c;wX›-ixu}ji!.iigg;iç4žii;;ig;k ÆÊ !xöº¢c›°i;4纥ggµw!!µµ!››-k ?77Y{  ½é˜Y7 2z §Ío;¬´ ?7kç ç°i44joji!!!4!w!µµ!!k ??kk?ЀsËÊY»»YÑ»»Ñ2»z˜»»2»Øzz{€ÐÐË{ÊzY€Æk÷Í}o§ujn2ÊsVVVV;ç4çççÍíÛ ÛÛuÍ ¥íÃuÃo¼j§fž4çg;µµ›-Xifox}jil;iiggicçž4ii;;ig;wk ?{ !Ãöº¢i›°c;4纥iiw!!!Xµ!›--´ ?77YÊ  Yé˜Y7ÅÅ2z Å §}oi-´ ?Ð7h4 çwµµi4ž¼xfg!!!4!w!µµlwk Æ?kh?77€€sÑY»»YÑÑ»»2ѽ»»2»Ø½½Ü{sЀ{2zYË?k÷í}¼fxjµÊ˜˜éV;4žccçž§uÛ íÍuÍÛ ¢íu}oofj§fž4çc;wµµ›¬X;oÃÍfi!.iigi;içgi;!ig;w´ Æ{ !xöº¥in°i;4ç¶¥ii!!lXµl››¬´ Æ7н»ÑÊʻؽØØØ»ÑY2ËsÐÐË{ÊÊË€7´žº¥Ãç¤uX€Ðz»;fž4ççç¤ç§¼xÍíx}í ÷¢ }ü§jf§çc;wµn-µ!4¼§Û§lw;ci;icç44¤cž4i;;?Æl!i§÷÷ºçhn;°gçEã;;w---aaaaXXn››-¬ÈÈ›¬wË!?˜˜~Ê ¬›ÅYé2Ð7-;à Ãi!-ÅۧÍiiž44§4ç.illc;l!aag§4;µ¬--hk¬Å 72»2Y½Ø»ÊÊÊ»YYؽ½Y»ÊY2ËЀs{22sÆh4¶¢Ãçà ËÐYzVÑ;fžž4çççcçffoÍÃ}í÷¢ Ío¼§§f§ž4c;wµXn›µlç¼§§;;c;;i¤çž§4¤çžžž.;!Æ?!!i§ º4hnlgçEqi.-¬-a››µµ°µnn-hÈ a¬wsl?˜~Ê -nÅY˜ÊÐ7-;xÛoi!wnÅÆµ§u§;!i444§4ç;;lwc;!!aa¤jž;µh-¬´k´ÅÅÐ2YÑY½»ÑÊʻؽØØØ»ÑY2ËÐÐs{ÑÐд4¶÷Ãç¤u §µËÐØÜVÑ;§ž44ççfjxÍÍíÃ} ¥÷ }ÃÃj¼§j§§4clwµX°Xan;4xj§;w;c;iccç4ž4礞žž;;;7Æl!i§ ¥4´n!µgçEqii-¬-›››nµXa-›n¬kÜzYÊÐÐЀËÊ22Ês77???hhnµµX§¶¥uç4Ãíu´Ë{Yʵc¼444çççç4ž§f¼uxÍ ¥¥¢ÛÍuojf§§§žçclµXaµµ!g¼Ã§;h k-µ!;;!;;l!!!;l;i;wçwh;!›;}¶unµwl;ãE4c;!µ›››¬hhµ›¬´¬-ÈÐ{h!Æhwk~éVØÐ7ÆkÆÊVé~7k Ð7-4 ¼4;aaçíjiw;4f4žçilc;!;l!X›-w4x4;n›h´-µ›Ð»»Êʽz½½Ês7ÐЀË{2ÊË»Ês7?? hhnµnµž¶ºÃççxíÃÈ€{Êif4žçççççç§f¼ÃÍoÍÛ¥¥÷ íÍÃx¼f¼§4ilµX-nX!cxü;h k-!;!!!;!!l!l!.i;wç!h!!›l}¶ÃµX!l;ãE4clwnn››-hhaah´h¬k±{-7h´Üé騀7Æ 72VéÜÐk ÐÆaž ¼4laa4ͼ;!;4¼ž44ççi;ci!.l!X›-w4¼ç;µ›-h¬-72»{ÊÜzYÊÐÐЀËÊ22Ês77?? h´µ°aXº¥uç4ÃÛíokËY{i¼§§ž44çççççž§foux}Û÷¥÷ íÍux¼ff§4çilXaµXµ!¤§jÃj;h k-wl;!!;!!!!ll.i;wçwh;!›;ͶunXl;;ã1çclwµn›a-hhµ›hh--ÈÐÑ»ÜÜ{ÆnX›hkh-››nanXwµ!;X›c ͧju¼xÃlY7fç§¼§f4cccç44çç¼ÃÃ}Û¢¥÷ í}Ão¼fj§4i;›-›nµ.ço§o4°Å7Æ hh¬h›aÅ Èh´h›-±´l›¬!›-w§ i!µianfº¼ç;!n-´ka›hhn- zY€iµkkÐÜé7 77?YÑÑVéË-h7± j÷ºͼu¥÷.i§x§jxo4ç§4;iawl;4i;l!µhkÈh!i {ÊÑY½zzË7aXµhkh-›µa›nµw!;Xac÷ÍjjÃüÃ;ÐË»7¼4¼ffž4cccç4çççfÃÃ}¢¥¥}üj§¼§žçg!›-›µw.çx§¼4° 77Åhh---a hkh›h7´l--!a-§÷¢i°iaafºji!µµ¬hkn›-hµX¬Åz»€i°k´sé7 77Å»ÊÑVés-h77?¼÷ºíí¼u¶÷;c§o¼jüžç§ç;inwl;4i;l!n¬kkh!cÅËÊÑ»ÜÜ{ÆnX›hkh-››µaµµwwl›¤ }§ju¼ou;±ËY7j4jjfž4ç¤iç44ççž¼ÃoÍ¥¥¢í}üj§f§4c;µ›-nnµw;ç¼§¼4°?7ÆÅhh¬-›a khhh›h±k!›¬!n-÷ iwinafºjçi!µa-h´a›¬¬›X- ËÊ2Y½½YY€?›;gcgi;;;!Xµ››¬Èkh´È!x44§Ã¼çghÐʱ4j§fžçc¤ç¤ciçž§¼¼u÷÷ ÃxÃj¼§44iµ---a°µl¤§§fof°hÆ7±Æ?k-›Ðб?Å h›Åsna?-kkÈcͤ.-h›4¥Í¼cc;wµ›hhh›--µµhƽµ§n-»Vé½7k ÅYYY˜˜7´ÈÆÐhcuÛ¥q¥¥ãEº§ž¼x§jÍÍÃxfo¤gaÈh!!çf4;;i;!n´È7hl¤!ÈØËÊ»Y½½YY€?-;gcii!;;!µµnn¬ÈȬ´kwÃç4§Ã¼žhÊÐ44¼§§4ç礤ççgžjo¼}Û÷÷ÛíuÃx¼fž4.›--aµµl¤f§§ofµ´Æ7±7Åkh›Ð€7Å? h-ÅËnaÅ›kÈkcͤww;hh›4¢Í§c;!µ-h´h›-hµµX-?z˜µ§n¬YV˜½7´ÈÅÅY½Y˜˜7ww´ÈÐË€hgÍ¥¶¢¥ã㺧¼jfÍoÃj¼gnÈh!!ç§4.ii;!µk 7hl¤l YËÊ2Y½½YY€?›;gcgi;;;!Xa››¬È´-h !Ã4ž§of¤¤hÐÊžž¼§§4çccçççcg4§¼xu ÷÷ÛÍuÃx¼¼4çiµ›--›µ!c§ffofµh7777 k¬-ÐË7ÅÅÅÈh›Å€nn?-kÈÈc};h´›4¥§çi;!µ›h´h---nµh»»Ë€{YÜVz€Èh›-¬ÈÈ´k ??ÆÐË7-a-wçfu¼ii!?€YX4o§§§4ç¤ciiiç¼fà ÷ íÍ}xoj§4çi›-¬›n°X!icfÃjçiw›k7?h›nÐÐÐ77Ð?-Ënµk7€ng;wl››-ÍÍx§ç;a-›-n°›-µX-л´ça›Ê˜z»ËÆ?Æ7˘ʵx¼; ÐÅ7Ê7µu º¥ º8÷Ûu§¤4¼o¼¼ž§çik±Å´ h¤§cçgc;µ-hk hlgµÆ2»Ñ{Ë{Yzé½ÐÈh›-¬kk´k ?ÆÆË7-n¬çžžfujc;!ŀў¼f§4çcccci;cç§jà ÛíÍÍuÃojf4çi›-¬›X°°!gi§u¼4i!akÆË7´›µÐÐÐÐÆ±ÐÅ-sn¤nwk7µg;µlµ›7-ÍÃfç;µ---µa-Xµ¬Ð»´ç›-ÊÜYË7??7sVʵ¼¼;È7?Æ{Ðau º¥÷º8¢íü¤çj¼x¼žçik±Åk h¤fcçccc;µ-hk h!iÆY»»Ë€{YÜVz€Èh›-¬ÈÈ´k ??7ËЬ›¬c¼Íjci!?s»µ4¼ff§4ç¤ccciii4f¼xÍ ÛÍÍuü¼fžžçi--¬aµµlgc§Ã¼4i!›k7Ë7haµ7ÐsÐ7Ð?-sµµk7sµ;w!µn7-Ûux§ç;n¬--X››X-Ê22ʽ»~ÜYÊËÐsss€s2ÊÊ{YzYË7¬i¤f§žÃçµccµËs¼§f§žžçc44çcic4fxoí¥¥íÍÃÍÍÃÃÃÃfççç.°h¬---nw;iÃxž4iwaÈ€ÊÆk-!´s{ÐË»ÑË»7€-ž;-hk¬!;°aX°!a?€¬4Ãu}Ãx4;µÈk´¬h›Xn¬k½Æa!wÐÐX7Ñ77ÅÆ7½2Y7o÷ 4a ?Æ€Ê !Ã¥¶º1äEEº¥ÍfžžÃjf¼g;!--X?Лiç§4¤4¤w-k?k´-;cXл2Êsz»ÜÜÊËÐsss€ÐËÊÊ{Ëʽz»±-i¤jfÃ4aigµ½Ëµo¼§§4žçc44çcig4žjü¥¢íuÃ}ÍxoÃüççç;µhh--¬nw;;x¼4çi›È€7k-!ksÐs»»ËÊ7Лži›kk-!;°anX!a7sh4ÍÃÍuüž;akh´hh›Xn-kÆn!wÐеÑ7Æ?77Ë2Y7o÷Û4n Æ7Ð{ !}¶¶¶18Eãq¥Ífžo¼ffj¤!!--XÅЛiç§çç4¤w-´ÅÈ´›;cµsÊ22ʽ»~ÜYÊËÐsss€s2ÊÊ{½zY7-icjf4ÃçµiiµËsXoj§44ž4c44çc;¤ç¼¼oí¥¢ÍÃ}Íxoxo¼ççç;°-h-¬-a!;.x¼çiaÈË{Æk›wkË7s»Ê27Л4;-hk-w;°›µµ!n7Ëh4}ÃÍ}ux4;›kh´hh-µµ¬Ê˜»Ës˽ؽ½Ü½Y½2ËËËËÊ2ÊÊYܘÜÜY€?°¤¼f}}4!w¤. »Ü7;f¼o§ž4çggxo¼}¢¶¥ÍxoÃÃo¼x¼x§çççi!µ›hh-›°!çj¼çi;nh777ÅÈ›-7€??77€77;-h -iž;wwµ´ÐÐhg¼oxu}üc›?´nwX›an¬?sk;§!;}ih Æ ?7Åм¶÷Ãikб7ËÐk!§Û1äq1óE÷uo¼§fžcµ¬µli ½sÅh!i4ži-´k¬!g!-{˜»Ë˽ؽzÜY½ÊËË{{22Ê{Yz˜zY?Xç¼juÍç;!c;ÈY~7;§oofžçç¤goooÍ¢º¥uxoÃxxxxoj§4cçc;n›-h-›X!4oo4i;nh7ÐÆ k-n7Ð??77€€7!-¬Å›g4;!!µ´7ÐhgxoxÃu}fc›Æknµµ›››h?Ëh.f!;ÍghÈ7È ?ÐÐÅÐÐoq¢o;h7Ð7ËÐÈl§ Eäã1ã÷Ío¼fži¬µli ½sÅh!cç4iµhhkhl¤;›Ê˜»Ës˽ؽ½Ü½Y½2ËËËËÊ22Ê»½˜ÜzØs?°ç¼¼Í}4!!;k»Ü7;§o¼f4çcgxo¼u¢ºº}oouxxÃÃxjçççc!››hhh›µlç¼xž4i;µh?€?ÅÈ-n7??ÆÐÐÐÆ;-hÅ›g4;w!!X´7¬¤o¼ÃÃÍücw-Æk›Xa-a Ñs{Øz~VVVV½»Ê»222Ê»YؽV˜~z½Ålfu};wcçwÆVËlgf4ž¤iç§¼¼x¥qü¼j§§¼¼o§4ççcclµ-hh¬nµwg§¼fçgiXµhÈ ??kh hh-k7ʽ»!¼;¬ÅÐkci!w!- 77-;çž§xÍío4ikk-µµ--¬hkË?!4;4¶Ãn?Ð77 ÆÈ›a±Ðg ãE¢ç-?ÐÐ{€ÅniEEEEóã¥Ífžç;µh!i;ÆYY½{kwg4;-hkkhXicgÈYÑs{ËY~~˜VV½»2Ñ2Ê2ÊÑ»½z˜VܽØ?!§uÃ;w¤w7˜swc§f§ž4ž¤;çj¼¼x¥q}o¼¼f§¼¼¼§4ççi!µ-´´-aµwg¼§çiiµhÈ ??k´È´h¬kÊØ»!j;-?ski§i!w!¬ 7-;çž§¼Íͼçi´´-µ--hhkË?wc4;4ºxµ?€7Ð Æ aa±¤ ºE¥ç-7ÐÐs ›iÍEEE1óã¥Í¼žžç;µh!i;ÆYY½k¤4;--h k;cc Ñs{Øz~VVVV½»Ê»222Ê»»Ø½˜V~½½?lfÃ};wc¤wИÐ!c§f§ž§4çiç§j¼x¥qíu¼¼j¼§fo¼§žççci!-hh-nifo§iiahÈ ??k´ ´¬¬kÊÑ!j;¬ÅÐki§i!!wh?±7¬lçžf¼Íí¼4c´´-µ›h¬!7ËË2»YÜÜ~~˜zY»Ñ»ÊÊ2»Ø½½z½Y»7jíç›kXµn€˜V´;çžžç4fžçii4§j§Ã uoffÃjfžž4çc.°-kh¬nXlžx§4ii›h¬h -µ›µµXµ´7YØ›g-Åc!µ°µ´ÆÐÅhµiç4¼xo¼fgµk›µ¬h-hËе;;;ͼÈ ?7?7 -nʵx ãã÷§k ÐËÐ?µ4¶ºE1UUq÷çc;µXiiµËsØ2»Ë±7´;4ž!µ-µµw.lÐËËÊÑYÜ~zܘ˜zYÑ»»2ÊÊ»½Y½½z»»½?!jç-hµµnËV˜sklçžç4ž§çii4jj§o÷Ûu¼j§fxjfžžç¤.°-k´¬nX;ž¼j4ci›h-hȬanµXwµ¬7YØni-s wi!µ°µh?Ð?¬µiç4f¼Ãxojca´›X¬h-hËе;;;u¼µÈ Å??7 ›n2µÃ ã㥞h?ÐË€€?n4¥¶ã1óUUq÷ugl°µiinË€Ø2»ËÐ7´;44wµaX!;!7ËË2»YÜÜ~~˜zY»Ñ»ÊÊ2»½½z½½»Y½?j í›´Xas˜éËk!ç§žç4ž§ž¤ii4§j§Ã÷Ûͼj§ž§jxjfžž4ç¤;°-k´¬›;ž¼f4ciw›h-kk-aµµµwµ¬7Y½n§g-Ë ilµµXh?s?-X;çç4foÃoj§cak›µ-hg-±Ë2ÊÑÜzzÜzYÊ2Ê{{Ê»Øz½z~zYY½Èlo¥ºjµk¬ÅÐkn V˜{kc4çç4ç4žž44c;cž4¼ÛÛͼ§fjÃxf§o¼ç¤ciw›´kh›c§c;!wnaX›nµn!¤!¬Ð7-.4l ´lµnn-k7s?h°cž;!!;cçç4¼;h-Xµ-- È2sµ;wh?;çµÈk ?7?h}¼Å?à ¼ç;´бÅh!§qóóäU1ºuçll¤;-sËÐY€Ê2Ñ»»Ð7kÈ ¬hhighË2»»ÜzܽzY2ÊÊ{ÊY½~½Üzz»Y½klj¢º¼µkh?7ÈaÅVh!gçç4çç44ž4c;cžž4žÃÛÛu¼f¼uÃf§o¼çciw-hkh›cjžcl!wµaµ›Xnµµa!w¬Ð7¬.ž;Èkµ!Xnµ-k7€?¬°cž;llli4ç¼l-›Xµ›-kkʵ;w¬Å;çXkkÈ ÆÆ?-üÅÅuÍÛ x4l¬7±±?h!fºóóäU1¶Íç!l¤;¬sËsY€ÊÑ2Ñ2Ð7´ h¬¬ig-±Ë2ÊÑÜzzÜzYÊ2Ê{{ʻؽ½zzzYYk!o÷¥jµkhÅÐka YVh!cçç44ç4ž44;¤ž4oÛujj§§fuç§xjçciw›hhhagžj¤;!wnnµµµnµµnlw¬Ð7¬;žl kµlXaµakÆÐ?¬µi;llli44j;-›µa--n7sÐÊÊܽÜÜYÊ{{ÊÊÊÑY½½z~Ü~ÜÜ~k4Ûqiµnk±?´ÆY½Ô2?hnwiccç4444ç¤cigf Íuox¼¼xožjÃx§4i44iXhÈh°ic44¤;w›µ!!wl!!n´›iç¤oik?-;!nn!›a-k7€7-wçuclµ›µlli!n›h-µkkËÐaw›ÐÅ!a7Ð7 Å nÛEi?c¼íx¼ç!¬ ÐÐÐ?-;uºóóäUºÃcli;w-€»ÑÊÅYY»{{½Y½zÑ€7k°a7sÐ{zܘÜYÊÊÊÊÊ»YØzz~~~~zÈžÛºiµ›´±?h?»Ü»Æ¬n!ii¤ç4žžçç¤cic§ ÍÃüjj¼¼§ž¼Ãoç;¤ž4ih h;¤44¤;µnn!!l!wwµk›;çx;k?›;!nµ!!µ›a-È7Ð?hwçuc!nnX!;i!na›h¬µÈȱa!aн?!›ÆÐ ? › Ei?cjÛüç!¬?7€7?hi}ãUóUUºÃc;;.wnл2ÊÅØY»ÊØY½z½»±kn7sÐÊÊܽÜÜYÊ{{ÊÊÊÑY½½z½~~zÜÜkwž qiµnk7Æh?Y½˜2Ƭµ!iicc4444cçcçc¤ ü¼jj¼¼ž¼xÃ4;44iµk h°.44clwµ›a!!;!!wak-;ço;k?-;!nn!!µ›ahÈ7€?h!4Ãi!nnXwllcwµn-h-µÅnÐY{{VV˜ÜÜYÑÑ»22ÑYYØY½½˜z?acj ž;;;nµkÑܘ2?kh-w;ic4ž4¤çiig;;;c4ç4§¼§ožjoj§ccž4;›Èh!i;;c¤lµµl!.i!!µkknµgq clwlµµ;;›-hÈÆ?-;f}žiX›Xa-nµ-hk-›Xµ´›wlaYÊhhÆ 7 ? ŵíUq!-g¥÷ÛÛÍí}çXÈ7Ð?77-c 1óäääUqͼož;!ÈË€Åwµ´2»Ês2Ø~˜Ü½» µ7ØË{{½˜Vz½ÑÑÑ22Ê»ØØØ~~Yz˜VÜ?aij 4;i;Xµ°´22?kk-µwiic4ççiigi;;c4ç4fj§x4joj§§c44;›Èh!i;lcglµ!!wii!!Xkkncº l!l°nl;n-hÈ?Ð7¬;j}žiaµwn-aa›h´¬-Xµ´µwlaY{¬h??7È?k?µóq!hg¥¢ÛíÍíÛuçXk7ÐÆ7?-ÛEóäääUqí¼¼l!È{Ëŵk»»2ÑØ½½YÅnÐY{{VV˜ÜÜYÑÑ»22ÑYYØY~½~˜˜Ü?aijÛž;;;nX´2Ü˜ÊÆkk-µwiižç¤çi;g;l;4ç4fjxfo¼fc44;akhwi;lic;lw;;!whkacº l!;µ;;n-hk?ÐÆ¬;§Íc°aµa››a-hh-›XËéY2Ê»˜˜Yz½½Y»»YØYzz»ØÔ˜~Æni4ÃÍj4çžç4i?~éÊÅ´Èk¬a!.ç4g¤;;g.µ¬›7 ›;ç§ž¼§f¼ffjç¤gççg--;¤!µl;!!l;!;ww;;l.!n¬h÷í¤c.!ahµ;lXX›h 77¬;¼ux!Xw!µ›a›¬¬¬µ›-n›-{Y˜2Ð?h?7?Å7µoó8Ãk.x ¶ºº¶¢¶¶÷¥4X?´-hh!Uä8äEºº¥žiµ77Ë€h!i!µn¬ÅÊËÊ»Y½½zе˘Y2ÊYVV½Ø½½½½YÑѽ½YY½Ü½»YÔ˜zÆni4}j4ççç;?éÊ ´kk-a!.ç4gg;;c;µ--Æ aiçžž4¼jfjf§fç¤cççg--;¤!al.!wl!;;;lw!;!nhkw í¤c;n¬›iç;µX›h ÆÆ-.fux¤!°!›a›-hhna-naaµµÊY˜2ÐÅh?7??Ƶ¼U8Ãh;u ¥ºq¶÷¶¥÷¥í4° hhh´!1U88ä㺶¥iaÆ7Ðsh!i!°X¬ÅÊÊÑYؽÜXËéY2Ê»˜˜Yz½½Y»»YØYzÜz»ØÔVz?µi4}Ífžçžç4;ƽéÑ ´kk-a!;ç§4¤g;;g.µh›7 ›.44ž¼jžjjf¼ç¤gçç¤w¬-i¤wa;;!l!!;!i;!;µ-´w í¤c;wah›;;X›´ ±7-ifÃo¤w°wµ›aa-hhµ›-Æ›ÅÊÊ2zܽYØYÊ»2»2Ñ»»½zYYܘ˜Ü7hl¼§ož¼§j4§f Yé{khkh¬-nµµlg4ç¤;cgi.!h7»»27-w;c§¼j§¼¼4444ž;?µcg!X!µa›naµµ!lµwµnµ¥;lµ?YÊÑ27hXwwhk77µgçüçi;!!w--›h7µXna¬¬a°!hÊ»ØØÊs7ÅÆ¬ ;oãq¥ingöuu Û Û °-µµi§Eä88UE¥¥EÃhËYY»È!w!;.ç°s½YÊ»Ü7a?ÜzÊ22~½YYÊ»2»»»ÑØØzY½½z˜˜z7h!ç¼4¼§fžf§k½ék´k´¬¬µ›Xlg4çc;cci;!hÐÑY27¬!icjj§§§¼¼çžž4ç;?µccl!°!µa-›nµ!!°wn¥ilµÅYÊ2{дµwhk7ng¤Ã¼çc;w!w¬-›¬7n--¬›µw!-»Ø2sÐÆÅ?h ;oqº¥iµgÛíÍÛu  ÷Û ÷µ¬XµXc1ä88äE¶¥1ÃhËY» w!wl.4°s½Ñ»Æ›ÅÊÊ2zܽYØYÊ»2»2Ñ»»½zØYܘ˜~7¬w¼§o¼¼4§í§kYé{khk´¬¬n›µlcžç¤;cci.!h±YYÊ7hwic§j§§¼jž44žžžç;µ?°cg;!µwa-nµµwµll°wµ›¢il?YÊÑ{7´nµwhkÐ7c}oçi;w!!--›¬7°naY ѽYz˜»Ñ»ÊÑØ»Ñ»Y»»»YYYØ~zÆh´wlÃuujofí¼aؽ€khkÈk ´h-a;ii.iciil´Ê~YÊ{»{ jÍÍxj¼Ã§çiÆkX;l-k´7ËËÐ7? Èk´¬hkçwikѳ˜½Ü~Ê´;!›´´u¼4g;w°Xn--h !X-hkhaaahszYÐ hh´hkhk;4íãÃ!!4jfiççž4çç¼w¬µXµ!g Uþ8ã÷EºUº4-ÊÑÑÑ7›X›µlcçÆÑzzY ÑYYÜz»Ê»Ê»YÑÑ»»2Ê»Yzؽ»ØÜÜÅh´µ!oÃÍfj¼x›ØÜÐkhkkk ´h¬a;;i;igig;kÜYÊËÑÊ ¤fu}Ão¼Ã§ž§çiÆk;!›kkÆËs€Ð7Æ k´´hh¬´ÙikÑéVܽz~Êh;!›´k¤f}¼4g;°a¬-hÈlXa´khaaµ´ËzYÐÈhhhhkh´!4qÃ!!4ffi¤ç44ç4žj-µµlcž óþ8q÷EºUº4-ÊÊ2Ê7›aaliçµ?»z½Y ѽYz˜»Ñ»ÊÑØ»Ñ»Y»»»YYYØ~Ü?khlxÃu¼ofo-z€k´kkk ´h-al;i.ggcilkÊÜY2ËÊ{ÈfuÍÃo¼Ã§çi? µ;!-´´?ÐËsËÐÆÆ ÈÈ´hhh´çiÈÑ阽½ÜzÊh;!nhhµ¤§Ãj4g.°a¬-h lµ›s?ËY˜˜€?7€222Ñ2»Yz½½YY½Ü~µ.¬´c4ç¼fju!½»Ðk´ Æ?ÅÅ higii;ggnÆÑ½½ÑY~»7µ;¼}¼Ão¼jž§j§žµ7е4cwan-È?ËÑ~˜Y77±±?;çXiaÈËØé³VYÐ?ÆÐ??´;Íͼ4i-›µ¬´¬nc!µ›¬kk¬-›hÆ»ÐhXµ¬´h-Å !4}.4xçç§çç¤giçç¤ii¤Xhnnn!;io18óqEEä1u?€Y2ÜØ?-››µ;4o§;a?€ÐÆsYz˜˜Ð?7±s2ÊÊÊÑY»½z½½YYzz~;-kgž4§¼¼Ã27 ´ ?Æ?? khigci;gi›ÆÊY½Ñ½Ü»ÐµiÃÛͼüxff§4µ7е4›µ- ?Ë»½V½{Ð7±Ð?;çµiaÈVé˜Ø?ÆÐ??h;Í}¼4i›anhhhnc!µ›¬k´-››k72ÐhX¬kk-ÅÈ!Í;çÃçç44¤igç4cii¤°h›µ›!;gÃ18ããEä1Í?€Y»Ü?-››w;4o§i› €s?ËY˜˜€?7€222Ñ2»Yz½½YY½Üz~Xiw¬´cž4jffuw½»Ðkkk ?7?? hcci;;ggnÆ2Y»Ñ½Ü»ÐµiÃÛ¼Ãío¼jf§4µÆÐ4gwaahk?ËÑzV{77±7?;çµia ˽ééVY?ÆÐÆÅ´iÍÍo4cw›an¬hhµ¤!nak7ÐsÊ»½é˜7-k??7ÐsËÊ»½½ÜYYؽz lgXkw§§ÃÍ;Y±??ÅÅ?777Ðk;4žçi.i;!a72YÊÊØz½Ðk;¼íÍÃÍxo§4§4;7~7wg;l!!wµa¬ ?»é½Y2ر;hcç4;k±zY~˜V³ÜÑ¢}Ã4.›-Xhk-.4l›µn´h››-›´ k›ak ? ´;4uµl!!gçç§ç;igçci;.g-k-n›;iilç¥1EUóqÛi´ÆØ»2YYдa-!i4o§gµkÐÐËÊ2½éé7- ??7s€Ê»ØØ½~zØØØ½ÜÜ?lgµhxÍíÛi½Ê±?? 7Æ77ÐÐk;4çi.ii!aÐ2YÊY~ØÐk;xux}x¼j4;7½±wi;;w!!µnh ?Y阽YÑØ7;hcç4ik½˜½»~éV³Ü2±¢ÍÍÃ4;a›X-k›.ç!›µnhh--nah h›µ›k Šд!çuX;!!ižçžfçiig¤gi;;g-k--ali;!ç¥1EUóqíi´ÆØ2ÑY»Ð´nhli4¼fiµk7ÐsÊ»½é˜7-k??7ÐsËÊ»½½ÜYYY½zÜ?!cX´wc§ÃÍ .Y7??? ?7777k!4çc.;;!a7ʽÊ{Y½YÐk;xuxuxo§ž§4;нÐc;lw!µn¬È?Yé½½YÑØÐ;hcç4ikzV»~˜V³z2¢}ÍÞ;µa-µhk›;4!›µc›?ÐË{»˜éÆahkhÈÅÐËʽ½Ø½½Üzؽ½z˜Ü?!›n;§j§}Í}Ûž?ÆÆ777????Æ7Ë2€Å›44g;;l ÐsÐ2zÜYYÊÈi Íf¼¼¼ž§i-Ð{Ë?h!µµw!!ll;´Ë½ÜܽÜkʬ!çil-7Y~VézY€n¥Ã}͵µ-›hXž!aXµhh¬-µa---h´ ?7€ .ilžloi;c4žci.iccg;;;¬´›h¬ll¤;;cx¶ääEEÃn?ÊYѽ½Y±kk-i¤çž4c› 7€Ê½Vé?›´´hkÅ7ËʽY½zÜܽYY½Ü˜ÜÅ!a-.§f}Í}4Æ??7Æ7??Æ??72€Å-¤44¤;;l ±ËsÊÜzØYÑÈ;} }¼¼ofž4i-Ð{?-waw!!;!;´Ëz˜½½Èʬlç;l-7YzVVzYË›¶}Í}Xµ-µ›´°žž!›Xn´hh-µµ›-¬hhh ?7s ii;l¼4iiiç4ii;;ci;;.-´›¬-w;;¤i;ço¶UäEEun?ÊY»½½Øk´-.gç4žc›?ÐË{»˜éÆahkhÈÅÐËʽ½Ø½½Üzؽ½z˜˜Ü l!›n;§¼}}}4ÅÆ7Æ7???ÆÆ?7ËÊËÅ›g4çg.;l ÐËsʽz½Ø2 ;ÍÛ}¼¼¼j§4ia7{s?¬aw!!lll´ËYV½Ükʬlç4;!-7Y½VézYË›¥}Íuçµnµ›µ›h°4!›X4ih ˽V7hÈÈ´kk±€2ØØ½½Üz½½ØÜܘ~{h›n´X;§ÍíÃÃ}ia-kÅ ?? 7ËÊ{Ëȵ¤çc;µkл»Ø½-ž xfx¼jffj§ç.¬Ë2ÆÅlci!›µXµ§c!akÐÊY~éØz7-;c44i›ÅËYé~zÊ? uÃiÈhaan-›;Ã4l-µa¬---liwnh´hk7ÐÐÆ›gc;çiÛ÷ ¼礞gi¤4žçnn¬hµ!!;c¤.!j8þþþ1ikÊY»Ø½ËhknliigçžžiµhÅsYV7-kk´kkÐsÊØz½½½zÜzz½z½h››hµ;j}íuu}c-h´ ?Å??? ÆËÊ{Ëk¤fçiiµkлYؽ½½YÊ- ¼¼¼xf¼¼¼§ç.-{ÊÆ liiw››nµ§!µ´Æ»Üéz-;gž4;› ½˜é~zÊ?ÛÃoiÈ´a›n››lu4!-µa-¬-›!i!›h´h ?ÐÐ7›cclçg ÷ }x44cçžžçcnµ-¬µw!ig¤;l¼8þþþ1ikÊØY»Y½Ëh´n;iicç4ih ˽V7hÈÈ´kk±€2ØØ½½Üz½½ØÜ½Ê´-nhX;jÃíÃÃÃ.a-kÅÅÅÅ??Å 7Ê€kgfçg;ks2Y½½Ø½ØÊ- ¼jx¼ff¼j§ç;¬½27 ;iiw››Xnf!›´7{»~éØz-lc4ži-Žé~½Ê?ÃoÍi´ha›µn›lx4w›µççlXk»z7 ?ÅÈ 7€Êؽz½Üz½zzÜ~ÔÜÐ7h´Xlcu  Û¤;n-´È Æ?È??ÐÐÐ7-i4žçccÅ2ÑÊY½YY»µox}Ão¼j¼§i!k{Y»»Y-!i;Xµnic4çg;ak7ËÊ~½Ê´›iç4.?˜ééYÊíÃÛi±?-›-¬µÛçw¬-›-ah-icwhhhh´´h-!c¼§ck co¢ãº ¶uj444cž!!µa°!;;;gcwiÃäþä}°ÅY»ËѽÑ? ¬°;i¤çççlXk»½7 7Å Å7Ðʽ½½~z½½~ÜܘVܱ7hhµlçÍ÷Û g.nh´k ?? Å7±ÐÐ{7›içžçi?22ÊYzYÑ»µ¼ÛÍxu}¼¼¼f§i!kÊY»»Yh!g;Xµicççcl›´7sÊ~z~Ê´›;ç4.?˜éY{íà i±?›---n çw--››--›iwhhhh´kk-!gj´ i¼¢ãqÛ¥Ãj4ç礞;!Xaµ;l;ic!;u8þäðŻ2{Ñz2?Åhli¤ççççlXk»z7 ?ÅÈ 7€Êؽz½Üz½zzÜzÜVܱ?¬´µlu  gia-´k ?? Å7Ðss{Æ›i4žçccµÅÊ»ÊYz½Ñѱµ¼Íx}Ãoj¼ffi!k{ØY»Y¬lg.Xni¤ççc;µ´7ËËÜ~~Ê´-iç4i?˜éÜY{x iÐ?›---µ ç!--cç!wl€z»ÐÆÐ77ÐÆ7ÐÑz½zzؽ½zzz˜z7Ë?±´hlx¥¶¶¥ ºf4i;nhhhk??Æ7ÐÐss7h!ggl;µÆ½zY2YÊÊ»?i}íx¼¼j§c;µ?»½Ø{»´ic;wn¬;ci;iç4ç;i¬Ð˜VsÊÐÈa;lÅV~»Y{ ãͶЬh´-4¥çh´h-hkhiXkkh›ng¼¼Û¼iwli§ ¥Û¥¶÷íç44;!l!!lw;¤i!l;lcº8UU8ãçk»ËË»½YY½Ðkl;icçç!w¤!€Ü»ÐƱ77Ð?±s2Øzzzܽ½z½zÜz˜zÐË?Ðh¬wo÷¶¥÷÷q§4clw›hh´k ??ÐÐÐÐËд;cçi!;µ?½z»2YÊÑ»?cuÍÃjfjc;µ?»½ØÊÑk;c;wµh;gc;i4c;i´ÐVsÊ µ;lŘ~YY2 ãºçÐh¬¬¬4¥¤hhh--Èh;¤XÈk¬-n!g§¼í¼ ¼in;i§ ¢ ¥º÷í}f44!wl!wl!;c;!!!;iº8UU8Eçk»{»½Y»½k;;i¤çcç!wl€z»ÐÆÐ77ÐÆ7ÐÑz½zzؽ½z~z˜zÐËÆ7hhlⶺ¥ ºj4g;wnhh´k ??±7ÐËËÐhlg¤gl;µ?zY2»Ê2»?cÍíü¼j§c;µ?2½YÊ2ki¤;wµ¬;iciiççcicµhVs{7 a;lŘÜYY22ÛEºçÐhhhhµ4¥çhh;ghíÍ ÜÐ{± ÆÐ?7ËË»½zܽ½½Üܽ~ÜÜËËËÐ?¬;íºã¥ÛÛ}xjç;µ-´´kkk?±ssËÐ7È-!ci;a-k{½ÐÊ»Ñ22?g¥ÛííÍofžcçi-ÐØY2sh;çcg;¤i!li;;;;lXk?7 hµl´ËÑјz §gÆ?¬-µ!f÷ç›-cnhk›!i´ÈÅÈ›!cjíÛ Ãxi-¬acžo¶Eq ¼ggl!!wµ;;;;!!wiE881E÷w±Ê{{ÑYؽzËkw;;;g;ihí Ü7{ 7Ð?7ËË»½½~²½zܽÜÜ~˜ssË7Æh;Íq㥠ÃÃjç;°¬¬hkkkÅ7ssËs7 h!cg;n-k{½€{»»2{?i¥ íx§žcçc¬€YY2€h.çcc;c¤.l;ii;;;;n´?Æ ´lhsÑzY~˜zki7?¬›nw¼¢ça-inhk-;ik Èa!c§÷ÃÍxc-h›wcžxí¶Eq íÍjiglw!!!°;;;;;l!iã881ã÷w7Ê{ËÑ»Yzzk;;;;ghíÍ ÜÐ{± ÆÐ?7ËË»½zܽ½½Üܽ~ÜÜsËsÐ7¬;Íãã¢ÛÛ}¼§ž;X-¬h´kk?7ËsËsÆÈ¬!ci;X-kʽ{2YÊÊ?i¢ ÛíÍx§žcçi-ËYØ»ÊË´;4çcc;¤;llci;l;lµ´?Æ ´l´sÊzY~˜zk§íi7Æ--wf÷›-il!›´ºik Ðб7??7ÐË2ؽ½½Øzz½ÜÜ~~½»222ËЬiu÷¢¢¢ü§4c;µ-´kÈkÅ7ËÊÊsÐÅ´µw!-7sÐÊѻʻ˵¼ }ücçgnÐY½½»ÊЛçü4µw;ggicgi§;Å7kkk¼XÑ~³V 7o! khÈh¤ÃEf!;a Å›!›hkkkhh-µifuÍu}Û§i›h›;ii¼ ¶º¥ }žiwµ!w!lÍ1))ó¶ç-22½½YÑYYË !cc;!-´í¥gk?ÐÐÐÐ7??77sÑzz½½zÜ~Üz~ܽ»222Ê€±hi}÷¢÷÷u¼§4cia¬´ÈÈ ?7ËÊËÐ7Åhµµ!!¬ÆsÊÊÊ2YËjÛÛí}Ãxcin7Y½½»ÊЛçx¼çw;ggiigci¤§; дwkk¼µ»~éV Ðo!Èkhk¬}ã§!wi› Å›w-hhkhkh›;¼uÍuu§inh-;ig¼ ¥¶¶÷uži!µµ°www!www;u1))ó¶¬Ê»½½»ÊY»ËÈw¤il!›´ºik Ðб7??7ÐË2ؽ½½Øzz~ÜÜz~½»2Ñ2{ËдiÃ÷¥¢¥íÍof4¤;a¬kÈÈÈÅ?ËsÐ?´ww-ÆsÐÊÑÊÊYXxí}Ãxiçgn7»zÑʱ-çüçµw;gcccic;iÅдwÈk¤¼X»zéV Ðo!kkhkhÍE§!.;X›koq÷fcwÅ{ÐÈ ÆÐs{ÑØ½½zzz½½~zzÜÜ½ØØØØØYYskiu ÷÷ }oo¼§i!›h¬hk ?ЀsÐÆ k›!!-kÅÐ{ËËØYÅ! ÍuççiµÅʽ½½ØsnžÃji.;iicclµg¼¼i-ÈÈn-›i!˘z~˜VÊ4ºxwh¬µw;¼¢ã¼iil-Åk!cl hhkÅ ´h;ç¼Ã¼¼¶;-k-µ›;§í÷¥¥¥íx4c!µµ!wwwcíþ81}µ?È›h7ÑY½Y€-;i!;µahxq §c?{7k ÆÐÐÊ»Y½½½z½½½z~Üz½ØØØØY»Ykcà ÷¥ íx¼x¼fiwah¬hk ?€sËs±??kal!hk?ÐË{{»» ! íuççi »z½½Ø½ËnžÃjc;;ig¤i;µg¼ji- n-›c!s˜Üܘ˜Êž¥¼!hhµ;j÷ãjci!¬ k!g!È´h kkh;ç¼o¼¼ºÛ;-´-n;í¢¥¥¥x4i!µwlwiþ8͵ È›h7ѽؽs-;i!;X›koq÷fcwÅ{ÐÈ ÆÐs{ÑØ½½zzz½½½zzÜÜ½ØØYYØYYshiu ÷÷ x¼¼¼§žiwahhhk ÆÐËˀŠk›!!-È?ÐË½Ñ ! }uçiµÅ»Üܽ½aufc.;.ggilg¼jc¬ n-nc!ËV~ܘ˜Êž¥x!h¬Xw;¼÷E¼ciw;nw-i}¢¥÷k? Æ?77ÐÊY½zؽ½zÜÜܽ½YY»7nçu Ûíü§fj¼ç!µ››¬hÈ?Ѐ€77Ð??awkÈk?7ЀsÑ€ §¥}jjçi ÊzÜz½½½Ë-ççi!;iiic§Ã¼jx;µX!žžlhÊÊÐh›žÛ;µw4uuÍÍ÷ºç4µhk›j4;khhÈ k ÅÅ-i§¼ u÷i--!}ÍÛ¥¥Ûx§ii;l!!!!!ww4þ8¥µÆ€k´k-nлÜÊh;gln¬i}¢¥¥k?ÅÆÅÐsʽzؽ½z~ܽ½½½ØØ»7n4u u¼f§j¼çlµa›¬h ?ЀÐÐÐ7?Å›hÈk?ÐÐЀ{»ÐÈ¢ͧ§çiwÈ{½Üz½Ø-çç4i!;igijÃoj¼žinµXlž4lhÊkµ›§lw4uxÍí÷¶§ç4µhÈ›¼4;!kh´ÈÅÈÈÅ ›i§¼Û}¥iµh›!ÃÍ¢¥Ûof;;;;!w!!!4þ8¥µ7€khk-µÐ€Ñz2h;g;nw-i}¢¥÷k? Æ?77ÐÊY½zؽ½zÜÜܽ½½½Ø»ÐX4u u¼§ff¼çlµ-¬h ?€Ð7ÐÐÆ?ak k?ÐÐÐs{»Ðȧ¥ͧ¼4ik~zØØË¬¤Ã§çil;iiic¼}¼¼xiµµµl4žl¬Ê{hµn §lXçuÃÍí ¥§ç4!µcaµi¼}Í1Eµ Ð 7ÆÐ½ܽ½½Øz~zz~YY½YYY½»Ñ7h;4j}íÛ xf¼ífc;!X›k 77777ÅÐkhkk Æ7Æ7€Ë;¼÷÷ íüž.n?Ñ~zY»»a4ç;;i4¢ujxuÍÛ¶};´!Ã}í¥¥¶qEºÃÍ;µluÍ¢ºí¼¼X-¬ng§§iµlw-Å7 ?7 µçf§}}ÍÍ¥÷§l¬ kç¼Û}íÃ4ii;;!!ll!;xþ1žkYÑÊË?¬;¤iXa!l!cµn.ÃÍ1E§µÅ7 ÐÆ7Üܽ½Ø½z~Üz½YY½YYY½»27h;4¼uÛ í¼§§¼íf;!wXa´ÈƱ777Å€ X¬ÈkÈ Æ77±€sÐ!¼¥÷ oo.›7»zzYÑYØËa4ç;;;4ž÷ÃoÍÍ qÍ;h!xuí¥¶¥º1qÃu;n;žuÍ Û÷¶íojX--Xc§§iµlw- ? ?7Åaçf§uÍ}Í¥÷§lhÈk!çÃÍÛÍuíÃ4ci;;;!!l!!;ÃþE4k»22ËÅh;ci›!l!µcaµi¼}Í1Eµ Ð 7ÆÐ½ܽ½½Øz~zz~YYY»YYÑÊ7-lçjuíÛ í¼f¼¼;w°a´È7±±777?sk-kk ?777ЀÐlo¥÷ÛÛíoožçia7»ÜzY»YYËa4ç;l;4¢Ã§¼Íuº};h!Ã}í¥¥¥ºEqíxxl-;}Í÷¶jjX!4wnµ§¢1ºÍ¤XkÐÐÐÊÜzؽ~½½Y»»Ø½»»ØYÐh;¤§x ü¼}Ãi.llµ›h ?ÅÈ €Æµ¬k´ ????77Ð-c Û}¼¼§ç.›Ð½~zY»Yдc§jçl;¤4ÃíujouÛqíççx¶¥ãããEEq;k!ÃÍ ¶EEonhh¬µ¤fži4.›?±Å´hXX!ç§4ÍüoÍ o;›Èkn.§íÃo}}¼§4c;;l!!!!µcäó͵7Ë2ÜVéØÐÈ›!;!wžµµcfž¥EºÍçnkÐÐʽ~zY½½½½½ÑYYؽ»ØYYÊ7hµlc§¼Ûufouxžci;!ln-h ? k Ð?n-kk ?Æ ?7Ðs-¤í Ûͼ¼§çia7½~zYYYÐhcjçl;cž}í}joͺíçç¼Û¶¶ãEEã1Eãik!uÍ  ¶1Eí¼nh´hµcfi4.›ÆÐ khµX!§uü¼ oiaÈ µ;fíux}í}¼çccilll!liäó͵ÐË2½Ü˜éYÐÈ›l;!!4wnµ§¢1ºÍ¤XkÐÐÐÊÜzؽ~½½»Y»Y½½½Y»{дX;¤§xÛxj¼uož¤c;l!µ-h?? Ƶµ¬kh ?ÆÅÅ7€€-cí Û}¼f§çin±½Ü½Y½YÐhgjç;;¤žÃuoxºíçç¼íÛº¶qEEã1EEik!Ãí ¶1E¼µµ¤w!µ;¤çj ¥¥¥uiah?{YØØYؽ½½YY»Y½Yؽ½YÊ7h›µlcç§xÃÃox}ÍÃf4cccc.;-´´-hk?±kµX-h Å ?Æ7 ¼Û¥¥ÛÃuo4i-€Ü~½Ø» ;f¼¤iii¤ÛºÛà j¥¶Í÷ºqãEEq¢¶ãq1.!jÍ ÛÛ¥Eó Ã!¬kÈnc¼fžc!n¬›°!¤¤¤4ç¤cgžÃoxí÷Í!kÆkl4ÍoxÍíÍxo4¤ii;;.l!wgžÛUä¶c?ÊÑÊÊÑÊØ˜VÜË nn°çww;¤çjÛº¥¥ucµh?YY½YØØ½Ü˜½Y»»YYYØYØ{7´›;gçfxu}xx}Íç4cgg;.-´h¬h´Ækhh Å k ?Æ7 f ¥¥ ÛÃ}o4.-ËÜܽ½Ø»?;¼§giiicÛqÃÛ§¶¶Í¢ºqãqEq÷ºEq1;!jí}÷Û ¥E x!¬kkµg§§4c!a--µ;¤cc4çgiž}o¼í Ížw ?k!4ÃxÃÍí}Ão4i;;;;lliÛUäqg?{ÑÊ{ÑÊVÜ€Ènµ¤w!µ;¤çj ¥¥¥uiah?{YØØYؽ½½YYY»½ØØØØYÊ7h-;cç§ÃuuÃu}Íxfžçccc;;!-hh¬¬´?ÐkµX-hÅÅÈk ?7ÆÈj ¥¢ Ã}x4i¬zÜz½Ø» ;j¼g.iccqÛÍížf¶¶Í¢¶qqãEã÷ºEã1í.;¼}÷ ¶E÷x!hh!-!X!;¤ÃoããÍça?{Y½Ü½ØzV»ØØYY~zz»{Æ´›a!;icžfoÃÃÃuu¼žçç4ççiµh--nh -›¬ khhk ? ?›¥÷¢ }4žl޽VVzYzéÅfžccccxuuÃj§Å4¶ ÷¢í ¥¥¥¶÷}1¥çj íÍ ÷ºU¥}cµÈk!gcc§žžžgl;;c4çggi;4xx¼¼ojxuw ±Å-cçfÍíÍj4ciiii;w!žçç¶8Uj¬€ÊÊ{½~½zzYÆ-hhw-!µ°!;cxÍoºº}çµÆ»ØÜ½½zØ»½½»Y½z½z»Ê?k-µ;g¤ž§¼ÃÃÃÍuožcç–44çiµhh-›h ˬ›¬ khhÈ ? ?›Í¥÷ }žžl ½½˜V½Yzéżžccc4¼}uÃj§ µ4í¶÷í÷¢Û¥¶¥¥÷}1ºç§í} ¶ä¥ÍçnÈkcgf444il;¤;4ç¤cc;4Ãx¼ox¼Ãu!ű -4fÍÍͼ4¤cicc;!!žçç¶8󼬀ÊÊ2½~z½z½7›hh!-!X!;¤ÃoããÍça?{Y½Ü½ØzV»ØYYY½z½z»?´aµ;icžf¼ÃÃÃÍÃj4ccç44;µh¬-ahÈËË--- kkhk ?›¤Í¥÷÷ už4ž! z»½˜˜~Y~³?çfžcgi¤¼uÃÃjj µ4í¶ ÷¢ ¥¶¶¥÷Í¥ç§ x÷Û ºä÷Íçhkkh›µµµ!;iilc4¢ ±YYz~Ü~YYY»ØY»»YØYÑs?k-an!c4ç4¼}uç444ž444inÈkµ¬ÅsËÅh›n--h´hkkk¬¬§¢ Ã4!7»zV˜2{Y»?¤xcw¤iç4žÃj4kk¬wiç¼uÍ} ºãoÃxfžž4Ã¥ºqE¶§;!Xhk¬!4§4§çci;;li¤cç¤cl!iž§§§§oo§ç!› 7 ¼}}uÃͼžcicgg;iç.881!sÐ2Ñ2Üz˜˜Êh¬´´hannµw;cilc÷ÛX±»½zzzz½Y»ØY»»ØØ»s?È-µµn!iç4oÃuÍož444444žinÈ´µ- €ËÆh›n--hh´kÈk¬-§ ¢ Þ4!лzV»ÊY»?cucwgiçžž§Ãf4kk-wcçxuÍÍíÛ¶Eox¼f4x¥ºq1¥§;µhÈ-l4§4§4gg;;!i¤¤ç¤ilwiž§§§§§ojç!- 7 µc¼u}Ãuͼgiig¤i;ciç.881!sÐ2ÑÊܽ˜V{hhkkh›µµµ!;iilc4¢ ±YYz~Ü~YYY»ØØ»YY»ËÆ -µµµ!g4çžouÃo444444ž4iµÈkµ¬ ss?¬µµ›-hh´kÈÈh- ¢ ç;7ʽzé»ËØÑÅcxcwgg444xj4kÈ-wcç¼u}}Í¥EfoÃo§ž4u qã1¥f;kkh¬-hhhk¬h Æ ›µ¬w§÷÷´½Y˜éÜ»ÊY½zzzÜz»Ê€Åk¬nµµ°lcç4§ÃÍ}¼4444ç44cµ Èh- ÐsÐÈ--›h¬h´hk´ k-i÷¥ ¼jf4cas½½˜˜Y½zËa4.¤ig¤cžj§¤hkk-!.ç4ž§§¼Ãíi;žÃ4lu ã÷4i¤;µ;i4cc;wl.iig;;µ;c4ž§jj§§4g!µ-7?-;4¼}uÍo§¤ii¤cžcfº)8¼€s»Ê»Y~~VÑ Èkh-¬-¬hk-- 7 ›µ›!j ¥k½½é»ÊYzzÜ~½Y2€?k¬nXXX;ccç§}ÍÍx§ç44444ž4cµ h-ÅÐs7È--›¬¬hhhk´kÈ-i}÷¥ xjj4cX€½½éY½˵ç.çigcc4¼¤hkk-µ!;ç4fjui;4Ã4lÍí÷ã1¥4i;µ;i44c;wl;cig;;;c4žfjf§f§4g!n-7 ›;4¼}Í}u¼žciccij¤º)8§€Ë»ÊYYzÜz˜Ê kkh¬-hhhk¬h Æ ›µ¬w§÷÷´½Y˜éÜ»ÊY½½zzz½»?k¬nXn°lcç§x}ͼç™44444cn h- €Ð h--¬¬¬h´kkk -c}÷¥ ¼f4iµË~½éYYz˵4iç;i¤4j§¤´kk-µ!içž§f¼Í1ilžx4!}Ûq1¥4iÅÈk´ ?¸??hkËØË?7?±› ¥Ã»ËË»ØY½zؽ½~ÊË7 khaµXµwi¤4žoí}¼çcçççç4ž¤w´ ´Å€Ê˱?È´hhhhh´k khf÷¥Û¢÷}jžž4çh½ÔÜÜ~z~Ðl4gi;;;iç§4;°-h´h¬-Xl;i4f¢ººžçx¼¼¥qÃccçž4i;cç4ç¤gçç¤i!.icc;lX!;fx¼oj¼§ç;w?? hw¤§§xÍÃçcicç4¼ç›¤81¬Ð»ÐY½Ü˜2 ? kkÈ Æ??hkʽs?7?Лž ¥Ã»ËÑØYؽYؽ~~zØÊË7 k¬aXµµw;ç44¼}ožcçç4çç4¤wk kh?s{ËÐ Èhhhh´kkk h!f÷¥÷ jžž4紽ܘ~~zÜÐ!4gi;;;içf4i°›´khh›µl;i¤¤4j¥ºãçž¼¼¼¥q}icçžiicç44¤c¤ç¤i!;..ic.!°w;fj¼oj¼ç;!?Æ?hw¤§fÃ}Ã4icc秤j4a¤81-ÐÑÐYØÜ˜ÊÅÅÈk´ ?¸??hkËØË?7?±› ¥Ã»ËË»ØY½zØz½~ØÊÐÅk¬aµnwic4o¼ççç4çç4¤w´ kh?ËÊ˱Åk´´hhkkk´kÈh!§÷¥¢÷j44çkY˜~Ü~Ðl4¤i;.;içf4;°›h´hh-µ!;icç4f¥ºãíçžxͼj¶ãuii? k?7ÐÐ7ÈÈË2€7Ë{»k¤¼ ¥¼- s?Æs2Y½½ØØØÑ2s7Èk¬-a›X;ççuo4cçç44ç4;nhkk Æ€Ð? k kkkkÈÈhhk›i} ÷¥í¼fžž;¬s~½½ÜÜ2n¤i!;i.;c4¤il-hkh¬›-nw!;g缺E à Û}o;ciç§§çç4ç¤;wicciççc¤;!µµ;ç§§oÃÃx¼žc!µnkÅ -!iiof4ccçc¤žc§n-¥þ7±Êzܽ€k? k?ÐÐÐ7kÈÐ{Ð7ËÊ2kg¼ ¥x- ÐÐ?Æ€ÑY½½ØØY»2€ÆÈ´h››a;¤ç4fuͼççžç4;nh 7€Ë7 Èkkkkkkkhhk-i} Ûí¢¥í¼fž;¬s~½YÜÜ2nçi!;i;ižc;!µ›h´hh-an!.g44¼º1} Ûuož.¤iç§4çç4ç¤;w!;cc;cçç¤;!nµ;¤ž¼¼ÃÃxx4c!µ›hÅ -!ic¤xf4ccç¤ç4cjž›-¢þ7бÊzÜzsk? k?7ÐÐ7ÈÈË2€7Ë{»k¤¼ ¥¼- s?Æs2Y½½YØØ»2Ð?kkh-aµµ;çç§uÍo4ççç4ç4;nhkÈ 7€€Ð?Åkkkkkkkkkhk›cu ÷¥í¼§§žž;h˽ØzܘÑa¤i!;;.;¤žçil›hkh---nwl;¤44¼ºEÛuÛ }ÃÛÛž.?khÈ?777ÐÐÐËÑ»k;i¼÷}oµÐ7Å? ¬Ë»½Ü½½Y»?kk´h››a-µ;cc¼}¼ž444ž4ž4;µhkkk ????Å? kÈkÈÈkk´kkµ4ÍÛÛ ¥Ûuo¼¼çi¬Ê½YܘÜk.c.iccc¤i!›¬h¬hhkh-a!;gž¢  ÷¢ ÛÍgçcj§žiçc;µ›nwiž4;´¬icço¼Ãüfçi;X¬È h;ic¤žçççcçciciž°Æ;8þ¥?Ð˽ܻ7´Å´-È?777ÐÐÐЀËÑÑÈ;c¼÷¼б ? h»zz½YY?kkk--a-›µ;cž¼Íoç444žç;µ¬kkkÈÅÆ?? ? ÈkÈkkk´kkµ4Í ¥÷}o¼¼ç¤i¬Ê½Ø½z˜Ükii.ii3cccilwn-¬h-hh´-nw;i§í¥ÛíÛ ÷¥ Ícçcçžf§ž¤içclµ››wiçž4¤;h¬iç4joxü§4ilX- hµ;iic4žççççiici4ž?;8þ¶ÅÐs½~ÜY7k?khÈ?777ÐÐÐËÑ»k;i¼÷}oµÐ7Å? ¬Ë»½Ü½½YY?kkh-››--µ;¤¤ž¼Í¼44çž4žç;µhÈÈk ?Æ??? ÈkkkkkkhkkµçÍ Û÷¥Û}o¼fçi¬{½Y½Vzkig.iiccçc¤;!ahh¬-hhh-aX!;i¥Û ¥¥÷Ígç7hµµ¬´ 7ȱÐ?Æ{Ñ{ÐËÐkníihk 7ÐhÈл½~½»Ð?´hh---¬-µ!;c4¼u¼çž§çi-ÅÆ? ÅÆÆ?Å ´hkkkhÈh´k-;f  ÷ Íxof¤chؽ»ÜzéVË-iç4çc¤ccl!nan›hh´´h¬›µµ.j÷Í ÛººÍjçg¤¤ç§of4çi¤i;liç4çç;!kk-ig4§oouuxc;µ›hk´µliiiic¤çççcg¤ggçw7-qän±Ë7Y½˜Ñs77hµn¬h ÆÈ7±?ÆÊ»{ÐÊ7knÍíí;hk Ð7´k±Y½ÜYÑÐ?khhh-›-¬a!;i4¼Ã¼44žž§çc-ÅÅÅÅ ?Æ7ÆÅ ´hkk´´Èhh´h;fÛ ¥¥ÍÃo§cçchؽÑÜé˜Ë¬iç4ççc¤¤!!a›n›h´h´´haµ;o Íí ¶º}jç¤ccçof4i¤c;µ;iç44ç;wÈk-ic4§¼Ã}uož¤.µ›hkhlicgiiçcççcggg4Ð-ãä›Ë7Y˜2Ð77hµµ¬´ 7ȱÐ?Æ{Ñ{ÐËÐkníihk 7Ðh л½½½ÊÐ?´´hh--¬›a!;c4jÃxç4çi!- ?? Å?7Æ? kkkk´h ´´´h;jÛ ÷ Íxxf¤çhØÜ»ÜÜé˜Ë¬.cç44cçcc!!wµ›n›¬´h´h¬›µ.o }Û íº¶ujç¤ÐknXa-kÆk?Åk?2YËËÐk›;4§Í4!°- 7?k 7Ñz½{± hhh¬¬-h›µ-¬wg§x§4§§§§žc;µ ±ÆÆ?77?? kkkkkhkh¬h¬µçÍí ¥¢ Í}Í}¤c¼i?»»½˜˜Y¬4çç444ççgi;l!µn›--¬-›a!¤¼¶Eºu uuo§4cii4fj§cg;i;;!.¤cç4ciak h!;cçjÃ}ͼ4g!nhk´nµ!;i;iiccçç¤cc;c.?Å41äx7€7Yzéé½±€2ÐÈnna-k7k?ÅÈ?2Y{7 ›;4fu4;X-È?7hÅÐÊzzØÊÐ ´¬h---h›a-›g§of4f§§4;µ 7Ð???77?? ´kkkkkkh¬¬-çÍ ÷¥ÍÃ}}cji?»»½z˜Ø{-4çç444çciilµ›n----›nw§í¶1qÍÍ Ûuuçžcic¼¼f3çci;gi;!;gcççcink -!;gçjÃuͼ4cwnh´h›µ!;;;iccççicc;c;? 41ä¼7€7Yzéé½€ÊÐknXa-kÆk?Åk?2YËËÐk›;4§Í4!°- 7?k 7Ñz½{Ð hhhh--¬aa-¬wgfÃjžžj§§§4;› 77?Æ?Æ???Èkh´k´kÈh¬--°çÍ ¢¢ }}Ígc¼;ÆYѽ½Ë-4ç444ç礤ii;wµ›µa›-¬--aw¤§¶1ºÍ}¥ÛÃÃxžžÅ´´hhk7ËÐ?´?ÊsʱÐ?hlfji!g;›Å??€Yz»ÐŬ-¬--›k-- ±kcf§4žff§žfcµÈ77??ÅÈ ?? ÈkÈ kkkkh---l}í÷¥íuÃíÍç¤j?zØ»YØÜV7i44ž4cç;i;w!l!µµa›---h´!çÃ÷E1º ÛçÃ}¼Ã4c4žž§ž3..cgilicç44l¬?h;;;;gÃÍü§wahÈhµµ!!;l.c4ç.cç.gg s¬ãäEÆÐ€Ê½˜Ük Ê{?´hhhÈÆ{€?kÅ{Ðʱб?hlfj;w!gl›???ÐY~Ñ7Å--¬¬-›È›› Ðk!j§4ž§¼§§4§žcµÈ777?? Å? kkÈÈk´kkhhh-lÃí¥ ÃuíÍ礼w?½ØYؘ7i4444ç¤;;;!wl!µµa››--¬hw4o÷EE¶ x§Ãüuçccžž§ž..iiilicç44!h?k;;;;¤ÃÍ}ja´ hnµ!l!!;iç4çi¤çigc Ðhãä17Ѐʽ˜7kÅÊÅ´´hhk7ËÐ?´?ÊsʱÐ?hlfji!g;›ÅÅ?€YÜz»Ŭ---›- ›- ±kcf§44§§§§4žgÈÐÐÆ?Å Å???Èk È ´´khhh-!Ãí÷¥íÃÃíÍçf!?½Y»Y½zV7i444çc;;;!!!!µµ››---hh!4o÷EEº ofuÃÃuÐ-k ¬?Ð˽½½~Y½~½»€7Æh!xci;n!c;iig;kY½Æ h-hhhnµ›hÅËË !¤§j¼j§444¤!-ÐË7? ÐÐ Å hhk´´kkhhÈÅh-§Ã ¥uÃu¥}4ž4wÅ2Øzzzѵ444žž4çi;;;;!!;;-hhXn!f E1º÷Ãfxjfof44ç44444ççççç¤i;;;çž§žžž ¬µµ-››luux4XÈÈaµ!ww!;i444çç¼¼ih{€cEÆË7~én4;›7nk ¬Å7{½Ø~½½½»€77´!äi;µ!iigiik½~ÊÆ h¬hh-›µah?ËËȵw¤§§f§§ž44žw-sË7 ÅÆÆ Å khkkhk´hhk ´-u ¥ÛÃu}¢}4ç44ÅÑ½Ø½ØØÑµž4žž4žç¤i;.;;;;;;°›k¬µX›;j E1ã¥Ã§füfo§44ç4444ççç4cc;;;ç§žžžk ¬na-aa!u}u4Èkµw!w!l;gççççç4¼¼i-{€cEÆs7~³n4;aÐ-k ¬?Ð˽½½~Y½~½»€7Æh!xci;n!c;iig;kYzÆ hhhh¬-µa´?Ë !g4fjfffžžžžç!¬s€7 7Ð Å hk´khkkhhk ´-u ¥}uu¥}4¤4ÅʽzzY½Ñµ444žžžçciiill!;;;°X-hh°›!¼÷E1ã¢Ã§¼x¼¼ohk-hk?´szÜØ»Üܽ»{€?-4ll;µ›-X!clks»? hh´hh¬aµhÆs7hµ!i4jo§444žžç;n?±Ð??77ÈÅ? Èk kÈk¬hk Å ix¥¢ÍxÃâÍ4ç!h{½½»»~žžž444ç¤;.;;ll;l!µµn´¬n°;j E1qf§¼§fž4™44444ç4çccc;ic4çççç!¬khn!›hh›iÃui-hnµXXµ°w!i¤¤çç¤gç4iÐ7wÍäsÊ7Yé 4.hÐ -´k?Èн½Ü½ÊÜz~ÑÊÐ?-ç!;;µa¬µ°!i!hËY? hhhh¬-n-´?s7h°!i4jxf444ç;n?ÐÆ?ÐÐÆ ? kkÈÈkkhhkÅ Ècx¥÷Ãxx¥Í4ç!h½Y»V½4444ž4çcii;;ll!l!µnhhn°l§÷EE¶íož§j§f44ç444ž444çççç¤g;.gçç44ç!h´hµw!›hk›ižÃÃ.-hnnµµµXµl;cç44cicžcµ77wÍäcÐÊ7YéÈ4;hk-hk?´szÜØ»Üܽ»{€?-4ll;µ›-X!cl´€»? hh´´h¬µ›h?sË7hµ!cçjx¼ž44ç;µ?±€ÆÅ77ÈÅ?ÈkkÈkkkhhkÅ 3x¥¢ÍÃÃÃ÷ͧ4ž4!hÊzYYV~žžž444çci;;;!;!l!wµ´¬awX;§ EEºo4¼j4¬´kÈ??´Ð½Ü~YÜz~Y»ËÆ;¬ÆÅhÈ h›¬hµ!;aÈ? k´khh-a-kÆ€€Æ?µ!;c4§fç¼¼f4c!h7ËÐÆÆ7±È?7?Èkkkhh¬›¬ 77´4¢ ÍuÍ}}fž44c »½Ñ2˜Üµ4444ž4ç;i;;!!;;!X¬-nXlqEºo4ž44ž44ççç44ž4ççççci;;igcçia›Xlc- ÆÈX;i;!hÈk´h¬›-›µµliiçiicg.ÅÅȵ11´?»é{íj笴hÈ ?k½~Yܘ½˜~YÑË?;h7?¬ k-hhµl;› k´´khh-ah?€Ð±?µliçj§4j¼§ži!h7Ë€Æ?7È?Ð?ÈÈkkhk-›¬È7Ðkç÷ ÃÍÃÛÍfž4žc »½»Ê˜Üµž4ž44ç¤i;;ll!;;!wµh-n;ãEºxç444444ç44444çççç¤cci;;cccc4i›-lc- ÆkX;;;4;hÈkk¬-›››n!igcç¤ccc; ?ȵ11h?»éí¼4¬´kÈ??´Ð½Ü~YÜz~Y»ËÆ;¬ÆÅhÈ h›¬hµ!;a ? ´´hhh-a-h?ÐÐ7?µ!;i4§§çjjži!hÆÐ77Ð7È?7? kkk´k-›¬ 7Ðhç÷ ÍuuÃf44žiw ÑØ»2Ôܵ4444žçi;;l!;l;!wwnh-nwX;ãE¶ožç444fi´Ë77Ðs~YÊz~ÜÜܽÑkÑÊÊÊ?€Ð7 kk Èkh¬›-k±Æ Å-wgçç4ç§o¼¼cikss7??? 77Æ? Èh¬haXnhÅÐ}¥ÍÍuj4žžçi7½Ñz½a4444444çci;ll;!l!!µ-›µµ!4ÍãE¥4ç444çç444çç44çc¤cçc..ccççiwn-›;ž 7hµ;;n´ kkhh¬nli;gçcc;-hsÆuä4?7{Üç¢Í¼c´ËÐÆÐÐzØÊÜÜzÜÜzѱhÑ~»ÊÊ?€ hkÅÅÅ k´h-a¬Èб7 -!c444žf¼¼jçikss7??? Æ7Æ? Èhh--nh ±}¥íuuj4žçi±Yz»za4444444çii;;ll!;!wwµX››-wžqE¶§4ç4ž4ç4çççççž4çcççç¤çciiigççiwµ›-lž?Ð7h;;nk ÅÅ Èhhh-n!;ig礤gc;h´ËÆuä4ÆÆËÜ¢}fi´Ë77Ðs~YÊz~ÜÜܽÑkÑÊÊÊ?€Ð7 kk ? Èk¬¬›-ÈÐÐ7 Å-wg444§¼x¼i°kÐsÆÅ?? 77Æ?Èkh¬-›a´ 7Ð}¥}Íxj4ç;н½»~a444444ççii;;ll;;!µµ››µ›w4qEºj4çžž4ç4Û÷}!7sÐYÑܽ2z½Ü½zÜz{7››7Ü~ÜV~½{ËYØÊËÐ777Æ?k-›Xh?ËÐÅhk nc¼uožççjxÃx§žç;› ±Ð7????ÆÐÐ7 h¬h›µX-k?дçÛ Ã}¢Ûͧžf¤g-нÜÜÑž4çç444ç¤gii;;l;!!wa›°!µnl4Íqã÷ž4žž444ççççç4ž§§44ç¤ciççççççž4§çci;ll;ž4;¬ ¬lµ›hk khh´h-°!!;iciçi;›µ2Ënã ÆsYܳw }÷uwÐsYјØÊzz~zzܽÊ7-›Ð½ÜzV~YÊË»ØÊËËÆ77??k-›µ¬?€?hh µijÍjçç§Ãuxf4ç.› 777??Å?7ÆÐ7 hhh›°µ- ?дç ÷uÍ÷Ûu§žj4cg-Ðܽzʵ444çžž4çcgii;;;;l!Xn›X!µµ;ãã÷44444žçç4ççç§–cci4ççcç44žj4gc;ll;4;- ¬;µ›hkk hkkh-µ!;iicccc;w›{saã ?s½Ü³!÷}Û÷}!7sÐYÑܽ2z½Ü½zÜz{7››7Ü~ÜV~½{ËYØÊË€Æ77??k¬nnh?s h´ µg¼Ã¼žçç§xu¼f4ç;n ±77? ??ÆÐ±Æ?khh-Xµ-kÅÐhç }Í¥ͼž§4cg›~~z»µ44çç4ž4ç¤gii;;lll!XanX!µn;ÍqE÷44444çž¼õËÊY½˜zz»ÜÜ~z½Ë hµ´ÊÜzzY»2»2б7ÆÆ? h›wµkЀ? ¬-h›;jüž4§ux¼jc;- Æ7ÆÅ?Å??ÐÆÈhh-µhÈ {-Ãjöͼ4ž§ç;l›{½2!444ççcccig;;;;lµ›aX!µ;fqqžž444ççç4žçç¤gç4ççç4ççoo¼o¼žççw4 ¶4lw.;lwµ-h¬´kk¬aw;i;!;;.l!-77à Æлzéhͼ¼ÃXËÊØ½~ܽYܽ½zz€ ¬µ´»Ü~ÜYÊÑØ2Ð7±7777 ka°kÐË7?Ȭ¬hn.§ujç¼uü§4¤;›È777 ???7Æ ¬h¬nXhkÅË›žÃj}¶ͼ4§ç;l-{z˜Ñl§444ççcçccii;;l!lµ›n°µ;ºq§ž4444ç4ž4çççccc4444žžç¼¼¼¼f4ççµç ºÛžlw;;l!n¬¬hhk´¬µwl;;!l.;!!-Ð7à ÆÐÐÑzé´}¼¼õËÊY½˜zz»ÜÜ~z½Ë hµ´ÊÜzzY»2»2б±7ÆÆÆ hakÐËÐ?Èh-h-;jüž4fuÃo§žcl› 777ÅÅ???ÐÐÆkhh¬µXhÈ?{Ð-žÃ§Ã¶ÛÍfžžfçil›ËÜ2;4žçççcccgi;;;!lwµ››X!;§ººž§žooÃ÷gѽVz½YÜY˜zzÜÑ7k¬-k€z½2Y½Ü˜éz{s7Ð7ÐÐÐ -wa s7?Åk-XhÈ-!g4f¼uÃof§cc!µk Å Å????Åk--›µ›kÅÆÊ2ÐhXgo¼¼4ç4ii!k€Ê;Ão§4¤ig¤¤¤ii;lln--nµµijíº¥Ã4§§§fžžçç4§§ž44çcçççç4¤c4§j§ci;iiç}¥º žçgi;lµ›-hhhaw;;!!l;;!!µw?½7§7{Ë{ØÆÃÃxÃ} cÐ2½˜ÜÜØYYÜÑ7Ȭ-ks~Ø2ؽÜ阽Ês±Ð±7± awn?Ë7?Å -µhȬ!cž§žoxüff¤i!µkÅ Å?????Åk--µXµ´ÅÆÑÐhXg¼jf§4çžžii!hн{;uo§4¤gi¤cci;;;n--›nµcjq¶xžfž§f444çç4f§ççc4çççcic4§f¤i;ic4Í¥¥ ž4gillwXa-hhh›;.;ll;lllµw?Y±§7Ês{½7xÃxoÃ÷gѽVz½YÜY˜zzÜÑ7k¬-k€z½2Y½Ü˜éz{s7ÐÐбț›Ås7? È-XhȬ!c4f¼Ãü§fgc!ak ?Å????k¬›nnk ?ËÊshXgo¼fç4i;!ksÊ;Ão§4cicci.;!;a--nµµµijº¶x4fjž§jfÃ}xcÆ»YܽY»z½˜˜~?´hkkÅY½˜½z~ØYYY»Y»2ÑÊÐka-ÆË?È È›h¬-›a›lg¼x¼¼jg¤gl-hk Åkkkhhnaak?±2»»s µi4ccg¼c;!›ÐËwÍçž4¤ciicc;i!!!µhh¬-hniq¥jž§j§fj§4ç4§§ž4ç4444cç§ožg;ii;.4à ºq¢x4cil!°›hk¬›w;;;;i;;;l!!ÈVÅuik»ËËzÜмÃu¼c?»Yzz½»zؘÔ˜½Åhh ´ »½Ø˜½zzzYYY»2ÊÑ»ÊÐÈ››7€?k k›hh-annwg¼Ãxjj§§cccl›kÈk ÅÈk´hhµaµw›k?7Ð2YÊsÈacççccgf¤;!w-Ëw}x§ž4çc;cc¤g;;l!!µ¬¬--¬n;§íº¥¼§§ff¼§žç¤4ž§§§§žçž4ž44jxg;iil.4u ºq¢ÛÃ4¤i;lµ›h´ha!;ll;ii;;;!! ˜?uikÑËËzÜÐÃÃ}xcÆ»YܽY»z½˜˜~?´hkkÅY½˜½z~ØYYY»Y»ÑÑ2€È›-7€?kÅ ›¬¬-aan!g§jxxj¼§c¤gl¬kk kkkh¬naµnkÆÐÐ2»Ês µiç4c¤§ç;!w-ÐË!Íçžççgii¤¤¤ci.;!!n¬¬¬-hn.íº¥o§¼§¼¼ }jÈʽÜ~½»Ø½z˜ÔÜkkkkÈ ?нYØ~ܽÑY~ÑÊÑØ½ÑÑ»ÆË€ ´ hhk h-›-¬;§Ííu¼¼§çi!;;µ-hhk7?Ȭ›hµµµ! ÊÐs»»»½YÊ»7›;lli4ž4;µ;i!!c Ãfjf¤cgiicigi;;;!µ›-nh-.à ¥§ff§j¼§žž§ffffof§žççcg¤gii;;iç§}Û¥¥¶º÷Û}ži;µhkhX;;;ll;!!wl;iÆzk!kЀʘ7goj }j ½ÊzÜÜYYY½z˜˜~kkkkk ?sؘYؽ½Y»»~2»»½»Ê»?ËÐ k Å´hkkh-›--i}Ãxfçi;;;µ-¬-ÈÆ?k¬-haµµ! ÊÐËÑ»»Ø½2Ø?-l;li4ž;µ;;!lc ÛÃfxfciggiccg;;i!!X›-›h-.x ¥Û§f§§¼§f4§fffjf§§§4çgccc¤¤ii;;gç§Ã ¥¥¥¥÷Ûuži!XhÈh°l;;;;;!!!;iÆz ¤lkнË27co¼ }jÈʽÜ~½»Ø½z˜ÔÜkkkkÈ ?нYØ~ܽÑY~ÑÊ2Y½»ÊÑ?€sÅ´ hhk h››¬¬;ÃÃf§çi!;;µ-¬¬ÈÆ7Ȭ›¬aµn!!ÈÊÐsÑ»»Ø½ÊÑ7-llli4!X;.!;c Ãf¼figiiigcil;l!X--ah-.à ¥Û§§§ž§ff¼íÃÍÃhYYzz˜z½Y˜zܘYÆ´kk ?7Ëј»Ëл2ÊÊ€ÐÐËÐËÐ k 77 ?ÅÈ´kkhalox}Ãog;!nµw¬Å?k¬¬h´Xµµw-?7ÐÊÑ»YY»YÊ aX;!Xlg¤}Í÷x}Ã4g;ic¤iiig;;la›n›n¤í÷ÛÍfjo¼f§§§f§§f§fjjf§§§§¼¼¼oxÃjç4çigi;gccç§¼oà ¥¥¢÷ §ç!›´›w.l;;;!w!ici7~kilaËYsØÑ;j¼íÃÍÃ-Ø»~zVØY˜ÜzYÆ´kk Å?ÐËјé˜Ñ{s»{{ËËÐsËÐÅ´Å?? ?Å ´ kh›;xxÃücllaa°- ?Èh¬hhXµXw-77Ê»»YY»YÊÐk-X;c!°lcçÃÍ xÃÃ4g;;i¤gigiiilla-µ›ng ͧ¼xo§§§f§§§§§§j§f§f§§§Ã¼¼jo¼f§44ç¤iii;cccoÃx ¥¢¢¥ íjç!-´›!;l!;l!liii7½kc!aËY€Y»;¼¼íÃÍÃhYYzz˜z½Y˜zܘYÆ´kk ?7Ëј»Ëл2ÊÊ€ÐsÊ€Ë7 k ?Æ ?ÅÈkkkhalž¼xÃÃjg;!µn°w-?Åk¬-hh°µµwh7Ʊ2»ÑYY»»Êkaµ;ççlµl¤ž}Í÷x}Ã4c;icccgigg;llµ-µ›µ¤ §§j¼o§§jo}µY½½VVV~ØéÜ{ ??? ???sË»Ü2Ê»{б7±{»½Ê ´k?€ÐÆ7sÐÅÅ-;ÃÍççc;l›nµ!ak7ÐÐ? Ånn-XhÅ7{ÑÊYØ»YØ2Ŭµwiiµižoà ÃÍͼjci;ccicc;;la›››µž÷¢íÃj¼§ž§oxjjf§fj§f§j§§§§j¼¼oÃÃoož4¤¤ii;liiiçfj4¤4¼Û ¶¶ jgµXwil;;illgç;нÅw!72˽Ë;¼Ã}µ»Yz˜Vz½Yé½zVÅ ??Æ ?sË»zØÊÊ{sÐбY»{7 hk?€ËÐ77±Ë7ÅÅ-;žÃÍç4g;!X-nwlµ Ѐ? Å›n-µµh 7Ê»2Y½»YY½ÊÅ-µwi.!µi4oíu Ãͼjciigcicci;;n-aaµž÷÷íÃfo§ž§¼Ãjf¼f§jjf§§fff§f§§§¼f¼ÃÃÃxÞ¤gi;!iiiç§f4c4j ¥¶¢¼gXw;!;;;!wli4;Ð?l!7ÊsØË;¼o}µY½½VVV~ØéÜ{ ??? ???sË»Ü2Ê»{б±ËYYÊÐ hkÆÐsÐ77sÐ -;§uÍoj4g;l°-ala ±ÐÐ?Å?›a-µµ¬ 72»2»½»YÊ?¬ai;wµi4Ãà ÃÍͼ§cii¤¤iiçii;;n-nnµ4 ¥íx§xžf¼o¼xÃÃÍí!2YØ~˜V˜½V˜7 7 È Å?ÅÈkÈ ?±ÐË2{s€ÐËY~{?´-›´ÆÐÐÐË2€7s7-;}xfu¼žç!h?7´hk?€{€€?Èk›µ›k72»ÊÑY»Y½Øs ¬µ!!µµi¼}}uí§¤iigigçcgi;n--aX¢ ux¼Í¼jü¼f§§ž§fž¡44ççç4¼¼oÃÃf4giii;i;;ž§§;!gooÃÍÛ }iii;;i;;;;i4w€zskh›ÆËÑÊ2çiooÃÃÍÛlYØY~VV˜zz˜˜Ð 7 Å??? Èk ?7Ð{»Ë€€Ñ~z?k¬ah?sÐ7±2Ë7s7-.uu¼x¼!h?7kk´ ÐÊËÐs Èk››´72Ñ{ÑYÑØØ½Ë ¬µww°nµcj}í}íÍuí§¤icgcg¤ci;l›-¬-°4¢¢}¼oü¼ox¼f§§žžžçççcç§¼xux§çgi;iii;ižf§¤;!gžj¼ÃÍ÷}iici;ii;!;cç!€ÜËȬ-Æ{»ÑÑçixxÃÃÍí!2YØ~˜V˜½V˜7 7 È Å?ÅÈkÈ ?±ÐË2{s€ÐËѽ½{?kh›hÆÐÐÐËÊË±ËÆ-;§u}fü§çlhÆ7khhÅs{€€ kk-ak7ÊÑ{YYÑY½ØË -µ!Xnµižj}}íu§¤;iccgciil›-¬›X¢÷}¼oÃxjxo¼¼Ã;Y»ØÜV˜VVVzÜéYk¬?h´kkk´hh¬h--›n›h 7777s2»»Ð ´-µak Å ?7ËÐÆÑ2Ðkç¼ÍojxçiX¬? ¬›-ÈÐÊÊʱÈh-a-?ÊY2Ñ»»ØØ½½€ha-w!wµµ;ç}Í u§uí;!;ic;i¤i;›--µ4xjfÃÃ}o¼§¼Íf§444ž™ççççç;ic4fxx¼çi;.i;c!ijjc;X!.ç§¼ÃxÃu íjçcçciig¤cµÜY˱Ås½½khç¼xl»Ê½Ü˜˜˜˜˜~騴h?h´´´´hhhhh--›››hÈ?Ð7ÐÐË»»»7 ´-X›kÅ ÆÐÐ?Ê2È4Ã}o¼oçi¬Æ -ah 7{2ÊÐ h-›-?ÊY2»»ÑYØYØ€ha-w!nµ;¤çÍ} x§uí;l;ii;c¤g.!n--4 ¼¼jxu}o¼j¼Ã§4444–ç4–çç;gç4foüçi;;i;iliž¼jg;µ!i4§oÃoÃÍí í§cçgi¤cçnÜØs?н½h½h4¼Ã;Y»ØÜV˜VVVzÜéYk¬?h´kkk´hh¬h--›n›h 7777s2Y» h-ak ? ?7ËÐ?Ê2€k!çÃ}¼¼oo§i-Å ¬›- ÐÊ{ÊÐ h››-?ÊYÊ»»2YØY½½Ðhµ-!!µX;¤çÍ x§};!;ii;ggc;!n-›µ4Ûo¼¼xuÃx§f¼ÃjÍí;2{Y~V˜éV˜2¬ah›-----›--a¬´khµah ƀѻYs?kh-n-hk ??Æ??7Ê»27-i¤ž¼uííüc!--µn- ±{Ðh¬´- 2Y22»2Y½2»½»kn›µXn;¤Íí ¥ºÃççu§iµn!l!;;.lwµnh›çü§4c;çoí}o§§4ž44çcçç444çç;ig4¼xf¤;;;;ig;4jÃü4;--µi4joüo}ÛÃ44gižž44µ?{Y2sÐ2Ñ?.Y4c¼}íiÑÊYÜVééé˜2-µ¬›----›››--¬´khµ-h ?€2YY€ÆÈh-n-´´ ???ÐÆ?ÐÊ»27¬;§¤4¼}íÃjc!››µµh 7±¬hha?ÊØÊÊ»»½½Ñ»ÜÑ´n-µ!n;¤Ã ºº}çu¼iµn!;!l;.lµ›¬µµçÃÃj4¤;ç¼íÍoj§4ž4çççç44ççç;;iç4¼¼fc;;i;ig;4xxo¼4i-›µ;4joü¼u u4çiic4žž4ç?{YÊsÐ2Ñ?;Y7çcjÍí;2{Y~V˜éV˜2¬ah›-----›--a¬´khµah Æ€2»Y€?kk¬›-´kkÅ?Æ7?л2Ð-;§4¼}ííÃji!--nµ- Ð{±h¬haµÅØ2ÊÑ»½½»»zÑ´n-nwXµ.uíÛ¥º}çÍfiXnl;!!;;;µ›¬açÃç4¤içÃíx4}c2Ê»½½V˜V˜˜zhnµhh-›-----hk??´nµµ›´7ÊY½sÆ´-›--h´ ?7€7Æ ÐYYËÈnc4¼fjj¼i!!;cc!hµ;Xhn´Ë»Ê{Ê2YY2»zØ?›°nXwn°là ÷¥4i4- hnXw!°µ¬µ¤§jgin hlx¼44çcçç4ççc¤ii;i¤4§§žil;ii;icÃuÍug›hn!cjo¼ÃÛÃf§4cicžžh?Ës±ÐÑеiË;ç4ÍÛc»ÊYؽV˜VVVÔz€haahh¬-¬h---¬k??haµ›´ÆÊYYËÆk›››hhk ??±Ð?Å{YØÊ ai§¼jfÛ¼iw;gw¬µlX¬µµksYÊ222»Y2»z»?-°µX!µ°lx ÷4i4§c›?´µn!!°a-µc§žiiµ h!oj§444ççççççççiiii¤§§i;;i;;icÃÃÍÍcµ-ha!c4jxj}Ûu§§4cgc4¤!¬ÆË€ÐÐ2еiÐ;ç4}c2Ê»½½V˜V˜˜zhnµhh-›-----hk??´nµµ›´7ÊY½ËÆÈ-aa-hk ??7s7? ÊYY{Åai¤§fffÛoi!w;cg!¬µlµhnµhs½ÊÊÑ2»Y2Ñz»?-µnnl¤x ¥í4i4¤›?hanw!wµ°a-awc§§iiµ ´!xj4íÍ {{Yzܘé˜VV˜é?µ-›››-¬¬h-Èhhkkh-a°°µh7б7ȵX›h´k´ ÆÐ{Ë7ƱÐË»½Ê7 ¬;i§¼f}Ã44Ã¥jç44wnXµ-s»{ʻѻY»YØY€hw!l!;µn;ço¥¢}Û xiwžhÊËÈ´›wwXa;c4f§;ak€Ê?!j§jf§ž4çççççcçi;;c444cl!iciicç§oÃoc;µ¬´¬µ;4xíf§f4ç444iw-ŀˀ»7iµ27ç4Í {YYz˜é˜˜˜˜é7-››n›--h¬khhkkk-aµµXµk7sÐ{±kaXa¬hhkkÆ€ÊÐ77±ÐËYY{7 ¬w;cc§¼fu}44Ã÷¼ç4žwnµn-лÊÑÑYYYY½YË´w!!l!µn;ç¼¥÷Í÷¼cw4h{€ h›µwwwµai¤4ffi°›È€Ålo§j§ž4žc¤ç4ç¤cçi;icç4i!wiccccçfoü¤.h´-i4§¼jfžçc4iµ¬ ÐË7Ë»7iµÊ€X44íÍ {{Yzܘé˜VV˜é?µ-›››-¬¬h-Èhhkkh-a°°nh7б{kµ›¬´hkÈÆ€ËÆÆ7ÐË»Y{7 -w;g¼ÃÞ}¢¼ç44wnn-ÐÑÊ2»YY»YØYËh!!;!n;ç¼÷¥Í ¼iw4hÊË h›!wµµic4fiX› s{?l¼l¤§ §ÐËYØØ~VVé˜~³Y?›¬hh¬¬h k ÆÆÈhhnµnÈÈ´Ð ha›¬hkkk űËб?77½Ñ{ÐÆk;gç§Ã§4iµµwk ÐÑÊÐs»»»½{½z´›µ!!wwcà Û÷ žiiiȽÊÊk-µ!!!lwg4ž§c´ÆÆËÑËk.4§4ç§§4çii4ciciii4çgil!;ig4ffj¼xÃx§g!akkh.¤4fxof§çžž4444žžcµhÆÊË7»Ëž Yʬc;¤§ §€ËØØ½~VVVV~³³Y --hhhhhÈ kÈ Æ? hha°ak h± ha-¬´kÈ Å7Ð€ÐÆ77ÐÊY»7Ækµw;gçjÃÍf4.µµwhÈÐÑÊÐË»ÑY½Ëzhnµ!wwwcÍ¢¥ ¤iig ½Ñ{È-!!l;wc44ck77Ë»s ;žf4ç§fž4cgç4¤cciiic4çc.;liig¤çfj§¼oüfg!›kkhµ;¤4fo¼§ž4ž44444žžiµh7»±½s§ž Y2-¤l¤§ §ÐËYØØ~VVé˜~³Y?›¬hh¬¬h k ÆÆÈhhnµnÈÈ´Ð ¬a›¬kkk È?±Ëб777{½»7Ækµ;4jÃíí§4.Xµµh Ð2ÊÐË»ÑY½Ê½zh›!ww!µcu÷ íi;g YÊÈ-!!l;wc44žgk?Æ€»ËÈ;;4 Í7YYY½ÜܘVVV˜˜³½Æhkkk ÈÅÅ?ÆÅ?±77 knhkk-?È-a-h´´hkk ?77?77?7Ëѻ˱7?k›nw.ffoÍíçž;n!;; Å 7Ê2{2ÑYʽ½?nXw!gº¢ ÷Û§gwiµ±ÑË7hµ!l!i;4ffj4i-?Ð˽ØÊÊhc44ç44žžçcciçicç§§4!!!;cc4§§§žçžf¼¼;›hhh-µ;i4žž4ç4444444iaÈÐÊË˽?ff7{»nil;4í uÆYYYØÜz˜˜é˜˜½7¬kkk k Å ??Å?±? ´›hk´›?k-›ahkkh´k ?ÐÆ?7??7€»ÑËÐ7?k›n!.f§Ãuížç4ln!;;Å? 7{ÑË2»ØØ»½½?nX!!g¥¥÷÷ fgw;µ±Ë»€Æ´µ!li;ç¼§fjçi-?±ËؽËÊhgž4ç44žžçiciçicççl!!;c¤4f§4ç4fülahhh›°;i44çç4444žž44gnk7{Ës7§f7{Ñ›i;;4 Í7YYY½ÜܘVVV˜˜³½Æhkkk ÈÅÅ?ÆÅ?±77 kn¬kk-?k-›-hhkhkkk?±7?77Æ7ËÑÑËÐ7Åk-µw;§joÍç;n!;;ÅÅ ÆÊÑË2»Øʽ~?aµwg¶÷÷¥ §c!;µÐË»€7´Xwli;ç¼f¼4i›ÆËYØ{!!ijÛ h½Yؽ½z˜V˜˜˜é³NËhkk Å ???ÆÐ€ÐÐ±ÐÆ Å kah--›--hkh´´´k ÅÆ7?ÅÆ±Åk k;c44ž44§x ÷¼žiµ!!!ÈÆ? €2{ÊÊ»»½zÊXw!lµií¶¢ ÷¢¢§¼cµl;kл»±h;!µi;ž¼¼¼¼žin?€Êؽ½Ø{?-!i4žçžžççcç4çc4§i;;;iç4fjx§çcc4¼Ã4;µ-hkkhX;igciç4žžžžççc-7sË{h¼¼7€Y-;llif ¬½YY½z½˜VV˜é³Ns´kÈ Å ? ?777ÐÐÐÐÐÐ? ´ah¬-›-¬hh-hkhkÈ 77Æ??±? kX;¤4žž44§o ÷j.!!!ȱ €»Ë2ÊYÊYz{µww!lµiíq¥ ¥÷§§¤µl;kÐY»Ê±hl!i;4ojf¼ži›?Ð2Yz½?¬!i44ç4žžçcççcççcçjci;li¤4f¼¼§4cc4¼o4;°-h´´hµ;igggcç4ž4ççc¬Æ€{{½¬¼f7€Y›i!!ijÛ h½Yؽ½z˜V˜˜˜é³NËhkk Å ???ÆÐ€ÐÐ±ÐÆ Å kah-›---h´¬´hhk Å7?? Å7? kµ;¤4444§x ÷jž;µ!!!k7? ËÑÊÊØÊ»zʵ!w!;iíº¢ ÷÷§§cµl;hsYÑÊ7hw;!i;4oj¼j4i›?sÊØzll!iÛwÊ»Y½zVéé³³é{hkÈÈ??Å ÅÆ7±ÐËsËËËÐÆk›µ›a››-¬h-hh--´ k?Å´-l;i4ž¼ÍÍcççç4§u÷4žc;;wlXб {Ë2{YÑYÑY›!ww!µ!4¥¥ ¥¥oça;-ÐsË{Ë?nw!!l.44ç;µÈ7{YØY˽ܻ7hcçcc¤ç4¤ž4ç4o4;g;;g4§¼ÃÃçi;i4fg!n¬h´h›µw;;iicçç44ççgchÐÊ{{»ØwÐÊYh;!!!i}ÛwÑØؽzܘéé鳘hkkÈ?? ??Æ7€ËÐЀËÐÐÆ ›µn›››-¬´¬´h¬-k k›wigž4¼užiççç4§Ã¥í4žg;;wlX7ÐÈÊ{ØÑ»2Y½a!!µ!4÷¥ ¢¢o4cai-ÐË€Ë?n!!l.ç4žž4;XÈ7Ë»½»sØÜY7h¤4cgc44ž4çf4;i;.c4§¼xÃçg;i4§cwµ¬hkh-n;i;iiçç4žžçcghsÊËÊ»ØwÐÊYh;!l!iÛwÊ»Y½zVéé³³é{hkÈÈ??Å ÅÆ7±ÐËsËËËÐ7k›µ›››a¬¬h-h´h¬´ÈkÅÅÈ-µl;gž4oužgççç4§}Û 4žc;;!lµ7±ÈËÑ{YÑY»Yawwµl4 ¥ ¥¥x4nih7sËË?›w!l.çžž4;XÈ7ËY½Y;!µ4¼.sY½Y½zܘ˜V˜é˜éé{-khhkk ???Å??7ÐÐs€€ss?k›wn›--¬hh´hhhhkk kn;fÃÃ}u}í¥q¢xžž§¼Ã}l;ç4i4c 7Å7ÊÊÊлÊY2Ø nn¬¬›hhµ;}÷÷ ¥Í4c›µiXÈ?ЀË7´µ!;li¤¤444Xµ›-Æ2½zz~YY~ÜËhçcççç4çüç.!;¤žj¼Ã¼ofii¤çžg!µa-¬-››Xlii¤444çcgc-Ë»2»2i¢ç »Å!;l4¼.sYY»Øzܘ˜ééé³éʬhhkkk ÅÅÅÅ ÆÐ±Ðs€ËËs?kµwµa›-¬hhhh--´´kkÈ›ifÃuÃ}}í¥q÷ÞžjxuÃ!l4žçc4c Ð ÐÊÊ{s»2Y2Ø ››¬¬›hhµ;} ¢÷÷¥}žc-µiµÈ?7Ës7hµ!;;ii¤444µµ--?Êz½zzYY½ÜËhcççcç§4çüç;;;¤foooofc;igçi!°›-h--n°wl;cç444çgggi¬s»Ê»Y2i¥ç Ø»Å!llµw4¼.sY½Y½zܘ˜V˜é˜éé{-khhkk ???Å??7ÐÐs€€ss?´›w°µa›--hhkh--hkk kai§xÃ}Ã}í¥º÷Þžžf¼uÍl;ççi4cÈÐÅÐÊÊ{€»2Y2YÈ›a-¬›¬kn!} ¥ ¥}žc›µiµÈ?Ѐs±´µ;;;iic4ž4µµ›-?2½½;;›!;;7Ñѽؽ~z˜éééééÊ kh¬h¬´hkÈkk?77ÐÐsËËÐÆhaµXXn›¬hhhk´--´k´ h!ÍÍo§4§Ã¥º¢í§ffj¼Ãfaµj4oçkhÈËYsË2ÊÑY½?È ??ÈÅÆÈn¥÷ ¢í§.È›;- sÐ?h°;;.cccžž4¼ÈÅhµ›±YØØYܘzÊ çiž§çgi4uuxçg4f§j§çiiciçi!n--›-nµ!lg44çcccilµ?2Ê»½Ê4ã笽рw;;µ›li;72»½½½~˜éVVéé2k´´-h¬´kk k ??7Ѐs{{Ð?h›µµµ›--hhhkk¬hhk´Åh!ÍÍÃjžjuÛ¥q¢í§ff§¼ÃfaXcf4çoçh´ ËYËÐ2»Y½Y?kk??kÅÆ ní¥ Û¥ik-;- ÐsÐ?´°l;;ccž4jk ¬µ›Ð½½½»zVz2kcžçc¤4çii4xÍx4cg4§j§§ž§çciciçglµ-›››µµ!;gcž4çcci;?{{YYÊ4qç-zÑÐw;;›!;;7Ñѽؽ~z˜éééééÊ kh¬h¬´hkÈkk?77ÐÐsËËÐÆhaµXX›-¬hhkhkh¬kk´ hwo§fuÛ¶q¢íjj§§¼xf›µ§ç¼çhh Ys{»»?k Å?È??  ¥ ¢iÈ-;›ÅËÐ?h!;;c444¼kÅhµ›Ð½i;wn.?»»»Y½½Ü˜éNéVY? Èh--a›´hhÈ Å7ËÊÊ€Æk¬›aµ›¬hkhk´hhkÈkhh¤¼o44oÍ ¢¶÷Íf§¼Ãox›X;cžž¼çcµµwŽË2Ë{½Ø?¬kkÅ? {shižÛ¢¢;hnXnµk7€Ð?hwl;;ççc4o €¬a?»»Ê»z~½Ø½Лiçççç;w;4¼¼¼¼ž¼ojž444ç¤ccicg;;›››aµaµµ;i4g;lµ!hÐsÑY4ãfµÑ»Ë›i;!µ°;Å»»YY~˜éNéVÜØsÆ?k´--›akhhk Å?ÆËËÊË7k¬aaaa¬hkhkkh-hkÈh-¼¼44¼uÛÛ÷¶ }f§¼Ãoo¤›;gž¼çcµµ ½ËÊ{ËʽØ?´kkÅ? ÐÊ€hiž÷Û¢ž;´›°nk7€Ð7hwl.;4çcžo {€hµ?Ñ»Y½z½½½ÜЛcççç4iµ;4¼¼f¼§§foj§44çg¤cccc;;a››an›nµ;iž4ii!!¬ÐË»»Ë4ãfnÊYË-;;!n.?»»»Y½½Ü˜éNéVY? Èh--a›´hhÈ Å7ËÊÊ€Ækh›aµ›hhk´kh´hhkkhhgo¼§žžo}Û÷¥ Ífž§ouÃoç›X;g4žo4cµµ Ø{ÊËÊʽŬkk?? 7Ë-;žÛ¥Û÷ ž;´a°nk7ÐÐ7hw;;;4çc§žo s¬n?Ñ»;;;lµg´22»ØÜVé~½½»Ê±?È´-µ-a›h´´k €sË€?kh--n›hkkkh´h-hkkh;¤oÃ4x§}÷¥ºº¢ ͼ4¼Ã¼ž!-µl4fxç¤n{»Ys{€Y»!›-k´´7YYkµi}÷ ÷ ç;!›¬n ƀЬii!ç4ç¼›{~7h?YzYYØzé½±ncžg;ani§çç4ç4§ÃÃoffçcçççcçc!µ›n-----µ!;4ž4ç.;!a.?ÐÊ»€§qÍX7½€h;;llµ¤k2Ñ»½zÜV³˜z½ÜÑ{±?È´-µ¬a›¬´´È Ðs€7?khh-a-hkÈkhhh¬´Èkhl¼u§ç4¼fÍÛ¥¶º¥ Íjž¼}jž!-a!4§xçgn{ÑØ{s»!›¬k´´7Y»kµi} ¥ ç;!-hµµ Æ€7¬!iilçc4ç¼›2Ü7hÆYÜØ»zÜéz±µ¤lanc§4ç4ç¼ÃÃjj§4çç¤ç¤¤çc!a›n››--aµ!;žç.!!n;µ?€22˧ã}µÐ½€h.;l!µg´22»ØÜVé~½½»Ê±?È´-µ-a›h´´k €sË€?kh--n-hkkkk´--´Èkh;¤oÃjç4x§Í÷¥¶º¥ ͼž¼Ãjžw-µX!žj¼çgaÊ2ØË{лµ!›¬´k´YÑȰ.}÷¥;l-´µn 7s7¬!;i!çcžç¼-Ê~7h7Yi;!!µÑ»ÊÊYzzVééVÆÊÜz½Yб?È h---n-h ÐÊ7Èkhn›¬´hkk´›;X È´´›çfuÍu§4xÃ÷¥¥¥¥¥íüoÃoçkk--;f4§;´µçck2»Ê2»».¤l›¬k?л»Ðµ;c¥ºÍiwl¤;wµhÈÅ7Æhwiic4žç4fô»YЀ½Y½½z½½½Ü˜Yk;lw;µXlžÃf4g4jouož4žžžcg¤çc¤çž4;a°µ¬´k-!g§§4i;wµµX››-Ås7§1º-7¬;;!!XÑYÊ{Yz~ééV?2½z»±?È h›--a-h Ð2ÊÐ ´´a›-h´kkkn;µÈ kkaçfÃ}Ãu}í ¥¥¥¥÷í}¼xxxžçwkk--i¼ž§;´µçc´Ê2YË2ÊÊ.c;a-È?ÐYÑsµ;c¥ãiwlg;wµhÈű7hwiiicçž44§x´Ë»YÐszY½ØØz½~z˜YkllµllÃj444žfxÃož44žcicçc¤ccžçla°nhk´¬!gžj4i;!µµn-h?ÐÐ1q›?7h;l!!!µÑ»ÊÊYzzVééVÆÊÜz½Yб?È h---n-h ÐÊ7Èkhn›¬´h´k´ai°Å kk›çfuÍ}4Ãx ¥¥¥¥÷}joÃoçwkk--;j4l´ngkÊÊ»2ÑÊ.¤l--kÅÐY»Ël¤¥ºglg;hk 77¬l;icçž4ço´ËYY€s½»!µµ›°!?»½{ÑY~˜³Né½hÆ2YØ»ÐÆ?È k´-h´ Ð7? k¬¬n›hkÈ ?igÐÐw§¼§§¼4¢¥¶¥¥¥¥ }ÃxÃihh›-;jÍcwaµc!Æ»ËÊØçcc!Xk 2ÑkµgÛ¢¥n;ccgiwµk7Ðkii¤¤4ç4çžf-±Ê{ʽ»ØØ½½ÜÜ~VVÑh!;µµ;4jž4ž§xüçccçccç4ciiçžç;!---aµ!cç;wnwwllÃEqµÊY±;!µnaX!?»½ÊÑYzV³NV~h?2ؽ½»Ê7Æ Å Èh-hk ±Ð7? k¬-››hkÈk?giw77§jf§jçžÍ¥¶¶¶¥¶¥}xÃxihh›¬!fucwµXg!ÆÊsÐʽÐç¤cwnk ѽ2kµgÛ÷í¥n;ç¤giak7±È;içç4ç4ç§-{{ʻؽ½½~~VV2¬;lµµµ;4fçžj¼}¼žç¤çcc4gggçç;!°ah-aµwc;wnwµ!;!!uE¶µÊY±;!-a°!?»½{ÑY~˜³Né½hÆ2YØ»ÐÆ?È k´-h´ Ð7? k¬¬n›¬kÈ ?µig77§j§§¼ž4÷¥¶¶¥¶¥Íxxxži¬h›-;fÍ!aXgžl?ÊsÐ{½Ðçcc!nk ÊØ2ÈacÛ¢í÷µ;çcg;›k77 µii¤ç4ç44j-ËÊ{ÊYwµ--Xwwa€Ø222YܳYakѽØY»ËЀÐË€Æk´hkÅÆ7Æ? khaµa¬k hµ§µ7±¼¼4ç4§í÷¥¶¥¢¢ Ã}lXµµn-¬!§a!¤µ±s7½ žçcwÐÐ ÜËÐÆ›¼¶¤kµ;;¤i;!akÅhiiç44ç4jj?77ÑYØYz½½½Ü~~˜éÊnwµa°c4žž4§§fxj4ç¤4ççccçcgcç§¼ožçiwµ¬¬-n;4gwµnµµnwlçí¢¢i?ÐÅw!°››µww-€»2ÊÊYܳØaÈÐ2YØY2Ë€€ÐÐsÐ?Èkhk?77ÆÅ khnXa-k Å´µ4fµÐ±w¼j44f¥¢¥¥¥¥Û uͧ;°µµn--l§ça!¤ž¤nsн 4çcg77X ½sÐÆ›¼qkµ;;ci;;nk h!igçç444j§?77»YY»½½zÜ~ÜܘéÊ›µaX!¤ž4žžf§§§o§4cçççcçççciç§xxžçiw›--››;4¤!nnµµnwl祢i?ÐÆw!°››µwwa€Ø222YܳYakѽØY»ËЀÐË€Æk´hkÅÆ7Æ? ´haµahk ´¼µÆÐ!¼¼4çjíÛ÷¥¥¥¥¢Û ÃÍ;°µan-¬l§µ›l¤žµÐËб½ 4çc7е Ü?µ¼¶kµ;;cgii;XÈÅh!iiç4ç44§§?ÆÑ»Y»!!µµµXµµÅÑ»»»zééNѵk7ʻؽػÊб7Ð{{sÐÆ???77? ÅÅhnwX¬k´Å  !2€hifff¼j÷¥¥¥¥¥¥ íí!›nh¬µÅƵ¼¬-çici-ËYÆØ gcçi?ËÅ7Ê€±!q÷-´;i!l;!c.;nligc¤çç4j§§wÆ Æ»YY»ØzÜܽܘ逵µ›µwµlccž§fç4ž4g¤4çççci4fç;wXa››lgiµ!!;j¶1¥ ç°wµ›!w°µXµÅ{ÊY»»~ééN»µhÆÊY½YØ»Êб€ËË?ÅÅ?7? Å? h›wwµ-kk }¥;»shg§§jo§Û ÷¥¥¥¥¥ ÛÍí-a¬›nÅ7nx¬-4ici›Ë»ÆØ g¤4i?{Å7ÐÊб!º÷-h;i!;!!c;;µ›µliicçççž§§!Æ ÅYYYYzz½~ÜzÜé€nnµµlg¤4§§ç44ž¤ç4çççc¤cc4žžf¤i!µ››n;c;w!µ°;§º1¥ ç°-!wµXµXµµÅÑ»»»zééNѵk7ʻؽػÊб7Ð{{sÐÆ???77? ÅÅhnw-kk ŵÍ÷!Ñ€hifff¼§ ¢¶¶¥¥¥÷Ûí§-a-¬n?Ƽ--ç4.ii›{Y7Ø ggçi?Ë Æ{ÐÐÐlq -h;;!;;!i;!nµligçcççž§§!Æ Å»Y»Y!;!!!a-a- ˽»{z˜˜NаhÅÐÊYYY{77ЀÊË7±Ðs7 Æ7Åknl;µk kg÷.ÐË?°ç ¥¥¶º¶¶º ¶ ÍÍxc-akh?Ñ7f--¤¤.ççi {7»-g4çg4i´{Y ½±Ë?xnk!;w!!;wlwµ›µicccc4ž4? ?Y½YY½½zzÜzéÐ!aµ!µw;ig¤44¤;i¤4ž¤i!;gg¤ççççç4ççi;!wl!;;!wµµµwµ!;oãä1ºi¬iç!!l;l!µ›-a¬ ËzÊVV³ÐXh?sÊYY½»{Æ77Ð{Ê{ÐÐÐÐÆÅÅ?Æ?kn!!›kk?kc¥í;€Ë?µ4íí4¥¥¶¶º¶¶º÷¥ ÍÍÛoc-µkhµÅÊÆfh-c¤;ççi {7Ñ-c4çižik2Y ½Ë?oa´!;w!!w;wlwn;ccçccç4!7 ŽØYY½~½ÜzzÜéÐ!µµwµ;;g¤ž4g;içž4¤;l;ig¤ç¤ç4çç4ççg;l!l!;;wwµµµµwµwioEU1ºih;!!!;;!µa-a- ˽»{z˜˜NаhÅÐÊYYY{77ЀÊË7±Ðs7 Æ7?kµl;›kÈ?kc¢;€Ë?çíž ¥¥ºº¥¶º÷¥ ÍÍoi-µk´ÅÊ7-¬¤ciç4. 7Ñ›g4çc4i´{Y ½ËÐ?õÈ!.!!;!lln›;cccç4!7 ?½½YY!ligc;;!nµ-?22ÊYV µ´ Ðs2»Y»2Ë77Æ7ÐËÐÐÐÐ7??±ÐÆ´X!l!µ¬k ´g¥hsÊ7h¤Íx ÷¢¥¶¥¥¶º¥xx÷íçin›!´ÊË›µl;çjçi±l4çciçci!ÈÐËÑY½Y ›ÅËkaµwXXhh-!g¤ç44§f4!? 7»YØ»½zz½½zÜV7igl!ll!w!!liigg;!lc¤;ll;;i4444cç4ççgiii;i;°µµw-µ;§¶ºE¤Ðȵw!l;gc.;!na-?2»Ê½˜ ´ÅsÑ»YYÊË77Æ7€{ËÐ77€ËÐ ?Ð€ÐÆhµ;;;µhkÈhi¥-Ëʱ´cuÃÛ ¥º¥¥º¶¶¥Ûxu íçcn-lkÑ{al;fç§iµ7l44ccçgi;ÈÐ{»»½Y › ÊÈaµwXXXhk-!gç4cž§4w 7ÑYػزz½½½Ü˜˜7icl!l!w!w!;;igg.!!i¤ç;;l;ii444çcç4çc;;;iil°°X-°!;§¥¶E1¤±kXw!l;ii.;!nµ-?22ÊYV µ´ Ðs2»Y»2Ë77Æ7ÐËÐÐÐÐ7??±€ÆkX!l;µh´khi¶¬Ê7hgÃo ¥¥¥¶º¶¶¥xx ÷çcµn!k2Ë›!;çjçi°7Ëlž4ciç¤i! €»»ØØ -?ÈnwXXµ-h-!içç4§4wÅ ÆÑYØYk¬µliiwaa›?Ë{2³hµ 7ËÊ2»2{€??7ssÆ7?7€ÐÆ?7€ÐÐÆ ›;iaan´až i ÐÐÊk4í Û ¥¥Ûçj¥¥Í4;;hs{7-!µi4i4j±Ëai¤cgi!¤4ah7ÐÐ{ËÊY½ÆnXn-››-kkhlcçžçžj¼§ihÅ€ÊÑz»½Ø½½zz½Üé2ž.i;;l!wl;;;;;ll;iii;;ii;.iiigcj¼¼çç¤gi.;;ilµnnXXµ;;ig¤¼¶¢Ex¬s{?h-Xl;iwaµ›?ËÑN¬µ 7ÐÊÑÑ2ÊsÆ?7ÐÐ7??Æ€s?Æ777È-w;;µ›µ´› i?ÐkÛÛÛ ¥÷÷u§f}¥¥Íç;;h€{?›lµµi4gf7Ë›i¤igiçí4ah?€{ËÊYY?nXn››››´k-w;cç4çf¼jihÅ€2»½»½½½zzÜ~˜Ê4¤.i;;;l!!l.;;llliiii;;ii;.iiic§¼¼çc¤gi.ii;!Xnnnµl;i¤c¼¶ ¥1u¬ËËÅ´›X!;;iwaa›?Ë{2³hµ 7ËÊ2»2{€??7ssÆ7?7€ÐÆ?7€ÐÐÆÈ-;;µµnka ; ÐÐÊ´ž Û÷÷÷}§f÷¥íÍç;;¬s{Æ›!µiçg4j7Ë-;cigc!c4µh7€s{ËÊYØ?›µXµ-››-kk¬;gçž4ž¼¼jih?€2Y½»Ñ{Ð7 ka;››-±Ë½˜éV°° 7ÐËsËÊÊËËÐÆ?ÆÐÐ7 k €7ÅÅ777±?-!wwi¤X4x§´ÐÆ{ çÃÍÛ ÷÷}fžž¼uÛ ÃžgµÆÐËh!XXw;ižÐÊË´iç;g;;1k!gwk7ÜЬ››°›h-¬--w.gcç¼xj4n?ÊÊ»z2Y½Ø½½½zz½é´4žiçi;i;!!;;w;;;;i;;;;i;lµ!i¼¼ççi;l;;;a›››µµa!;cçoº¢Ûi€˜Ê»ÊsÆ kµ;››-{Ëzéé˜XX ?7Ë€Ë2ÊËÐ7?7€Ð??È?ÐÐ??Ð7бÐ?¬w!ccXžÃ§hÐ7Ëk¤ÃÛ xf¼ÍÛ užcaÆÐÊh!X;;4ÐÊ´i4;ggl.§1k!gk7Ь››°›h----µµww;¤gçjx§4n?ÊÊ»Ü2Y½½Ø½zÜzé´44içii;l!l;lw;;l;;i;;;;;lµµ!i¤oj4çi;;l;;wn››nµµa!;cçú1Û i€˜2ÑÊÐ7?kµ;››-±Ë½˜éV°° 7ÐËsËÊÊËËÐÆ?ÆÐÐ7 k €7ÅÅ777Å-!!icw4ük±7{ çuÍíÛÛ ÷ ofž¼} u4iµÆÐ{h!!µX;ižÐÊËki4;¤g;.§E´!c!k?Ë~€-››°›h---›;c4fx§4µ?ÊÊ»z2Ê»YÊËËÐ? h-ÅÊYY³{lhk ?ƱËÊ{s±ÐËÆ?7??? ÈÆÐÐ7ÐÆ?ÆÐÐÅkÈ!i¤4§fž-7Ñ?i¶÷¥ÛÛÛ q¥ÍíÍ}}ÍãE4;k7-µµ;4f´Ð»½›;iii. 4 Xf;-ËØ~z{h;l¤;nËkµ!ww;;!ij§;ÈÐsYz»Ø½ØØz½˜ØVËcçl¼¤cci;;;l;;;;;;;i;;;;;!°›hn!g§fççg;icgi;a¬µX-aw!igiço qãº4-Ë{Y½YÊË{€? h-ÅÊ»Yé³{!¬kÅ?7бsËsË7Ѐ7ÆÆ?7? ÈÆÐ?Ð?Æ?Ð7 k´wicž§§4¬7ÊÆ;¶¢¥ ÷º¢Í}ÃÍuuÛãEžik7-µX!4f´Ð»½›licii 4 nío;-ؽzÊhw;w;µËkn!;;lc¼f;kÐsY~Yؽ½ؽz½V˜{cç;fccgi;;;l;;;;;;.;il;;;lX›hnX!g§fççg;.g¤g!ahµX››µlgiiç¼ãqqÛž-€{Ê»½»ÊË{€? h-ÅÊYY³{lhk ?ƱËÊ{s±ÐËÆ?7??? ÈÆÐÐ7ÐÆ?ÆÐÐ?kÈicž§4µ-7Ê?i¶÷¥÷ º¢ÍÍÃuÍãE4;k7-°µµX!4fkлY›liiii  ¼lhËYܽ˴w;w¤;µË´µµwwllwg¼f;ksY½»Ð€ÊÊ{ÊY2ËÐÆÐssÑVNÊ4i´{Ðs€€{ÊËË€±Ð77?ÅÅ ?7±7777777 k7 h!žf¼c!n7еº¶q¶ íux¥ ÛÛͺ¶¬kkÐÅh›¬›;žµËÊ{ÑhXµµlç¬Ð-gÍn7{ØYÐn;;içXµ;;i;;çç.;;4;h?ÐY~YYY½Ø½z½zV½˜Ñ!ç;cccciii;;;.;;;;.;ill;i;wµ¬Åhµ4Ížçi.i¤ggl›hnµµ!!;iigçoíºãã¥fµ ?€sÊ{2»ÑË€ÆÐs€ÑéÊçih{ËËsËÊÊËÑËËs77Ð7?Å ?77777?777Åk7 hlf§oc;n7€Xqºº¥  }¼¥ ÛͶºhÈ´Ê7Åk-h›;µs{{{2hXnl笱¬iÍn7ʽÐa;i;çaµ.;wi;iç;;;4;´ÆÐYz»YØØ½½z½z½é2!ç;¤¤ciii;...;ii;;i;;;i.;!µ- h°4ͧ4¤i.icii;›h›µXµ;!;;cgçöEã¢fµÅ?Ѐʀʻ2ËÐÆÐssÑVNÊ4i´{Ðs€€{ÊËË€±Ð77?ÅÅ ?7±777Æ777 k7 hlž§¼g!;›±Ðµººº¥ Û}¼¥ íº¶hkk{Ð h-h›;žË{{Ê2h°nµwlçhЬiÍnÐ{½½Ða;iiçžµ;;!i;i.;;4;kÆÐYzY Æ? È´´k Å7€2ØYÐØcÃ;?ËÊ»ÊÊ»Ê2ÊÊ2{s€s۵a-k ÆÐÆÆ7Æ??khhkÈ!ooçççig;kÊ?EEã÷ ¥ x44⢥¢à E4›Ë»ÑÐÐËÅ;uj4h€Ëz½7k¬°!li›Æ÷x4; ½Üha!!i› ;g;;;;4çi;iwkÆÐÑzYYØؽz~zÜ~Vz´ii.¤cgigciiiiii;;;;icic.lµk ȼxç;w;gccç;a´-µµll;icç4xÍ¥qE¶¼!kk ÅÅ?Åk´´h Å72ØY€Y¤u;ÅËÊÑ222Ñ22Ê2{ÐË€ °°µ¬k 7ÐÆÆÆÆ7?kh¬Èk!¼¼ççcigl´2?Ûããã¢Û¥÷¼4ž}¥÷¥÷à E1çn€2»€7€Å;ç4hË˽z7´¬°!;4›½?÷Þ; ½¬µ!i- ;g;;;;c4çgliwk?2zYYYY½Øz~~ÜÜVz´ii;ccgcciciiiii;ii;;;;igc;;µÈ?ȼxç;!;gg¤.ak-Xw!!;i¤¤4xu÷qã¥xwkkÈ Æ?Åkk´h Å7€2ØYÐØcÃ;?ËÊ»ÊÊ»Ê2ÊÊ2{s€s۵a-k ÆÐÆÆ77?Åkhhkkloo4çiilh2?EEq¢ ¥÷o4ž}÷÷¥÷Ûu Eó14aËË»2ÐÐÐ ;ç4´sË~~7´h°!!;µËØ?÷xž; z±hµw!ia lc;l;i¤44i!iwk?72zY?ÐÐË7 h-›-››ÅËÊËéž; ѽYÑ»ÊËÊ»ÑËÊ7µç4¤;› 7±Ð7Ð?kk¬ ?njͤwlcžçh?纶º¶ÛÛÛ§žžoíí ºUE}fi´±YYYzhÃí§¼cÈzYYÊ hh›l´k7ØzËwö÷§-sËÐеµlµ½Èµwww!w;4çi 7±ËY»»Yؽ½Ü~Üܘ˜€w;¤¤¤cgiciigiii;;ii;;;g¤ciiwh€7i;°X;¤g4-›!;!!;;gž§¼x¥qºul È?±ËÐ7Åh-›-››ÅËÊË{˜NXžl лػ»2{Ë»ÑÊË7nççc;›È77ÐÐÆ?Èkh Ƶf}g!!c4¬?纶qº fž4¼í ºUEu¼;´ÐYY»½{h}¼gÈÜ»ØÊ ¬hn;hk±ØËwx¶¥¼›sË€slµY ›w!!;4žçiÈ77ËY»Y½ØY½½½Ü~~˜€wçic¤¤cggcigiii;i;;;;;igccç;ih€7.;°µiggcž¤w-›!l!l;c§¼x¥q¶Ã!ÈÈ?ÐÐsÅ´h--››ÅËÊËéž; ѽYÑ»ÊËÊ»ÑËÊ7µç4¤;› 7±Ð7±Ð?k´¬ Æa§Íc!4ç¬?ç¶¶q¥÷Ûjž4¼ ͺU1Eͼih7»½Y~Êh}¼g Ü»ØÊ -h›;´ÈÜÐwö¢§¬€{ÐаµlµY nwižçikÆÐËØY77ËÑÊ{ÐÐ? ›X?ÐÐY½˜- oçw´ÐÊ2»»ËsË27n4žc;ln 7€sËs777Ѐk§ãEºµµwa ;º¶º¶oj§fjxÍÃ}ÍÍE1¢Û §g-ÆYÊ. §ç4µ7Ë˽± h›ÐË»~˜Y cíq 4w¬ÈX! ¶-?Ð?°µX›ni4ç¤ȱ?±2ѽY½½½zz½Ü~VØ´c¤cccccicicgigi;ii;;;ic¤¤çg44;È?!4°l¤¤;;c4;lc¤;;;içfoxÍ¥qãÛg´k77ËÑÑ{ÐÐ?Å›X?2ÐÐY{½é¬ xçw¬ÐÊYYÑÊËs{{ËÊе4gi;µ ÐË€s€7777€kãE¶µww!› .¥¶q¶ío¼j§§ÃÃÍÍÍE1¥ fg›?±ÊYÊ.§44a?€Ë½ØÈhnµÐÐY~YÈcíºÛçw¬k!Û¶-ÆÐ µn›ni44g 7±2»ØØ½zzzÜz˜½´cc¤¤cc¤ciigggcii;iii;;ig¤çiž4i ?!4µlc¤;;4;µlcgi;;gç§§ooÍ÷ãã ghk7ÐËÑ2Ë€ Å›X?ÐÐY½˜- oçw´ÐÊ2»»ËsË27n4žc;ln 7€sËs777Ѐk§EE¥!n!› ;º¶ºº¼f§§§ÃÃÍÍ}E1¥ §i›77{».§44a?Ð˽ØÈk›€€{»½˜½ cq 4w-kX! ¶-ÆÐ?n›X;ççg Ð7722?Æ7Ð€Ë ?anн˱€YÜk÷jç!h7ÊYYYÑs±±ÐÊË ;4çcµ Æ77sËËÐÆ?Ð7cEó§c-kÈ?h÷EE¥í§x¼xÛÍxÃux ¥¶¥º¶Í;›?{Ðç¼§!k ËÑÊ µh{€Ê»Ê»ÜÆ;º÷u};!¢8 ça´-n-´¬µ;ii sЀ»»½ØØ½Ø½z~V€c¤ççççc¤¤cciii;;ii;;iiccç§ž!-!!µw;ci;.!w;gcciicç§j¼¼¼í¥q¥4-È7ÆÐ7Ѐs ?anл˱ÐËYz´÷ífç!h7Ë»Y»ÑËÐ7ÐËË ;4ž4ciµ Æ77ËËËsÆÆÐ7¤EUfch´k?¬¥Eã÷ž¼oxÍÍu}Íx ¶¥¢º¶u¤;aÆÐ4jž!kÅs2± nµhÐʻѻÆ;¶¢ÍuÃ;¢8÷çµ´›µ›´¬µl;i s7€»ÑYØØؽ½zÜÜÜs¤ccççc¤cgci¤iii.;;;;iiicgç4ž;-wlµ;i;i!!;gcciciçf¼xo÷ã¥4- ?77ÐÐssËÅ?anн˱€YÜk÷jç!h7ÊYYYÑs±±ÐÊË ;4çcµ Æ77sËËÐ7?Ð7gãó§g-´È?h÷EE÷x¼xÍ}íuçÍj¢¶º º¶Í;›7ÊÐ4jžlÈ?sѱ µ¬ËлÑYz?;º¥xx;¥8Ûçak-a›hh°;ii sл»7ÐÐÐ7ÐË€{kµ±ÑÆ? {»Ü{ÃÛ x4;›?{ØØØËÐÐ?7ËË›;4ç¤wkÆ7?ÐÐËÐ777{!ÍÛxu }j.?ʼEº¼¼x§ÃÃ}ÛíooÃf¼÷-Å}º¶Eã÷jcw?!oo§fiµ7€?Å››Ð»ËÐ{Ñ»zØ?wÃ} ºwxãE¥Í4;l›-a!wµÈÐЀYYYØØ½½Ø½z½ÜÜܘ~Ål¤çççççccc¤¤ccig;;;iii¤¤i;;!hk? -µ!wXµnµ!;iiicçžž§¼o}¥¥f› €7Ð7ÐÐÐËkn7ÊÐ? {ÑÜËux4l›?YYYË7?7{s¬;4çcç!kÆ77±Ðs€7?7{;u ÛxÍ Íf;ÅÊjEºoxçuu}í¼oÃf§í -?wxqºEã¥Ûji!Å!¼Ãf¼in7€7 ››7ÊssË2»Y~Y?w§}} ¶xEE¥}žl!µa-n!!ÈÐÐËYؽ½½½½½Øz½Ü~z½Ål444ççc¤cigcii;iiiiiggii;ç;´´?Ȭ!wµ°nµXw!;iig¤4žžj¼¼x¢¥§aÅÐÐÆÐ7ÐÐËÐË´n±ÑÆ? {»Ü{ÃÛ x4;›?{ØØØËÐÐ?7ËË›;4ç¤wkÆ7?ÐÐËÐ7Æ7{;Í Ûx}÷ͧ; ʼEº¼xÃfÃÃ}í¼oÃf§ - wúºEã÷Û¼g!?!¼Ãf¼i7€7 ››Ð»s€2»ØÜYÆw§}ÍÛº§wxãE¶};!a-›w!!ÈÐÐËØØÈ Å777ÐÐÊk-ÐYѽÐY{Ø~oÛÛ}jgµ 2YË€??{Ë-;i¤ç;´s±Æ7ÐÐÐÆÅ7д4}}4g4j¼¼! ¶;4}x}ÍÍx4§žjfl 7ÅÍ¥¶¶º÷í ¼l¼}jº¥µ7Æ›a›- {Y2€2YY˜½ ;4Ãíž÷÷ Í¥º¼;Xl!› ?˻ؽ½½½½½½Üzé2nicç444çcccccgci;;i;iiic¤c§;ÈÅ€€ÆkhaXµµ-›µw!;gig4žžfjÃÃu÷¥¼µÅÈ ?77Ð7ÐÊk›ÐѽÐY2ØÜcà jcXÅ{»YËÐ??€s¬;cçl´s7?7Ð7ÆÅ7hçÃx4ižj¼fw ¥!4ü}}ÍíožfžxjÛ!ȱ Í÷º¶¶÷jl¼Ã¼º¥§°ÆÆ››-hÅÊ»2sÊY½»V½ ;4§§Ã4¥ }¥¶o;µ;› ?sYYؽ½½ÜܽÜé2nigçç444çccçccg¤g;;;;;icc¤cl ?Ðs?k¬›°µµ-›n!!;i;c4žjÃÃ}¥¶oµ ?77Ð7€Ñk›ÐYѽÐY{Ø~oÛÛ}jgµ 2YË€??{Ë-;i¤ç;´s±Æ7Ð€ÐÆ?ÆÐ´çÍxžc4fofw ¶!4}¼Íožf4xj!ÈÐ °Í¥¶¶¶¢íx!¼Ã¼º¥§°ÆÅ››-- {YÊËÑYYYV lç4fÃ4¥ }¥ºí¼¤;°l› ?€YY˱7ÐsÐËÊ»»»½Ü˜z~ÜVÅio ÃçwÅËYÊsÆÅ??Ѐ´w;cc›?77??€ h ´¤w;Ã÷÷Ãoçw;!lçuÍxÛÛuç¤4¬Æ7ÐËÆl¥ ÷ ¥Íu¼} ¶¥ fc!w-k7ÊY{Ë»Y»YY´;igžjü¼}Û¢÷ Ãf;wX-hk7Ñ~Yz½z½ÜÜzØzØzÜÜÑ!iç44444çcçc¤¤¤ciiiiigcçç¤çinÅËб?k¬nµnX-Xwçcç44j¼ooà ÷Ãn{ss±77€€ËÊ»»»½Ü˜z~ܘ goÛÛu4 ËØÊ€7???7ÐÐhwl¤ia?7Æ?Æ€ÐÅh ´¤íw.Ã÷¥Ão4!;!l4ÃuuÛ÷ÛÃç¤çÍhÆ7ÐËÆ!¢ uju ¥¥÷§iX-h?ѽÊË»ØÑYY´;ii¼Ã¼jÃÛ¢÷ ç;wµµ-hkÆ2½Ø~½½½ÜÜzØz½zÜ»!.ç4444çç¤cç¤cciiiiigccççç¤iX Ës7 haµnX›XXççž4§¼oo}Û÷xnËs±7±ÐsÐËÊ2Y»½Ü˜z~ÜVÅio ÃçwÅËYÊsÆÅ??Ѐ´w;cc›?77??€ h k¤w;u ÷üç!;!l4ÃuÃÛÛÃççççÍ-77€Ë7;¢ ¥üu ¶¥ §iwµX›k72½{s»Ø»YY´.ccžoo¼¼u÷÷}§¤;n-hkÆÑ~YY»ÊÑYØzؽzzÜz~~z˜˜!çjuÛ f;-Ë22€ ´ÅÐÐs?hµic!k ??Æ77 Å -;;´€7?µÃÛ¥¶qíj;žÍç¢qE¥Ûxoj§Û¼-7Ð{ÑsÈ;Ͷ¶Ûu§fí¶º¢¥Ãc;!µ›h?2»ÑÊ»»»Üz7°.c§fox¼}ÃxÛ ÛÃç.µhhk?ؽ~z½z½½½zؽ»¬içf§žž44ççciiiii;igcgciçci° sË€ÐÅh›µ›µai4ç444444¼joÍo?½YY»2»YØzzzÜz~~zV˜Ðwç§}ͧ!-ËÑÊÐ ´ÅÐÐËÆ¬X;cwk 7Å?±? Å -l;´€Ð µ4}¥º¶¼;žÍu§¥qE¶ooo§Û¼-7ÐÊÑ€´;ͺº çf¶º¢¥}c;l›´Å22ÑÑ»»z7°;cc§§o¼x}ÃuÛ x4.wa-h´?{½½Üܽؽ½½½½z½Üz»¬içž§§žç4cciiii;iiig¤çi¤çiµÈsÐÐ7 haXn›Xµwwµiç44444ž¼¼¼¼ÆØY»2Ñ»Y½YzzÜz~~z˜˜!çjuÛ f;-Ë22€ ´ÅÐÐs?hµic!k ??Æ77 Å -;;´s±ÅÃ¥qºíj;žÃf¥qãºo¼oÛ¼¬777Ê2ËÈ;ͺ¥Û}§j¶¥¢¥Ãc.l-h?{»ÊʻѻÜ~7°;¤¼o¼¼}uu ÛÛÛÃç;µ-hk?ËØY½½YÑÊÊ»Ë2Y˜zÜܘé{-lç§}÷ x4›?Ê{? 7Ð?h!ii°-ÈÈ ?¸k-a;!hÐ{ÑȰiç¼}º}.!ux¼¶1óE¥÷ÛÍ }7?s2»27-i¼Û}j q÷ۥͤclnh €»Y2ÊYÊÜ2kl礞4¼xo§ooxÛÃj!µ¬¬hkÆË½zÜܽ½zؽÜz½½Ü˜Ü?-!iç§¼444ççciciiiciiicgccgh7€7Ð7 hµµµnaµ-§§§§žçj¼¼ool¬YØz½ÑÊÊ»Êʽ˜~~ܘé{-;ç§u÷ x4› Ê? 7€?hwgiX-Èk ?ÅÈ-al!¬±{ËÊ ;4jÍqÍ;!Ãx¼¥E㥥ÛÍ u77?€{YÊЛi¼ç¼÷º¥ ¥Ãc;µh ?лYÊ2Y2Ü2k;ž4¼u¼§§¼oxÍ Ûç!°-hhÈ7ËØzÜܽ½z½½Üzz?-l;çj¼44444çciiciciiccciccih7Ð€ÐÆ ¬µµµ›X-§f§jž4f¼jÃo§!¬YؽYÑÊÊY{ÊË{½˜zÜܘé{-lç§}÷ x4›?Ê{? 7Ð?h!ii°-ÈÈ ?¸k-a;!hÐË˜Ê µiç¼Ã¶}.!}ox¥1óE¥¢ Í u±±ÆË{»Ñ7›i¼}§f º¢ ¥Ûui;µ¬ лY22Y2z»klç4ž¼ux§§¼¼x Ûufl°-hhÈ7?ÐѽË7?77Æ ?ʘVz~é³»kagçžoíÛÛ;kÐб?7ÐЀs7¬!l!µh´hhh-µw-€€7ÐËÊÑдaµlÃj¤iç4§}Ûq11Eq¢ Û¤ ÐÆÐ7€ËÊ€hižx÷¥ ¥÷¼4¤c!nÈÆÐ{»ÊÑÑ{ÊÜÐç4ççjÍ}x¼ž4žxÍuÍg!nh-h 7ÑYz~½ÜÜ~z½½Y½zVË´ww;44žç44çcicgciccc¤c;- ?7Æ? h-a°µh›µh-¼jjf¼¼¼fÃo¼j§4;nÆ€Ê»ËÆ?7±? ?{VzÜéé»k›gžo lÈ€7?7±Ës7¬;lµh´kkh-!-€7sл2h›wÃfçiçÍ q1qq÷÷ ÐÆÐÐË{2hio÷¶ Û¥÷¼4¤i!n ?€Ê»ÑÊ»{ÊØÜ€µ4çç¼}Íxj44j}ÍÍg!n¬-hÈ7ÑYzzzÜÜzz½½ØØz´!;44§ç44ç¤gigicc¤¤¤cc;-??Æ7? h-µ°µ¬›µ´-¼¼j§¼¼f§xo¼f§4;n?€Ê½Ë7?Æ7??Æ{˜˜z~é³»kagçžoíÛÛ;kÐб?7ÐЀs7¬!l!µh´hhh-µw›€€±ssÑ»´al}j¤içžuÛq11ãº÷÷c €7±Ð€€2€hižžÃ÷º ¥÷¼4i!nÈÆÐÊ»»Ê2Êʽz€çžž¤ç¼}}Ãj44žj}}Íl›¬-hÈÆ-?{½YË7ÐÊË??Ëz½~VééV{k¬l;c4§u ¢Í¼;¬?7?ÈÆ?лÊ7-!-´khh›nln?»ËÆËÐØzÊ hn!ž4ççij¥ãq11ãã÷¥X€ËЀÊËsË»»Ëni¼ ¥¥¢º¢Íç4¤!kÐs€ËYY2»2½Ñkcj¼4cžÃí}¼§ž4ž§xžihhhk Ð2»YØz½½½zz½~~YÆaµ;4žjfçç4çcccc¤ç¤¤c¤in ?ÅÅ? ´ha!ww-›nkh¼of§fof¼Ãxfžç;- ˽ØËÐÐÊÐÆ?Ëܘz~ééVÊkh!;4§}ۥͼ;-Æ7ÆÈÆ?Ð2Ê7-lµ›´kh-›nlµnÅÑsÆËнzÊŬXl44ççccoÍ¥ãEE11E㢢µ€ËÐËÊÊsË»Êsaij ÷÷¢º¢ç4cwk7ËÐ{YY22ËÑ~Ñ´g§¼çcÃí}¼§žžžfo4inhh¬k Ð2YY½z½½zz½½½ÜYÆaµw;ç4§fç–ç4cccçcçcc¤c¤iµ ÅÅ?Å ´h›www--nkh¼x§žjx¼oÃxfç;w¬ÅËzY˱ÐÊ€ÆÅ€Üz~VééV{k¬l;c4§u ¢Í¼;¬?7?ÈÆ?лÊ7-!-´khh›nlµ?»ËÆËÐY~{ -µ!4ž4ççic¼Í¥ãã111E㢢€Ë7ËÊËËËʻ˵io ÷÷¥¶¢Íç4cwkЀ€YØ2»Ëʽ»´¤jo4cžÃííü§44f¼ž;µhh¬´ µ-7½~YY2{ÐÈÆ»Üzܘé阻 hh;¤4x u4aÅ?Èk- {»Ê wµhhkhh-¬7s7ÆYYYÐ?higccç4¤žÃ÷¶qã11EE¶ºq4Å{sÊ2Ê€±sÑY2kiž} ¥ ¶º¢¼ž4gµ ËÐËY½ÑYÊʽ½74çfíÃÃxf4f4iµ-¬´È 7ÐÊ»»»Ñʽؽz½ØÜÜshµ!i4ž¼§4çç4çç4™ççccgii;µÅ?? Èk-›;;;wXkhx}çj¼jf¼¼jçi;hz˜~YYÑ27ÈÆÑ½Üééé˜2 h-;¤4¼ÛçµÅÅÈk¬ {ÑÊ !ahhk´h¬!h7Ë7?YYY{ËsÆ´iggi4çç4} ¶ºE11ãE¥ºº4Å{s2ËЀѻʴi4} ¥ ¥º÷¼4§µÅ€s€Ø½ÑØÊʽ½Ãf¤fíÃuÃjfi-hkk 7ÐÊÑ»»»Êؽ~zÜshnµ!c4¼f4çççç–ç4çççc¤gcic;nÅ?? k-a;;;µkhoÃ}f§§¼j§o¼¼4çi;Xhн~»Y2Ê7 7Ñܽܘé阻 hh;¤4x u4aÅ?Èk- {»Ê wµhhkhh-h7s7ÆYY»ÊË€?kigccç44Í¢¶qE1ãE¥ºº4ÅË€{2ÊsÑYÑ´;u ¥ ¥q¢¼4µ ËÐsYYÑØÊѽµžxçcfí}ux¼žfcµ›hkk !k{zz˜YY ?2z½VVéé½?hka;iç§¼Íí }çwhÈ-;lk77›n›-h´h¬h›k€ÐÐs{ËsÐËÊÑ{Ë´µ!!gçi;4qºº11ããããE!7ËÐÐ{ÊÊËÐË ng§Íí ãEí¼f4°Ås»Y»YY»2»z½Èi¼o§¤4Ãooxx¼fff4c!X›hkkÆËÑ2ÑÊYÑ»½zØØÜÑ ›Xn;ijçç4çç–ç4ççç¤c¤¤icck?Å ? k-µ;!i.;µ h¼ÍÍxfj¼jjffžçgiwµkÊÜzYYË??2½VVéé½Åh´›;i4¼¼Í Ãçh -;lk77a››-h´hh-aµ´ÐËÐËs€ÐÐÊ2Ê€h!!ccilžººq11EEqEE!7ËÐÐ{ÑË€½ g§ÍÛ EE§f§ç°?Ë2»»YYY2Yz½Ècjx¤4xíooÃx¼§§§žc!µ›hk 7Ð2Ê2{»ÊY½z½½½˜» ›lgjžççž4ççççç4çççccgggk?? ? ´-µl!iil ¬¼}¼§fojjjf44giwhÜܘYYË??ʽ½VVéé½?hka;iç§¼Íí }çwhÈ-;lk77›n›-h´h¬h›kÐЀs{€€sË{»ÊËhµ!!gçi;4ºººEEEEqEE!7ËË€{ÊÊË€Ø Xi§Û÷Eã§¼§çXÅs»YYYYY2»ÜØÈcoç4xío¼Ãojj§§žilX-¬k w!µÆ»½ÜÔ˜é½ËÐѽ~˜˜˜³7´-›µ!.cif¼uÞ;nažji›±s ?k´--µw;li?ÐÐËsËÑ2{Ѐ{hw!›h;¼¥ãºãEEºEqºº§hÐÊËs2Ê€€»Ð»Ñ7¬;ÍÍE1 oÃíkÊ»ÑØY»ÊzÐ;}u4¤oíÍu¼x¼jç¤iwµ-kÈ7sÊ2Ñ»2ÊËÐË»½½½½Ü½Ð-µ-h¬!ç§žç4çç4ç44çç¤cgçl´ ÅÅÅk¬nwwc¤;nÆ´4¼Í¼§¼jççg;!!?2ÜVé~s€Ñܘ˜˜³д-aµµ!;ii§¼u};aažfi›7sÈ kh--µ!llgX?€ËÐËËÑ»ËÐÐÊÊhwl!›-!xºqºãEãºEºº¶§hÐÊËË2Ðs»s»ÑЬ;uÍq1ÛxÃhʽ»2Y»Y»½ÐlžÃÃ4oíÍx¼¼jf§çci!µ-´kÆ€ÊÑ2»»{ËË»YØYÜÐ-a¬h-ç§ç4žç444ççccçcçc!´ Å ? ¬n!!ccin?k4¼Ío§§§¼f4¤i;!!µÆ2½z˜ézs7»Ü~˜˜˜³7´-›µ!.cif¼uÞ;nažji›±s ?k´--µw;li?ÐÐËËË2ÑÐÊh!w!›h;x¶ã¶q1ãºEºº¶§hs{€Ë2{Ðs»€ÊÑ7-;žuÃã ¼ÃçkÊ»ÑØ»Yѽ˜Ð;žÃuçxíxÃo¼f§ç;lX-´k;;la7Yz½½VØz˜³éééYkh-µµ!i§žçž§4;¬lxí¼;n›!.i!li;°;c;¬7€ËÊÊÊÊËË€ËËË7h;ih?hn1º¶E¶÷¢¶ºqiÅË»ËÊÑËÑÊ{ÊÊ-;oÍä§¼f}Íf¤ÅYÊ»Y»YÑÑYÊ´çÃÃ4u}¥íÍu¼¼žžçclahh?7ËÑY»YØØ»Ê{ÑYYØzz{kna¬¬!i4ž44ç444çc¤gci;.-h kkhµ.¤iç!?kixux¼žž§žf¼§žg;;;;l›Æ½½Ø½YVYY~V³éééYkh-µµliff4ç44;¬lx¼l››w;i!!i;ic;-7Ѐ2ÊÊÊ€sss€Ë7hlik?k1q¶E¶ ¢ºãqÛiÅ{»Ê»»ËÑËË22±›ix}8fx§Í¤ÅÑ{»»YØY»YÊk4uu4ÃÍ Íuo¼4çila¬hÅ7ËÑ»YYYØ»{{ѽY½YËknn-¬µli4žžççž44çç¤iii.-hk Åkhhµ;ciç!ÆkixÍx¼4žf¼§žc.;;;ln7½zؽ½˜Y½zV³éééYkh-µµ!i§žçž§4;¬lxí¼;n›!.i!li;°;c;¬7€ËÊÊÊÊËËËËsË7-!ih?´µÍ1º¶E¥÷¢ºãqÛi 7Ë»Ë2ÑËÑÊ{2»Ð-ixu8í¼x§§g »2Y»YY»»Ø{kçuuíÃÍ ÍxÃf4çi;µ›hh-?ÑYÊY{Y˜½Ü˜VVééVé½ ´›µw!cççcç!iž¶ üž¼¼jž4g;l-ű€ÐË{s€{Ðhlc!h kk;qEEº¥º¥ºº 4!s{ʽÑˀлÊË7nc¶4uÃÍjç-{Ñ»2ÊÊѽY½Ñ?cof¼íÛÍÃo§4çc;wn-h ?ÐÊ2»»Y»ÑÊÊÊ{7h!;!;wliigcççžçççç4çcççç¤gig¤µhÈ k´k›lcgçÐki§Ã¼oo¼of¼jfçc;µww-7ÊY2YÊY˜˜z˜é˜Vé~ ´-!iççcçžžliž¥ u¼4¼o§ž§4illµ¬ÅÐ˱s{ÊÊË{´;c!- k ;ÛºEEqº¥¢¶º 4!sË2YÊsYËsËÑÑЛc¥ž}}}í¼çhÊ»»2ÑÊ»ØØ½Ñ?iÃÍí¼¼ íuxxf4çc;›¬h ?Ë2»ÑYYÑ2ÊÊ{{{ÊÐk!;!;w;icccç¤çççç4žçc礤ggig¤wn´Èkkkk›;gcçµÐÈi§Ã¼¼oj¼f¼f§çilµ¬?Ñ»2Y{YVÜzV~V˜ééVé½ ´›µw!cççcç!iž¶ üž¼¼jž4g;l-űÐÐË{{ÊË{´lc!h kkiqE1q¶¥¢¶º žwsÊÊʽÊËYs€ËÊÊ˱›g¥4ž}uÃíjç¬{Ñ»22Ê2YY½»?gxÍ4¼¼Ûíuü§44c;!n¬hl!¬Æ»YYY€ËÜV˜é˜˜³khnwww!¤44çcçcžccf÷¥÷ç4jf4ç¤c;µhÐÊ{sÊÊÊÊÊ»2Åcw´khȵ¼ºE1E¶÷¢¢ÛÍÃ-»»7»Ñ€ËÊ{ËÑY˵¤4}Ãxž;нËÊs{»Y½YËa xÃx÷ ÍÃÃÞ4çi!X¬¬´ 7€ËÊÊ2ÊÑÑ22YÑ»Ë?allµ!g;;iiccçcc¤c¤¤¤gg;;i;ggi!¬ k ?Ènc4§;h.¼c§uíäuxÃj§4ç!µ!!µ-ÆÑYØÐ€~ÔÔܘ˜é˜é³±khµµwww!!c44çççgžccj ¶¢çf§çcg;hÐËË{Ê{ÊÊÑ2Å!ihÈhk¼¶EE㥥¥÷}Ã-»»Ñ»€½{ÊËÊÊYØË¤4ÃíÃíož;±½Ê€{YYYØËµí xÃo÷÷Û}Íüžçc!-hk 7Ð{Ê{2{2»»»Y»»Åa;!µ!i;;;;ig¤çç¤ccc¤giii;icii!¬ È ÅÈni4;-ijcfuíoçÃuÃffllw-?»YYY€ËzV˜˜é˜˜³khnwww!¤44çcçcžccf÷¥÷ç4jf4ç¤c;µhÐÊ{sÊÊÊ2Å!gw´khkµfºE11E¥¥¥÷Û}x›»ÑÑÑË{ÊËËËÑYw4uíÃož;7½Ë{ÊË{»½Yµ4í ¼Ão Û}ÍÃoç¤i!µ-h;;!a?»Ð7ÑV˜ÜVVVéÊ h›!;!;wiçi.çç4fj¼;;;ç4cçw!;g;-7ÐË{{{ËÊ»{»ihk¬a;f¢÷ºUq¥¥÷ Ã?»ÐsYÊÊ»2»{Ë7ÐÐ{°µçÃxÍj§h½Ë{ÑЀ»ÊÑY?là ííÃj }u¼f444g;ahhkÅÆss{{€2Y½Y½YsÈ-¬h›w!l;;i¤ççggigc¤gc;;;;;.;;g!a´ ÅÆÆÅl4fc.Í¥}q¥¶EÍ}Ão¼o§çi.i;!›?»ÜËл˜VVV˜é2Èh-!;!!wg§§çcc.44ç4j¼¼;;;çgç!!;i;-ÆssÊÊÊ»ÊYеcwkkh›!j¢¥ºUq¥¥  Ã?»7ËYÊÊ»ÊÑ{€ÐÐÐ{wXçfÃo}j§hzËÊÑÐÐÊ2»Y?!u íÃj}uo§44¤;µn-hÈ?ÐЀËÊËÊ2YYYYY»s ¬¬h›!!;iiicççciig¤ggci.;;.;;;g!a´ ?Æ7€Å!4¼¤;Ͷͺ¥¶EÍÍxo¼¼ç3;;;!nÆÑÜÜÐ7Y˜V~VVVéÊ h›!;!;wiçi.çç4fj¼;;;ç4cçw!;g;-7€Ë{ÊËÊ2Ñʻеihk¬›l¼÷÷ºU1㥥 ÷o?»ÆËY{ÊÊ2»2ËÐÐÐÊwµX4§ÃoÍ}j§kzËÊÑлʻY?;x Ãj }u¼fž44g;›-;;wµ ÊÜV2ÐËÜz阘³é½Åk¬µliig!iç¤çççç4ç4§wanliiika!;ii!ak?7ËsËs€ÊФ!h´´ni¼Í Eq¶}uÛã4ÅsÊÐË{ÊËsÐÆ{µ-lç§ÃuÍxͻʻ½ËÊÊYYÊ›§í÷ xç¼ }u¼f44çci!µ›-kÅÆÐ€Ë2»Ñ»ÑÊ22ÊÐ? k-nw;iiic¤ccgggggcigcccg;;;;wnh ?7sÐn;iw!¼  ¥81íü¼o§4ll!µ {Y~Vʱ{ܘV˜é½Åk¬µliigli¤¤cççç4žçç4ž§§a-!igiçkn!;gg!-k?±ËËË€€27lhhhµi¼íÍ Eq¥Û}uÛq4ÅËËËsËÊÊÐ7Ƶh!ç§xÃ}Ãw»{ÑØËËÊÊÊØYÊ›÷Ûoç¼} Íü¼4ç4c;!X-h´ Æ7€ËÊËÊÊ2Ñ2Ê»»Ê€? k-nww;;;igcgccgiccgiigci.;.;wµh ?7s7niiw!oÛ÷ ¥81Íx¼¼xj4¤;;!µ ˽zVÊÐÜVéV˜³é½Åk¬µliig!iç¤çççç4ç4§wanliiikal;ii!ak?7ËËËsËÐÑÐ!g!h´´ng¼} Eq¥Û}uq4ÅËsÊ€ÊÊ{Ës77h;§cfxÃ}Ã2ÊYYËËÊ{2Y{-§ xç¼Í Íüjž44ciwµ›.l;w¬Yz˜Ø€˜V˜VVééz7È›;iii¤i;ll;cç4çccž§4!-´nl..;?k¬-X.ilnÈs˱?7Ðk!.¬h-µi§¼Ã qEãã¥o¼}qºË?7ËË{Ê{{Y?Æ!çi4o¼ÃÃ?ÑÑ2Ê2Ë{½» cx÷¥¢x¼Í÷÷ í}xçžç¤;µa¬hk?77€ËÊÊ2»Ñ2ÑÊÐ{27k¬›!;;;iiiggii;;iggigc.!!!-k??€kµXaž;¼Í÷äUí}xü4¤4i;l¬Ð½Ü˜€Ð~˜Vé˜éé~7 ›;iiiçg;;;;cçççcžfžç!›¬µ;;i;?k¬-µ;i;n ss±?±È!iµ¬´¬nioà qEEã¶ü}qº€?Ѐ{{{ÊÊÊ?Æ!¤iço¼Ã}Í?2»ÑÑÑ€ÊY» ¼¥¥¥x¼÷÷ ÍÃ44ç¤iwµ›-h ?Æ7ssÊ2Ñ»»»ÑÑs{ÊË?k¬›µ!;iiicigigi;iigiig¤¤¤;lw!!-k??ÐÐknµaX4l§}÷ääóíÃxÃfž¤4;;;w¬Yܘ½ÐYÜ~˜V˜ééz7È›;iii¤i;ll;cç4çccž§4!-´nl..;?k¬-X.ilnÈss7ÅÐÐkc¬h-µ;fxà q1Eã¶üÍqãsË?7ËË{ËÊ{ËÆÆlcgçoju}ÍÆ2ÑØ22ÑËY»Y c¼¥¶÷x¼ ÷}uçççg;µagii;a7YVÊл~ÜV阘˜éé?-!icc4çg;;;cc4çc4ç¤i;!!icgi È ? hµµ!µh?ÐÐ7ÅËÆalln¬-µw4c ¥qº ÍÃÃx¢1¶w7 ÈËÑ»2ÑÊÊYY~»Yk-i4§xuÃj›»ËÊÊYÊs{»sØ i¢ã¥Ã ¥ u4çg;wn-hhÈÅ?7ÐÐÊÊ»ØY½»ÊÐË2»Ë?h-µl.ig¤gcgii.;iii;ii¤c;wµ!µ¬Å7Ð ¬-µwig ›o¥1)ˆºí¼ÃÃf44iii;a7YVÊ72~zéé˜é˜ééÜ{?›!iccc4çi;!lcçççiçžçccl!li¤ci ÈÅ? haµh 7Ð7?Ë?›;la--w4§ç ºqº÷}ÃoÃ÷1¶w7ÅÈs»Ê22ÊÊÑY~»Yk-!.§xu¼j›»ËÊÊY2€ÊÑË i¤¥E¥Ã ¥ }444¤;wn›-´ ?7ÐÐÊÑÑYØYÑÊ7€2ÑËÆh›µ!l;;igccggii;igiiiicc;!µ!nhÅÆÐ ¬¬µig ax¥1)®ºÃÃüç4ig;l›7YÜVÑлzzéV˜éVéé?-!icc4çg;;;cc4çc4ç¤i;!!icgi È ? hµµ!µh?€7Ås?µl;›h-µw4cž÷¥ºº }xoÃ÷1¥w7 ÈËÑ»2Ñ2ÑYYz»Ñk¬!;§Ãüj›ÑËÊÑYÊ€{»ËØÅi¥ã¥uí ÷¥¥už44¤;wn-;;i;µ ʽÜé½sѽ~˜éVéVVéY›;g¤ççcccçi.¤4cž§çi¤44c;l;;c;l¬ ?Å?Æ -´h¬k?ЀЀklc!›-w;¼lu ¢¢íu}ÍÍÛºÛ´?h?{»Ñ»»YY»ØÜ2Ê-lc§¼xÃ;ÑЀ»{Ð7Èilž}º¥uÍ}Û÷ͼž4c!°a--hk ??±sY½»Y½2Ð?±€ÊYËÈ›anXw!;¤gicil;;ici;iii;!!!w›k?±Ë h´µ;X ´lE®®1 x}}ži.;; {zé½Ë»½½VéVVV˜éY7-;gççcigccçc4žçic4cil!;ii!h ? ?ÆÈ-hhhÈ7ÐÐ7sk;i!›-µ.¼µ!ÃíÛ¥¥Ã}Í}º´?h?sÊ»»»»½Ø»Yz2Ê›lgfoÃÃ;ÊÐÐ{»ËÐ{Ê7ËÈ.!o¶¢uÍÍ÷¼4çilµah¬hk ?7±€½Y»»Ð?ÐÐËYYsÈ-an!;ic¤iii;l;;;giicgi;l!!!µk?7€ hhX;µÈk;E®ˆ1 o}}j4i;i.XÅÊzzésѽzVéVV˜VéY›;g¤ççcccçi.¤4cž§çi¤44c;l;;c;l¬ ???7 -´h¬kÆÐ€Ðk!cwa›w;¼;u ¥¢íÃÍÍ}ºÛhÆh?Ë{ÑÑ»ÊY½»Y22›!ijoxÃ;»ÐлÊÐ{Æk.lú¥ÃuÍÛ ¼çi;°a-ž.;;wk2½Ü½ÑÊYV˜˜˜Vz›!iciciiiicççç礤cgc;;.ic¤ç;!›?Ð?›hhk ÅÆ€{´iclµaµ4ff!›fíºº}ÃÃúó;h¬ahнÑÐÑz»»YØÜ½Å!çfÃÃfµ?7€ÐбÐ7777´ll÷¼4¼Ã¼jx§çc;X››¬¬hÈ??±s2YzYs7±?Ðs{ØYh-›-›;çcci;iiici;iiicggggci;ww!n 7?khhn!!h›ha;Û)8óo 4;!;! 2½Ü˜½2{˜˜˜˜VVz±-!i¤iii;ccccç4çgg¤ill.ggc¤;!µ-ÅÐ?-h´ÈÅ?Æ€ÊÊk;g!n›µµ§¼ln¼ºº}Ã}qó;h-n´Ðz2Ñ~YYØØ½½?!¤§xÃf?ÐsÐ7Ð77?7kl;¤ 1÷¼4jüjç4g;X-›--hÈ??7sÑY½zYÐ77?±sʽ€h››¬-!¤cciicgci;iiiiicgciilww!› 7ÅÈ´hµwl¬aha;Û)8óÍoí÷4ž;!;wk{½Ü˜½2ÊY˜˜˜˜˜˜˜˜Vz›!iciciiiicççç礤cgc;;.ic¤ç;!-¸Ð?›hhk Å7sÊ{higln›Xµ4fj;›¼ºº}x}qU;h-nhÐ~»ÐÑÜ»YYؽØ?!§xuf?7€Ðб777Æ7hµl!¤Û ¼4jÃj§Ãjžç;µ-›j¤;!h72~˜zÊYV˜VV˜V˜V˜½Ë´lç4çggciigçç4¤ççc¤ggcçci¤ggcçi;wh??hhk 7ÐsËË€kµlµµwl!ç¤g¤u÷¢ } 18}?7¬;Xsܽ»Y»½zؽ½z2аifͼÆÐ±±Ð77ÆÆ h!!;§Û1ÛÃco¼uf§4i!›h--hk?Å7€Ê»½Y7Æ77±7ÐY»€µ››wic3ccgccicicc¤ccii¤¤¤ii!-kŠȬ°Xh? ÈÈn›;þ8 ¼ÍÃ}Ãfiw¬7ʽzÊYV˜˜˜˜V˜˜zË´lžçggciccçç4ççç¤ggc4ccccgcçii!´? -hk ?sËskwµ!;!çcçžx¢¢Û÷ } Û18uÅЬ;µÐܽ»Y2½YØz»ÐXi§}¼µÆÐÐ7Ð77Æ7 h!li§ 1Ão¼Ãf§žžc!ah--hkÅÅÆ€ÊÑØ½»€777ÐÐY2€n°a›!cg¤¤iciccigccccgiiicccc.wak k-°µh? µ›;þ8ÛxÍoÃÃjç;hÐÑ~zʘV˜VVVV˜½Ë´lç4çggciigçç4¤ççc¤ggcçci¤ggcçi;wh??hhkÈ7ÐÐËËËȵ!µwl!ç¤ccu÷¢ } 1ä}?Ь;nн½»YYYØØz»7i§Í¼µÆ±7ÐÐ7Æ? h°!lif1Ãcooüf4g!nh¼Ãjgw› Êzz»YéV˜éé˜V˜½±°cçc;;iccçç4–ççgi;;ž4çc;;;l!!w- hk ÆÐË{Ë7È›XaX;g!h;uÍí÷º¶÷º¥Í¼ Í8EkÊ?lgµËY€? 7s2YYzY?µjun77Æ777ÆÆ?h¬nµw!.çE18 jo¼¼jjiµhhhhk 7Ðʻؽѱ777Ð7ÆÐ»YÊ›!.cç礤cçççcccccc444i;;È -°-k´-!µ!¶þ1íÛ÷}xí¼Ã¼¤a Êܘܻ{YVVVéVéVV½°çi;;icc¤ç44ççç¤gi;;žç¤çg.;i;!!- Å´k ?ËËËËÆk›µaµw;gw´;u¥qº÷¶¥Í¼ÛÍ18E 2Å!nY€? 7Ë2YØz»?°f u77±77777Æ?h¬µµww;çÍE8íÛjx¼jjfiµhh¬¬´ 7Ê»½½»ÐÆ?7Ð77л»»›wwi¤gçc¤ccçç¤ccc¤4çi;lÈ ¬°X›kk¬!µºþ1 }xoÃjg!µ ˽Ü»ÊYVV˜é˜VV˜½±°cçc;;iccçç4–ççgi;;ž4çc;;;l!!w- hk ÆÐË{˱knnnXµ!;g!h;ÍÍ÷º¶¥¥¥Í¼ÛÍ8EkÊ?!c˽€? ÆË»YYz½Yưf Ã77ÐÆ7Æ7?Æ?´-›w!;çí18í ¼¼¼§§jžiµ´}Ífc°È˽ÜÜY»Yz˜˜é˜VVVVééY-i;l!ccç4ç–44ççç¤gi;;i;ii;!lnµXnhÈ´hÅÐsÊ{?hXµµµµ.çwËkççx}Û¥¶  1Uó;s7!c´´µ;h?Æ»Y½7›4Æ7±Ð???? kh-›XµliçóþºÛ¼xf¼x¼ç-´¬-hhkÅÐÊY½»ÐÆÆÆ7ÐÐ7ÐË€ÈX;g44çç44ççççç4çç4çççii¤4c!µµaa›µa--›µµl;¤ 1þ8E¥ }}§iµÈszY»»z˜V˜éVéV˜˜Vé»-;;!lccç4–ç4§çç–i;;;iici;ww!µµ°›hkk´ÅЀËÊÊ{?¬°°X°µ;çw{kççÃÃÛí¥¥  äUis7wgk´n;-?ÆÐÊ»Y½7µ4§µ?±Ð7?Æ?Å k¬--Xµ!.çþº¼Ûof¼Ão¤¬´hhhhÈÅÐÊYYY7?7Æ7Ð7ÐЀ ;4ž44ç4ççççççç4ç4ççgc¤4!µµa››an--aµµw!l )8EÍ¥ ÃiXÈzzY2Y~˜V˜VV阘VééY-i;l!ccç4ç–44ççç¤gi;;i;ii;!lnµXnhÈ´hÅ€sÊ ¬µ°µµ°µiçwË´ççÃ}Ûíº¥  1UU;ÊÐ7li°h´µi- ÆÐÊ»YYе4µ?7Ð?7?Å khhanµl;çíþº¼ xjjÃoc-¼lkÐÑØÜYYܘ˜Vܘ˜˜˜Yhl;;.cc44ççç4çççc;;;!!;l!l.;;;!µ-hkÆ€ËsÊÑ2 -w°!;c¤µÑÐg§f¼íÍí÷qU8 7ËYÆ›ll--;iiiilµ¬kÅs{hi! ËËÐ??Å kh¬-›Xµ°licžã81 u¼fo¼4-h--¬´´Æs2YY{ÐÆ?±?б7777Æ?a;§4ž4žžžçççžž4žc!h€Ê ¬gçi;w;ww;cfÛ181x}¢ÛíííÛf;k»½z½YY˜V˜˜Ü˜VVéYh!;;icc44ççççcçççc.;;!!!llw!;;;;!X-hk7€€Ë{2Ñ -µwµµwlçµÑ7wµcc§foí÷qUäÛÐËY?a;!--.ii;il-k?sÊki! ÊËÆ? Èkhhh›Xµ°!icã81÷íu¼¼§¼xç!-h---h´?s2YYÊÐ?ÆÐÆÐ±±777±Æn;ž4ž4žž444ç444ž4ž4ccc!´Ð{ ¬¤4i;!!!iç¼ E81Ã}¥Ûío;k€Ñ½~½»ØÜV˜˜˜˜V˜˜Yhl;;.cc44ççç4çççc;;;!!;l!l.;;;!µ-hkÆ€ËsÊÑÊ ¬!X!lcçµÑÐwµccfjííí÷qU87sY?›;lh-;;i;;lX-kÅËki; ÊËÐ?Å kh¬-›µ!igžã81 u¼f§o¼4!aÍ¥çhËÊѽؽV阽zzÜVéYÈl;çç4žž4ççççç4çgi;iw!!;;l;icc;;;!µ-?ЀË{»ÑÈ›-¬Xw;kÊ ¬¬¬wiçjjjxuÛó81ÈÐ2Y › ± k¬µ!;igçžgµ;?ÊÊ€? Èkh¬h¬-µXn;!!}¶¶qEÃü¼¼¼4!ah--¬-k Ð{ÑÑ€? ?777Ð7?ƱÈXlliggççžžž44§§ž4µÅsY½€µ4¼§;X;c;i ã¶ÍÛ Û¢çhÐË{»Øz˜é˜½½½zVVY wl;ç4žž4çcççççciiiwwl;;l;igi;;l!n-?Ð{ËËÊ»2ȵ!--°!¤;k -h-!iç¼¼§uuÛ8kÐYYŵÈÐÅ´¬!;;gçgl?2Ð?È khh---µXn!iwl}¶¶qEÃof¼oj4wa--¬hhk ÐÊ2Ê È???7Ð7Æ7±ÐkX!lccc444ž§4ž4§§444¤µ?ËY½€açf§iXw;i;;Û Eºí Í÷íçh±Ë»Yz˜é˜ܽzÜVéYÈl;çç4žž4ççççç4çgi;iw!!;;l;icc;;;!n-?ЀË{»ÑÈnwµ›-X!çlkÊ X-h-!iç§f§}uÛ8ÈÐÐYY?›k± kh!;ig礰!µ?ËÊ€? Èk´hh-anµnw;!!u¶ºqExx¼fxjçw›ÍÍÛۼƀ€2YØzVV½z½½z˜˜ØÅn!.ç4444çççç¤cççccci;;l;iiiilw!;!µ´ÐË{ËÊ22Ь;!››nµµÐ±-X›7{?kniç§íü1ó!7ÆÊéØ kÐY~YY2Ë?hXgf¼žwÅÑs?È´k´hh--annl.lžwjEã í}4l››››--¬k7»27 k Æ?Æ??ÆÆ77hXwµ!!l;icç4ž§§§§f§44§f§c!ÐYY±´X;!!;ilwÃÍ  ÃÃÍÃwÆssËY½zVzzzz½˜˜½Åµ!cç444çççcçç4ç¤gi;;;;;;ic;!w!;!µhÐËË{Ñ2s¬lw›››µcXÐ7¬µ-7Ë?kµ;c§¼¼1Ul7Æ2˜Y ÈsY½ØY»{?hµg§¼4c!Å»Ð?kk´kh¬h-nnµl;lgžw¼Eq í}4!a›››-›-k7ѻŠ??77Æ????7hµµ!lli;iç44§§ž§§ffjž§§¼g!ÐYØ7h;ll;;luÛ u}ÍÍÛ ÃÆËÐËÊYØVÔz~z½z˜˜ØÅn!.ç4444çççç¤cççccci;;l;iiiilw!;!µ´ÐË{ËÊ22Ðh°;!a››µcµ±-X›7Ë?´niç§í¼¼1ó!7?ÑVØ kËY½Y»»{?¬µg§f4g! »s Èkk´hh-h›µn!i!c4¼Eã íÃ4la  ÷ ÊsÐ{Y½½˜~½½Øz½Ðµi44ççç44çccç44礤gci;l;;;i;;!l;!aksË€Ð{YË?hg¤i;!wçn€ µ›µ ??77 hX;u ;UjÆÐËÜ7a?½Ø»2z½Ø»»?a;¼fn»ÑÐ hkkh´h´k›µµµX!; ¬iíº¥¥¥í!n›a-›na´?{YYËÅÅÆ777Ðб kk´!!!µli¤44§§ff§ff§j¼o4ç§§4?»Ü~2?µhµl›w;-l} }u¼¼Û ¥ ckËÐÐËÊѽÜV˜~½½½½еic4ž4çç44ç¤cžççcc¤c.l;..;;;!!!;;µÈsËsÐÊYË hci;!ç› na° ??7Ð hµ;§u ;U§7s˽Ü7a?YY»½½Y»»?ai¼§n»ÑÐ kkk´´h´´›µnµµ!.khiº¥¥¥ížlµ››-aa›´?{YYË?Å?ÆÆÆÐ7 kkh!!w!iç444§f§ff§§§f¼4çff4?»z2ŵ´µ!›!;›wÃÛÍü¼  ¤ ËÐsÊYY~˜˜z½Ø½½Ðµi44ççç44çccç44礤gci;l;;;i;;!l;!aks€Ð{YË?¬wicil!wçnË n›µ ?ÅÐ7 hn;u ;U7€€½Ü?aŽØÑ2½½Y»Y?ni¼§›»ÑÐÅhkkhhh´h-aXµ!. khiíº¶¥÷;µx÷÷Ûí o-±»ÐлÊY˜V˜éé˜~~ØÐ-;¤ç§§§çccçççççççççcc;wl.;;;!!!w-7€€ËØËµ4wl¤4c;žwÆ;µ¬n-? ?ÆÆÆ?h¼ n§¥ÈÐ{Y½ÅkYY»Ñ½YYYY½½½½?°ÆYYÑÐÈhh´hkk-hk ?-çxíhѬ;÷¥¶¥ ;›nn››a››?ËÊʱ??77777?? -Xµwww!°µ!cç4ç4§fj¼xo¼§§¼fçµË˜ÜÜYhk›XXn›-iÃ÷ÍÃÍü÷¢ÛíÛo›Ð½€ÐÑÊY˜VV˜˜~zzØÐ-;c4§žçc4çççççc¤¤i;w;;;;;!wl!ww-Ðs€{ËYËçl¤çc;4!?;µ›µh??Å??7??hx÷µ§¥kÐËÑÜz k»»YÑYYYYz½Ø½7w°ÆYØÑÐ hhhhkk¬¬k ?-çô»h;÷¥¶¥ .-na›››a›ÆË»{7??Æ7ÐÆ?ÆÈ¬µwww!µ;iç444j§j¼Ãoj§¼¼žçµ˜½Ü»´knµXna-cÍ÷ÃÍͧ¼÷÷ÛíÛÃ-7YsÊ2Y˜VVV˜˜˜z~zØÐ-;¤ç§§§çccçççççççççcc;wl.;;;!!!w-7ЀËËØËµ4w!4¤.4!?;µ¬n-Å?? Æ7Æ ho÷µ§ºkÐʻܽÅkYY»»½YY½zYÆ?YÑ€Èhh´h´k¬-hÅ?¬ç¼}¬»h;÷¥¶º÷;µž}÷qºÛ}i?{ÆÐYÑØV˜V½skicccççç4çccgil!;;;!l;!lwµµ›ÆËÐËÊ»½Ðµl;44cÃ-;X!›µ´Å??7?Å?c¥ã¤-!?7½½»zzÊÊ»YY»»ØzYYYY2ÊÑ»½½Y»€?hh´h›nh?ÆÐµžãº;2ЬfE÷u4w;›´h-¬--´k? È ?7Ð˱?kh›µµwµ--aX!;icç4ž4jÃxo¼§§fjç4asØzØÐk-µwah4Í}}u÷ãºÛÃi?{ÆsY2½Ô˜˜˜é½Ëki¤cc–ççç–gçccl!;;llll!!wµµ›?ÐÐs»7›;;44c}chiµwµµh????7??c¥Eg-!ÆÆ½z»z½Ê2Y»»YYØYؽØYYY22ÑY~zØÊÐ?hhkh-ah?7Ða4íã¶;27hfE÷uç!;›kh----hk Å k ?ÐÐsÐ?kh-µXµµwwµ›aaµl;ii¤ž4§jxxÃj§§f§ç4as½½ØskhXw-´çÛuuÃu¢ãº uiÆË7Ë½ÊØ˜˜é½skicccççç4çccgil!;;;!l;!lwµµ›ÆËÐËÊ»½Ðµl;4ç¤c}Û¤hi°!›nh?Æ?Æ?Æ?c¥Eg-!?ÆØz»zzÊ{»YY»ØYY½»YØY22YY½½Ø»ÐÅhhkh-›´?7a4ã¥;ÊÐhjEÛÃ4!ÃoóU¶íçÅÐ ÐѽÜzV˜éN³³V2ÅçoÃ44žç3çcc¤cg¤¤c;l;;ll;lw!!nah7ËsY{k°ai¼4;¤4í Íçž4ççic-h´?±Ð7µx¥X›h€Ñ2ÑV˜½½ØYYY½YYY½Ø2˜Y»½z˜VzËÈhkk›µ¬ ?Ê7-;xUEn{2 4ãuic;n-nah-X›aµXµn-h Ðʱ ---Xµµµµwww!!;icç4§jj4žfçµÅʽY ´-µ›h¬!f uüxÛó¶ç 7 Ð2Êz~˜˜ÜéNNé˜2 çxÃ4çžçççç¤c¤ccgl!;l;;;!!l!XahÐÊËË»{ȵa;¼4iží÷ç4ççii›-´ÆÐ7?j÷°nks2Ñ»V˜Ü½YØYYYYYØ~Y»VÔYY²½˜˜zË hkkµXhÈÅÊ7-;oU1nÊ 4ãuigl›-nµ´hµ››µµna-h?sËk---XwXXnµ!l!;;cç4§jffj4žfçÅÊzY ´aµwµ›hhlfuÃ}oxÛU¶íç 7 72ÜÜVܘ³³˜2ÅçoÃ44žç3çcc¤cg¤¤c;l;;ll;lw!!nah7ËsY{k°aij4icí Íçççic--h?7?¼÷°n´ËÑÑ»V˜½½YYYYYØY½½»½VØY²½˜zË hÈk›°- ÅÊЛixU1aÊ žãuicíÃÃE88Ežh h-¬Å2½Ü½~½zVVV˜Ø?wf¶§44ç3ççç4™44–i;;;;iii!!;!X›´Ð{ÑËsÑ7›ahµ4çgç§}÷í}xuÃoxjxÛ kkiãq¤giÈ?€»z~zYY»ÑYØØ»Ü»»½½Êzz½zØ€kÅknµ››n ¬°l 8U!7Ø gÃç;µ›khµ--aµµ¬Å±?¬››¬µµXX°µnµw°µh-h¬h›µµ!i4ç4žççlÐz»?knµµXahkµi¼ÍÃo¼¼xE88ãh?h-h ʽ~zÜzÜVéVØ?wf¶§4çcççç–ç4™ççii;;;;i;!;!µ-´±Ê2s»7nah4çic§ o÷}Ãuoooj¼xçnkkȵgãã¤cgÈ?л~zzØY»»Ø»zY»YYÊz½z~˜YËkÅk›w-›nÈ-°; 8ä!7Y gÃ4.-h-µ--aX- ÐŬ››hµµµXnµnµ-¬¬h¬anX!c44ç4ç4žlнY?k›nXn¬kai¼}ÃxüxE88qžh?h¬hÈ2Ü~ÜzÜÜVVØ?wf¶§44ç3ççç4™44–i;;;;iii!!;!X›´Ð{ÑËsÑ7›ahµ4çiçà ÃÃuxox¼¼¼¤› kµgqã¤ciÈ?€Ñ~Üz½ØYYÑYYØ»zY2ØØÊz½zz˜Ëk knwn--ak-°!÷8ä!7Y?§cÃÃoíþ8í!h›içw77ËË€{ÊË€Ë2YÑ7n;gü4ççç44çç444çççcii;!;;;l!!w›¬h?sÊËËÈ›hk-c¤;l lžo¼Ã¼Ã¼§ÍÛx;h? ;ž¶í.u-7±Ë˜V»½½ØØY»YY»zܽ½»Y½½½Ü½Y h°w!µ;!c÷8ºµ±È¬4}ocnhh›¬--››µµ-kk--›-nµµµµ-¬-nµ!lln›¬´hhhhhµ.gçç44ioa€½ËÅnµ-hÈha!4u}xoíóþ8Ûw´›iç7ÆËss€Ë»2Æ-;gÃjžççç4žçç444çççci;;l;.;;!;nhh?€Ê{ËË ›hk-i;; wͼ¼¼¼Ã¼¼Ã Ã;kÆÈ;žºíX.ÃaÐ˘ʽ½½Y»Ñ½Y½Ü½YY½½½½½ÜܽYk ¬Xµw!µ!l¤÷8¥µÐ hž¼iµ´h-ha-››µ¬khh-›-›µXµµ¬¬-›!l!µ›hkhh¬¬h;i¤4žžiç¼a€½Ë nwµ›´ hn!4Íͧ¼¼íóþ8!´a;4ÐÆËË€ËsËË»Y27n;gü4ççç44çç444çççcii;!;;;l!!w›¬h?s2ËÈ›hk-c;;¤Û!žooo¼Ã¼§x };h?k;4ºX.Ãn7ÐËVѽ½ØØ»YYYzY»Y½½½½½Ü½Yk ¬Xµ!;µw!l¤¢8¥n±Ë h4}¼f äþEc›-lçµÐ7khkÅ7ЀÐË»½ÊÆ kÈ;c§44ççcçççççççi!!!;;!whhhÈ€ÊÊ7hXµk›i;›´›4 -444cççi;;4¼i?» 4EÅ›§ f›Ð{Y~ؽ½zY»YYܽ~zYØY½½zzzYk´hh-°!!µµw¤4 óÍ-»½YÐ7ç¼i¬´--!µµnn›hhÈ k kh¬¬›Xµwµw›naµ!;;!!n-h---hX!;;ig¤¤ç4çg´zÐhµ›k? k!¼ÍçÍof÷8þãc›-lçÐÐÈh´ ±ËËÐËÑYÊ7k´È;çç4çcçççççççccgl!;l!lwhhhÈÐ{Ê7h›k-i;›knž ›4ž4ili4f;ÈY?4ã ›j aнܽz½ØY»YYÜzzY½z~z˜zØÈkhh-°!!nnlc4 UÍaؽ2Ðе4oi-´-›Xµn›-¬´k Èkkh--a°µwaa›Xwl;l!µa-¬hh-hµl;;g¤cc¤ç4çg´zÐhµ!µ-k k!j}oÍoj÷äþEc--;7Ðkk´Å±ËËËÑ½ÊÆ kÈ;c§44ççcçççççççi!!!;;!whhhÈ€ÊÊÆhXµk›i;›´a4Åažžžççi;i4§iŻŵžãÍ ›j ›±½~½½z½Y»»»YÜØØÜÜܽYYØz~zzY kkh-!µµlccç UÍ-ØØ»Ð7§Ã§xºäój!hÅh Y2777лYYØz2Ð?Å?nžx44çççççççççcc;l;;;wl;µµ›hÐ2{?È-µ›µwn-aa;È7cç4cgi;;¤4fc¬{дl¶Ã h;jÛ§È7ÊÜzzz½½»»Ø½Y½ÜzYÑY½z½˜½» hh È›wµX°;§ÃEUj ÐÑNVÈ.;¬? kk´¬-hkÅ?±Ðs€ÐÐ7 Èh-›aanan›µ!;i;;µ---¬--wl!.iicgçci4ÑÜ2?¬µ!n¬È Æ?hlço§§x¥äóf;hŬ Y27?7ÐË2YYz½»s?Å?n4íÃ44ç3çççç4çççççg;l;;;!!l°-›hË2{?k-µan!›aal 7iç4iiil.c4§¤hÊ7h;¶u h;§Û§È±ÊÜzÜzØY»YY½Y½ÜÜY»ÑYz~˜z» -¬ÈÈnwµXX;žÃãUfÅÐÊVÜ ;lh7 Èkh¬-hk ?€Ð€ÐÆ Èk-n››aaµ›°!;.;;wX›-----µ!;i;;¤gçgi4Ñ2?¬°µ¬kÅ??-lžu§xf§o¥äójlhŬ Y»77?Ð2YY½z½ÑÐ?Å?nžx44çççççççççcc;l;;;wl;µµ›h€Ê{?È-µ›µwµ›aa;k?iççiii;;gž§çh{Ðk;¶u h;§ § €Ð2Üzz½½YYY½Y½zÜY2Ñz½˜z» -¬kÈ›µwXlž§uãUf ÐÑN˜fçc§§ó8Û¬»Ê€z½éV~YzÜ~ÜØ{7 ´-÷Ãçççççžžž444çç¤i;ic!;4¼4;l›?ÆËYË€ÐhX---;¼žiaÐ;44i;lµ¼o§ghË{ !í4?h-!uu.¬Ð»»½~ܽØ2YY»zzØØ½zYYØY½ÜÜ»?-n ?-µnn;;;ç¼Íó ÐÊÊV˜Y€ÐY½½2? ?7sË{2Ð7sÐ kk ´´kÈhn!;ic;a¬h-›››µµwl;;g;;gcç; ØÊ7-w!ahÈ ´lufçc§8ÛžhÑÊ€Üz˜V~~½½Ü~~YÆ k-§¢Ãç44ççç4ž444cç;;icg!;4¼çi!›??Ê»ËËÐh›-¬ljžca±;ç4gi!°gx¼i-sÊ !íçÅ´-!u};hÐÑѽzØ2»Ø»½Ü½Yz½ØYØY½ÜÔ~Ñ?¬› ?›µnnwi.;ç¼Íó sÊÊVY€ÐsYÜ2? ?7sËËÊÊÊÊÊ€7Ë7ÅÈkkk´k h›wigg!›-¬-›››l;;c;iccç; Ø»Ê7-w!a¬kÅÈÅk;Ãj4i§íó8Ûž¬»Ês~VV˜~½z~~Ø{7 ´-÷Ãçççççžžž444çç¤i;ic!;4¼4;l›?ƻˀÐhX---l¼4i›Ð;4žgilµ¼x§i¬Ë{ lçÅ´-!Ãu.-72»½~ÜzØÑ»½»½z½YzzØØ»Y½Ü½»?¬nÅ?›n-wi;iç¼ó ÐÊÑç44çf¥Ejc7zÜVNé˜ééV˜2??ç¥4ç44¡ççccç44ccc¤çç¤l´ki}fçh{s??h!wh?´ijxf;§¤igal4jfžc›7€Ê´Ã7»hµixj 7Y½½½YÊYYYؽػؽzz~½YÈ´´h-›°nžoãís?½Ü~˜Ü½Ñ{Ê{ËÊÊÊÊÊ2Ê€Æ7˻ʀ{ËËÐÈÆ !lµ-n›¬n-nw!!!;;iigii;l»Y€ h›µµ-kh?7hµ;ç4çf¶óEjcÆzz˜é˜V˜Véé2?Åç¥4çç44ççccç44gcçç!´Èi¼4°h{Ð??-!µhÅki¼x¼!ciµlç¼§gaÐ2´}±Øhµixj! 7Ð2Yz½½½Y2YØØØØØØYؽzzz½zYkhkh¬›°µç4¤ç4oãÍÐÅ˽~˜z˜z½ÑÊÊËÊ2Ê{{{ÊÊsÆ7€»»€{ËËÐk??!;-µµ-hn›n!!!;;igiii;lYYË h-µ- k?Ðh;ç4žj¶E§7~½ÜVV˜V˜˜é³é˜2??ç¥4ç44¡ççccç44ccc¤çç¤l´ki}fçh{s??h!wh?´ijÃjw;ccin!4¼f4ca7€Êhí}±Yhµio¼Å7Ð{ؽ½½»2YؽؽØYYzzzz½½Y±kkhh-›µµ!çžçc4ͼãíÐ?{ ´Xl4¢ãͼ!7Ë»VV˜ééé³ééé˜éNé{;Þ;c§žççccç4žž44ž4c-Æk;4x}§› ¬µic›-´7Ь;缞ciµ-iÃf¤!kÆËhÍËYÅ-§ÃçkÐÐ{½zY»»Y½½Ø½½Ø½½~½Ü½z»7Åkhhhh¬;g¤ic})þ§7ËYéVééz77»ËËÊÊÊÊÑ»Ø? ?2z½Ê2ÑkkË2k7ÐÐ77?kµ!!lwµ!;;cçiÐYY7kX!Xk ?´whsÅkn!wç÷ãͼ!7{ј˜Ô˜Véé³NVéé˜éNé˜;Þ;缞4çcçç4žžžž4žžg-?klž¼Í}§› hµ;g››´ÐÆh;çž¼ç¤;Xhiofžçwh?shÍ€Y -!ÃçhÐ7ÊYÜ»»Y½½½Ø½½½½~ܽ~»€?khhhh¬;¤gi¤Í)§7{½éV˜˜³½77лs{{{2Ê»YY? Æ{½Ê22 ÈÐ2ÈÆÐ77ÆÅ´alllµw!;igçiÐYдµXkk?h´s ´n;ç¢ãj!Æ{»˜˜ééé³³V³éVéNé{;Þ;c§žççccç4žž44ž4c-Æk;4x}§›È¬µic›-´7Ðh;çf4ç;µ¬iÃjžçwkÆË´u€» -!uç´ÐÐ˽~YY»ØYؽ½Ø½½½~~ÜzzYÐÅÈhh´-hµ;ggguí)þ§Æs7´ Ðh4ÍÃk {˜½½˜éÜVézéV˜¬cçciççççc444žžççi!°-´È4Íõ?kµ;nX›È?kç¥Ã4f!Ȱc§x§4çiµhÆ-uc€ÑÐÅ!fn?7±ܽ½YYؽØz½z~zzÜÜzÜ~»Ð Å ?Èhµ;giggí¼÷þ8l±Ð{Y˜V˜˜³NÜh-ÆÊÐ{{Ñ2Ñ»YØËÅh´ÐѽÑ2½½?›?ØØÜé˜~Ðkic!!!icçgia˜½Æ¬µ››´h ¬!› €Æh Ьžu kÊؽV阘zVéVV{¬cçg;cççç¤çç44ž4çci!°-´k4Íõ?´;°aXak? ç¥Ãç§!kµ¤§Ãjž4i¬7›}Ë»ÐÐÅwžfçµ77±Ë½~Y½YØY½½z½½zz~½~zÜY7 Å ?khµ;cciiíj÷þälÐËYV˜ézk¬ÆÊÐÊËÊÊ2ÊYY»Ë hhл½Ñ2½½?n?»z˜VV˜½{7´w;c!w!l;iç¤ia˜Y?¬Xa›´¬Å-!n ÐË7hÅЬ4ÍÍà kV½½V˜V˜zéV˜¬cçciççççc444žžççi!°-´È4ÍõÅkµ;nX›È?kç÷}4!k°c§Ã§ž4i¬Æ-}Ë»sÐÅw§7±ܽYYYY½z½½z~ܽ½z½~»7 Å -;icic¼ þ8lÐhknk€Ëkg§Ã4µa!±ËVéVéé³éVé³X4cç444çççççcççi;;i!;ç;k?kç-?´a°k¬h-hÅ7hl¼of¼µkcçoufçg;› wç7{½ÊÊŵ¤4i›Ð77ÐYzÑYؽ½½½Yz~Ü~~½zzYܽ7kÅ7Æ7? kµ;gc;ç¼§÷䥵ÐÐËÑVé鳬!k{ËÊ22ÊѽØY h-kÐ{ÊÐ{z2 k7Y½½VVNÔY?›lii;l;!iggcg7z ----›¬µ!;´k›kËËki§Ã}›!ÐИV³éVé³é˜ééYX4ç444çcçççcççcii;iw;ç§;k?kç-?kak-¬h´??hl¼o¼fµÈçou§çci;-Èíç7{½Ê2Åcçi›±Ð7YÜ2Yؽ½Yؽ½½zÜÜ~ÜÜzYzYÆÈÅ7Æ±Æ ka;cciç¼f¢ä¥µs{ÊØ˜ééNh!ksÊÊÑ2Ê»Y½Åh¬k7ÊÊÐ{ÜÊÈk7½½zzܘVV³V»Æa!ic;;;;.cccgÆ½Ë -›--a-n!µ;kk›´ËËkg§uͰ›w7˜³éVééé˜é³X4cç444çççççcççi;;i!;ç;k?kç-?´aXk¬h-hÅÆhlj ç¼µ cçoufçci!n ç7{YÊÊÅwg4;n777ÐYz»Yؽ½ØY½zÜÜÜ~ÜÜ~Yܽ7kÅ7ÆÐÆ?Èa;cc;çoj÷ä¥Xç;!i;›Ë~Å›cçj;kälµ°µ-È ÊY½~ÜééV7;žçç4ççççç¤444ggcc;›wx¥o°Åžžµll;X›-››k7 huoji--i4xͼç¤;!ah;¢§k7Y27¬wi;k7€ÆØ~2YYØYYYܽzzÜÜz~Y{?ÈÐÐ7ssË€Ån;c¤jx¶ºoh2Ê~˜éé˜ ;¬Æ±ÊÊÊ2Ê{Ñ»Y½Ê?k›¬Å7Ð7±YÜ2±7ʽYؽ~~˜»7-l;!!w!iç4ç´Ñ½Y7-h-;a´;¤;!ii-s~ µcç¼l }g;XXn-k {Y~~~éé˜V7;žc44ççççç4ççcic;ax¥xµ?4µ!;lµ››-›k?Ŭuxji›ac4oÍj4ci!›h; fk±»YÊ7hlg;hÐÆ€Yz2ØØYYØØ½Ø~zÜ~~ÜzzYØÊÆ?7Ð7€€Ë€Åµ;gfÛÃ¥¶ohÐ2{~ééé˜ ;-7ÐÊ{{ÊÊ»YØØ{?k›- Ðs7±YzÑÐÆË2YY~~˜˜YЛl!!!!iç4ç´Ñ½½Ð-µµh-µlµ´;ç;!iia€zÈ›cfl }c!XXnh Ë»ÜÜ~ééV7;žçç4ççççç¤444ggcc;›wx¥o°Åžžµll;X›-››k7 huç4g--g4xͼçciln´;¥§´±Y227´!i;kÐÐÆYz2YYYYØØ½½½½z~zzzz»½{?ÅÐ7sssÐ µ.gç§öºoçcl;44°ÆY{khi°ÐÃi!lg4iX-´ ??€2½»hi4ç4444444ž444cggi-ki¥E}¤uuc4cii.;!!XhÈ´Û Íc-µ;!ÃÍÃc.w›µiÛ¼µkÐÊYYÑ?›µ!?»s7»ØYØYYY»»YzÜÜz½~½½ØÊÐÐÆËÊÑ»?a;cžxÛ÷ ¤´ÑÑË»ÜVééÐlkЀË{ÊÊÊYØ?¬aah?77?ÆËËÐ€ÆÆÐÑzÜzܽ½Ü˜½Êе!li44w ÑÜÊ ´´ ›µX hí4il;ç47Y{khiXÐxc!lg4iwXµµ›kÅ??€Êz»h.4cç4444444ž¡4ç¤ggi-ki¢EuÃc4iccil!!X´ kÛÍc-nlwž}ÍÞ;!a›i jµk€ÊØ2Æ›µw?Ys7Ë»ØYYYYYYY½½~ÜÜ~½½½YÊÐÆ±ÆËÊÑ»?n!gç4oÍ ¥ ¤´ÊÑѽ˜ééÐ;´7€Ê{ÊÊÑÑY½?¬n›k??7?ÆË˱s7Æ»z½Ü½Øzеw!i44w Ñz{ hkÈ›° hçc;;4ç°7Ø{k´cXxgllg4cXXnn-´???€2½»hi4ç4444444ž444cggi-ki¥E}¤uuc4cii.;!!Xh ´Û ›µ;ÃÍxg;!aaion´ÐËYØÑ7›X!?YË7Ë»ØYØØ½YYY»½z½Üܽ½½½ÊÐ7ÐÆ{»»Ë?›!cç¼÷ ͼg;içk±€€ÅÆÊ-;c4ujc!w;¤!µl4gi;i!wi§ç44žž4ž444ç4çci;µ°-›§EãÃoÍj§ç4¤¤iilwµn÷q i-;!4¼ux¤iwa!;own´?ÆÆÐ2Ë?  {€ÐËYYØYY»Ñ»»Yؽ½~ÜzØØYY»€±Æs22»ÊƬµcçíÛ uxikËÊ{»³éÑ;;a±7ËË{ËÊYYÅha-kÅ? ?kk7¬Xn 2Y½ÜV½½z~7kn!;;c4iaÐY€ kµ›kÐhºu¼g;i§§çkЀs ÆË-;i4xjc!!i!µ;4gi;i!wi§ç444444žçççci;µ°-a§Eq¼ÃÍj§4çccii;wXa¥ã i-.;4oÃx;!nwi¼-h?±7Ð2Ë?  Ë€±{YYYØ»»22ÑYؽ½zz½ØY½Ñ{sÐ7s{22»Ê7¬cç ÷ÍxihÊË»V³éÑl;›ËÐËË{2Y½Å¬aX-k ÆÈ ?kk€-aÅÊ»zz˜z½½½ÜÆkµw!liccaÐY€ Åhµ›kд¥Ífg!gžçkÐÐÐ ÆÊ-;i4xji!wi;X;4gi;i!wi§ç44žž4ž444ç4çci;µ°-›§EãÃoÍj§ç4¤¤iilwµn¢ãÛi¬µ.!¼uçc.!awio§µh?бÐ2Ë?  Ë{€Ð{YYØYYÑ22ÑY½Üz½½»»Ë€±±sËÊ2ÑÊÆ-µcÛ÷uE¶ížg¤4Íi ËY€¬g¼÷¶iž§c!ºÛ¼jo§44ž44ç¤i!›wnhjU1cx íÃuÃo¼x¼f¼o§¢ãí;µ›4¼f4;!l;çµ!wwµÈ????kÅËÊÐÊYYػѻÑ2ÊYzÜ½ØØ½Y½zYsÐÐÐËsËÑz2? nX¶oÃ4 22{z³éYlcwÆ€€ÐËs»Ø½ÊÐÅhan-kÅÈ?s kÐÈ!h˽~~Vz~ÜV{kµw;cg4; €h-hµ°n-Ð;ã¶ížgc4§ÍiÅ€½z½Ëhio ¥4;c!4ºÛí¼jo§§ž44ž444c;!-µ¬fU1f ÃÃxÃÃüj¼¼¼÷q.µ›wc4§ofž¤iwµ;;¤w!µk??7?k Ë€ÐÊØØYYÑ»ÊÊÊYÜܽØY»»~Y€ÐÐËË2zÊ?Å›µ¥ožÃçÈ»22~Né»;g±ÆÐsËËË2»½ÊÐ?h›a-È ?Ð kÐ µ;hs½½Üܘ~z½VkXw;i¤žç;kЬw›-aXn-€iEºíi§Íi s½Ü»shix ¶;i!žºÛ¼jo§44ž44ç¤i!›wnhjU1cx íÃuxo¼x¼f¼o§÷q;µaçf¼f4;!;lµw!µ´?Å?ÆÈ Ë{€ÊYYØY»»ÊÊÑ»~Üz½»»Y½zYsÐ7ÐËYzÑ? ›µÍºoºº¥}4ž44盀V½±lžjxà !.綺q¢}o}Íx§§¼¼44cžççiw°!!4Uþ¥µhižxÍ}u¼oÍ}j¼í ºuç;-!¼44¼§i!;ii;;n¬µçfç!na¬´Èh-hÆ{Y½½½½YYYÑ»2Y½½Y2~Y»YØÊ€€ÊË€½Ys7´›¼q§ç¼xÈ»€é›4l?бËÊ»½Y½± h-h´Èk ÐË7Ȭµa›- YÔ~Ü~Üzh;iicl a!XXX-?7 ?qº¶Í4ž4§çnËzVz;fju iÍ纶q¢}oÍÍ}¼jj44žc4ççi!!!!wçUþ÷nh.x}uͼ¼ÍͼoÛº}çl›!ž¼4ž¼gµ;;i;;;ahw-ahk k-k7YY½½YYY½»»ÊYY2z½»Y½YÊ7Ѐs€½Y€ka¼ã4oío 2ËËzé½nž!?Ðб€sÊÑ»½2 h--h k?€ hnµa¬ ÐY˜ÜzÜÜܽ½Ü˜Ü€h;gccj!È-!nµµµ-?7?7íº¶¥Ížžç4§ç›Ë½˜˜~7;jx !i}4¶ºq¢}o}Íx§§¼¼44cžççiw°!!4Uþ¥µhižxÍ}u¼oÍ}j¼í÷ºuç;al4¼çj§ill;i;;wnh4§çnnhkkk-hÆËY½½Y»»ØY22Y»Ñz½»YØÊ±Ð€ÊË€Y½€Ðknxã§çž ¶ã¥}o4¤ž§ca˘~Êaçfj§Íºiwžj}ÍÃ÷ºÍžx}xfjxjžçç4g;i;!w!l;w;Eþ´Ðh!;;žÃ¼¼o§fu ÷¥jçi;44çççci!¤i;;!w-X.4¤w-hkk-µw€ÊÑ2YÜ~½YØ»Ë?±sYËË{Ê777Æ??khhµ›µ!xãjj4§ÛÛ Ê»éV»-cc¬€Ð€Ë{ÊÑY»Ð h¬hk 7sËÐ?hµa›´ÆsY~~~~z~~~744n wiwlX›-h77ÐÐ ¥ã¢}¼çcžžg›˜~2-fo}¶iw4j}ÛÍÍ÷ºížÃíͼ¼¼¼¼4çç;iiwww!;;Ek€k!;;o¼¼o§§Ã¥¢¥¼çg;4çççç;;cg;;;n-ic!ahhhhn22ѽÜzYØ»Ë77˻ˀ{Ê{{€Ð7ÆÆ?´h¬µ›!}ãjjç§Û çÈË»é˜Ñhgg-ssÐ2YÑ27 hhh k ?€{€?hnµ›h?sÑÜzz½z~z~zܽеç4X i!;°--h7€7 ºã÷Ío4g4g›sVÜ2aff}ºiw4jÃÛ}Ã÷ºÍžx}xfjxjžçç4g;i;!w!l;w;Eþ´Ðh!;;žÃ¼¼o§fu ÷¥jcilçž4çççci!cgi;!wµµ›;c!°›-kh-µ€Ê»2Yzz½YØ»ËÆÆY€Ë{ÊÐ7ÐÆ??k´-µµxEjj;}¢º¶÷ç4fxÃwÈs» l4ž}Ejw;jÍfçu Ã4çfÍ ÍííÃjj¼!l!w°;i;ÍäUg?{Ð? k›wçfjÃí q¥Ûç.§¼Ãüff§4ci;µlµ!iç4;!¬kk¬!¤-ÅsÊÊYYØzÜz{kµ;!µµ-¬¬-››hµa-µ!!aa4 ojžxouoXs{~Ys? X ÆÐЀ€ÊYYYs -h È?7€22?°.!µ°µ¬ 7½zzz~Yé€-4g- nn.Xhhh 77?;Ã÷q¶÷íç4fu}§wÈ !44u1!;jÛÍfçà Ãçç¼u÷}xxjäw!;ii.<äUc?{€? ´›lçf¼Ãí Ûº¶Û4;§j¼}Ãxff4¤;;nlwl;4i!nh -!c-?ËÊ2YYYÜܽ{´°l!nn¬h-¬›ahµn-µ!!Xµ›žoj¼žoou¼°sÊzYÐÅÈnµ ÆÐ€€€{ÑY~Y hhk?k?€Ñ2?ni°µµ¬ÅÆz~Ü~z~½½ézac› nµ.°h-h 7??;Ã÷º¶¢íçž§¼ÍçÈs2?!4uEfw;fÛfçu Ã4çfÍ ÍííÃjj¼!l!w°;i;ÍäUg?{Ð? k›wçfjÃí q¶Û4.j¼Ãu¼fj§ž¤;;µ;!;4ži!¬kȬ!¤-?sÊÊY½~ܽ{kXllµ¬hh-›ahXa-!!lXa›Û¼§¼X§}¢º¶Û¤çž§ff§¼xµ±Ðh;¤4 ãÛ4;§íÍͧÃÃo¼¼¼§ÍÛ¥¥ ¥ ž›°µµw.ii448U4wkkË2±hlöº÷Û¥1ç¼§xuÍü¼§çil›È-!°;žcl;c!akÅk-wçnл»Ë2YYYYYskwi;i;ll!!µnh-¬´¬›hkg¼ç4xj§ç¤lkszsw4!ll--h 77{»Y2 hk 7Ðs2½Èilµµw;›¬Ñ˜~~~~˜zX!X-k haakkk??kkfÍ÷º¶Û44§§§§o}X77-l4TqT.f}oÃoo¼¼§uö¥ TÛTöÙ§µ›µ°°µ;iiç§Tääö¡X¨‘Ê{Ш;ö¶÷÷¥Eíž¼fžf¼Ãuüj§çil-kh!X;4i!;c!ak a!XYYsÑYYØØØË´wi;.;l;!la¬-h´h›hh¤Ã44¼x§ç;ksËç;;;›a¬È?77YÑ~2 -k? ?7€Y~?.!Xa!;wa¬Ð»˜½Üzzz˜zznlnh´ h-a´Èh ?k nuTq¶Ûcžž§§f§oðÆ7h!–öq4ijÍ}§ÃÃo¼¼¼§ÍÛ¥¥ ¥ ž›°µµw.ii448U4wkkË2±hlöº÷Û¥Eçf§4§¼Ã}ü¼çc!-È-X;4žil;ilak?k-çµÐѻˀÊY»½YYËk;;.;;l!lµn¬¬h´h›hhcx44-¤f¥q ci4ž}¥x!hka;¢ºquçx÷u¼} ¼j¥¢ ¥¥¼!›-›°;;!c4äUÍ¥÷4k?7{YÐ;º¶¶ ¥ä Ãjž4¼x¼§¼k7 › w4cigç;!µhkk´ni;¬Ñ{»»ÊYVV½´h-›hh´kk 7?Å€{Ð-¨¬3–ÄÄeƒH`Ï`œ=="H````""õ†œœG=¹S†æSœœœ=Ò†`å"å’Õå""ÒùÒÒÒÒÒÒÒÒÒÒÒÒÒæ""††S†"SSæææSSÁÿžu¥¶ cµ;4žu÷jXkÁke  QQ H  å†"""å`Õ` SSSAv+µ<¢¶¶¶ä¢Ûçžç§oüf¼žc!‘±¸’Á Ï"††¹œœG¹W"å¹=GÔæÑ½VV{´¬›-¬kkkÈÅ7??ÐЛh-cf4§§§jÍ;c!€YYXfÄe9Ïå"¹œÉÀ«ù«GGGGbGG僬‘´›!!µ›ÆVÔ½zzVvvNA>Ï’å""¹"œœÉÀÉÒb¹†` ’""Ï9eÙöf–§uu÷Í}¼} ¼j¥¢ ¥¥¼!›-›°;;!c4äUÍ¥÷4k?7{YÐ;º¶¶ ¥ä÷÷ͧž4xü§jcwkÆ ›k4igçi!µhÈk´›i;¬½ÑÊYYÊ{YVVË´--›hk´kÈ 7??sÊÐ-hh¤§4§§h.¤Ãºº÷aµ;gçž¼¥¼¤a›.§÷¥÷x}çox¼xÃ}ÍÍ}Ãí¥ Íí ugnhhX!igç§ç¼1Íqó§›772д}º ¶88ããã÷}§oÃxjf¤!hk›µs?µ;4žžçž¤ln´ k´aic¬2zYYÊÊYYY2Ê»ËÐÐËËËÊYÊs»½Ês˱›°9 ƒ `"œÒùù"Õ†††¹¹ÉGGGbGGGGGGÒùÒG""¹¹†¹†õ¹É«^ùùùùùùùùùù ùùGÒG††"†††¹ææAÏaÿfT¥÷n;gçžx¢§.¨‘9 `¹œœ¹†"ÕÕ  ò†ææA+È.Ã¥÷º88ºqq÷Íf§¼Ãx¼§¤¬´´¨²S’`Õ¹übbÉGGGGœW¹ÒÒ=œæ²Az½»ÊÑ{7ÐË€s{YÊs½~2sÐ7l;Ãooo}4niçÈÑé»;¡3ÿƒQφWbÉG«^^«««ù«GGG=†H‘‘Xÿµµ°!¬Ë½ÜzzÜVÔÔAvvV=N¹œ""†W¹bGÀ«ùêÀÉbWbÉÉb¹WW``"å#™3oj§ÃÃÃox}ÍÍ}Ãí¥ Íí ugnhhX!igç§ç¼1Íqó§›77Êд}º ¶88㺺¢}§¼uÃff¬k›µËŵiçžç4cl›kÈkhnig¬ÊzØ»ÊÊÊYYY»ÑÑÊ7ËËËsÊYÊsY~{ËÐ?°;iooall4 ¢Íw.cçͼakl¼÷¥í¼xžcççž44žfÃÍíÍ¥÷Û í§;-Ènlc§c4íí÷Ûºäq4h¬È7»7n¤Ã÷óqEEºÛu¼§f§ç;nn;ilË€ gçcfg!¬kkk-;4ik»Y»±Ë½ÜÜÜÜÜzYÑ{{{ËÊÑYÑ{½˜ÜVV²{>Áƒ `†bœ¹ùßG¹übbWWbbœbÉÉGGÀÀÀ«G«ùùù«GbbœWüœbbœÉGÒù ùùß ùùùùùêùêù^Gb¹bWWW†""æÏ¨93oÛ¢}µw.cçžÃx¨ WWWWWWWWWWbGÀGbbWüüWü ""åÑAA±acÃ÷óãEE¶öü¼§§4ç;µ›aA湜WWbÉbÉÉG^ù^^«ÉbœG«ùGæAVvÔzzzY2Ê{ÊʽÑ~ÔÜV˜½Ð7nj¼Ãü;-l4.Ô‘ÿÄe`WbÉG«^^‰ù^ÒùÒùÒGæÏÏ‘ƒ !|aµh»zéVv²vv==Ò=GÒÀbb¹bbbÉø^«ê«««ÉbüübGGGGÉÉWü¹¹ ¡#–.ccžžžžžfÃÍíÍ¥÷Û í§;-Ènlc§c4íí÷Ûºäq4h¬È7Y7n¤Ã÷óqEóEºÛu¼§ç;nµli!{€ µ¤çcjžg!-kkk¬;4.k2YÑÐËØzÜܽz»ÊÊË{22YY{½˜zéܽÐ7›§¼l;a;žÃ¥ nµ!!w!i;§k˰§¢¥÷íc!ggiii;c§oo¢Ãí¥¶ ¢}4›kh¤ç44çç4§ij¶¥¥ã ;?Æ ?ÐÊ7cE111UUãÛx§f§cµ´›;;XËÊYY€-;iž;Xh¬››n.ç±½Ñ{2»~˜ÜÜ2ËË{Y»Y»»ÜVzzA’9 Õ¹¹bɹ^ùßßùÉbbÉbÉbbbRbRG«ø«^^êêßßêßùøbübÉÉÉGGøêßûßùßßßßßêßûßêÒ^«G«Gbœb"†Ï‘°–¼÷÷n!l!;.;¡–¸SÏ bɹbbÉÉÉÉbbbbbbbbWbbübbÉ«^^ÉÉÉÉÉÉbbbb `SS>s{ÑÐcí111UUqÙfff§µ´›!ÿ¨S=ÒÒGGGRø^^‰ù^^GRÉù«ÒœAvÔVz˜˜½ÑËʽ2Ø»»ÜVܽY2 f¼}§.l;i4Å{V³+|H`WbbRR^ø^êêêêêêêßùêÒGœæåÄe°°›°µ´{ÜVÜAvVéN=ùÒGGGGÉG^««^^«ê^^«øbübø«øøG««GÉb¹GGW ¡;!3.iii;c§oo¢Ãí¥¶ ¢}4›kh¤ç44çç4§ij¶¥¥ã ;?Æ ?ÐÊ7c111EUUóã o¼j§¤µk-;;XËËYYÐ-liž4;°-h›aµiçwнÊ{{ÊYz˜˜½ÑËËYË»Y»»zVzzY»kjn›µµç gµ!!w!!ic4µ-§äþUÛÛ¼!c;ii;!içu¢Ãµ-ižf¥Í;-È;4jž4j¼;xÛ ÷÷ºqÛ4È?7ssÐhw¼¶ºE1óUUEÛ§cX;i¬ÐËÑ»»ÊË€?¬!ciµ¬¬a!;4n€7»½ØÜz˜Ü»Ê2YÊ22ѽz˜ØYAv¸H`¹ÉÉÉGG««ßûûêøøøR^^øR^RøøêßßßßßßêêêêÉübÉÉGøø^ùùßßûßûûßßûßßßêêê‰^^^ÀœSå’Á¨›3÷iµ°l!w;;.!‘`ñ WbbÉÉGÉG««øRRbR·^øøRRbR^êê«^RGRRbRøüü QÏ’±>{Ëhwo¥¶E1UUU1÷g°°°!ÿÈSAGÒùêêßê^‰êêê^É«ùÒœ==v²ÔVÜÜ»{2Y{Ê»»Yؽ~˜Yج;ÃÛÃ!Èhan¬ØN=Så"WbÉø^^·^·‰‰êêêßPßûßêêÒGGœÏeݰµ°µah±ØVvvV==ÒÒÒÒ«ùêêêêêêßßê‰ê‰^bbbÉ««À««««øGbbbR ÄÄX–.;;c;!içu¢Ãµ-ižf¥Í;-È;4jž4j¼;xÛ ÷÷ºqÛ4È?7ssÐhw¼¥º1óóUEž§cic¬Ð»»ÑËs?h;iµ¬-nw;4as€Ð2½½Y~½zYÑY2Ê»ÑØØ½Ü˜½Yؽ-;ô´´? fÍ;;;;.l;i4jcljEþº÷o4çii;ci;ij¼4ln´--cgÈ7kçjxÃf¤;ã1 ÷ jcÈÐÆ7Ʊklj1UUUUE¥cµwgg;?2{Ëss{ÑÊ{Ê€7? kk›µ;ç;k±Ë€Ñzzzz˜~ÜzÊsË2Ê»YY½zzzzA²²H ÕÉGÀ««êßûûPPê·^·^^··^·^‰‰êPê(ûßßêêêêÉbbRÉÉGGøêßßßûßßûûûßûûßPêêßêêêù«G††å’>±a§u;w;l;.!;.––ƒ‘e übœbÉGøø^^^^ø^Rø^PPßêßê··‰ßû߉øøÉRRRüü ƒƒ¨ÈsÆÆÆ±kljEUUUUEö§3n..°’AœÀ«êßß(ûûû(û((Pßê^««^GG=VvÜzÜÜ2ËËËÊ2ÑYؽzÜz½Y»nc¥¢ž›h´ ¸h‘Ñv==æœbÉGø^‰‰‰‰‰êPêêêßßßßêêù^ÒÒG† ÿÿ!°µ›ÅÑÔVV===Òùù«ù‰êêêPßßßß(ß((‰‰ê^«büÉGÉø«ø«^ø«øRÉbüñ ƒ;Ä;;;ii;ij¼4ln´--cgÈ7kçjxÃf¤;ã1 ÷ jcÈÐÆ7ƱklfEUóUU1¢§cµwicl ÊËËÐËÊÑ2{{Ê€7? Èkaµ;ç;ȱ€ËÊzÜÜÜ~ÜܽÊËË{Ê2ÑYY½z½ÜØYY2niµah?7hc§!al;l;l;;ç¼§¤ží8ˆ8qÃçžgcci¤iij}¼§Íu4iXh´µwa?Ë?¬!c4¼§çç8)¥}ÛÃiw 7± ››;ÛqUUóUU÷¼l;i;!ÈYY2€7€Ê»Ø½»Ê»½ÜÑ€±k›l›Ð»s½˜Ü½z½»2ÊËÊ2YYY½z~Yz˜zA¸‘`¹œÉ««êûûßßêPêêêꉉ‰‰ê‰ê‰ßûßßêêêêêêøübbÉÉÉÉÀêßßûûûûûûûßê(ûûûûûûûßêê«"`’+>´3ž!nX!!!;l;!.™Ä9WWbbbÉG««^^ø‰^·^^‰êP(ßPêßûû(ßê^^øGRb e Ä.ÿµÅ±Ð ›a; qóóUUU f;;;!°±=GGêûŒ(Pê^«ùùœœ=vzÔz»Ê{22ѻؽz½Y½½½-!§÷ºÍ;a¬ÈÆ? {N=ÉG«^^‰ê‰ê‰êPêêêêPPß((ßßêêù««Õ eÿÿÿ;ÿ-?+v===Òùßßêêßß(ûûŒ(ûŒßûß^^«¹WœÉÉÉGG^^^·^øRøbü ƒÄÿ;..ciij}¼§Íu4iXh´µwa?Ë?¬!c4¼§çç8)¥}ÛÃiw 7± ›a; ãóUUóUU÷fl;ii!k½YÑsÐÐÑYY½½ÑÊ»½ÊsÆkal›€»ÐÐz˜½zYÊ{ÊÑ»YYz½Y½˜Ü½¬!j!µk 44;µ!µw!µwcii綈þ¥fcgiccgg4¼Í¼!µi§ž¼¤!nµ;!- kkk¬°;iiUþ1 ÷¥¢¥ íÛ k€7?±´X4¶óUäää¶Ão4iin sÊ7¬›hkÐËÊÑYØYѽܽ--Y½ÊËYÜÜzܽY»Ê»»2YY½~~ØÔééA¸Á9 †¹bÉGêûŒûûŒûßPꉉ‰‰‰PPPê‰êߌŒûßßêùùøWüWbbbbGÀêêßßßßûûûûßêP((ŒŒŒŒûêêù†åÏ’-ž!Xn!X!°µaµ!ÿ|Lñ †Wbbb«^ø^ø^ß(Pꉉêß(ßßP((ß(ß߉^øÉb e ¡ •Š&CC5(ßê^«ÉLƒƒeÄ¡¡o+sªâ‚ÖCC×ÝŠŠÝÝCà>Svvå`†Éêùê߉ø^««ÒÉÒAæAÑsË€h¼¶¥ÛoçðèCC×ÝOÖÖOŠ%ßûû(ßß(û(û(ê·øb  Ä3aa¬››c§}í¶ãq÷ u§¤ilµµ…C×ÝŠ¾OÖO¾Ý×ߌŒûßßêPê‰êP‰übGGæ+>ÐÆ777ËÊY½Üܽؽ½~˜VÜzdÓC×ݾOÖèèÖ¾,‚OŠ[(ßGb†ÕååÎÝ&&оOOÖÖÖÖOO¾O¾[ûû(‰êßûùÀGõ¦,¾O¾OOŠÝœ†üRø‰‰P‰‰PP‰^RRGœ"Ï9 ¡#¥E;l4;›kkhl¬ÅÈh´;ç¼Û¥÷í Ã!nh›acÃí¶Eº u§;lwµXw!;;!!µi!4ä8óEj›€»»Ø»½ÜÊ?´;cc¤clµ›¶çØ7Ð77Ð7Ѐ2YÜܽ½½½~ܽÜ{cl-ÐY½Y2YsÊkjE1Eq¥Í¼¼¼¼c§Ã4a°çx¼u¥Eç4§!hk´!!w¬kkhkkhnifuüÃqíjh--µli4qºº¥¼4.°µXXµ!;µ!µ!÷888U÷i s{sÑYY½YË7¬cgg;µh›º;Èȱ€??ÆÐ±ÐÊY½zz½ØØzÜÖCCÝŠOÖèèèèèO¾Ýìß(ûŒŒûûŒûßùGœ"’‘’s±Ê»AâèC×&&ŠÝ&×’+v=SÏ`†ùùßßûêRb¹¹œ=AØ»ÊË{ȼE1Eq÷ñÓCC&оÖèèèÖOŠ%ûô(ßßß(ûûŒûûßßøb`ƒ–í#µh--n!;4í㺶¥¼4;°XXn,C&ÝOÖO¾ŠÝ×Cß(ßPPêPß߉üü¹œSæÑ>sƱ±ÐË{½~z½Ø½½~~dC&ݾOÖè••èèÖOOÓ‚ÖŠÇŒûê«É¹"åÞÝÝ&ÝOOOÖÖÖOÖÖÚPßû^êÀù=ŽÎÓ¾¾ÖOOOŠÝןœübRø‰‰‰‰‰‰‰·ø««œ†ƒÄž#í¢Eç4§!hk´!!w¬kkhkkhnifuüÃqíjh--µli4qºº¥¼4.°µXµµw;µ!µ;÷888Uck€{€Ê½YØËÆhg¤g;µhn¶;Èk±ÐÐ??Æ7±sÊØ½Üz½Øz~ÜÜ~ܽ»;4çi›77YYÐ?µÃ1E1Uó1¥uÃçcnlÃu}ÍÛººc4XÈÈa;;!nh È kk -;§u}¼§ uÛÍÃ!¬hXµ-!jí¢º¥¢íjç!!!wlaµlµ!;cþ)㤬h›h7Ë€ÜÊ?nic;lµ-X ¢¥-±ÐÆ ??±€{Øzܽzz~½d_CÝŠ¾OÖè••èèÖO‰P(ôûûû(ûûŒŒû(‰^b†`Áϱ±{{ÐʪÎ,CC×ÝÝ&CCI¸²Vå‘H`†ùêßßßûêùÉbååå+ÑA»sƵÃEE1Uó1ðC×&оOÖè•èÖOŠÝ%(ûûP((ßß(ûŒû(ßPÉ`QƒeufÙuÃ!-hX-l¼¥¥¥¢¼çw!l!m&ݾOÖO¾Ý×ô(ûŒûêPßß(Pêbü``Sѱ¸?Æ7sËYzÜܽzÜÜYÜÜdC×ݾOÖèè_••è­‰(à‚Ö&ûß«œ"`0ŠÝÝ&ŠŠ¾¾OOÖÖÖ¿«·ê(ß^«Gêù==Sà,ÖÖÖOO¾ŠÝ×CbëbRRø‰‰‰‰‰P‰^øGÉÏ ™f}¥¶cžXÈÈa;;!nh È kk -;§u}¼§ uÛÍÃ!¬hXµ-!jí¢º¥¢íjç!!!wXw!›µ!µlc1þ)E¤h´›¬7s€ÊÜÜ2?ncc;ln-µ ÷¢g-Ð7Å?ÆÐ€{Yz~ܽzܽ½ÜzØYË´w;;i;›Æ?až÷¥ºººEEEEq¶Íxçi;!aifÍÛ¥4ca-haçf;´--Åk?ÅÈ??ajf žlµ-i¼xíÛ¥÷Í}§çgi;!l!l!!!wiç8þäÃXÑ7k´›µ›Ås»Ñ¬;i!µn¤Û Í¥÷ikÐ?´Æ€ÐÐYYYÜܽ½½ÜÜ,C&ݾOÖè•èÖO¾%‰·Pßß(ûŒŒŒŒû(êùGœå’’±¸?±ssÐ+â,×××&Ý&×r¨ÑéAÁH`¹«ßßûûûß^ɹ"ÏH‘´±¸›4÷¢ºqãEE1tCÝŠOÖèÖÖÝ×ßû(PP‰ßŒûûŒûŒûPßùɃ¡#uu4!µ›µ;jà ¥÷í}}jçg'C&ÝOO¾ŠÝ×JPê(ûû(ßßßPêêøb` |¸>±hÆ€±ÐYØYÜÜz½½z~ªOC&ŠOÖè••••Ÿ^^êßôÓÓŠßêG¹ÕâÖ&&&ÝÝŠŠŠŠOOÖÖàÉø^êßûßøbW¹Ò==d_ÖÖÖÖÖO¾ŠÝÝrbbRøøR‰øø‰‰‰‰^«ÉÏÄÁh¨k‘ kkÈ ?'‚CCC&&%i°ÆØzv>ÏÏ"¹bÉÉ«ù«œ¹‘9|È..hií ÷¢tÝ׊¾OÖÖ¾Š×%(ûPPP‰PP‰‰‰PP·øR¹"|9;žf¼ÃožfÃxž› 7Ȥ¼ÃíuÃ$&&ݾOÖO¾Ý&C[(Œ(((P߉^«bÏ ™#÷4Ð2½½Y½~z~Y½Y]×ÝŠ¾OÖèè•__„R^^‰‰P‰‰ŸÓÝì^GGGr‚CC&Ýe†¹GÒGÒSŽ|¨a!ÎÓÖÖOŠÝ×C^ø^··^^^‰^‰^‰øbüÕ  ¡<íÛE1¥fl¬hhwiç44fçi.içc4gççi;çf¼Ãxj§xož›È7ȵc§¼oÍÍxx§4c.iiii;;¤gUäçÆËÊÊÊÑYzؘ˜» --aµali4xà ¥çл½½YØ~z½½½Y»Y-ÆË?h-içi;¼¤Åk›ic4jÃÍ}íoí¢ºÛx¼ofç¼í¢¥EEížiµ› ›o§4§žçi.llig;çç;!lçfž¼¼§¼¼fg´??k!¼ÍÍÍÍxžciiic¤ggçžl÷ä)÷?€Ê»YÜVV~Vz7h¬´¬-a°››lwlll¤}÷íçnÐØz½Ü˜z½Ø½‚C×ŠŠ¾ÖÖÖOÝ&CÚ^‰êPPP‰êP‰P(ûßê«ÀÉœ"Ï‘h|hhhÈ kkkµ$,CCCCCÄçXÊz²>HH’"WœÉ^êGG†åQƒ°°§3ÅÈ›;c4§ÃÍZOC×ÝŠ¾OÖÖOŠÝ×ß(ôPê·‰‰Pêê‰êÉb†`H|°Äf¼jj¼jik?7k!fÃÍÍÍZÖC×ÝŠOÖÖO¾ŠÝ&%û5ûû((PPùG¹"Ï‘›aÄÃ÷íµ7zzܘ˜Ü½½YYY,C&ŠŠOÖè•••Rø^‰ê‰PPP_ê«ÒG—,C&B Ï``"ÒS‘9a…_èèèÖO¾Š&Cyêꉉ‰‰‰^P^øRøøbÏ9Äfí¢EEížiµ› ›o§4§žçi.llig;çç;!lçfž¼¼§¼¼fg´??k!¼ÍÍÍÍxžci;¤ccccç4; U8¥ ËË2»½Ü˜˜½Vzдh´-¬µn›µlwll!¤Í n€zzܘ˜ÜzYYY؛űȬn!cçž;hkhh›;i4fx44ÛEão!ç4iu ¥ãEoc¤;c;X°;ç¤ç§cci;w!;iigci!;çc4fouç4iw-?Ðkw;4o¼xuu¼ž¤iiççç4c¼;!88;±ËÊ2Yzz½½é˜Ëkk h-k-h k-k± k´aµ;÷Í.޽z½»»âC×ŠŠ¾OÖÖO¾Š&C%^‰PP‰‰êPPêêêßßPê««G=æ>Á¨--¬´´khhk¬µÎÖCCCC‡3 +²ÑÁÏ`"œÉ«ùù«ÉWå9Ä–ž!¬k-hn;g4_C&ÝOÖÖO¾ŠŠ×C‰P(ßPPPPêêPPPêê‰GɆ`Ï›!ç–çfoÃç44g!-?7È;Ãoá•C×ݾOÖÖÖŠŠ×ߌ5ŒŒûûßßê«É†Sæ>¸Á›°;Í¢Í;ÅY~Yz½½YY~×ÝŠ¾Oèè•••ø^ê‰PPêêPÎ5«ÀG,CC&Še¡™ eQ HåAS‘°!!ðÓèèèèèÖO¾Ý×CJßû(ßPPPêꉉ^Rübb9ħ¢ºEoc¤;c;X°;ç¤ç§cci;w!;iigci!;çc4fouç4iw-?Ðkw;4o¼xuu¼4¤iccçç4gj;!)8;ÐsÊÊØzØzé˜kkkh-hhhÅkak± kh›niÍ÷Íi Y½½½Y»Øz- ?k-›w;;4¼gX¬hkk-µ!iii44c§¶1E§Ã¼¼jÃqEž;cç§žicçççççi;w!.cii;!µ!g§¼jjou4g;w› 7 -;ç§ÃÍÍcic¤ç4žui ãä¥Ðs{ѽ~é7k kh? k7 - ÜsÆ?7Ë?;f÷ºkÊ»2~½Ø»½dO&ݾOÖÖO¾ŠÝ×^‰PPPêPê‰PPPß(߉ù«GA+>¸‘kkhkk´È ´¬ƒ‚ŠCCBçç.Èz²ÁÏÏÕ†bG^^Gœ†åÏÿ–;µ¬´ k-µµ!iÎÓC×ŠŠ¾ÖÖÖO¾Ý&CÚ‰‰Pê‰PPPPêPêP‰^bW"ÏQ¨¨a.ž§¼¼foužc;!›?? -!4§§oÎÓC×ݾÖÖO¾Ý&CyŒ(ûŒûßûßGœæ=Ss±ÐÊÆ.§¢º4 Ê»2~½ØY»Y½â‚OC&ݾOÖè••_•rR^‰ê‰êPPPÚÓÝ««=œ,Ý&3<#¡¡™–ă99|’AȰµ…Óèèè•è•èÖO¾ŠŠ&C5Œûû((ßßPPPê‰øb9ƒÄ™foqEž;cç§žicçççççi;w!.cii;!µ!g§¼jjou4g;w› 7 -;ç§ÃÍÍcicç444uc ã䢯Ð{{2½½z½V7kÈ k¬7È´± ¬ ÜsÆ77ËÆ.§¥¶žÈÊ2Ê~½ØYØØ½~ah h--µn!gg;!µhkkhhh-nµ;;¤¤º1¶} ¥ }¼ Ãçc¤4ž4cccg;›w;c¤ccc;lX›iç4fjÃÍu¼¼ç;wXh Èa;g¤çjf4gçççç44§çnµ1®þ¬ ƽY~zØ?ÈЬÈЀËÐÅÆÆÅsË7Ð2µçö çhË?ÅÆÆË»v•&ÝŠ¾OÖÖOŠÝ××·‰‰PPPP‰PP‰Pß(ßßù«œæSå?? kkÈ kkhh´wF,444´A±|¨ÏåÕ¹¹ÉGGœ¹S`Á›ÿ.;µhkh´hh-nmC×ŠŠ¾OÖÖO¾Ý×C¿·‰êPPßPêP((PP·øbbÕ`Ï‘¨›;cž§jÃͼ¼;wµh ÅÈn;icç$C&ŠOÖO¾Ý&C[ŒŒûûûŒŒßê«G†æ²S>sÑXçxº 4¬Ë?ÅÆ7€2½½]•C&ݾOÖè•••_„R^‰‰PPP‰‰P„«Òœœ6èŠC×&OŽ.#<¸ ´kkÈk´´k¬l$¾CM4;;ű¬9‘ŽÏ"õ†W¹†""’Ž|ÿ;;!µ¬¬-¬hhh@O&ݾOÖÖOŠ&C%‰‰PPPPPßßû(ßPPøÉ¹ÏÏϸ¨Xcç§§oÍ}x¼¤i!n´kk-w;gg OC×ݾOÖÖO¾Ý&%ûûŒû(ßßûûßêùÒGæ²Ñ{ÑЛl¤Ã} Æ7? Å€Y˜ÓC×ÝŠÖÖ•••_Éø^P‰êPPP‰‰Î‚OGœœS6Ó,,Ó6¨ž<íÙožž3Ä!!¸¸-/,••_•_••èèÖO¾ŠÝ&C%Œûû(ûûû(ßßê«b  ¡uíÛx4gcc4§4ç¤;i››µw;i4§4ç!›h-!c44§xÍx¼4ci!a´´k›w;cc¤ççcçcii4¤h Í88ËËÐ{YÜ~zsÈÅ hnk Ð7ÐЀÐs{Ë2Ьl¤Ãí}ç 77? k €Y˜w;;;;µa°a!;ii;l°µa---h´´haaio ¥¥ ¥ºÍ¼žcic4§4žçcii;wwwiçžçž4;nkk-;i¤4oÃ}Ãjž¤;µ-hk¬µwiigiç¤44çi;icghÐ.EäEÈ27sYÜVV77дkn-ÈÆÆ?77ÐÐ˽2Ês?›ç¼ !k Æ?ÅÈÆâC×ŠŠ¾OÖÖÖ¾Ý×Cì‰P‰êêê‰êP‰êPPßßꫜææ+>¸ Èhkkkk´kkkµL‚CC/f§¤ži¨´9|‘Ïå""ÕÕåå厎¨ÿ;i;l°Xa--hhú×ÝŠ¾OÖÖO¾ŠÝ&×·êPP‰PêêPPßßßê^R¹`Ïϱ¸´!.¤ç¼ÃÃÃfžc;n¬hhhµ!.iýC×ÝOÖÖOŠÝ×ßûûŒûŒ(((ßêê^Gœæ²A²ÑË?-4o Ùwk Æ? k?л„&CCŠŠ¾OÖè••_•­ø‰‰‰PP‰êêPÚÓÀÉææÑIÎâ‘È-coíÛ¢ífožžc–3¬@_••____•••èO¾ŠŠ&%ß((ûû(((û(PêÉü ¡#Ù¢¥Í¼žcic4§4žçcii;wwwiçžçž4;nkk-;i¤4oÃ}Ãjž¤;µ-hk¬µwiigiç¤g44çcic¤c¬±.E8EkÑЀY˜77€kk°›- ?7??77ÐËY2{Ð?n4x íwkÅÆ? È?€Y-w;;lµll.ii;;l!°µna-h---›!çoºq¥ÛÛíÍofçcç4žçci¤g;;i;gcççžc!-k Xlc¤žxÍuj4;n¬´h-a!;;;;iiç44cc;gç7¬UU;77»ÜVYÆÊ2?k-››h ? kÈ ?ËYÊË˱ ›i}c!nhÅ kk6Š×ÝÖÖÖOÝ׉‰êP‰‰ê‰‰êPêßß(ßÒÉœæS>¸ ‘ k Èkhhh¬¬lM_Cìͼccu!¨›9‘Ï’å`åå``Ï‘‘a!;;;;;!µµnn-h,C׊ŠÖÖÖO¾Ý×CP‰‰‰êêPßßêPßßê‰^«bÏϸÁÁX!cçoÍÃj4;X-kk-al;;,C&ݾOÖO¾Ý&CyŒûû(ßßßêùGG¹SæAØÊ{±Å-;¤ug!ahÅÅÈ Æ7šÖC×ݾOÖ••_šø^‰‰‰‰‰‰‰‰‰Ó¿«GœæS>±0ÎÎ6¬¬h¬!§Û ouuo§içÃ|è__,_____èÖOÝ&C%ûßß(ß(ûû(ßßê^ÉW`#?Å ÈÈkkhh-›h›i”OC uciocµ›°›‘ÏÏHHHHŽŽ¨|°ÿici;;lwwnmC×ŠŠ¾OÖÖO¾ŠÝ×C¿‰‰‰PPPPPPßPêêê«bWÕH¨Á±kµ;i;içj}}}§¤¬ k-almC×ݾOÖO¾Ý&[(ûûŒûûßßßßßêùGœæA{+{7Ðk!¤;;l!X›´?Þ,C×ÝŠ¾OÖè•••ÖR^‰‰ê‰‰êPPê‚ÓàßêùGœæå>7Á?©@@©k´h¬›h›io ¼uuíÍi;Äè••,,_,___èèÖO¾Ý×5Pß((ß((ßPßPù«É†¡<Ùíí¼o¼xx§4ç44cc;iii;;ccç44çgw¬?hµ.i;iç¼Ã}çc- k¬nwl!;;;ic¤g;i!7Ðiã8ÐË?2YÈk±2Ëhhh›h ÐË€±Å±ÊÊËËÆÐkwžÍ;;;!°-´Åµcç¤g;Xi.ic¤i;;;;!!wµn-´¬nµlgͺ11¶ ojfÃÃož4žççžžžççç.icc;;i¤çç444c›ÅÅ-;!µ;4§}}og›?h-°w!;;ggcçç4ççc!ÆÊ-äÃsY {˜½~w;XÆÑÈhkkk?ËØYÑѽ½»ØY€€7kµžÍgwicii;l,C&ŠŠOÖÖO¾ŠÝ&‰‰‰‰‰PP‰P‰êêPßßêùGÉæS>’¸?Èkkkkkk´h´kn°Ó&C\cžc!ÿ!Á|9|||°!;.i;;;;;!!wnn$‚Š&ÝÖÖÖO¾Š&C%êPP‰PPPPPPßPP‰^øÉbÏ9‘±¸h;µ;4§Ã}¼g›Åh›ww!l'C&ÝŠOÖO¾Ý×û(((ŒŒûûûûßßßêùG=vAzss7´nžÍ!igii;l!wµÎ‚C&ÝŠÖÖèèèOø^^‰‰PPP‰‰PPŸôßßêGœS>’¸?‘kkkÈkhhh´kaioÛ¥¢uüÍí§L„Öè_,,,,,_••èÖO¾ŠÝ&C[ßPßßßßßPßêê^Éb†Ïƒ¡ÙTöuojfÃÃož4žççžžžççç.icc;;i¤çç444c›ÅÅ-;!µ;4§}}og›?h›°w!;;gcç4ç¤4¤l?2›äÃÑ Ê˜½!;µÆ»Èh´kkÅ€ØØYÑ»½½Ñؽs€Ð´a4¤!iiii;;µii;i;w!i;iç¤illlll!wX°µ¬k-Xµ!iÃ÷E1ºj§§žfffž4žcç444ç44çç4i..iç44¤h hµww¬´kµ;4§¼ž ››µµµwl;c44¤4¤ch{Åg÷1YÅÐÜz˜µjçµ hÈÅ È?2½YÔ½½˜~Y»Ê7kl4!n!µnnwl;”‚C×ݾOÖÖO¾ŠŠ&ìêêê‰PPPPP‰PPP(ßßê«=œæå±Æ?Èkk´È´´¬hh Åht•Ýr÷Ãçj¡33!||´ƒ9|9a|aÿ;;cci;;llllw*OC×ÝŠ¾ÖÖÖO¾ŠÝ×׉‰‰êꉉ‰PêP‰ê‰‰^Rœ` |¨ Å´a!µ-kkµ;4f¼4 -nµµµw*OC×ݾOÖÖO¾ŠÝ×((‰PûŒŒûûŒûßßßêùù==vÔ½»ÊÐ ;4wµwµnnl;;;mC×ݾOÖèÖp^‰·‰‰‰P‰PP‰PßPûßêÀÉœæ+’?Æk´kkkkhhkh ?hgͺ }üͥ™OÖè_,,,,_••èÖÖŠÝ×CJßßßßß(ßßPꉫɜ"Žƒ¡÷ ÷uf§§žfffž4žcç444ç44çç4i..iç44¤h hµww¬´kµ;4§¼ž ››nµµwl;c¤44ç4ç¤chË g÷E»Å€z˜¼ç hk?ÅÈ7»~YV½½˜ÜÜY2Ê7 ;4wawµµµ!li!;l!;i.iciicc;;;!;;;!wwhk-µlio E1÷§ç444çžž444ç44çççiccççg;w;iggççla››µ;;Xk?k-c4ç!hhhhhnan-›l;g¤¤ciic¤w7€a;þÛË77˜éhux¼¤k¬h??hÈËÜz˜ÊÜzÜÊËk›È¬´kÈkh¬¬âC׊ŠÖÖÖOÝ×C%P‰PP‰‰‰‰‰PPêêêßê‰GGæ+>±¸Èkkkkkh-h›ksДè袼gç§žç§.a!°°°9°ÿ°!;;.cc;l;!;;;!!µ,C&ŠŠOÖÖO¾Ý׉PêPPPPPêPPPPê·«bÕŽ9¨¨|-µl;nk?k-i44!h¬¬hha›-h,C×ݾOÖO¾Ý&CJŒŒ‰‰‰PûßûûŒPêßßù GNVvz{€Èn´¬´´Èkh¬¬¬µ\×ÝŠ¾OÖèèOì^^‰‰‰P‰P‰‰Pêêßßêê«ÒœæS+>¸Å ÈkÈhh¬h›kÐаjÛ}fuOOOè__,,,__•èÖO¾ŠÝ&Cß(ßßßßêPê‰ùGb†`H §öq÷§ç444çžž444ç44çççiccççg;w;iggççla››µ;;Xk?k-c4ç!hhhhhnan-›l;g¤cic;g¤ÐЛ;þÛ{7ÆØ˜é´Ão§k¬¬??hk{Üz˜{½zÜÜ€ka´-kkkkhh-h;;;;;i;!!w!ci;!ll;;!wXnnn;§ Eqíf44ž44çç444ççž4444çgciiiicgcçç;Xn-µçc-ÐÅk›!!nk khhh´ha!;i;cçç¤a´Y¬)µËs~{ÍÍ Ãw{ÆÐ{ÊV˜Ø»½½z˜ÔÑkkz»Ê2sÆÐIÖC&ÝŠ¾OÖO¾Ý&&‰‰P‰‰PêP^‰‰‰PPßêêùÒÉæ+>>±±ÆÈkkh-›-›kÅ?È…Zçžž§çç;;!!!w!;!!°!!cçg.wl;;l!!nð‚C&ݾOÖÖO¾ŠÝ×CÚ‰‰P‰PPPêPPêêꉷ«ÉWÕH|¨|›-µaÐ?´›l!ak ? h¬¬hð‚C׊¾OÖOŠÝC5û‰‰^‰P(ŒûßûûûßêG=vAVAØY2kÈz½ÑÑÑsƱ{Ëå,C&ݾOÖOOŠŠø·‰‰êêPP^‰PPPPPêß««œS+s±ÆÅÈkkh¬-aµ´ÅÆÈlÛ xu¯àоOè__,,,__•ÖOŠÝ×êßPPPPPP‰^^Gb¹S`Äo 44ž44çç444ççž4444çgciiiicgcçç;Xn-µçc-ÐÅk›!!nk khhh´ha!;iic4ç›h½-)µ€Ë~}÷}{?7{ʘ˜Ø»½½Ü˜Ü½»kwkz½ÑÊ2s77¤c¤ççcill!;iç¤cg;;;;l!!µµµl°if Eã4ž4ž4444444444ž4çc¤ccc444çžfiii;!;žx›¬h-w;¬µhÈ? ´h-h-µ!liiiii.i›-Ñ»i17ÈÊÜé~4ÃÛ¼7€{YY˜½½zÜܽܽØÊkh{z½Ø»ÊD•×ÝŠ¾OÖÖO¾ŠÝ&C߉‰‰êêP‰Pê‰P‰ê‰êê«GœæS>>sбÐÅh››ah Ðaî'u¼ff§cccc...333;!!wli¤¤i¤;;;;;!wwµmC×ÝŠÖÖÖO¾Š&C%·ê‰P‰êêPPßPP‰·^øb¹Ïƒÿ!.ÿw;çžo›-h›!;w¬µhk kh¬âÝ×ÝŠOÖÖOOŠÝ×ßP‰^‰^‰(ßûßùÒGévÔzØÊÈhÊܽػÊY2C׊ŠOÖÖOŠ&·øø‰‰P‰‰‰ê‰‰‰‰êP‰êÒGæå>>>ssÐ h-a›µh еà Ùí¯×&ݾOè•_,,,__èèÖOŠÝCC[ßPßßPêê«É¹"`Ï|Ä<¶¥Í4ž4ž4444444444ž4çc¤ccc444çžfiii;!;žx›¬h-w;¬µhÈ? ´h-h›µ!l;ii;i;ia¬Ñ»i1ÆÈ{zéz4uxÐÐÊYYzؽ½ÜÜzzzØ{ȵ´Êܽ½YÊËËçç¤cçc.w;!;gccci;;;;lµµn›µ!°cjã¥Ã44ž444ç44444çcç4žçç4ççj¼44i;g ¢ug;;;lµµ-›hkk¬¬µl;;l!l!lµnaËYn б{YV;uoÍfÈËÑܽz~YYz~~z~~½Y€hµh?½ÜÜzz~½»,C׊OÖÖO¾ŠŠ&JP‰‰êP‰‰‰‰‰ê‰‰‰^^ÒGæå’ss±±?ha›-wµk ÐsÅi$''''txox§4¤¤çžççcccc;!l!!.gcçici;;!wwµ*ÖC&ݾOÖO¾Ý&C%‰PPPêêPPPPêPê‰^^RW"`eÄÄžçiig§ ¥Íiw;;;!µ››¬¬´´ ÖC×ŠŠ¾OÖÖOŠŠ×CŒP‰‰‰^‰‰ŒŒŒŒßûßêÒ===vzÔܽYs´X-?½z~z½½~YØY0C×ŠŠ¾OÖOÝ×p^^‰P‰ê‰ê‰ê‰‰êê«É¹Så>>±s?´›a¬!µk?ÐËÈ;íÙ6CCCÝŠ¾è•_,__•èÖOŠÝC(PPßêêꉫbœ†åÏŽ°u¶¥už4ž444ç44444çcç4žçç4ççj¼44i;g ¢ug;;;lµµ-›¬kk¬¬nl;;ll;!;nµsYn Ð7ÊY˜V;ÍÃÍíÛ§ÈYz½½ÜYYz~z~~zYдX-?½Üzz½½½4ccci;!;llig¤¤çgi;i;w°---anç§ ã ož§ž4c4fžž礤¤ç4ç4çic4j¼§žiic;;ç÷qq¢}¤;;!w!µµhÈh-µ;;;;;;;;sË-µ7YÐѽéxu¼xí-ËY½ÜØØ~Üz½ÜÜÊ7´--kÊzY»ÜÜ„C&ݾOÖÖOÝ×C5ßê‰P‰P‰‰‰‰‰‰···«Éœœå>’¸?±Æ h›-hXhÅÅ?ËЬžÃÛ ¼fxjçcç¼4cccçi;!;w!;igcçi;;i;!µ›Ž•C×ÝŠ¾OÖÖO¾Ý&‰‰‰‰‰P‰‰êêPꉉ‰øÉbQƒÄ33.ii;lç÷ºq÷užg;;;!nhk¸•×ݾOÖO¾ŠÝ&CJŒ(^‰‰‰‰‰ûûßùùÒ==vvÔzÑ7h¬h´{½ÜYØÜÜܽY]•×ݾOÖÖOOŠÝ&%‰‰‰‰‰ê‰‰‰‰‰PꉉGɆ+>±??? h››-µh ?€Ð¬ÿB×C×ÝŠOè•_,,__èÖOŠ&×C5êPP‰ê‰··ø«ÉG¹"ÏϨÿç¶Ûjž§ž4c4fžž礤¤ç4ç4çic4j¼§žiic;;ç÷qq¢}¤;;!w!µµhÈh-µ;;;;;;l;µµ€Ë¬7½ѽéw¼}xx›ÐËYzV½ØØ~Üz~ÜܽÊ7h¬¬hÊÜYØÜܼ§çi;l;µw.iic4¤;;i;wX-¬h¬--j ºífž§§§§žžçç4§§žžž444ç4žžccž§fw!iil¤¤Í¥Eº÷Íxc;!µa--kh!;!;;;;!l!!˽kͰ?½72½éÍÃíÃ}±s»V½ØYzÜÜØÐ hh´´±Yܽ½½½½r×ݾOÖO¾Ý×((ûûP‰‰ê‰‰êP‰ê‰^GÉɹå>±¸ h-µw!w¬Æ7?€€ !f ¥ }j¼f§44fuo§;lllwicgc4ii;;!-hÓC׊¾OÖÖO¾ŠÝ×pêPêêP‰PPPPPPê·øøb†ÕÏ9ÿ–Ä;ilc¤u¶Eq÷Ã4¤lµ--ÈÎÓC&ÝOÖÖO¾ÝCû(‰‰‰‰‰^ߌŒûûûûßùÒ===VvÔ hhh´YÜz½½zzܽ½ÓC&ÝŠ¾OÖÖŠÝ&êPꉉ‰‰‰PP‰‰ê^^GÉœS>’’¸? ´-µ¬77€€>%C×CÝŠOÖè__,,,••èÖOÝÝCC(ßP‰‰ê‰^GÉbœ†å’¸¨.¡¥fž§§§§žžçç4§§žžž444ç4žžccž§fw!iil¤¤Í¥Eº÷Íxc;!µa--kh!;!;;;;l;!€Ük°Æ½±2~éuuo}íË»~˜½Y½zÜÜØÐ hkhkÐÑܽ½½½uü§cµna;iggc¤cgi;;wµ¬h-k›ià ÷u§fff§§§j§4j§§ffff§§§fjf4¤ç4ççi;i;icfxÍ ºãqÛxžg!›kÅhµllll;l!!;lilËzl7{{Ëz˜›coÃÍiYØÜY½V27kkÈ k±»½~~~dC×ÝŠ¾OÖÖO¾ŠÝ×Pß((ßꉉ‰‰‰‰ê‰«É¹"å’>>Å´---›µl!n?sÐÐËÐ-¶ íÃf§§4çžjxuü§¤!Xnµ;iccçc¤ii;l°µ”&ÝŠÖÖÖO¾Ý&C쉉‰‰‰P‰‰‰‰‰‰‰‰^RbWÕÏÿÿ.;;.;ijoÍ ºãq Íxi!›´ÅmC&ÝŠ¾ÖÖÖÖ¾ŠÝ&CûŒßPê^‰‰‰PûûêêùG==vVVÑ7k´ k±Ñ½½~~½»C×ÝOÖO¾Ý×CêßûßP‰‰‰‰‰‰Pꉷ««É¹å++¸‘h--awllaÅÐsªCC&ÝŠ¾O••_,___•O¾Š&C5êPêê^^«GÉœ†""’Ï?¨ÿjÛ¢ufjf§§§j§4j§§ffff§§§fjf4¤ç4ççi;i;icfxÍ ºãqÛxžg!›kÅhµllll;l!l;il{~4l7ËËÜ›¤¼Ãíc±ÑÜz½Y½2?kkk ksY½½zz}uujgµh››´¬iiciccci;;l!Xaa´-;Í Ûoj¼§j¼jf§¼¼¼§f§§§§§jooj¼¼§çç;¤ccii;if¼u¥ ¥¥¥÷í§;X´-!!;;i!!l;cw»Ñw;µ ÊYÐØË..Ãü}f7½Yz½ØzÅkkÈ k 72»˜,C&ÝOÖÖÖÝ×Çûûûû(߉‰‰‰‰‰‰‰^^Éœ†åÏÏs±È´´k´aX´77Ð{Ê?!Ã¥¥ÛÍjj§ž4fÃÃÃujga¬›-h¬µiiii¤¤cci;;llw/&ݾOÖÖO¾ŠÝ&C%‰‰PPPê‰êPPP‰‰^øøbWQ9|.3iii;i§¼¼Ã÷ ¥¥¢÷f;°´/Ö×ݾOÖÖOŠŠ&CôŒß(‰‰P‰‰‰ŒûßßùG==VÔ{¸kk ÈÅkÈ7{Ñ»ÊBOC×ݾOOÝ×C[êê(((P‰‰‰‰‰‰‰‰‰ù^b¹S’’>±È´h´´›µµhЀI×C×ÝŠ¾Oèè__,,,_•èÖÖOŠ&CôêP‰‰^^«Éb¹†ååÏÁ‘Á¨!u ¼¼¼§j¼jf§¼¼¼§f§§§§§jooj¼¼§çç;¤ccii;if¼u¥ ¥¥¥÷í;X´-!!;;il!;.g!»Ê;w ÊØ±ØË;.xÃo}ͧ7½½˜½ØzÜÊÅkkÈ Åhk?sÑ»½¼ÃÍuc›h-kkkµ;ggcg¤ççci;;!www-›; f¼x§¼¼¼¼ffff§§§§§fjf§§ž§¼¼¼ou}¼§44;çgw;icç44¤ž}ÛÛ ¢ Ínµw;;ii;!wig4!Yk;n.2YÐÊ ¼g}xíÍÍ ½Ê½V˜é˜z½½Ü½skkÈ k?Ð h ÆÐËYV‚C&оOÖÖOOŠŠ×C5ûŒŒû(߉‰‰‰‰‰êꫫɹåϸ¸{sÆ k-°kXk?72ØÊ›§íÛíuÃÃxf¼}oxÍuc›k-´ÈhX;ggic¤¤gc;;w!…C×ÝŠ¾OÖÖOOŠÝ×׉ꉉ‰‰ê‰‰‰‰‰‰‰^RbW`Q9;ÿ!;icçç4žç}Û ¥ ÍaúC×ÝŠ¾OÖÖO¾ŠÝ×5û(‰P‰^‰‰^‰ûûßùÒÒ=VvV{kk ? ´ ?ÐYV½ÊÞ,C&ÝŠOÖÖO¾Ý&ßûûûûûßPꉉ‰‰ê‰«Àœ"`’’{ÐÆÅ k-X´µk@ÝCC×ŠŠ¾Öèè__,,,_••ÖŠÝ&CCC[‰P·^^GÉb¹`ÏŽ‘¬´|; ¼¼x§¼¼¼¼ffff§§§§§fjf§§ž§¼¼¼ou}¼§44;çgw;icç44¤ž}ÛÛ ¢÷Ínµw;;ii;!ig4wYh;a.2Y€ÊkfgÛÃíÍŽÔ˜Vz½½Üz~skkÈ È?ÐÅ´Å?Ð{YÃxÃxžla›--›;gcgiiccgigcg;l!µ›´›¥íÃff§j¼j¼¼Ãff44¡ççgç§ff¼x¼§ç¤;iiii;c44§ç!wcfoÃÍ}};iciic;çg;c4nY»h› »Å2Yž§§Ã} Y{z˜V˜~~Vz??7kk? ??ÅÅkhhkÐ0&×ÝOÖOŠÝ×C%ŒŒ(P‰·‰‰‰‰ø«^GGæ"’Ïs€Ñ{Ð˱µ -w°k7sØÑsl  x}¼jf¼}xÃÃxžln››--!¤cicggcgccig;;w,C׊¾OÖÖOŠÝ&׉‰‰êêPPPPPêêP^^^Éb` ||ÿ!;;!i44flc¼oÃÍÍí},C&ݾOÖÖO¾ŠÝ×CŒ‰‰‰‰‰‰^‰ûûPêùÒ===A¸Ð ´? ??? Èkh´7ÐËÊ‚C׊¾OÖO¾ŠÝ&ßûŒŒŒŒPP‰^‰ê‰^«^GbS+’s+²Ê±Ë7w´-w*¾CC&оÖè__,,_••èÖÖŠÝÝCC5ꉫ«bbÕ`ÏH¨¨|¬´›¤ ç§f§¼¼j¼¼Ãff44¡ççgç§ff¼x¼§ç¤;iiii;c44§ç!wcfoÃÍ}};iciic;çglcž›Ø»Ë´› »Å»Y4f§Ã} Y{V½˜V˜˜~zéz?Å7Èk? ??Å k´hhÍx¼ç;l;wµwlcgiggggggiii;;akXžíÍüj¼§§¼fffff§žž4žžžççç¤gig¤§j¼uj4i;;ii;;¤f§§!µ!¤fÃÍ}} ¼ž4cic.cc;¤›»z»Ð?ÐYÐÆØ;44oÍÃ}í YÊÜÔV˜˜VÜV€´hÈk´k¬¬-h-¬h¬¬*ÖC×ÝŠ¾ÖÖÖO¾Ý&CûŒŒŒûßPꉉ^‰øbb¹œS>¸‘‘Æss7h´¬›´ÈнYYk4ÍÃÃÃo¼¼ÃÃÍ}}¼ç;;;µwliggigggggggii;wð‚C×ÝŠÖÖÖO¾Š×Ú‰PPPê‰PPêßêê^øRüÏQ|µÿ.;;¤§ff§ç!µlc§fÃuÍuÍí÷Ã$&ŠŠOÖÖO¾ŠÝ×ôŒê‰P‰^‰‰^Œûû ùÒ==N+Ák hkk--¬hh--hhnn›hâ&×ÝŠ¾OÖO¾Ý&CJßßûû(ê‰ê‰‰‰øøÉÉœåÏÁȱsÐsËд´ŽèCC&о֕__,,__•ÖÖŠÝ&CCCßêê·^«øb¹"Õ`H|99›|kažÍo¼fj§§ffffff§žž4žžžççç¤gig¤§j¼uj4i;;ii;;¤f§§!µ!¤fÃÍ}} ¼ž4çcic.cci¤¤›Yz»Ð?ÐYÐ?Ø;4žoÍÃÍ YÊz½V˜VV~Vдh k´k¬-¬hh--¬¬Í}occcg;.;;icciigigigggi;!w›È°xooooo¼§ffžž4ž4žçžcççc;;;ç¼ožgl;ii;icxü¼w›awcçfoxÃÃ}÷Íofžçgçcç4g›ÐÑÊ{±ÐËV›z-ç}}k»Êzؘ˜˜Véz7¬µ››-h›na›-›--h´¸•×ÝŠ¾OÖÖO¾Ý&ÇûûûŒûP‰‰‰^øbüÕÏÏ‘¨››´ÅÅÐËÆhak ?»zË!÷íj¼o¼¼¼ÃuÞccciii;;icgigiigiiiii;w'&C׊¾OÖÖÖ¾Ý×Cìꉉ‰‰PêPêßêPP‰^^bWÏϨa!;;coü§w›nµgç§oÃoÃu ÍîC&ÝŠ¾OÖÖO¾ŠÝ&[(PPP‰‰^‰ŒûûûßêÒÒ==+k›››¬h›µ›-››-hh‘hµw*&ÝŠ¾OÖÖO¾ŠÝCìß(ûßPP‰‰^^øbWÕ`Ï‘¬|´ÅÅÐË+ÎCCC&о֕__,,_•èÖOŠÝ×CCê‰ê«øÉbW†Õ`Ž9°µµµ›ÈµÃo¼oÃoçffžž4ž4žçžcççc;;;ç¼ožgl;ii;icxü¼w›awcçfoxÃÃ} Íof4çgcç4žca7ÑÊ{ÐËV!›½-çç}}Ík»Êz½˜˜V˜˜VÜ7hµ-›-h›a›--›¬hhÍxžg..ig;i¤¤iiigigi;;cil;akÍžfj¼¼§ž44žç44ççççcçççgi;;i¤çžž;wi;;igç§ÃÍüž;ah¬µ;¤ffÃÃíu¼§ccçç4§§žcX´ÐÐËËË{ÊiÜ ç4ÃíÍí-ÑÊ»½V˜é阘z7-wµ›-a›-¬¬¬hhh?kÎÓC&оOÖÖO¾ŠÝ&C[ûŒ((߉^^Rbƒƒ›aµhÊY7kk 7ËѽzÈÃ¥ ÷ox¼f¼x}ÍÍͼ4gi;igiiggi;ggiigiic;l\OC×ÝŠ¾OÖÖOÝ׉êPPPPPPPPßßꉷøbW†Õσ°!.c§}Ãož;a¬-µl§jxÍuMO×ݾOÖÖOÝ׌ûêꉉ‰‰^Œûûß ÒÒNv+¨aµa-a---h-¬hh?k|X|,C&ŠŠÖÖOÝ××ßß((ûŒûßßê‰^øRüQ9´|°a¬Êz×ÝŠOÖè••_,_•èÖOÝÝC×C×êê«øÉÉW"`ÏŽ›9ÿÿ!aÈž§§¼xf§§ž44žç44ççççcçççgi;;i¤çžž;wi;;igç§ÃÍüž;ah¬µ;¤ffÃÃíu¼§ccçç4f§cµk7ÐËÐË{Ê;Ȥ¤4Ã-Ñ»½V˜é阘zÆ-µa-a----h-hhož4ç¤iiggiiiii;;i;i;iii;;;µhuç4ž§4žžžž44ž4ç4ççç¤cçççc¤ci;içži;;;;iccžfoí}uf!-hhnlc4§¼Ãx§žç¤çç4;µ-€2Ñ;-˜±¤ggf ÑÊѽz˜ééV˜˜½?nµ--h-hhhhhh´ÈÈ”C×ÝOÖÖO¾ŠŠ×5ûŒŒŒŒûß(ê«ÉWHƒ ÿÿ;ci¤c?»ØÐÈh ÑYY½Ëg¥¶ íÍoj¼oÍo4ç¤iicgi;cci;i;;ii;;;;;9•C&ݾOÖÖO¾Ý&׉PPêêPPPêßPPPê·^Éb¹"Ï‘9°.cžfo}u¼!-h´a;gç¼Ãç,C×ݾOÖO¾ŠÝ&û‰PßP^‰^(ûûûßùùÒNùv±-a-hh-hhh-hh´ Ȭ-µÎ×ÝŠ¾OÖO¾Ý&×ßßûûŒŒ((Pê^øb†Qƒƒƒ!.;¤cX0_×ÝŠOÖèè__,__èÖOÝÝ&&݉ê^«øR¹¹"å`H9aÿ!!!µ´°Ã3çžžžžžžžžž44ž4ç4ççç¤cçççc¤ci;içži;;;;iccžfoí}uf!-hhnlc4§¼Ãçžç¤çç4;µ-±Ð€ÑÑ;-˜±cggfwÊ2»½½ééVV~?nµ-¬h--¬hh-hh u§ç¤iigicii;.g;i;i;i;;!;;;!-w¼gçççççç4ç444ççžççc¤¤cccççcgi¤gg;çfži!li.cg¤4§¼§xoxÃ;µ¬k¬nl;¤fÍxžj444žç;µ¬ÊsÑÑ?Ã;?zi;;çÃ÷i»2½VéV˜éNé€khhhh¬h´kkkkk??6Š&ÝŠ¾OÖÖO¾ŠÝ×ûûŒßßP^GɆ`Qÿ–Ä!.icç4w?2Ê€ÆÆÊYʽ2°º÷¢ ͼox u§44¤iicgiii;;c;;iiiiii;;;;ÎÓC׊ŠÖÖÖO¾ŠÝ&ô‰êPêêßPPPêêP·«Rɹ"ÏQa!.–§§o¼xxž;nhhhnwi¼Í甂C&ŠŠÖÖÖO¾ŠÝ×5ûêêPP‰‰^(ûûßùÒÒ={ hhhhhkk k ?¸ÆÅk0C×ݾÖÖO¾ŠŠ×CJß(ûŒŒŒûßPùGb"ÿÿ!;icçýÝCCÝŠÖÖè•____èÖOÝÝ××COP‰·^^øÉœ¹Õ`Ï‘|9°ÿ°!!!µ¬µ¡;.3cç3çç4ç444ççžççc¤¤cccççcgi¤gg;çfži!li.cg¤4§¼§xoxÃ;µ¬k¬nl;¤fÍxžj4444žçlµ-{Ês»»?Ã;?zËi.;çÃí¢;ʻʘé阘˜NV€k-hhhh´k´´kÈȼžf§ii;;§;;il;;.;i;.;il!!°!4c3çççc¤çc44ççççcgcççcçccicci;çžç;wli;cçžfofç4ž¼Ãj¤nhhh›µ;c¤ž44ž44¡4ç;›kËÊ€»»°ÍcË»;;;;§¥çË»2½Y~ܘ阘VééYÅk´hÈÈ Å? ???ÞC&ݾOÖÖO¾ŠÝ×CŒŒûŒŒŒŒŒûê^«œ†ŽƒeÄ!;iicž¤a 7Ë€ÑÑ2{Èç ¶ ÍÃu}¼jf¤ii;;cfilil;i;;;;;!;l!m×ŠŠ¾OÖOŠ×Cì‰êPPPPPêPêêPê·^øÉb†`H9ÿ–žf§44ž¼Ã¼¤ah´h-;¤ç§§ž$&&ݾOÖÖOŠÝŒßêß(‰‰^PûûûêùùùNÒA± k ?Á ¸±7¸>ss>I×ݾOÖÖO¾Ý×%ß(ûŒûŒŒûŒŒßPê^«œÕQƒe°!.;.”ÓCCоOÖè•___•èÖÖŠÝÝ׊êêÉbWõ``H|9µ°!!°!!µa9a.;...3ccccç44ççççcgcççcçccicci;çžç;wli;cçžfofç4ž¼Ãj¤nhhh›µ;c¤ž44ž44¡žç;ak2s»YÍcË»Ë!;;;¥ç€Y2zYܘéVVé³YÅkkh ÈÈ ?Å?Û¼xž;;-µçí!l;;;;i;i;l;;wwlccçççccccg¤ççç¤ççic¤¤ccççc4çç4çc4fg;;;.f¼x§ç;cÃj¤lµ›hkkaw;.cic¤cc4çç44¤!hÐËÐØ½içËÐËw;il¤Íº4ÐØÑz½Ü~˜˜Vééz ÈkÈ7 ?? ?Å?€€€,C×ݾOÖÖO¾Š×CyûŒŒŒûŒŒûûŒûêGb¹æS‘°!;c;lc4ÅÆ7?ÐÊ»Y»»n§x¥ uÍÛÛ¼¼íí4;;›çí¤!;;;;iiii.li;w/OC×ݾÖÖÖO¾ŠÝ&C%êPPPPPPPPPPêP‰øøÉœ†`H9 –oç;¤Ãjlµ›hk´›!;i¤¤FOC×ÝŠÖÖÖO¾ÝCyêßPPP^^PŒûû êùÒN  ‘ 7?Á77±¸>Ñ+Ñ++sÓC&ÝOÖOŠÝ&×ßßûŒŒŒûû(߉«Éœ¹Ï|°ÿii/Ö×ÝŠOÖè••__,_èOOŠÝ¾„­‰ê‰^ÉåÏ||°ÿ!ÿ!°ÿa||¬|ÿ°ÿÄÄ.ÿ.ii¤ççç¤ççic¤¤ccççc4çç4çc4fg;;;.f¼x§ç;cÃj¤lµ›hkkaw;.cicgcc4çç44¤!hÐÐË€içË€w;;!¤Í¶žÐYѽ½~zV˜˜Vé˜Ü ÈkÈ? ???? ??¥gçãµµko4;i;;;.iiiii;;;cççççç¤;;c¤¤iii¤çcccç44çç4ž4çgçžç;;ic§¼Ãx¼cgg4f§iµ›h´--›µl;;iccç§44¤4ckY{»½2ÃlÐz2›iwµic ÛkY˜»»Øz˜VVéé³éN~Ƭk hÈ?Å?Å ?7ð‚C׊¾OÖÖO¾ŠÝCC[(ŒûûûŒûŒŒŒûûßêê«Éœå+¸µ!µµ!!;k? ?Ð7ÊË?h!c§§§j} ÷Û¢gÃEnkµÃ4;il;;;ii;;;;lw…C×ÝŠ¾OÖÖO¾Ý&&‰PPPP‰PPPê‰PP‰^^GÉW`H9Äç§#§cgi4fiµ›hh-¬aµl;;;ÿ•×ݾOÖÖOŠ&%(P((ßP‰^Œûûûßêù ÒÒv{‘Á?‘ ¸’>>+S²SS+×ÝOÖO¾Š×CôßßûûûŒûŒŒŒßê«GœæS’|°µ°Î×ÝOÖèè•_,,_èÖO„‰‰øê«ùbÏ|||a!ÿ;;!°a|¨‘‘99ƒƒÿ!ÿ.3!;c¤¤iii¤çcccç44çç4ž4çgçžç;;ic§¼Ãx¼cgg4f§iµ›h´--›µl;;iccç§ž4¤4c´YË»»ÊíolÐz2›iwi¤ ´½»ØÜVVééé齯¬k h Å?? È ¥4g¤¥a?h h¤¼4;;;;;;iiiiii;l!;¤çç4çççligcccccçcçççççç4ççž44ž4§¼x;;iç4fjjo§ži;¤ž4;a-hh¬-aµwlii¤çžžçgci!kÊÊÐÑYÊ}g½»-i;!XfµÑY»z½½˜VééV7hhhhh´ kÈÈ ÆÆÐâ‚ÝC×ÝŠOÖÖO¾Š×Cû(ŒûŒûûûûûû(û(ßPùGœ¹S+¸9;°!wlk??±Ð7ÐÐsÐÆ´ccg§} ¥4c¥›?h hco4;;.;;.;iccgi;lw,C׊ŠOÖÖÖ¾ŠÝ×CP‰‰PPPP‰‰PPꉉ^øøbWåe–ž§f4¤ii¤žž;n-h¬-¬nX!;iiÎÓC&ÝŠ¾OÖèÖOŠÝßêêßß߉‰(Œûûßß ùù =+Á kÁ?¸’’ååæS¹âÖC×ݾOO¾ŠÝ&CÚPß((ûûŒŒûŒû(ßûûê^GG¹S>¨°µú,C×ݾOÖè•_____•ÖO¾•ŸPêêøê«ÉÕH‘a°!!ÿ;ÿ°ƒ9|ŽÏÏÏŽ|ƒƒÿÿ;°igcccccçcçççççç4ççž44ž4§¼x;;iç4fjjo§ži;¤ž4;a-hh¬-aµwlii¤çž4çgci!k»Ê€2½Ê}g±½»-g;w!X§nÑ»Y½z~˜˜Vé³VN±hh´¬´kÈ È ÅÅ ui;l}n€ËËÅç4g;l;ll;l;;;;;l!lcgcç4礤;iii¤cçcçççç444ÍÍü4ç§¼§§f§çiicc¤i;n--›anXX!.i44çççg;l!hнËYY{iÆYY ;i!hl;!{ѽYzVVé阳˜Ëk--h¬hhhkk ÅÅÅÐ@ÖCCŠŠ¾OÖÖO¾ŠÝ×C((ûûŒûûûûŒûûûPßß«bœæS’a;ww!°kÅÆÐËб7Åkµw!w;jÛÛÛ¥xi;;Ín€ËËÅççc;;ll!!;;;;;;lnmC&ŠŠ¾OÖÖOŠŠ&CÚêPP·‰P‰PP‰ê‰^øøøb¹Õ9ÿ3–§§4çciic¤;;µ--›nnµ°!;.$C×ݾOÖèèÖ¾Š[êP((ûßßߌûûûûûßûßêùù=æ’ÁÁ‘ÁÁÏ’ååSSœæœ—•C×ÝOÖÖO¾Ý&%êß(ûûû((((ûûß((Pù«Gœ+°m,C׊OÖèè••___•ÖÖ_­‰Pê‰øß«œåH99a°ÿ!°°°||‘Ž’`åÕ’`Žƒ9ÿ°iii¤cçcçççç444ÍÍü4ç§¼§§f§çiicc¤i;n--›anXX!.iž4çççg;l!h€Y{»Ø{iÆYY ;;wµh!;lÊ»ØØ½˜VVééV³Vsk---hhhh´k í žc;4!¬zÑ wii;;;!!!ww!;!!!!wwl;;.c¤çcicicgc¤ccçççç444ž§jž§§oooojjžf¼f§4ž4ççciccccX--aµµµa!l;¤f§ç;l!w›h2€ÊÑ?÷ºçkÊ7µ;;l!!{ÊÊ2½½V˜˜V³éé2ÐÆÅkhh-››-¬h Å+•&ݾOÖOÝ×CôûûŒû(ûŒû(Œ((ßêêùÒœæS’¨ÿ;!;µµ´?7ËÊ7€ÐÆÆ haawX;o¥¢ ÷ž¤l4!¬z2 wig;;l!!www!ll!l!!'&C×ÝÖÖO¾ŠÝ×C%‰‰êPP‰ê·PP‰‰·^^øbWÕeÄ–ç44ççcccciµ›¬anX-w;; Ö&ÝŠ¾OÖè•Ö¾Š(êßß((Pßûûûûßêù ÒÒ²å>>’’’å"湜GGGGGG‚CCÝŠOÖÖO¾ŠÝ&êß(((ûûûŒ((ûßßßêùGGœå‘ÿOC&ݾOÖ••__•_èè„ø‰øP‰^««Ò¹`ƒaÿ°µa››¨HÏ`"õ††õ"``HQ|9ÿicgc¤ccçççç444ž§jž§§oooojjžf¼f§4ž4ççciccccX--aµµµa!l;¤f§ç;l!wnhÑÐÑ»?÷ºçk27µi;l!!Ê{Y~˜ééééY€ÆÅ h---a--hí¥¼§¤;;i7Ь;;!!;l!!µµ!w°!;!l;i¤gcc¤cgcccççç444§j§§fjfžž4ž44xÃx4çççcççç¤l!µ›¬›-¬¬n!if¼4çcl!!nбYYÅÛEžÈ{Y7µ;il;µ;!7½Ê2½zܘ˜é³éÜØØ½Y±Èk¬-›aµah´´ÈÎÓC&ÝŠ¾OÖO¾Ý×C[ûûŒûûûŒûŒû(ûßPꉫG¹æ+¨;;!laak?ÐË{7Ë7?? hµµwµlx¥¢ ¥j§g;li7Ь;;!;;;!!°*OC×ÝŠ¾ÖÖÖO¾Ý׉‰PPP·ê‰P‰‰‰‰‰·øb¹9eÄÄ–4¡çççcçcç;!X›---hhwýC&ݾOÖè•èèÖOŠôPßPP(ßߌŒûûûûûûûß ßùÒ==væ""""††œbGGGG«ÀÀ„ŠCC×ݾÖOŠŠ&Jß(ûûûŒûŒûûû(PßßêêùÉS޵…OC&ÝOÖè••••••••àø‰‰^‰^··GbÀGœ>a|a!a|¨‘Ï`åõ¹œbœœbœ†ÏH|9ccgcccççç444§j§§fjfžž4ž44xÃx4çççcççç¤l!µ›¬›-¬¬n!ifj4çcl!!nÐ7YY ÛEžÈ{»7µ;;;;µ;!7Ø{YY½ÜVéé³NéÜYYYY±Èkh-›nµn §f4!µc›Ë½±›!l;l;lXXµµµn-›aµ°!;cccigiiccç4çž§§¼f44§§§j¼o¼§4ç4444jü§4žžžçcçççccçg!n-hk¬›µ!çjcilµµX°hkÐÐ-Ex ËÈ;!›iw´Y{YYzVVéNN騀2Ñ{s7Åkhhh¬-›¬âC×ÝOÖÖO¾ŠŠ&C5ûŒûûûûûûûûû((ßêùG=+‘°!;;w-›k?±{2€7Å ? ¬µwX!§÷º÷ ÷jfž!ga˽±al;;!!!wµ°µXµ››››,C׊ŠOÖÖO¾ŠÝ×C‰‰‰‰‰P‰P‰‰‰P‰‰^^øbƒÿÄ3™ççcçcçc¤i!µ¬hkh-nl,C×ÝÖÖè•èÖ¾%êPßßßPßûûûûûûßûßßÒGGÒÒ=œGœÉÉG«««^«^ùrC×ÝŠ¾ÖèÖO¾ŠÝ×ìPß((ûûŒûûû(ûßßêêê^ÒGæÏa*OC&оOÖèèèèè••š^‰‰^ø‰^^^øW¹œ=S‘9°!!°°a|‘Ï’Õ¹bÉÉø«øGÉbœõåÏŽ|iiccç4çž§§¼f44§§§j¼o¼§4ç4444jü§4žžžçcçççccçg!n-hk¬›µ!ç§jcilµµXµhÈÐЬEo È!;!!aiw´½2»»½zVéN³YÐ22ÐÆÈ´´h¬ uç¬gµ?22?Xic;;;;wµwXXn›n›µn°µ!iggi¤ccçž4§§fj§žfff§§444ž§o¼f44ççcccççcçjžç;!µ---›µ;4¼i;wXXnXllµ;4¥ó hsk!;nn!;n7ʻʻ½éN³Ëk7Yzؽ»Ëб±Æ?kkh¬/C×ݾOÖO¾ÝC(ûûûŒŒŒ(û(ûûßßPêêùGœSÁ°!;;µ-- Æ7ËYÊÆh-hkhaXXµ¥¥ xžçhiµ?2Ñ?µ.¤;.;lwµ°w°naµa›Î‚C&оOÖÖO¾ŠŠ&CÚ^·PêP‰P‰·ê‰‰‰‰^øb ƒ Ä3ccc¤ççççç§j§;!¬--nn$C׊¾OÖèè•èÖ_¾ßûûû(ß(Œûßûßûßß ßû«ÉGÒùÒÒùùÒÒ«ùùêêêê··,&ÝÝOÖ•ÖO¾ŠÝ×êêßßûŒûûû((ûßûßßêùÒG¹’¨mOC&ݾOÖèèèèèÚ‰‰ø‰ø^··^^G††æAA±›!i!!!°¨Ž’Õ†œÉG^··^·«øÉ¹Ïccçž4§§fj§žfff§§444ž§o¼f44ççcccççcçjžç;!µ---›µ;4¼i;wXXµXX;l!4¥ó h€Ëk!!Xµaw;µ7Ê»2YܘVN³k±ØÜYؽ»€Ð7?Å÷÷žcµkcaÈËÊ ¤¤ç4cil;;!w!!!!ww!w;¤ç44§jž44§ff§§ž4çç4ç4¼x§ççcc4ç3¤çççc;4¼o§¤;µn-›ni4ilµµµX;ižÃíãfµ7´!wµµnµiXk2Ê{ÑY½˜VéN€-´Ë»Y½Y2Ês€€77ËÐ7kúC×ÝŠ¾OÖÖO¾ŠÝ&C((ûûû(ûû(û(ßûßêêêùÒGæÁ9!;!¬hk?±2½kµ›´h-hhh›!§¥¥í¥¥cahçX›ÈËÊkwc¤ç4.;lllll!llmC×ÝŠÖÖÖO¾ŠÝ×Cì‰P‰P‰P‰PPPPP‰^^øbWÕH9ƒÿ.3içç3cç4çc!ç¼ojžc;°›¬››$‚C×ÝŠÖÖ•••Ö•Ó%((ß(ßêßߌûûßûßßßßûûùGGùùùùùùêêßßû((êêêꂊ݊Oè•èÖÖ¾Ý×Cßßßû(ûûûûŒûû(((ßßùÒ’mÖC&ŠŠOÖÖèèÚP^ø^‰‰øø^««G"`åS»Á3333ƒ¨Ž`"WbÉ^·‰‰P‰‰^RÉüÕQ§jž44§ff§§ž4çç4ç4¼x§ççcc4ç3¤çççc;4¼o§¤;µn-›ni4ilµµµwµ;iÃãfµ±k!!µnwiXk2{Ë»Y~˜³NNЛkËÑY½YÑÊËs€Ð7ã¼ihX! shjuͼ¼ox§j¼ooxÃ}x}}} ¥ ÃÃfjž§ž§¼§§§f4žž44ž4ç4ž4ž§4giçççç4ç4ççcçj¼ç;!µµnµw;!wµXµµµµw¤Í1óqo¤a!µhi.aX›aXµ?Êz»ÊÜéN³ -ÈÐØY»Y»Ê€Ð7Ѐ7Æ,C׊OÖÖO¾ŠŠ×yûû(ŒûûŒŒŒŒŒ((ßßù«Gæ>|!.!µhh 7€Ê»YÐk¬h k› ?Ë-g}÷÷íãÛ¼ihwµw Ë€´f}ÍÍx¼Ã¼jjj¼¼ÃïÖC×ݾOÖÖO¾ŠŠ&×%·P‰P‰P‰ê‰‰‰P‰‰^^bWƒÄÄ..™ççç4ççç44¼xçlwµ-*OC×ÝŠ¾OÖè••_èÖ(ß(((ß(ûûßßêê ûûû««^ùêêêßßû(ŒŒûûûßß߄֊OÖè••ÖOŠÝ×CJPP((ûûŒŒŒûûûûßßßê««œ"ÁmC×ÝŠ¾OOè[ßßꉉø‰øøø««b†åŽ>Ñ+>´¡ffž LbRøøø^^øøøRbfjž§ž§¼§§§f4žž44ž4ç4ž4ž§4giçççç4ç4ççcçj¼ç;!µµnµw;!wµXµµµµ¤Í1Uqo¤nlµ¬i;aµ››µwn?{½Y{Êܳ³³ - ÐYYYY»2s77±Ð¢¥fina¬›- 7»Å§ÃÍÍÍÍ}ÍÍÍÍÍÍÛ ÷÷÷ÛÍj§ž4ç4jjfff§§44žç44444žçg;;çç444cc44çg;llw!!;iXX°°µcíEóE h¤ç°!!;lµµµn¬k2»ÑÑzéNék¬È ÑYYÑËÐ77ÐÐËËÐЂC&ݾOÖÖO¾ŠÝ&C5(ûû(ŒûûûûûûûûßêêêùGGA>¨°;!nÈÆÐÐ2½ÜËÈnhÅh?¬YÐh¬ç¢ ¥j;na-›- ±» jÃíÍ}}ÍÍÍÍ¡•&ÝŠ¾OÖÖO¾ŠÝ׉‰ê‰êêêPPêP‰‰‰·øÉb`Qƒƒ!!!¤çç4ç4çcc¤444ž4gi;w!ll,C&оOÖèŸÖÓ‚%ß((ßû(ß(ßßûßßßßßßßù««ùêêûßûûßßû(ûûûŒŒŒû(ßì_Oè_••èÖO¾ŠÝ×%ß(ûûûŒûûûûŒû(ûßßêêù=SÏm‚,C&оOÖÖ¿ßßê߉^‰^ø^^øøœ¹"’’>ËØÆç§¡™Äƒ`übRR^‰øø‰^øRbü Íj§ž4ç4jjfff§§44žç44444žçg;;çç444cc44çg;llw!!;iXX°°µ!cÍEã ¬c°!l;laaµµ¬È2ÑÊ»zVéÈ-k ÐÊÜYYÊ˱Ð77÷ ¼ilµ-n››´7o}ÛÛíxÃÛíí÷¶q¥¢}žc444§§¼§j§§ž44ž4ç44444ž§4žci;;ic¤çc¤cç4f444;ii;;i;!!°µµµ°l!ͺEãºw7´w!ligi.wn-¬hÆsY»Y˜¬¬ ?ÐÐYYØÑÊsÆ?Æ7ËÊËÐ0&×ݾOÖÖO¾Š×C%ßû(ûû(ûûûŒŒû(ßêßù«=åÁ›!aÈsËYz2 n!›Åh?¬?{Ðni¥÷ ¼;;µ¬a››kË7c¼ÍÛ÷oÃÛÛ ÛÙ,C׊¾OÖÖÖŠŠ×C­‰‰‰êPPP‰êPPP‰‰øÉb`Q9ƒ°ÿ!.c¤çccç4§§444iii;ii;ð‚CÝOÖèè„è,_JPêßßß((ßßßßêÇ55ôPß(û((ûûŒûŒû(ûû(,OÖè_••O¾ŠŠ&CêPß(ûŒûŒûŒŒû(û(ßßêùG¹>”ÓC×ÝŠ¾ÖÖèGêßûPPP^^^øø^Éœ¹S`6rŠ&B¦L `ëRøø‰ø^‰‰^øRRü¢Ížc444§§¼§j§§ž44ž4ç44444ž§4žci;;ic¤çc¤cç4f444;ii;;i;!!°µµµ°l!¤ÍqEEqw7k!!ligc;!X-hh?ËY»Ø˜Nh-?ÆÐÐ½ØØÑÊÐÐ?Æ ¥w;;¤w-›a µ§Í ¶jjuÍÍÍ} ÷Ûq㥼žjjjxoffž4ç44ž444çç4žž§žž4g;;;;l;.igcç44¼¼žžçgc;;ii;!X›nµnµ°l;;¤¶q¶¥4Æ½Ë -›-!;ii;n--ÆÊË»VNNY-aÈ?sÐs»»»2ËÐÆ??±€ÐÆ@OC×ÝŠ¾OÖÖOŠÝ×C(ßû(ûûûŒŒûûûûûûPê^ÒÒ=±|µ°-ÅЀЀÊY{ÐkXh-kkk»Ñµ;¥ í¶!;;¤!›aa n§u÷¥í¼¼ÍÍÍÙííÍ$C&ÝŠÖÖÖOOÝ&CÚ‰PPP‰‰êPPPP‰‰‰^øbW9°;!l;;icgç44jxžççcc;;ii;mÝ×ÝŠOÖ••_O_ôßêßßßßPêßêêô5ûûŒŒŒûŒŒŒûŒû(ûûOOÖè__••èÖO¾Ý×P(û(û(ûŒûûûûßßêßùÒ="0C×ݾOÖÖÖÖÉÀ«ßßêêêø^^ø^^ÉbÕâèŠÝÝ××ëò übøøøø‰^‰ø^^^Rbq¥¼žjjjxoffž4ç44ž444çç4žž§žž4g;;;;l;.igcç44¼¼žžçgc;;ii;!X›nµnµ°l;;¶q¥¥4ÆzË -›a!;cilµ--ÆÊ{YVØ›nk?Ðss»»»Ñ±7?¥Û.›;ic;µan›´ ;¼¥Eº¼¼Í}ÍÍÍÍ}ÃÃuÃÍí¼çͶE ff§§¼§§§ž44çç44ççççç4žçi;!l!µµw;cç¼¼ž¤ccgi;.;!µ-›aµX°wliiçºq¢ õÊzYËs7?´µwµµÈЀ»VNÊ››¬kЀsË{ÊÊËÐÆ77ÆÆ>_C׊OÖO¾Š&ôP(ß(((û(ûûŒŒû(P^ÒÒG+|!!aÈ7sËËËÑ»Ð7?n-h7hÐ»ËÆh;¼¢Û ;a;ic;an›k if¥Eºj¼ÃuÍÍííí:×ݾOÖÖÖŠÝ&C%ꉉP‰PêPPP‰‰‰‰^øbWQ9›aµµµwlccç¼ož¤¤¤i;;;w ÖCC×ÝOÖ•_••èÇÓûŒ(PPßêêê5CCCCŒûûŒŒŒûûûûû(„•OÖè_•••ÖO¾ŠÝ×ìßßßßûûŒûûŒŒŒû(ßßêÒÒæ@Ö×ÝŠOOÖÖrœb^ßßßßP‰^^øÉœâÓOŠÝ&C&ëüRø^ø^‰‰‰^‰‰^øRbWH¶E ff§§¼§§§ž44çç44ççççç4žçi;!l!µµw;cç¼¼ž¤ccgi;.;!µ-›aµX°wliiçºq¥¢xX2~½»ËsÐ?k›!µµÈs2NN-›¬ÈÐsÐÊÊ€7㥛niicigwa›h -c¶ãͧÃÃÃxuÃxuuuÃÃÍÍ;!íççc444žçç4444¤¤cgcig4ž444444c!µlwX-hh-µi¤xf¤c;iiiwa››µµµ!.ci4íºãº¥uc »YÑ»YY»Ë±Å -k7Ð2éNÈh??7Æ7ÐЀ€€Ð77ÆÆ??ÎÓC&ݾOÖÖOÝ&C[ßß(ßßß(ûû(ûû(ßêùÀG=²¸°°› ?s2»ÑsÐ7¬-k»È {½€Æ¬㢧nµi;giciw››h ¬¤ººí§uÍÍÃÃÃïC×ÝŠ¾OÖÖO¾ŠÝ××^PPêPPPêPßP‰‰^øRb`Q||a9!!°-h´-µixífçci;;c.!_C×ÝŠÖè••••èèŸPàÖÓ_ûûßyCC&×&&&×C×(ŒûûŒû((ì,OÖè__••èÖO¾Ý&%êßß(((û(ûûûŒ((ßêêùGë,×ÝOOÖõÒœGùßßß߉øø^‰«b“‚O¾¾ŠÝ&CCbRøø‰^‰‰‰‰‰‰^øbbWW"§íççc444žçç4444¤¤cgcig4ž444444c!µlwX-hh-µi¤xf¤c;iiiwa››µµµ!.cižíºãº¥Ã¤ ËÊYÑ»Y»ÊËÐÅ -k7ÐÊÜé h?Å777ÐЀËÐÐÐí¥ckc;;;.i;µa´¬ç¥11÷fff4ç¤ç¼xÃÃ;-Xi¼u4;iiicgc礤¤¤c¤gc;cž§j§§ff§ž¤;l.;!µ-k È-wíjçgiiicciwa-›nµ!!w;ig} qEq4k7Å7YÐsË{Ñ2Ê?ÆÐ{Yh7€Ð7ÐÊÊsËËË7Æ7Ðâ&ÝOÖÖO¾Ý×5(û(ßß(ûŒû(Œû(ßêêGÉœæ>›ah ÆÐËÊ»Ë7?¬a›¬ÐÐ-€½7±sµí¥gki;;;.g;µµa´¬ç¢E1¥§f§§žç¤ç¤,C×ݾOÖO¾ŠŠ××PêPPPßßPP(P‰‰‰^øRü`ƒƒ°a;lwn-Èkk-w§x¤gigccçiwaÎ,×&ŠOèèàPû¾,ÖCÇŒ[%CCCC××&ÝÝÝÝÝÝÝÝ5ŒŒŒŒŒûû(ûß,¾OÖ___•èÖOÝ&ß(((ß(ûûûûûûûßßêùGG=SÝ×ÝŠ¾Oà’œœùêêêûêøR‰ßøÉÎ,OOOOOO¾ŠÝÝ×ÝRø^^‰PPPPP‰‰øøRb†SXi¼u4;iiicgc礤¤¤c¤gc;cž§j§§ff§ž¤;l.;!µ-k È-wíjçgiiicciwa-›nµ!!w;ig} qãqÍž ÆÅÐYЀË2ÑÊ?ÆÐËʽ˜hç!7Ë€ÆÐÊÊssg!k!!!;wµ!;;!-¼¥q11¶¼4¤c;!µµž¼xxÃ}jçX›nçÛ¥Ãç..ii;iii.iiigc¤içx}ÍÍÍ}¼¼ÃÃxf4igc;µ´Å?€ cx§i;l.i4c!n¬-µllliiižf¼}¥ãE÷j¬kh7?77 h--hkkËs{Ê2ʽмx›Ð{Ëz»Y2ÑÊ{ÊÊËÐÐ7IOC׊¾ÖÖÖO¾ŠÝ×ßßû(ßß((û(ß(ßûßê«b¹"SA+¨a´7s22»»ÑÊ?k-µiaÊËÆ{€€g !k!!;wµii!›¼¶ã11¥Ãžçi;lµ”‚C&ŠŠÖÖÖO¾Ý×CÚPPPPPPPPPP‰^‰^øRbÿÄ.;3c;µhÅ?ÐÈiçc;!;iççc!›”,&ŠOOOÖÖÖÖßßy‚OÝ×&Ý&CC×&ÝÝÝŠŠŠÝÝ[ûŒŒŒŒßß,Öè_•èèÖÖ¾ŠÝ&yßßß(û((((((ûû߉^«ÉÉœæ”_C×ÝŠOOB¨Ï=GGêßßß^ê߉«­‚OOOOÖÖOOŠÝ×C¿^‰‰PP(PPP‰øøRbWå`-nçÛ¥Ãç..ii;iii.iiigc¤içx}ÍÍÍ}¼¼ÃÃxf4igc;µ´Å?€ cx§i;l.i4c!n¬-µllliiižfj}¥Eã f¬kk7?77 h›-kÈkËs{»Ê{z7jo›€{{½»»ÑÑÊÊÊÊsµhËȵµlwl;iw¥¶ãEqqÍo§§ž¤;jž§o¼çµµwgu¢fžçç¤ciiçjxxx¼oÃÍ¢¢ ¢}Íü§jžžçiµh Æ §!n;gic¤çiµ´wl!l;;ccçjÃÃÛ¶E¥¼›kkÐÐËË7?È´h¬-´722{ÐÑécu§!ÐË»Y½Y»ËÊÑ{{sªC×ÝŠOÖÖÖ¾ŠŠ&Cß((ßûû(ûŒßß(ûß߉Rœ†ÏÁϸ ¬ Æ€ÊÊÊÊÊ??k;;i4çÐÐÊé˻˵k{Åll!li!Û¶ºEEqqíÍo§žžç;î&C×ÝŠ¾OÖÖO¾ŠÝ&×%‰‰P‰P‰‰‰‰·‰‰^øRbü` eÄ––§4žçiµhÅ7 fµ;giicçi›/,ݾOÖÖÖÖÖÖOOÖôß(%,ŠÝÝÝÝÝ&&ÝÝŠŠ¾¾¾ûŒŒŒûûßà,ŠOè•_èèÖOŠŠ×5(ß(ßßûûßß(û(ûß«b¹"å6ÝCÝŠо‡9ƒHœœÒùßêßûêêûê·Ó•¾¾¾OOOO¾ŠÝ&ø^^‰‰‰‰‰P^øøRü``µgu¢fžçç¤ciiçjxxx¼oÃÍ¢¢ ¢}Íü§jžžçiµh Æ §!n;gic¤çiµ´wl!l;;ccçfÃÃÛ¶E¶xnkk7ËË7?Èhh--´22{€Ê˜iÃ!±€YYØ»{Êsʘ˜Ðhµµn--µw!¤¼¥ãqEãããE1EEE¢} ¢¢ÛxÃfi;µµ4 ÷ÍjjjjjžÃ}ÍuÃjjfoÍ¢¢¥¢ }}}Ã}ux4›?Æg.›n;g¤¤g;;gi;igi44§¼¼u÷qº Å7ËÊÊË? hnhÐË€»YziÍj;-ksË2»ÑÊÊssÊ»YY2,C&оOÖÖOÝ×J(ûûß(ߌû(ß(ßßɹ"åÏ‘Ákh¨k ?ЀŬµ!;g;çc€kk½ÐÑsʘË´µwa›¬X!¤¼¢º¶qq¶qE11E1E÷ÍÌOC&ݾÖÖÖO¾Ý×%‰‰‰‰^‰‰‰PP‰‰^^RRüe ¡¡ju}Ãuj4nÅ7¤.nn;ççcç.l OÝÝŠ¾OOOOOOOOìßßû•_ÝÝÝ××Ý&ŠŠ¾OOOOOOOOŠyŒûŒûß¿OÝŠ¾Ö••_•ÖO¾ŠÝ&ßßPßß(ûŒ(ßß(û(P^«É¹"å’Î,C×&ÝÝŠŠ‡°|9`GœÀßêßPûûà,о¾OŠÝ×C­RøøRRRøøRbüüüŽnµ4 ÷ÍjjjjjžÃ}ÍuÃjjfoÍ¢¢¥¢ }}}Ã}ux4›?Æg.›n;g¤¤g;;gi;igi44¼¼u÷ººíµ ÅÐËÊÊË7 ¬nhÐˀѽÜc¼;›ÈÐËÊYÑÊÊËÐ ÑzÊÈ›a°›aah!f÷÷¥ºqãqEEó1Eº1q¥Ã4a-4ÛxÃÍÍÍ}Ãu}Ãoo¼uíííÍo¼§§§Ã÷ ÷¥º¥ íÛÛ ¥º÷}!hc;wgç;;;l!;!wii;ici4žjooÃÛ÷º¢lÈÅ77ËsËÐ?ha¬{Ñ7ÆÊÑ{i}f! л½2{s€7Ðs»~YâC×ݾOÖÖO¾Ý×C5(ß(((ûŒû(ßû(ßꫜ†åϨ¨¨¬-¬hkÈ ÆÐÊ?-nw;ilfº¤›ç›- ËÑz2kaa°›aw›¬lf÷÷¢¶¶q¶qE1ó1E<•C׊OÖÖOÝ×C‰‰‰‰‰‰^‰‰‰‰P‰^øRbe ¡#uÙÛ ¥º¥Ã!hlwiç;;l;!!!‡,O&ÝÝŠÝŠ¾O¾¾¾Šß(ûÇÝ×CC&ÝÝŠ¾OOOOOOOO%ûûûŒŒŒŒûßê¿,O&ÝŠOÖè_èÖO¾ŠÝ&P‰êßßûûßP(ûû߫ɜ"`Ž6ÖCCC&ÝÝŠ‡9‘ƒ `†É«PßßÇÓŠŠŠŠ¾ŠÝ×CpøRRRRbRbüüƒa-4ÛxÃÍÍÍ}Ãu}Ãoo¼uíííÍo¼§§§Ã÷ ÷¥º¥ íÛÛ ¥º÷}!hc;wgç;;;l!;!wii;ici4ž¼xxÃ÷q ;kű7ЀsÐÅhn¬{Ê7ÆÊ»Üi}!k{½Y2{sÐçµÆ»ÜzsÅ-;l;iµ´hçÃuÍ÷ ¥ºã111¢º1óäU11 ;ÍÃÃí§o}Íuxxjx}Í ÛÛ ¥íÛ ÷¢ÃXËkÆ hµ°Xna!;.;ci44f¼¼¼xu¢¥h ?Å7Æ7s{ÐÅ´a˽±?7ʽµÃ íÃ4wk±ÑÑ»Ê777Ð{YYâ‚&C&ÝŠOÖÖOŠ&C%ßûß(ŒûŒûûûßßßê«b†ÕÏ‘¨›|---¬h´ ?ÑÑдµ!i.- Ƶ§xçnÆÊܽË?-;l;iµ´´coÍoxu}Ù ¢ºE1 ÎÓC&ݾOÖÖO¾Ý&C‰‰‰‰‰‰^‰‰‰^‰‰^RRü  ¡uuí ÷¥uµÈ? -›µXna-›ÞÝ×××&&ÝÝÝŠŠŠŠŠŠŠŠêêêêì×CCC&ÝÝŠ¾O¾ŠÝßßû(û(ûûûßßyCC&×ÝŠ¾O••èÖOÝ×CJê‰êPP(ßßêßßêP߫ɹ†åÏ‘ÎÝCCC×CÝ6°ÿ°Ï e†WGßÝÝŠÝÝÝŠŠŠÝÝÝÝ×pøøRRRbüüü ¡ç;ÍÃÃí§o}Íuxxjx}Í ÛÛ ¥íÛ ÷¢ÃXËkÆ hµ°Xna!;.;ci44fj¼¼ÃÍ¥¶ch ?ÅÐÆ±sÊ{€Åka˽±?72zµÃÛÃçwÈ7Ñ»»ÊËí!2z½€hgicçg;a;f4§j§ÃÍÛ÷¥qEº ºUó1óäã íuuí}¼§j¼ÃÃÍÍÍÍüÃÃÃííí Û;ËÆË7Èh-nµµ›aµµnw!l¤c4§jjouÍ ¥çk7ÐÅ?7ÐÐЀ±7?h˽2Ës»Ü~7c ¼§;-Æ»»7ÐÆÆ€»Y½dOC&ݾOÖÖO¾ŠÝ×Pû((ûû((ûŒŒ((P‰^ɆåÏH¨›9°µµµna--hÐʱ´-µw;¤ °±kí!ѽzshgicçc;›;žž–™™™§f<ííö¢ ã'×ÝOÖÖO¾Ý&CŸ^‰‰‰‰‰‰‰‰‰‰‰‰^øRüƒ–¡#íÛÛ;€ÆÐÐÈhaaX-|¬-à×CC××××&&ÝÝÝŠÝŠÝÝ&&š‰êêê„‚ŠCC××ÝÝÝÝŠŠŠŠÝÝßßßßßßûûŒŒûûßêCCC׊¾ÖÖèèÖOŠÝ×%^ùêêêêêßßßßêê^«É¹†`ÏÁ/‚Š×%aa°¨9 `œ†ÕÉÚÝÝ&ÝÝÝÝÝÝÝÝ××C×C·øRRRbüü™Ù ã íuuí}¼§j¼ÃÃÍÍÍÍüÃÃÃííí Û;ËÆË7Èh-nµµ›aµµnw!l¤c4§¼fou ¥çhÆ7Å?7ÐÐÐs7??h½ÑËÊ~z?c í¼§;-ÆY»Ë! §4-½{h-;ii?-liic44ž¼}u}ÛEͼ¥EqUU1¶¥ÛÛÛÛÛÛÛ¢ íu¼¼j¼}uo¼xÃ}íÍÍÃÍÛ Û í cÐsËs?¬›XXµnnX!cç¤4ž§jÃ} ¶ksʱ77sËÊÊÊ2Yzܘ½Y~éÜ-§Í o¤aÆ2Ø2Ð7? Æ€ËË»,C×ݾÖÖÖO¾Ý×ô(ûûûŒŒû(ßûûûê^Éb"ÏÏ‘|aµ°anµµnµ-€½ÑÈnanw¼ç7Ë!Û §ç-YYÊh-;ii?¬!;°ÿÿÿÄÄÄ3¡ffÍÛ1ZŠC&ݾÖÖÖO¾Ý×C%^‰‰‰‰‰‰‰‰‰‰‰^^øRb e –f<Û ÛíÛgÐÐËÐ7k¬›aúÞàC×CCCC×&&×××&×&ÝìùꂊC×××ÝÝÝŠÝÝÝÝÝÝCyßêêê·êßßßß[[CC×&ÝŠOÖèÖOOŠÝ×CG^«^^ùê^^êêêê«Gb†"åÏ‘|m‚ÝCCIa¬|›Ä9S==ë&&&×&&&×&&&&CCC5GRÉbbüW   ¡#öqUU1¶¥ÛÛÛÛÛÛÛ¢ íu¼¼j¼}uo¼xÃ}íÍÍÃÍÛ Û í cÐsËs?¬›XXµnnX!cç¤44§jxà ¢¤È2777sËÑ»2ÊYzܽܘÜ-§ ¼ça?ÊY2н¬4qx›7Y€shh;Ë?n!ligi¤icç§xÍ÷¶¥4j¥E¥EUó1㥠 ÷ ÍÍ}Íuüxu}ííÍÍ÷ }jxuíÛ¢÷÷¥Ãk77ËÅÈh›µµXµ°µµng44žž§¼xu ç¬Ð½ÑÊYYYؽܘVzzéé ;4}} Ã4wkÐË7Èk?Ð??ÐÎÓC׊OÖO¾ŠÝ×J((ŒŒûûû(ß(ûŒŒßêGœ"`Ï‘|››aµXaµ›ÆØz€ ´µ--k7Ë»z¬4 qx›½€Ë´¬µ;{¸|a9°99999ÿÄ3žoÛ <C×ݾOÖO¾ŠÝÝøø‰‰‰‰‰‰‰‰‰‰‰^øRbeÄžfuí ¢÷ ¢ukÆÞBâ⚊Ý&&Ý×CCCCCCCCC&%Gù«ùùÓ‚CCCC×××&&&&&CC«ŸŸ5&×CC&ÝŠOÖÖÖÖO¾ŠÝÝCÀÉG«ÒÀ^«ÉÉ«êêê«Éœ†Õ’Ž‘¨¬Î‚¾¸›ha‘>åA==œ×CCC×××CCCCCpÉbbbWÕ  |ƒ™<¢ÙEUó1㥠 ÷ ÍÍ}Íuüxu}ííÍÍ÷ }jxuíÛ¢÷÷¥Ãk77ËÅÈh›µµXµ°µµng44žž§¼Ãu 4-7»ÊY»YY½˜V˜Ü½z˜³?;çÃ} }çwÈs{ËY½;Íãºj!›Èw;žºgh!g.i;!w!!!!l4ox81c;ÃíÛºäE¶ºÛÛ ÷¶¥ }Ã}ÍÍíÃoÃx}¥¥o¼x}¢ºq¥¢÷h??Ð27 k-aµwXµh›cffžžfoÃ4Í! YÜ~YY»ÊË˱ÐÊܽ½z³V?nl§¼Ã }i´Ðs±7ÆÐ€ÆÅÅâ&ݾÖÖÖO¾Š&C%(ûûûßêßûûßê^ɆåϨ|›aµµµµµµ°›k?{½€khh¤?ËYYzl}E¶¼l› w;¢iÈa°||ϸŽH‘¨|°3foä,C×ÝŠ¾OÖÖOÝ&C‰ø‰^^‰^‰‰‰‰‰^^‰RRü e Ä–§o ºq¥¥ ¬7âOŠŠŠ&×CCœÒÒùùù·ÓÖCCCCCCCC“bGŠ&CCC&ÝŠŠOÖO¾ŠÝÝךœ¹œGGÒG¹¹bGÒGGœW"åÏH¨¨›ÎCÞk.Ð+²v‹CCàbbbœW†" <#ƒ9™#<¶äE¶ºÛÛ ÷¶¥ }Ã}ÍÍíÃoÃx}¥¥o¼x}¢ºq¥¢÷h??Ð27 k-aµwXµh›cff§žžjox4Í4!?Yz~YY»ÊËÐ77ʽ½zz³V µ;§oà uihÐs2Y˵Íq¶ÛͤX§Eão§žçil!wwµX!c}¥ã4i4í}¢111¥¥ÛuÍÛ÷ ¥ ÍuííÍux¼xjoÍí ¥÷í¼j¼Í÷¥¥E --?7?Ð? hhµ›µ›Xk;§Ã§§§§fj¼¼Ã4žgwh7ËY»Ëб?ÐÅs˜˜z˜˜éVs-µ;žçoÍ ÷4a? €»ËË@ÖC×ÝOÖÖO¾ŠÝCûûûŒûŒŒûŒûßßP(ûß꫹"’Ϩ›aaµXXµXµµn-kÐÊs µkÐʱ˽ÊYY˵ͺº簧㺡3 ƒƒQÏÏ`’’Ï‘¨a.o÷mC׊¾OÖÖO¾Ý&Cpø^^‰‰·‰^‰‰‰‰‰^^Rü ––™§u÷¥¥E -h@,¾ŠÝ&C—õœ==œ“Î_áφâ_&×CCC×&ÝŠO¾ŠŠÝ&CìS朜œœœ"""†œGGGœ"’ÏH¨9aaÎÓìÞªÑæ—5Ýü††"SåååÏ ™#ÿ|!3oíÍ¢111¥¥ÛuÍÛ÷ ¥ ÍuííÍux¼xjoÍí ¥÷í¼j¼Í÷¥¥E --?7?Ð? hhµ›µ›Xk;§Ã§§§§fjj¼Ãžž¤!h?ËY»ËÐ7?ÐÐÅ˽Vz˜VVЬn;çoÛ¥4µ?»½ÜY7wžxÍÍ o¤uE¶Íx¼¼¼j.!wµX›iÃ÷ãohhlž¼ ¥¥1ó1Eã¥Íx}Û¥¥÷ íÍÍÃ}}uÃÃoÃÃ} ¥¢ÍÃoxÍ ¢¥E¥.hÅkÅ7?khhµw!Xn¬›Ål¼u§§fj¼oxxfç;°h7{Ø»ÊÐ7sÐ??Ê~˜V˜7h-gc§oÍ Í4i´kËʽØÐ©&ÝŠ¾OÖÖOÝ&Cßû(ûû(Pêß(ßPêùÉæ"Ï‘¨-aaµµµµµn¬ €7 ¬-´sÊsÑY½ÜØÆžxÍÍÛÃcoqö§™ÿƒH`ÕÕ"`ÏÏÁ¨fÙt&C&ÝŠ¾OÖÖO¾Š&C%^‰‰^‰‰‰‰^‰‰^‰^øRb ™ffÍ ¢¥1¥ih©Ó,_ÖÝ‹’SœÎÓ& Q6‚,,ÖŠC×&ÝÝŠ¾ŠÝ&&CCå+SæAæSå’`å"¹ææ"’ÏÁk¬-aað_ÝÝè·ÏÏå`’’ÏÏ‘|3#ö¡›´h!ç¼ ¥¥1ó1Eã¥Íx}Û¥¥÷ íÍÍÃ}}uÃÃoÃÃ} ¥¢ÍÃoxÍ ¢¥E¥.hÅkÅ7?khhµw!Xn¬›Ål¼u§§fj¼ooxf;µ´7ÊØ»2s±Ð?ÅʘÜ~˜˜é˜h-µc¤§¼ u4i2Yz½Ðnç§ÍÍfÃ÷}ÃÃuxžglX°µ›;x 1¶¤k7h-l¼¼÷11UU¥}¼Ãí¢ }ÃxoÍ}ÍÍÍ}}Í ¥¢uÃà ºEqj Åk?? È´¬°;ilµµa?;u§§f¼xÃo¼¼§žg;;µÈs½zY»Ê€?kÐzÜØÜ˜é˜Ü±kk¬w.ç¼ í}g´Ë2˜ÜÐ?,C׊¾OÖÖO¾Š&C[û(ŒŒûŒûßßPPßêêùGœ"’¸k||-›anXwµXXµ-ÈȬ¬-´ÐÑË»Y½z½€nç§§§Ã÷uo–eƒ††"å>ÏQ°¡íñO×ݾOÖÖOŠÝC^‰‰‰‰‰‰‰‰‰‰‰‰^øRb #f¼ÃÍ ¶Eºf Å‚,,OOŠ%‘’Ñ==vâ_Ý5™™ eÓ,,OÝŠŠŠÝÝ×CCÞ+SSåSå’ÏHHÏååææå>±Ák¨|-›aa'ÓÖ_” ÏÏÁÁHÁ¨9ž>Ï‘‘9¨Ï’+å+Ï ‘hh|a-››…ð,ÖÝ&Ö,‚Î\ ÿ ÿe9|‘‘ ‘|–íq1;k´ ›;i4Í¢¥ãEE¥ Û ÷¥¥ ÛÍxuÍ}ÍÍÍííÛ÷÷ }uÍ ¶¶q ?ÈÆ? khh;ii;;7!ÃÍoj§f§j¼¼jçgii!›Å½˜˜z{ËÈ€Y½z~VVéÜË k-n!;ižoÛíÊ»Y»ÜÜ€¬;.cf¼ojuÃÃÃÃuc;-hkk;çºEºÃ; k kX!;lu¥¢¢ ¶¥ íÍüoÍ}Í}}Í}}} ¢¢ ÍÛ ¥º¥Eã› È È? È´µli.cg°fu}¼§f§j¼4gi;;wµÐz˜é˜Ø½Ê»½~˜é˜³éØÆ¬››X!i4¼ Ûoc€{Ð?-70&׊OÖÖO¾ŠŠ×ûŒŒŒûŒûû(êPßPGœ¹å’¸k||--›aXXnXµwXnhk7{YÑÊ»»Y~ˬ;.cfffžžÄÿ WœÉɹæåÏ|ÿ#TðÓC&оOÖÖO¾Ý&Cp^‰‰‰ê‰‰‰^·‰‰^^Rbüe™o< ¶¥Eã› ?ÞIB”âÎÓ,,úa›{AVVéVÔvïÎÓ•ÖCC,Î3¡§##3°²¹6I0âÓ,,à{+{>s¸ÁÁ‘99¨Ï±’’±¸ Áh|››--›aµ/Î,,_ÖOÖOOOÖO,,Ó'L–3––Äÿa¨k‘‘´›!3¥EºÃ; k kX!;lu¥¢¢ ¶¥ íÍüoÍ}Í}}Í}}} ¢¢ ÍÛ ¥º¥Eã› È È? È´µli.cg°fu}¼§f§jj4g;;;!Xsé˜ØzË2Y˜é˜éV½7-›-wižÃÍÑ»Y»YzÊ7;iç4§§¼}}}Ãu}¼ç;µhkÈk-w4¢qE¥hhkhh-;lkµµ;jÃÛ¢¶¥uoooxuÍÍÍ}ÍÍ¢º¥Í÷÷ ÷¥¶ãEc´ kkÅ khaµ;¤¤i›Ëµç§Íxf4j¼f4çc!!l;!h€»»˜zYVܽz˜VVééVË-›-nXµ;ç¼÷¢xjµ-h ›h@OC×ÝŠ¾OÖO¾ŠÝ&CûŒû(ûûP‰‰êê^ÀGS">Ïk¨-››-››nwwµwµ-hkÅ€ÑYÑ»YÑY~27;içž§§44– HbbÉGÉœ†å‘ÿ#'C×ÝŠOÖÖO¾ŠÝ&CÚ^‰‰ê‰‰‰^‰‰‰‰^^øbüeÄ ¥¶ãEck k±7¸’å"†WRrr„ðm!h{ѲÔÔØVAABÓÎ;3§<íí¡™|´‘¸¨kÈÈ ©@@ââð{+>sϸ±Ï|ƒ¨‘Á7¸ÁÁ? k¬-›››-›aXµ…m”t–ž¡¡§¡§ž.!a´ÈÈ -4¢qE¥hhkhh-;lkµµ;jÃÛ¢¶¥uoooxuÍÍÍ}ÍÍ¢º¥Í÷÷ ÷¥¶ãEc´ kkÅ khaµ;¤¤i›Ëµç§Íxf4j¼f4çc;!!;!-Ë»Ø~Y˜zY½˜VV³éVs¬n-µµXwlcÃ¥»2Ñ{{YY»¬;žço}íÍÃ}í¼4i-kÅ?ȬcÍ¥EqÛ!kh-h¬cç!?Æ?k›;j í}Ã}ÍÃ}}uÍÍÍÍ ¥º÷ÍÛí ¥÷¥¥÷º¥xk7hÈkk´kh›;cc7!ççÍuü§¼¼¼§4ç;w!w›ÐÊËzYËz˜~Ü~VV˜Vé³Yk-hµµXwlcfÃuÃÍ.笛°n,C&ݾOÖÖO¾ŠŠ&CŒŒûŒûûû(Œ(ßêêêê^«b†S帑¬›››-››nµ°wµµµXµX›´Å±Ë»»»ÑËYY»¬.žžç4¡¡¡  bÉG«GGœS’a™oÌÖCCŠŠ¾OÖO¾ŠŠ&C%··‰‰^‰‰‰·‰‰‰^^øbb Ä¡<í ¢¥º º¶xk?h Á¸ÏåS†¹¹ÉÉ«¹¦:'$$Îw›ÐÑʽ½{zVÜÜÜšÎ'µlc§fff¼.;3´›µ››¬¬-hh¬hhhú @mâð‚IØÑsϱÏÏ>Á||¨ÁÏÏÁÁÁÁ´¬-›a›-››nXwµ mÎÎ$:e33–žfu¼f¼åæ¹¹bbÉ«øb ™¡xooLMF$mÎmlµ ½½YzÑ€ØVÜÜÔ—š„ðâ/w!µµ!lcff°aíc.µµµµ›na›-››››--;… /mâÎÎDS+’’’åå’HQHÏ’ÏÁ‘¸Á¨´¨››a››-¬›µX°**/âââââ„ââI]ïØ7!§§434ouíu¼uÃ4c-´?±7 l§Ã¶1E¶§›h-›nwçž;XkÆs€Æ´igžž4ç4§jj¼ooö¶ xÍ Û ¢¶¢¶ ÷¬Æ-k ??Ækw¤;k4ÃÍÃoxÃÃof4i!!l!µ YYÜ»ÐYV˜Vé˜é½Èh´!µw!;Y»»Ñ»YYaç§jç§ÍÍ}uux¼ç.wµ-h7shí ¼ºº¥i´¬!igiilµh ??ËËÆ´µw!!!naaw!çà Û ÷÷ º¢ºã¥k?´ ??Å7skifcl4 ¥¥ãö¼Ãxx§oc;!w!-7ÑzÜ½ËÆzV˜˜˜Vééé-¬-°!lµ!›a;{2µjj4$&ÝOÖÖO¾ŠÝ×%ûûŒ(ûûû(ßßê«bœS’Ž‘¨´´Èk-°a›-µn!wwhs7Y½½Î‚×&Èç§j34f™Ä `WÉ««øGœœå¡,C&ݾOÖÖO¾ŠÝ&[ß(PP(ßßûû((PPê^ÉW  ¡íÙ$ÖCÌçk±k?>SGGÉb«^büe<Ù¡f¼joc;!w!-7ÑzÜ½ËÆzV˜˜˜Vééé¬h¬wX!;›XlµanlËÊnµf§çg;;l;°w›Xk-›¬›;.!ahÁ?åAS’åå"S"`ÏÏåÏÁÏ’ÈȨ¬¬´Èk›Xa-aµµn!w!kËÐÐY»»Ñ»YYaç§jžç}}Í}uÃxfç.wµ-h7shí ¼ºº¥i´¬!igiilµh ??ËËÆ´µw!!!naaw!çà Û ÷÷ º¢ºã¥k?´ ??Å7skifcl4 ¥¥ãö¼Ãxx§oc;l!!w¬7ÑÜÜYsƽ˜z˜V˜Véééhh-µ!laµ!»YY½Ñ»ÑØÅ.fujc¤¼Í}Íx¤i!nhÈ?;8¥÷1¢ §!hh;gl;;lµnµk7s€Ð hh´´kÈ kh´kÈçoÍ Û¢¢÷÷¢¥÷¥Û§wh-k ? Ѐ µglµgÍ ¥1uäU¥ÃoÃ4¤gi;!!¬?ÊÜÜØËÆY~˜zzVV˜éééÊ´k¬µwlakÅ½ØÆÐ i¤FOC×ÝŠ¾OÖÖO¾Ý×((ŒŒŒŒû((û(ßPP«œ¹†åå>±±ÆÆ ´-››n›-al;!µ.µÅл»»Øâ&C‹i¼Ã§ç.ž–ƒüRÉÉÀÉÉœ¹SÙ1$C×ÝŠÖÖÖO¾Ý&C[Œûûûû((Œûûû((ê^b` –uö'Ö“§-hÁ+åGGGÉ^^ÉWeT <ç4¤gi;!!¬?ÊÜÜØËÆY~˜zzVV˜éééÊhh-µµw!!wµ´ z½ÆÐ içž4ç4ç4çii;µ› kh›°w!!;°|‘ÏåS¹¹†††¹¹¹"†"†"`’’Ï’±±±±Æ k››n›a-al;!µ;?±2»YY½Ñ»ÑØÅ.fujc¤¼Í}Íx¤i!nhÈ?;8¥÷1¢ §!hh;gl;;lµnµk7s€Ð hh´´kÈ kh´kÈçoÍ Û¢¢÷÷¢¥÷¥Û§wh-k ? Ѐ µglµgÍ ¥1uäU¥Ãoxž¤cil!!-?2zÜË7Y~zܘV˜éééh´-Xw!!;»½YY2»YY~{n}çç4Û}à u¼ž;wwµµ-kU¥÷÷¥i;i.;;;;;ic;;žiµÈ7s7 ??? ÅÈ´±{?µgj¼Ã÷¥¶¶º¥¢÷ f!--h ÅÐs7´nµa!cc4}ãU)1f¼§§žçgiiikËzzÑsY˜˜˜V˜³Y k›wX›°!!w YsËzÐ-ýC×ݾOÖÖÖÝ&CPßûûŒû(ßß(û(ßê«GœSSÑs>±±?Åk´›a-a!gii!çgn?½2»Ø]ÖC‘žÍuc–™e übÉø«øG¹†"+ :Š×ݾOÖÖO¾ŠÝ&C%ŒŒûŒŒŒûûŒû(ûûß^œÄ¡#Ù'Örf!k¨¸+"œG««^‰«Éb"¡TóEff§§žçgiiikËzzÑsY˜˜˜V˜³» ›!X›°!w!!޽€½ng4ž§¤4;!-ÐÆhµ!!|¨Ï’SœGœœœÉbGbG¹œ¹¹æSåSÑ+>ÐиÅkk-a-›!gii!çcµ ½»½YY2»YY~{n}çç4Û}à u¼ž;wwµµ-kU¥÷÷¥i;i.;;;;;ic;;žiµÈ7s7 ??? ÅÈ´±{?µgj¼Ã÷¥¶¶º¥¢÷ f!--h ÅÐs7´nµa!cc4}ãU)1f¼í§§4çgiii°k˽˜z»ËØVVVV³»ÈÈ-aµwww»Y½»»2Y½»Y?i¼jÃuíÛ}xži!µw¬1¥  Íu¼ç;i...cii.oojgµhh-hk´h¬¬h-kÊÐ-;gg4fÃuºq¥º¥÷¥¶¥fw!›k 77Æ h-µ!;n´µí® oÛ}xjçi;;i!-ØV½2Y˜VéV˜VN½??-!ih-aµw!?˜Ëk˽VNY ,C&ݾOÖÖO¾ŠÝ×yPP(ûŒŒŒŒ(ûûßPêù«Gœæ++ËÐÐб77´n¬lç¤x¼i-Ñ»½»Ô_‹¤¼ííž–¡¡  `bbø««Gɹ""ÏÌOC×ÝŠ¾OÖÖOOŠÝ×Cß(((ôûûûûûûûûûûê«b†`Qƒ§í'¶¢Xa‘’SGùù‰«Gb† Ùþ8Ùoí}xjçi;;i!-ØV½2Y˜VéV˜V³z? -!;h-naw!?sÈs½VYk;cgçi§§cc´Ð±´›µa¨¨Ï`"†¹GGG^GÒ^Ò^««ÀGGGæS++>ss±77´›-!ç¤o¼i¬»»Y½»»2Y½»Y?i¼jÃuíÛ}xži!µw¬1¥  Íu¼ç;i...cii.oojgµhh-hk´h¬¬h-kÊÐ-;gg4fÃuºq¥º¥÷¥¶¥fw!›k 77Æ h-µ!;n´µí® o}xjçi;iilhнV½2ËY˜˜ééVNz7 ›!i°k›an!YY»ÑÊ{»Y{zÐ!Ûuj¼} Û}Í Ûͼç.!!w-!Í8ä¶¥Û }j4cilwllllç¼ͧg;!µ››nµ›h¬ÐÐË7 ›i4žÃ÷¶º ¥E¥ÃihÅ77? k›µl;µkhiíU®EÛj}ü4c;ii!-ÆY˜VÜY˻ܘV˜˜VVVNÜÐÆ-!;›››-µa?Ü?h»z~m&ÝOÖÖÖŠ×C5((ŒŒŒ((ù««G=²SÑ{{{ËËʱ 7§4žo¼§ÍÃ4!7½½»Ê,¬§Ûo§ž–ƒüRGø^GGb¹"ÏL ,C׊¾OÖOŠŠ×C^‰ßßß(û(ß((ûŒûûßꫜÏ|eÄ¡'Ìq X¨’æG«‰ê^øGÉœLT))q§}ü4c;ii!-ÆY˜VÜY˻ܘV˜˜VVVNÜÐÆ¬!¤;›››¬aÆz?´Yܳ½ !l;;;.¤4çç盱Ƭa|´ÏÏ’S¹œÉÒêêêêêßßßêù«GGGGæ²ÑÊ{Ë{{7 ?wj4žo¼§ÍÃ4±YY»ÑÊ{»Y{zÐ!Ûuj¼} Û}Í Ûͼç.!!w-!Í8ä¶¥Û }j4cilwllllç¼ͧg;!µ››nµ›h¬ÐÐË7 ›i4žÃ÷¶º ¥E¥ÃihÅ77? k›µl;µkhiíU®EÛjÍüžc;i;!-Æ»˜ØËYÜVV˜˜V˜˜€?hl¤;››--°YYY{ÊʽY½»´ÍÍfoÛ Ãuoc.!!!µ;í8UqÍÍíÛÍçi!µ!!;4ÃÃfžç.!µahk?? ÐÐÐÅÈ´¬µ!cu¥q÷¥Û ºEq¤kÆ? k-µw-´--4¶þ)q íÍ}ÍÃfçi;;-?ʽ˜~½Ê»z˜˜Vés?h°cçil›h-Èдkz˜Né₊C×ݾOÖO¾ŠÝ&C%5ßê^GGԲѻË{Ë{€2hc;4ÃÍuui´Y»2ÊâBcíoo––– `Õübøø««øœ¹`e#m‚C&ÝÖÖÖO¾ŠÝ&CÚ‰‰Pßßß(ôûŒŒŒû(ßêGœS’Á›.$¦¶¶öÄ9Ï"GG^ù‰ê^«G¹SUTÙÍ}ÍÃfçi;;-?ʽ˜~½Ê»z˜˜Vé€?hc4ilµ›h-kskk~éÊÈ´-!µlw;;;gçi¬È¬¨¸ÏåSœGÒ^ù‰(((ß(êù^«ÒÒɲ²Ê{ËÊ{€»´i;4ÃÍu}gkYYY{ÊʽY½»´ÍÍfoÛ Ãuoc.!!!µ;í8UqÍÍíÛÍçi!µ!!;4ÃÃfžç.!µahk?? ÐÐÐÅÈ´¬µ!cu¥q÷¥Û ºEq¤kÆ? k-µw-´--4¶þ)q í}}ÍÃfç.;;›?{z~YÊ»~˜VV€Æ-Xcç;!-h2»»ÊÊË{ÑØYw§Ío¼ÍÍ}}í}Ãožglwiµ;o¢ä)ä¥}x¢ íÃjç;w!!.j¼ojçci;!n 7?h-Ås2ËÐss?k-!¤¼Ãí ºã÷í È´›µa¬h Åhh°4äþEÛ¥}}}¼4¤;µkÐY~Ø2ÑVV˜˜˜Ë7h-lžži;µk--hahؘ~~³dOC×ÝOÖÖO¾ŠŠ&CŒ(ê‰ÀÉœœA²»ÑËËÐËËлÈ›ç§xxÍux§!ÑYÑÊB|¼Ãí§– übRø^^øGbœ" '&C×ݾOÖÖO¾ŠŠ×쉉PPPßPß((ûûûPßßêùÉœ¹+Ï´ð×öÙQ"œGùêêêê‰ù«œ†`T8q¥}}}¼4¤;µkÐY~Ø2ÑVV˜˜˜Ë7h-!4i;k¬-hµ´Y~zNNÜÊÐ ¬-!a k--n-!¬ÆÅ>²Ñ=ùêß(Œßßê^ÀÀG==AA²+>ËËËл aç§xxÍuoj!Ê»»ÊÊË{ÑØYw§Ío¼ÍÍ}}í}Ãožglwiµ;o¢ä)ä¥}x¢ íÃjç;w!!.j¼ojçci;!n 7?h-Ås2ËÐss?k-!¤¼Ãí ºã÷í È´›µa¬h Åhh°4äþEÛ¥}Í}¼4g;µ €YÜÜØ2ј˜V阘€7h¬;žg;°kÑÑYÑ{s2ʽ½h4âÃjxͼ ÛÃf¤;nµ¤x E8þUº}}÷¥÷Ãç;wµ;cž¼uÃjf4¤¤ia?Ë7k›hÐ{{sËË€Ë7h!ifÍÍ ¶ããí;¬ ´h¬°X-´Å a°;¤1®þº}ÍüclhÐÑz~ÑYYéééééV˜N€7´hçci;kk¬µnÈYé³³é˜,C&оOÖÖO¾Ý×55ûßbœœæææ²²»Ë+s±±Èд!h4c¼}ÃÍÊÊY»]]žuöí§–Ä bRøø^^Gb":‚O×ÝÖÖÖOOŠÝ&^‰‰‰PPPßߌßßêêêùÀ=ASÑCf##G«^‰Pêêê‰GbSÏ9Ù)äTÃÍüclhÐÑz~ÑYYéééééV˜N€7´hçžcilkh¬µnkYé³ééVË7?¬!h2»ÊËÐÆnéA»éæÒÒêßûû5ŒŒ(P^ø«GGœæ²ÑÊs± sh!¬žc¼}ÃÍícÑÑYÑ{s2ʽ½h4âÃjxͼ ÛÃf¤;nµ¤x E8þUº}}÷¥÷Ãç;wµ;cž¼uÃjf4¤¤ia?Ë7k›hÐ{{sËË€Ë7h!ifÍÍ ¶ããí;¬ ´h¬°X-´Å a°;¤1®þº}Íüg!¬Æ»Ü~»2YéVééVé˜NË7hhµçcgl´hY½»»»Y7ÊÊY½7!x º÷Þà ¢ Íoç;µ!gfÛã11Uqí ÷ÍÍÛ¢q¶c;!Xlç¼f§§§§§fçwÈ?k-7{Ë?sÐЀÐÐËsËs µi4oííºq¢§¬aaXµ-Xl!w;ó8 ¥¥íÛ}4i›Æ{½»Ø~z˜˜V˜é³ËkÅ?Åçciµµankј˜éVéé‚C&ÝŠ¾OÖÖÖ¾ŠÝ×[Œ(êüü¹¹S²Ñ+ÑØÊÑÊÊÑÑ›ççjÃ}uíkؽ»»,C¼Û¥Û™ÿeebRøø·^^«ÉW ò•×ÝOÖÖOŠÝ&C^P‰êꉉP‰(ŒŒûPPßêêGœœæÑ+,C3– WÉêêPꉫGÉ"Ï )8Û¢¥íÛ}4i›Æ{½»Ø~z˜˜V˜é³Ëk?? wžçgiXnµnÈ2VV阳³½{s7-ç;7Y~ܽÐÞÞI ôÒ=ùùêß(ŒŒŒ(RRGGGœAѲØÑÑÊÊÊ2ЛcççjÃ}ÍhY½»»»Y7ÊÊY½7!x º÷Þà ¢ Íoç;µ!gfÛã11Uqí ÷ÍÍÛ¢q¶c;!Xlç¼f§§§§§fçwÈ?k-7{Ë?sÐЀÐÐËsËs µi4oííºq¢§¬aaXµ-Xl!w;ó8 ¥¥íÛ}4.›?{z»ØÜz˜˜˜˜é³Ð´Å? !žçiiXwÐÊ{ÊÑYÊË{ÊÑ7µžo÷º¶Í÷¥ }Ãj4iw!cjºEE¥í Í ºº ügµ;cçç444444fž¤gii!- ЀËsЀ€€€sÊ€?¬Xo ã¢çççc;Xi.¤xãUU¥ÍÛ¢ÛÛ}žµÅÊY½½»½V˜˜˜VV˜˜é7›h-h!çç¤gwXXÈYVVVéé„C׊¾OÖÖOŠ×C5ûŒPbüœ">S²Ñ²ØAÊØØ½z»?›!g4§f§jj!€ÑÊ2‚6žÃÛ÷ö¡ÄebÉø^^ê^øbÎÓ×ÝŠOÖèèÖO¾ŠÝ×y‰PPPPP‰PPPPPP‰··«ÒGœA沕CC—ÏÏ b«ê‰‰‰‰^Gœ`Ä1¢ÍÛ¢ÛÛ}žµÅÊY½½»½V˜˜˜VV˜˜é7›¬-´ççc¤µXµ ½˜˜é˜éézʀŬ4çÈ»½5C&ÝŠŠ¾Šàêßßûû5Œ(RRR^Éæœ²²²½ÊØY½½Ñ?›lg4§f§fowÐÊ{ÊÑYÊË{ÊÑ7µžo÷º¶Í÷¥ }Ãj4iw!cjºEE¥í Í ºº ügµ;cçç444444fž¤gii!- ЀËsЀ€€€sÊ€?¬Xo ã¢çççc;Xi.¤xãUU¥ÍÛ¢ÛÛÍ4µ?ÊYz»˜V˜VV˜ééé7ah¬´ççiw;?Ë{{s2Ë{sЀ?n.g¼¶E ¼ÃÛÛͼ¼jiµ;¼Í¥qE1¥}ÃíÛ¥¥¥÷ }§§g;;¤4ççžžžçç¼xu¼¼ÃÍji›kÈ?7€ËË77ÐËÐ7Ë€ ;cwl¤fxçl!;ili¥ã¥Í í ¢Í;ksÊʽz˜VééV˜ééÐnnµ-°ic44;lµÅ½˜˜˜éédOC×ÝOÖÖO¾Ý×CŒŒûRœæååSAA²ÑØzØØØØØYÅgžoÃÍ}iÆËËË0&&c§¢ f ƒüRø^^ꉷÉbü”CCC×ÝOÖè•èèÖOÝ¿‰PP‰‰PPP‰‰‰‰‰^øøÉÉbœææÖCCìæ¹=GGœüb^‰êê^^^«båHƒ™Ù¢÷u í ¢Í;ksÊʽz˜VééV˜ééÐnnµ-°c44;l!µ VVé½ÊÐ -oo-dC&ÝŠ¾OŠÝ5ߌû‰bbGœ†æAA²ÑYYYYØYY XgžoÃÍ};?Ë{{s2Ë{sЀ?n.g¼¶E ¼ÃÛÛͼ¼jiµ;¼Í¥qE1¥}ÃíÛ¥¥¥÷ }§§g;;¤4ççžžžçç¼xu¼¼ÃÍji›kÈ?7€ËË77ÐËÐ7Ë€ ;cwl¤fxçl!;ili¥ã¥Í  ¥}ikË22YzVV阘éVéЛnµ-°i44i;ÆsÐÐ7Ð7€ÐÐÆ ›!c}¶÷}oxou¼xox§iµ;ç§Ã ãE1ºíffÍ ¢} ¥¥¥¥Ûx}ofjx}uxx}xj§¼oà ÷Íxgla´È?ЀÊËÐÐб€Ë7Å? k7YÑЛ;iw!lc§¢ íÃà ۥÛnÐËsËÊY~˜V˜˜Vé³éÊÈa›µ;ç4çi;a?V˜V˜˜Ô•CÝŠÖÖèèÖOŠÝCŒŒŒ^bGœ>’SAvAvAAz½½zÔzЛ;žÍu¼;?ÐÐÐIOŸlcoÙ#ƒWbøø‰ßê^^Rü$‚OC×ÝŠÖè•è••èÖ¾Š%‰‰‰‰‰‰‰P‰‰‰‰^^øRbbW†""‚CC×&ל=Éù«ßûŒûßê‰ù«b¹"Ï9 # íÃà ۥÛnÐËsËÊY~˜V˜˜Vé³éÊÈa°›nlg44çi!nÆYV˜VVzÑËż¼mÝC&оOO¾Ý&‰bë^ùGSåS²²ÑØYYÑY½ÜÜÜЛ;žÍu¼;ÆsÐÐ7Ð7€ÐÐÆ ›!c}¶÷}oxou¼xox§iµ;ç§Ã ãE1ºíffÍ ¢} ¥¥¥¥Ûx}ofjx}uxx}xj§¼oà ÷Íxgla´È?ЀÊËÐÐб€Ë7Å? k7YÑЛ;iw!lc§¢ íÃà ۢۧnÐËËÊY½˜VéVVéééÊ ››n;¤ççç! ?7±7Ð7±7? ha!;çíãE¢x§¼x}ÃÞl›a!ç§oq11ã x¼í ÷¢¢¢¼§¼Ãoà ííuÃxxÃxuí¼žcl!µµµÈ?€ÊËsÐ72±? ?ËYʽ½27´¬nµ!XgÍ¢Í fjÃí íu;Å€sÐs2Yz˜V˜VV˜éésh›a°!iicçc;-7V˜ܽ,CCC&ŠOÖèèOOŠ×[ûŒŒŒŒ‰üüÒÒ†`åSv²²AA²»»½Ê7hcouj!Å77±+•C/l3oöÙ`übø^‰PßPê‰Rbb“•×ÝŠOèèèèèÖOŠ^^^^‰‰‰‰‰‰‰‰‰^øøbbW†"0_CC×ÝÝCC=G^^ùê(ûŒûß^«œS`ÁaÙu ÍfjÃí íu;Å€sÐs2Yz˜V˜VV˜éésh›n!ccgçg;w-7˜˜é½Y»?;§$,C×ÝŠ¾OÖO¾Š&ߌŒŒŒŒPRbbù†ÏÏ’Aܽ»»Ø½Ø»Ê~2Æhcouj! ?7±7Ð7±7? ha!;çíãE¢x§¼x}ÃÞl›a!ç§oq11ã x¼í ÷¢¢¢¼§¼Ãoà ííuÃxxÃxuí¼žcl!µµµÈ?€ÊËsÐ72±? ?ËYʽ½27´¬nµ!XgÍ¢Í fjÃíÛ íulÅËËË2Yz˜V˜V˜˜éés-›µ°;iccç!?77Ð7ÐÅ7Æ? ¬µlllg1E¥xÍux;¬-;4§j¥EEE¶Íf§oà ¢¢¥÷íf§ox4žÃÛÍÍÍío§§xxoofçiii;çih ÅÆ ?нÜY»7hXµµ›´µ§ ÍÍ}o¼oÛº hËË{»½ÜÔ˜VéVVééYhhw;il!iiw-7½˜˜é~~½„CC×ŠŠ¾ÖÖOŠì(ûû(ŒûûûŒŒŒûûû‰büGê="`ÏææS+>+²A½ØzØ›ç¥!?ÆÆ7ÆÎÓC×|wļÙ# WbRø^êß߉^^øbü,ÝÝŠ¾ÖÖÖOOŠP^^‰‰‰^‰^‰‰‰‰‰^øøbbW„‚×C×ÝÝ&&Àùù‰êûûŒŒPê^ɹ†åå‘Äuuu}o¼oÛº hËË{»½ÜÔ˜VéVVééYhh°;ilwi;!-7YVV˜Ü~ÜYÐFÖ×ÝOÖÖOŠÝ×5ß(ûûûŒûŒŒŒPRüü«ù=Õ|s+{±Å?Ð2YzØØY›ç¥!?77Ð7ÐÅ7Æ? ¬µlllg1E¥xÍux;¬-;4§j¥EEE¶Íf§oà ¢¢¥÷íf§ox4žÃÛÍÍÍío§§xxoofçiii;çih ÅÆ ?нÜY»7hXµµ›´µ§ ÍÍ}o¼oº hÐ{Ѐʻ½Ü˜Vé˜éVYk-µ!lillc!?ÐÐÐ?? ? k´-aµµiÍ1U1oxfž4inh!ç¼ÛãEº÷ujj§Ã ¥¥¥¢foç¤goÃooÃxÃÍí}j§§§§§çc;;;44ži!µ-hµ- 7ÐÑYÑz½ÊÆh›-nhh!oÛÍ}Íu¼jq¶º ¼µÐsÆË2½zܘV阘˜˜éz ¬w;i!;ci;nИ˜Vzؽ½r×CÝŠOÖÖÖÖÖÖÖÖÖÖÖ¾Šßßß(ûßûûŒŒŒßß(P‰RbbùG¹`SæåŽ‘‘¸s{ѽY2ÐkiÍ!?±ÐÐÅâCÝ|!™< bÉø^êP(ê‰^^øR‚ÝŠ¾OOÖÖÖÖÖÖÖÖÖÖÖOÚ‰^‰‰‰‰‰‰‰^‰^‰‰^^øRbü“¾×CÝŠÝÝ×ì^«^êßûŒßê^«œ¹"åÏ|¡oÃÍu¼jq¶º ¼µÐsÆË2½zܘV阘˜˜éz ¬w;iw.gi;›Ðé˜˜Ü½Ø½ÜØ?ÎÝC&ÝOÖÖO¾ŠŠCy(û(((ŒŒû(ûû(PøbüÉùÒæÏ°|h¸›w!nkÆY½ÑÐkiÍ!?ÐÐÐ?? ? k´-aµµiÍ1U1oxfž4inh!ç¼ÛãEº÷ujj§Ã ¥¥¥¢foç¤goÃooÃxÃÍí}j§§§§§çc;;;44ži!µ-hµ- 7ÐÑYÑz½ÊÆh›-nhh!oÛÍ}Íu¼jq¶º÷¼µÐs7ËÊØzÜVVé˜Vé˜³Ü ¬!!ilµ;i 7s?ÆÅ Èh››nn›;g.fºãÍjžgi¤ckw4žž§¥ã íÍüÃfí¥ºº¥jiuo4ž¼f§jf§§¼Û }44f4§ci;i;oi;;lX´?лzØ»»½Ñ nn hc}Í}u E¥};?7?Ë{YY½~~ܘ³éééÐhw!!glµi;gi›éé˜~½½d&ÝŠ¾OOOOOOOOOOOOO¾Š(ßPßPßPPßûûûßßPêRüRùêÒœ†"†`Ï|°!°µa¨ÈsÊkii €€Æ6C×Ýi!#`b«^^‰ßßP‰‰^^R„¾ŠŠ¾O¾OOOOOOOOO¾Oà‰‰‰‰^^‰‰‰‰^^^‰·^øGRÉrCCÝŠŠÝÝ×CG^êß(ûŒûŒŒP^ÉɆ`’>Á;}Í}u E¥};?7?Ë{YY½~~ܘ³éééÐhw!lg;µ;;ccnééVz½½z» FC&ŠŠ¾OÖÖO¾Ý&Cßß(ßûûûŒû((ßêRbü«G=A¨|µ›;;ici;µ›h sÊkii 7s?ÆÅ Èh››nn›;g.fºãÍjžgi¤ckw4žž§¥ã íÍüÃfí¥ºº¥jiuo4ž¼f§jf§§¼Û }44f4§ci;i;oi;;lX´?лzØ»»½Ñ nn hc}Í}u÷E¥};?Ð sÊYY~~~˜³éé˜Ðhw!lg!X.c ËËÊÐ kh¬-h¬nX!!iÃ¥ fg.nÈ?a;¤-c§¼f}ãq¢Û ¼fj ÷÷÷Û}44§žçç§žfxx}Í}ü§ž4žççc¤i;c§444cl;-h ؽ½ØÜY?¬›µµµ-h-°gÛÍÃü¼uÍ1UÍcÈ7kÐYYܘÔéV˜éYhµ;g¤lµ!icn2阘VÜÜØYÔ&ÝÝŠ¾¾¾¾O¾OŠôß(Pêßêßßßß(((P^RRüüÉ^ùù«œ¹œ¹å’Ï9ÿ!.ç4;-ÅcÈËË€©×&Šàƒž"É^êPP^^^ørÝŠŠ¾¾¾O¾¾¾¾‰‰‰‰‰‰‰‰^ø^^^^^^^ø«£ÝC×ÝŠŠÝŠŠÝ×^^PPßûûûûê«G†"åÏÁ|.íÃü¼uÍ1UÍcÈ7kÐYYܘÔéV˜éYhµ;gg!µ!.cn»éVVܽØY»µ$C×ÝŠOÖÖOŠÝ×C(((ß((((ûûŒP‰øbü†œæS²›¬ÐÆhh¬!i;g44;-Åc ËËÊÐ kh¬-h¬nX!!iÃ¥ fg.nÈ?a;¤-c§¼f}ãq¢Û ¼fj ÷÷÷Û}44§žçç§žfxx}Í}ü§ž4žççc¤i;c§444cl;-h ؽ½ØÜY?¬›µµµ-h-°gÛÍÃü¼uÍ1U}cÈ7kÐʽÜÔéVéV½h;i!wk»»€ k khhk¬-aµ›µw!¥E¥f¤´ ?Èa-!4jç§íqE¥}Ã¼Í ÷¥¶ ¼4¤¤ž444§¼ÃÍÃofžžçci;iç44ç4;.lµnk?ØYY½ÜÐkn!nk´k-lç¼Ã¼f¼ÃÛUþUÃnÈÆÆË»½Ø~zÜܘVVéVk;;;µaµ!!lhYé˜Ü½½zÜÓ×&ÝÝŠŠŠŠŠŠŠŠŠŠŠŠ%PßßP‰ê‰êPêßêß^RbbüRêùßßGœGÒ=A²{¸k›wç§oxk»2ÐÅ ,&ÝÝe< œÀêê·^^^^øø,ÝÝÝÝŠŠŠŠŠŠŠŠŠŠÝ^^^^^^^øøøRøø^ø^øøø×&&ÝŠÝÝÝÝ×C­^êßßûûûûûßù«b†åå>¸¨Xž¼Ã¼f¼ÃÛUþUÃnÈÆÆË»½Ø~zÜܘVVéVk;;;aw!lhYéVz½Ü½ÜÐ;ÎC&оOÖÖO¾Ý&C5ßßßßß(ûûû߉øbææVvsa½Ø»2ËsÈ´›!§oxk»»€ k khhk¬-aµ›µw!¥E¥f¤´ ?Èa-!4jç§íqE¥}Ã¼Í ÷¥¶ ¼4¤¤ž444§¼ÃÍÃofžžçci;iç44ç4;.lµnk?ØYY½ÜÐkn!nk´k-lç¼Ã¼f¼ÃUþUÃaÈ?7s»ØzÜÜܘ˜˜z˜˜kµli;›¼!{Å kh-´kh-a›¬-¬k; 1ãºÍ¤° ÊÊ7´ç§4o¥1ãÃí} ¶q¥Ífžcç44žf§§jjÃÍÍu¼j§4çc¤ççcff4ççg;;i;¬´7»YØØ½»7-!µhk?Ŭi4xuoj¼Ão¥)þÛ!!k?sY½Ø½ØY½~˜ÜVé~Åii;X!;wk½éé˜~YÜÜzØÓŠC×&&ÝÝÝÝŠÝÝÝÝŠÝŠÝÝÝÝ×êê‰êù^‰ùêêêøRÉøWüùùêùWœœ=vAA½½{?›li¼!Ë7 ðC&&&×&¦<™L†b^ßêê^øRRøR¾ÖO&×&ÝÝÝÝŠÝŠÝŠÝŠÝÝÝÝ&pøRøøRRRRRRRRøRøbø%×&&&ÝÝÝ××&&&CÚø^^êßßßûßûßßG¹""å>’¸k.4xuoj¼Ão¥)þÛ!!k?sY½Ø½ØY½~˜ÜVé~Åii;°µw!!wk½é˜˜½½zzÜØ &C&ÝOÖÖÖÖO¾ŠÝ×C5ûßß(ß(ßûߌP^Rbb †SSVAÜ!kÊzY2½zzz½{Å›li¼!{Å kh-´kh-a›¬-¬k; 1ãºÍ¤° ÊÊ7´ç§4o¥1ãÃí} ¶q¥Ífžcç44žf§§jjÃÍÍu¼j§4çc¤ççcff4ççg;;i;¬´7»YØØ½»7-!µhk?Ŭi4xuoj¼Ão¥)þÛ!!kÆsYY½Y»½~ÜééÜÈii;µµ!µwÅ»YÑËÅkh-kkh-hhksÊhÍE1Uãik€Y»Ë wox¼jÛEEÍo}ÛÍÍÍ ºº¥ožçç4ž¼¼j¼¼}}ííÍuÃx¼f4¤gcgcg¼Ã¼ž4g;;;!µµ- 7Y½½Ø½Æ›!!- 7?a;x¼f§4¼}18¢ic°7ØzYÑ2ÊÊ2½Y˜V?µiiilw;lµÈY³˜˜Ü½Y½zÊ&C××&××&&×&&&&×××&&×&&ì^^^^««^^^ê«ÉbbÉÉÉù^êù=œG=Av²½ØØzz»Ê˵wÅ»½2s0&%¦WÉêßêGRbbbbàCCC××&&×××××××××&×&×ךbÉbbbbbbbbbbbbb­×CCCCCCCìÀGÉG^ø^êßßßêßGœÕÏÏϱ>¸-lx¼f§4¼}18¢ic°7ØzYÑ2ÊÊ2½Y˜V?µiiill;;µÈYééVܽØÊ¬çÖC×ݾOOOOOO¾Ý×ß((ß(ß(((ßP^RbɆ’æÑæÊÜÆÈ€2˻ػYYؽz»Ê˵wÅ»YÑËÅkh-kkh-hhksÊhÍE1Uãik€Y»Ë wox¼jÛEEÍo}ÛÍÍÍ ºº¥ožçç4ž¼¼j¼¼}}ííÍuÃx¼f4¤gcgcg¼Ã¼ž4g;;;!µµ- 7Y½½Ø½Æ›!!- 7?a;x¼f§4¼Í18¥ig°?½½Ø2»2Ê2½½V~Ƶici;l;Ðs»½zÜØ€Å´h´k-›k ËY7÷ãUUq4-7ÊØÈ!§ÍÃo¶q}o}uoÃ¥¶¥¼4ç4ž§joj¼¼}ÍÍxx¼§çi;;;;;iž}}ož4.!!;!›È ˽z½½½»ÐÅawµ¬ 7nçÃÍxcx¢Uó}g ËÜV~½YÑÊÑY~zY±µicciiwµµk»˜é³˜½Ü½ACCCCCCCCCCCCCpGÀÒ«ÉGGGGGÒ«ÉGbG«GùùÒùGvv²»ØØ½ØY½ØÐsY½zz]ÖCB¦œÀÒùGbWüWWCCCCCCCCCCCCCCàüWüWWüüWë­%CCbbbÉÉÉÀÒ«êê«G"’ϨÈ?ÅÆµçÃÍxcx¢Uó}g ËÜV~½YÑÊÑY~zY±µicci;!µ›kYéé阽½zО_&ÝO¾¾¾¾Ý&Cßßßßßßßßêßßüœ`åæåAVzVÑÑØ»½z»Ê»»½ØY½ØÐs»½zÜØ€Å´h´k-›k ËY7÷ãUUq4-7ÊØÈ!§ÍÃo¶q}o}uoÃ¥¶¥¼4ç4ž§joj¼¼}ÍÍxx¼§çi;;;;;iž}}ož4.!!;!›È ˽z½½½»ÐÅawµ¬ 7nçÃÍxcx¢Uóug° Ëܽ½YÑÊÑY½ÜØÐaiccc;;é½½~½~~Ü2?´kȬ!hh s€´goãóÃks~Y½Ê !žof§ ÃÃíííÍxx¥Ûxžcçfoj¼joÃíÍuüff§çi;l;!w;ç¼Í}o§¤ll;!ah¬?YzzØÊË?nµnhkk?¬;iiçç4gžjE8¥4;h7½˜éVVézzzÜØË-;iç4gwa¬´Ê˜é³ééééÒ¿ÉbœœbœbGœGGœ W¹ÒÒÀùÒÒÒ==AæAØA½½z½zYYé½½Ü~ÜÜ,ì%5%5%%ì쟟%Ÿ¿ŸŸŸŸŸ¿Ÿ¿ŸW†¹†¹bœGGÒÒù«Ò¹’Ï‘‘‘Ák7¬;iiçç4gžjE8¥4;h7½˜éVVézzzÜØË-;iç4w›-È{é³éééé˜7lžÎ‚CCCÝÝŠŠŠŠŠŠÝ׉‰êêPPPßßêê«båÏA²ÑVzzYY½ÑÑYYz½½z½zYYé½½~½~~Ü2?´kȬ!hh s€´goãóÃks~Y½Ê !žof§ ÃÃíííÍxx¥Ûxžcçfoj¼joÃíÍuüff§çi;l;!w;ç¼Í}o§¤ll;!ah¬?YzzØÊË?nµnhkk?¬;iiçç4gžjE8¥4;hнéV˜VV~zzÜYs-;iç44{zÜYzVz kÅhlnµh Èn;xq¥çh7»Ñ»»ÑÆwÃÃüÛíÃÍÍͼ¼¼Ã¢÷c¼f¼§foÃííÍÍÃx¼¼§çci;;l!;g4oo¼¼jžçc;lX--´Èлz½½Ñ±-µ›nh‘ ?¬n Ð?hlXžº÷}¼!k»VVééV˜˜³V˜˜~Êa.icžžž;-È@Iâà5[5ìììì¿—£¹¹S åφœœ==Ò==vAܽYzzÜY{zÜ»½ÎÓC“å`"å†Sæ¹GÒ==æ’H‘‘´ Ƭn Ð?hlXžº÷}¼!k»VVééV˜˜³V˜˜~Êa.icžž4!-kÈYÜééNN³Æ;ç$×&&ÝÝŠÝŠÝÝÝÝ×C^ê‰^‰«b Áƒ¸+sËØz˜ܽ½Yz»YØzzÜY{zÜYzVz kÅhlnµh Èn;xq¥çh7»Ñ»»ÑÆwÃÃüÛíÃÍÍͼ¼¼Ã¢÷c¼f¼§foÃííÍÍÃx¼¼§çci;;l!;g4oo¼¼jžçc;lX--´Èлz½½Ñ±-µ›nh‘ ?¬n Ð?hlXžº }¼lkјééVV³V˜˜zÊ-i.c4ž½Yʽܽ˜é» k?k;aa!;!!;uÆs»»»½2ki¼§j§jí xxuxj§ou¥¶Û¼4§j§¼¼¼}Íuu¼f§ži;;;;;!!;ç¼uuüfç!µnk k ½½zÜY?anµahhk;›Ð€ÆÈ7Ð}¢c›s½z˜½V˜V˜ÜYhlliçi›k‚ÝCCæ"ÏÏ Q"eÏæææ=NæVvØØzz²½Ü~½Ø½YÊ~ÜÜV„ÝCÏ’`’""å"v====>Á¨-|k´k°;›Ð€ÆÈ7Ð}¢c›s½z˜½V˜V˜ÜYhlliçg- ÅÐÑܘ˜é˜Åi¤/ÓC×&&×&&&××CGGø««Gbb^ùG¹" ƒåĵ{sséÜÑܽ»»z½½Ü~½Ø½Yʽܽ˜é» k?k;aa!;!!;uÆs»»»½2ki¼§j§jí xxuxj§ou¥¶Û¼4§j§¼¼¼}Íuu¼f§ži;;;;;!!;ç¼uuüfç!µnk k ½½zÜY?anµahhk;›Ð€ÆÈ7Ð}¥c›Ë½ÜzV˜½V˜VV~Y¬;wlgçz½ØØ½ÜܘØÐÈk k!lwµnl¤ç§E¥4´€YËÑØ2ÊÈox¼§}÷í}ÃxuÍo¼Íº÷Íu§¤oÃuffÃÍ}Ãffgi;!!w.cç¼Íujç;›´kk ÆÐYÜ~7h¬Xah›nnw ;;´hhkÊ2-ž¼¼íik7»Ê»z½ؽ˜éÊ-;;cic4笴âŠÝ×Cﲸ¡#Ï’|ÿ™Ï+>vvVVÔ²½½z~ÜÜz½ØØ½ÜdèÝCÚă|H¸’’>å+æv=vV+Á¨a|´›anw ;;´hhkÊ2-ž¼¼íik7»Ê»z½ؽ˜éÊ-;;cic4çh´?? ʽÊzVéa§;|ÖCCCCCCCìœbÉÉÉÉWWGÀGWÕÏϰ¡a± ØzzÜz½Y½z~ÜÜz½ØØ½ÜܘØÐÈk k!lwµnl¤ç§E¥4´€YËÑØ2ÊÈox¼§}÷í}ÃxuÍo¼Íº÷Íu§¤oÃuffÃÍ}Ãffgi;!!w.cç¼Íujç;›´kk ÆÐYÜ~7h¬Xah›nnw ;;´hhkÊ2-ž¼¼íck?2»»½½½Ø½˜é2-;lcii4½½YYzY?-¬kÅ›µµµ›;44ú¥;ËÊÊ2Y½Yskg§ooÃ}}j}}Í}}x¢  u4¤ÍxÃ}ÍÃÍÍÍÍÍx§fçc;i;l!wµliç4jÍÃçç;nhk ?ÐÐ{»ØÊÆhn¬hµwa›4!!;È»Ê !ç4ÈÐ ?77Ðб€ÊÑ»Y nw;içiÈÅ@Ó,,,,,,,,,_,,,,,_,,,,,,,_,,,,,,,,,,,,,,,,,,rÑH¨ž#¨Á´Ä#Ä‘>+²AÔÔzÜzØØYYÜÜz½½YYؽ~ïÓ,,,,,,,,_,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,_,,_,,,,,,,––Äÿ›‘Á¸’>{+SAAʱ´›hhµwa›4!!;È»Ê !ç4ÈÐ ?77Ðб€ÊÑ»Y nw;içiÈ ? ?7˘µ§;ðŠ‹"¹¹œ¹¹G=Sσ™‘Á|Ùža7Ð2½˜~z½YØYYÜÜz½½YYzY?-¬kÅ›µµµ›;44ú¥;ËÊÊ2Y½Yskg§ooÃ}}j}}Í}}x¢  u4¤ÍxÃ}ÍÃÍÍÍÍÍx§fçc;i;l!wµliç4jÍÃçç;nhk ?ÐÐ{»ØÊÆhn¬hµwa›4!!;È»Ê !ççÈÐ ?77бÐ2ÑY» nXw;cç~½YYYؽ½Ü7--k -nµµµ!cccž1s»ÑË2Yhi¼x¼uíí ííí}íÍ¥ ;fxÃ}}}Í}ÍÍ}}o§žçgii;i;aµ.çç4Ãx}Ão;µ´´k ÈÐØ½ËkhÈhnX›Å!¤;;¤. z½7 °ç Ykh?h7Ð{2»YY»{±ÈÈ µc.ÆÅ>ظ´–u¸±Èÿ33¨±ËØAzz²Y»»»Ø½½z~½YYYؽ½ÜM¡ž3ÿ|Á ¸±¸¸sÑØA{È´ÈhaX›Å!¤;;¤. z½7 °ç Ykh?h7Ð{2»YY»{±ÈÈ µc.Æ??ËÐ7?Æ{Yéhž¤w…‚ŠC"å"S"`Ï`åœ=å’e¸’ÈlžÍ4›Å€»½ÜØY»»»Ø½½z~½YYYؽ½Ü7--k -nµµµ!cccž1s»ÑË2Yhi¼x¼uíí ííí}íÍ¥ ;fxÃ}}}Í}ÍÍ}}o§žçgii;i;aµ.çç4Ãx}Ão;µ´´k ÈÐØ½ËkhÈhnX›Å!¤;;¤. z½7 °ç Y k h±s2YYY»ËÐÈkȵc½z½ØYzØÜÜÊÐ?kkh¬nµi4g¤E1´ÑYsʽYY»k¼x¼¢ íÍx}¢÷¼g;žuÍÃÃ÷}uÍüfž4çcgcc;;!µai4ç4§fxͼ4i- ?Èhk Å2½±k k››nÈËw÷§.iiç.h?ÐØÊaV2»2ÐÊ2YY½YY€€? ?›çfi?7?΂²Ð¸3ÙÐ˱µµ¼f;ȱss»Ü½YY»»YYz½½z½ØYzz„tf¼§3.¬¸?È´´¸?ؽs´ k››nÈËw÷§.iiç.h?ÐØÊaV2»2ÐÊ2YY½YY€€? ?›çfi?ÐÅÊÐлV;f;wmÖCCBÏÏ>`ϸ"vå>ÿ<+ËÆ°µxu;kÆÐ€»Ü½YY»»YYz½½z½ØYzØÜÜÊÐ?kkh¬nµi4g¤E1´ÑYsʽYY»k¼x¼¢ íÍx}¢÷¼g;žuÍÃÃ÷}uÍüfž4çcgcc;;!µai4ç4§fxͼ4i- ?Èhk Å2½±k k››nÈËw÷§.iiç.h?ÐØÊaV{2»722YY½YY€s? ?›ç§zÜØØ½½zܽÜ~{Ækkkh¬-a;cçç44UhYÊ2ØYØʬ4u¼jxÍÍííííÃxÃ¥.4¼}}ÍÛÍÃÃüf44ççci;;naµ!cž4444o¼¼!k7ÅÈ?È-Ð?nX¬››µÆh¼Ex¤iççc7˜Y˜ééNzzz~˜~€k ›cçcÆÑ€ÞII]]]Iddd KF\***    *** @  *****\\** @*FMMMF\ +ÐÆc´{{-h4oçh?Ë»z½ØYÑYY½YzÜØØ½½zܽïdd]]@@@@ @ **FFFFM:Ìñ.#´{{-huç!h?Ë»z½ØYÑYY½YzÜØØ½½zܽÜ~{Ækkkh¬-a;cçç44UhYÊ2ØYØʬ4u¼jxÍÍííííÃxÃ¥.4¼}}ÍÛÍÃÃüf44ççci;;naµ!cž4444o¼¼!k7ÅÈ?È-Ð?nX¬››µÆh¼Ex¤iççc7˜Y˜ééNzzzÔV~€kÈ›cç½z½½Ø½½zÜzzܽ» ÅÅÅ ´n;iicžž§¥äþo?ÊÑY»zÑ´¤joÃxoÃuÍ}ÍÛuÃuÍÛ Íii§ÍuuuÃxoj444çç¤i;!µµ-nwiçž44ž§jj¼olk ±Ë€kkilnwnh77s-÷¥Exçç4ç;?zéܘé³é³³éN³³Ü»Ë?4çh½½Y½½˜éVÜééÅouill;an°µµ›-›Xµ!c4ç!µ¬›c§§ž§ci;¬ ?ç¼kYÊ ?µj!?ÐÐ2zܽYYYؽz½½Ø½½zÜzzܽ» ÅÅÅ ´n;iicžž§¥äþo?ÊÑØ»zÑ´c§jxooxÃ}Í}ÍíuÃu} u.i§ÍÃuÃx¼¼fž444ççc.;!µµ-aiç44çž§j¼olk ±Ë€kkilnwnh77s-÷¥Exçç4ç;?zéܘé³é³³éN³³Ü»Ë?4çh½½Y½½˜éVÜééÅoui|΂,ÖÖÖOOÖ_ÓÎL°›‘‘°3Ä Äÿ°µÁ¸73fÈYÊ ?µj!?ÐÐ2zܽYYYؽz½½Ø½½zÜzzܽ» ÅÅÅ ´n;iicžž§¥äþo?ÊÑY»zÑ´¤joÃxoÃuÍ}ÍÛuÃuÍÛ Íii§ÍuuuÃxoj444çç¤i;!µµ-nwiçž44ž§jj¼olk ±Ë€kkilnwnh77s-÷¥Exçç4ç;?zéܘ³éééééN³³z»Ê?4½½½½~zÜÜz½½½»Ð?Å?Æ?±?k›;cç4o8EgÅËË»Ë22€-çuͼ¼ÃuÍu}}¼ í¤g}íÍ}Ã}xoo§4çç44çi;wµ›h›!c;iigc4už!¬ÐÑYÑk;!°›- Ѐ?¢EqºÍ4çç4§;´€{~éYV˜˜VVVVé³VzÅ;žw½ééé˜é˜˜V³éÆjçii.!!›µnnan!li§Íw-¬ç¼of;iµkhÃo ÊÐÊËgçiµ ÐËʽY»»YYY½½½½~zÜÜz½½½»Ð?Å?Æ?±?k›;cç4o8EgÅËË»Ë22€-çuͼ¼ÃuÍu}}¼ í¤g}íÍ}Ã}xoo§4çç44çi;wµ›h›!c;iigc4už!¬ÐÑYÑk;!°›- Ѐ?¢EqºÍ4çç4§;´€{~éYV˜˜VVVVé³VzÅ;žw½ééé˜é˜˜V³éÆjçii$”–žµ¬‘›.¡¡™3.°;aÈh#fÈÊÐÊËgçiµ ÐËʽY»»YYY½½½½~zÜÜz½½½»Ð?Å?Æ?±?k›;cç4o8EgÅËË»Ë22€-çuͼ¼ÃuÍu}}¼ í¤g}íÍ}Ã}xoo§4çç44çi;wµ›h›!c;iigc4už!¬ÐÑYÑk;!°›- Ѐ?¢EqºÍ4çç4§;´s{zéY˜˜˜˜˜˜VVé³ézÅ;ؽ½½~~½~zÜÊÆ7ÐÐÐËÐ?-lgi4ÃÍÃEÛn€ËÊ˽Æk ´;§ooxÍ ÛÛxÍxÍ }uÃ}ÃxxÍ}Ão¼¼jž4¤çžžcil!na-µ;4¤!Xw;l;ici4µ 묵µ;nkaÅ´€È¬ç ÷q of4çf44!nÐܘVé˜é˜˜é˜˜éé³zk¤;{zézNÜ?w§gcigç¤hh-¬hh¬-°!c4u ¼´-lxÍÃfžw;k°¢Ã!Ð2YÑYÆÆµi›7ÐнYY»YY½ØØ½½½~~½~zÜÊÆ7ÐÐÐËÐ?-lgi4ÃÍÃEÛn€ËÊ˽Æk ´;§ooxÍ ÛÛxÍxÍ }uÃ}ÃxxÍ}Ão¼¼jž4¤çžžcil!na-µ;4¤!Xw;l;ici4µ 묵µ;nkaÅ´€È¬ç ÷q of4çf44!nÐܘVé˜é˜˜é˜˜éé³zk¤;{zézNÜ?w§gci¤ý”Îtx §°È›!3§¼fž–!µ´a÷ÃwÐ2YÑYÆÆµi›7ÐнYY»YY½ØØ½½½~~½~zÜÊÆ7ÐÐÐËÐ?-lgi4ÃÍÃEÛn€ËÊ˽Æk ´;§ooxÍ ÛÛxÍxÍ }uÃ}ÃxxÍ}Ão¼¼jž4¤çžžcil!na-µ;4¤!Xw;l;ici4µ 묵µ;nkaÅ´€È¬ç ÷q of4çf44lnИVéVVV˜é˜éVézkY»Ñ»½ÜØؽ»s7Æ77Ð{Ñ22±h;icg§}¥ §›sÑzѽ{;ÃfÃí¥ºííÍÍ ¥¥ío}}xÃo§ž4çcccgwnµah›!4¼¼iw°µ›µ!!ll!-k77?kh-››hÈ7 ?±wÛ¥q¥¼!j4ÞhÅ s2ؽ½˜éV˜VéV˜~~¬cçµÊн阘V~Êi44çic}!´Åh- ?k´µi¼žµan;4¼Í}jic!›luÍl´sÑ»Ñ2 ´l-ÐË?±ÑØ»ÑY½Y»Ñ»½ÜØؽ»s7Æ77Ð{Ñ22±h;icg§}¥ §›sÑzѽ{;ÃfÃí¥ºííÍÍ ¥¥ío}}xÃo§ž4çcccgwnµah›!4¼¼iw°µ›µ!!ll!-k77?kh-››hÈ7 ?±wÛ¥q¥¼!j4ÞhÅ s2ؽ½˜éV˜VéV˜~~¬cçµÊн阘V~Êi44çicÍ|@âmmââ”I…i¼žµ›n!çjÃçci!›luÍl´sÑ»Ñ2 ´l-ÐË?±ÑØ»ÑY½Y»Ñ»½ÜØؽ»s7Æ77Ð{Ñ22±h;icg§}¥ §›sÑzѽ{;ÃfÃí¥ºííÍÍ ¥¥ío}}xÃo§ž4çcccgwnµah›!4¼¼iw°µ›µ!!ll!-k77?kh-››hÈ7 ?±wÛ¥q¥¼!j4ÞhÅ ÐÊØY½˜é阘é阘~YYY½ØØ½½Üz½»Ñ»ÊsÐÐsÊÊ»7›;ifÍÛ}cµ7ØÊYé½lžžouÛÛ ÛíÍ}Û¢¥ÍuÃÃx¼j4ç;!Xµ-¬w¤jof4;;l!;;;°h---›nh 7?? XifÛº¶;;;44ž ;µ›µ--kÅÅ?Ê»YzVé˜?Xih-sV˜˜ÔVØÑ€?ȵ;µlÃÃ4X Åk ±± !j÷cnwµ;4foççi!µX!§!ahÈÆ?ÐØËÐ -ksÑË€ÊÑYY»ËYYY½ØØ½½Üz½»Ñ»ÊsÐÐsÊÊ»7›;ifÍÛ}cµ7ØÊYé½lžžouÛÛ ÛíÍ}Û¢¥ÍuÃÃx¼j4ç;!Xµ-¬w¤jof4;;l!;;;°h---›nh 7?? XifÛº¶;;;44ž ;µ›µ--kÅÅ?Ê»YzVé˜?Xih-sV˜˜ÔVØÑ€?ȵ;µlÃÃ4X Åk ±± !j÷cnwµ;4§oçciµX!§!ahÈÆ?ÐØËÐ -ksÑË€ÊÑYY»ËYYY½ØØ½½Üz½»Ñ»ÊsÐÐsÊÊ»7›;ifÍÛ}cµ7ØÊYé½lžžouÛÛ ÛíÍ}Û¢¥ÍuÃÃx¼j4ç;!Xµ-¬w¤jof4;;l!;;;°h---›nh 7?? XifÛº¶;;;44ž ;µ›µa›hk ??Ñ»YzV˜V»»Ñ»2»~YYÑYY½½~{sÐÐЀÊÑzYË?kž }¼fÃjµÊÊséV˜;4žžçç44ž}í Û}ÍÍ ÷ÃÃoo¼§§§žž4g;!µµµ›-X;fÃÃͼi!;cigi.cçžgi;;;i;k ?{Ålxöº¥i›i;4ç¶¥iiww!Xµw--¬´ ?77½ÊÐ  ½³˜½7 2ܘ{ ÅÈf}xi¬kÈÆÐÐkç çw°µi44¼Ãf4gww4g!!wµµ;wk 7?k´ÆÐ7ËÐË2Y»YØ»»Ñ»2»~YYÑYY½½~{sÐÐЀÊÑzYË?kž }¼fÃjµÊÊséV˜;4žžçç44ž}í Û}ÍÍ ÷ÃÃoo¼§§§žž4g;!µµµ›-X;fÃÃͼi!;cigi.cçžgi;;;i;k ?{Ålxöº¥i›i;4ç¶¥iiww!Xµw--¬´ ?77½ÊÐ  ½³˜½7 2ܘ{ ÅÈf}xi¬kÈÆÐÐkç çw°µi44¼Ãf4gww4g!!wµµ;wk 7?k´ÆÐ7ËÐË2Y»YØ»»Ñ»2»~YYÑYY½½~{sÐÐЀÊÑzYË?kž }¼fÃjµÊÊséV˜;4žžçç44ž}í Û}ÍÍ ÷ÃÃoo¼§§§žž4g;!µµµ›-X;fÃÃͼi!;cigi.cçžgi;;;i;k ?{Ålxöº¥i›i;4ç¶¥ii!!lXµl››¬´ Æ7ÐØYÑ{»½ØYYY»ÊYÊsЀË2Ð7¬žº÷Ãç¤Ã §µsØ~V»;žççc¤çç§foÍíÃu ¥¥ ÛÍÃj§jff4çclw°n›µ;çjÍíllc;ii¤ç4ž44¤¤4ž4i;!Æ?!i§ ÷¥4ha!gçEºi;-¬›n››a°°a››-hÈkn-wsl?˜~Å-›ÅØN˜27h;xÃc!- ŧÍ.!g444§44;i;!cil!nagjž;h--hhh ?ÐÊYÑ»ÜØYÑ{»½ØYYY»ÊYÊsЀË2Ð7¬žº÷Ãç¤Ã §µsØ~V»;žççc¤çç§foÍíÃu ¥¥ ÛÍÃj§jff4çclw°n›µ;çjÍíllc;ii¤ç4ž44¤¤4ž4i;!Æ?!i§ ÷¥4ha!gçEºi;-¬›n››a°°a››-hÈkn-wsl?˜~Å-›ÅØN˜27h;xÃc!- ŧÍ.!g444§44;i;!cil!nagjž;h--hhh ?ÐÊYÑ»ÜØYÑ{»½ØYYY»ÊYÊsЀË2Ð7¬žº÷Ãç¤Ã §µsØ~V»;žççc¤çç§foÍíÃu ¥¥ ÛÍÃj§jff4çclw°n›µ;çjÍíllc;ii¤ç4ž44¤¤4ž4i;!Æ?!i§ ÷¥4ha!gçEº.i-¬-›››nµXa-›n¬kÜz½YÊËб€ËÊÊ{ØÊËÐ7?¸ ´´aaµž¶¶uç4uíokÐËYÊcff44çç¤ç4§§f¼uÍxÍ ¥¥÷Íuo¼f§§4c!µ›nµ!c§§x}j;h k-wl!!;;l;l!;;ig;ç!h!l-;Í¥uµµll;q14g;wnna›-hhµ›hhh-k7{hc7hwk~é騀Ð?ÈÆÊ³Ü7k Ð?µžÛ }oç;›açí¼iw;4¼44çi;c.!.l!µa¬!4¼ç;µX›hhhµ›7»»{ÊÜz½YÊËб€ËÊÊ{ØÊËÐ7?¸ ´´aaµž¶¶uç4uíokÐËYÊcff44çç¤ç4§§f¼uÍxÍ ¥¥÷Íuo¼f§§4c!µ›nµ!c§§x}j;h k-wl!!;;l;l!;;ig;ç!h!l-;Í¥uµµll;q14g;wnna›-hhµ›hhh-k7{hc7hwk~é騀Ð?ÈÆÊ³Ü7k Ð?µžÛ }oç;›açí¼iw;4¼44çi;c.!.l!µa¬!4¼ç;µX›hhhµ›7»»{ÊÜz½YÊËб€ËÊÊ{ØÊËÐ7?¸ ´´aaµž¶¶uç4uíokÐËYÊcff44çç¤ç4§§f¼uÍxÍ ¥¥÷Íuo¼f§§4c!µ›nµ!c§§x}j;h k-wl!!;;l;l!;;ig;ç!h!l-;Í¥uµµll;q14glwµn›a-hhµ›hh--ÈÐ2Y½ÜÜY{Æ›µ°-´k--anaannwl!nc ͧ¼Ãoou;н7¼ç§ff4ccç4ççç¼ÃÃu÷¥¢ }üjfj§ž4¤lµa-aXµµw;ço§¼ž° 7ÆÅh----aÅÅ h´´-µ-7´l›-!µ-w§¢ ;!iµn¼ºjçi!µµa¬hka›h¬nX¬Å½ØÐgµ´kËé7 ?Ð?Y2YVéˬh7ÐÐ?j¥ºí¼u¥ žii§¼§¼Ãožç§ç;iµµn!ll4i;!wµhkkhwi Ë2{2Y½ÜÜY{Æ›µ°-´k--anaannwl!nc ͧ¼Ãoou;н7¼ç§ff4ccç4ççç¼ÃÃu÷¥¢ }üjfj§ž4¤lµa-aXµµw;ço§¼ž° 7ÆÅh----aÅÅ h´´-µ-7´l›-!µ-w§¢ ;!iµn¼ºjçi!µµa¬hka›h¬nX¬Å½ØÐgµ´kËé7 ?Ð?Y2YVéˬh7ÐÐ?j¥ºí¼u¥ žii§¼§¼Ãožç§ç;iµµn!ll4i;!wµhkkhwi Ë2{2Y½ÜÜY{Æ›µ°-´k--anaannwl!nc ͧ¼Ãoou;н7¼ç§ff4ccç4ççç¼ÃÃu÷¥¢ }üjfj§ž4¤lµa-aXµµw;ço§¼ž° 7ÆÅh----aÅÅ h´´-µ-7´l›-!µ-w§¢ ;!iµn¼ºjçi!µa-h´a›¬¬›X- ÊÊY½½2s a;gccc;l;wn›a-k´¬hÈwx44§o¼¤¤hÊ744¼j§4ç¤cççccižfx¼Í¢÷íííÃÃo¼¼§žžc;›--nµX!gf§ofc°k7777Åkh›€€Å? k¬aÅËna?›k ÈcÍ!;h´›4÷§i;!›h´h---nµ-7znžXhYÔéY7´È? YYY7w´ 7{ÐhcÍÛ¥º¢¥ãEº§4¼jj}ÃÃj¼g-kh°!çjž.iii!n´ 7h;! YÊÊY½½2s a;gccc;l;wn›a-k´¬hÈwx44§o¼¤¤hÊ744¼j§4ç¤cççccižfx¼Í¢÷íííÃÃo¼¼§žžc;›--nµX!gf§ofc°k7777Åkh›€€Å? k¬aÅËna?›k ÈcÍ!;h´›4÷§i;!›h´h---nµ-7znžXhYÔéY7´È? YYY7w´ 7{ÐhcÍÛ¥º¢¥ãEº§4¼jj}ÃÃj¼g-kh°!çjž.iii!n´ 7h;! YÊÊY½½2s a;gccc;l;wn›a-k´¬hÈwx44§o¼¤¤hÊ744¼j§4ç¤cççccižfx¼Í¢÷íííÃÃo¼¼§žžc;›--nµX!gf§ofc°k7777Åkh›€€Å? k¬aÅËna?›k ÈcÍ!;h´›4÷§çi;!µ›h´h---nµhYYÑ{Ë{YܘzÐÈh--¬Èk´kÅÅ?7ÐÊÐ-›h§çž¼u¼ci!?€»Xžo§j§žçcçcigç§f¼Í÷÷ Í}Ãoj§4ž4i-¬h›X;ci¼u¼4gwµk7ËË7kµnÆÐÐÐÆÐÐÐ?-sµ¤µk?sµc;µw!µa±- íÍxfç!n---µ››µh»½´4››Ê˜~½Ë7??7ËVÊoo;È7 7{7nu º¶ ¶8¥Ûu¼4¼¼¼¼žçih7 kkhciçccc;µ-´È h!i°Æ»YYÑ{Ë{YܘzÐÈh--¬Èk´kÅÅ?7ÐÊÐ-›h§çž¼u¼ci!?€»Xžo§j§žçcçcigç§f¼Í÷÷ Í}Ãoj§4ž4i-¬h›X;ci¼u¼4gwµk7ËË7kµnÆÐÐÐÆÐÐÐ?-sµ¤µk?sµc;µw!µa±- íÍxfç!n---µ››µh»½´4››Ê˜~½Ë7??7ËVÊoo;È7 7{7nu º¶ ¶8¥Ûu¼4¼¼¼¼žçih7 kkhciçccc;µ-´È h!i°Æ»YYÑ{Ë{YܘzÐÈh--¬Èk´kÅÅ?7ÐÊÐ-›h§çž¼u¼ci!?€»Xžo§j§žçcçcigç§f¼Í÷÷ Í}Ãoj§4ž4i-¬h›X;ci¼u¼4gwµk7ËË7kµnÆÐÐÐÆÐÐÐ?-sµ¤µk?sµc;µw!µa±- íux§ç;n¬--X››X-2Ñ2˽ÑÜܽÊËЀ€€Ðs2Ê{˽zYË7-icfjžÃ4aiiµË½so§§žž§4¤ç4çiic44¼Ãx¥¥ííuu}ÍxxÃÃfžççç.a---h¬µwlio¼44;w›k€{7´›´Ë{±s»Ñ27€›4i-hÈh!;X-µ!n7sh4ÍuÍÃu¼4;›khhhh›µn¬kË?n!Ðе±ÑÆÆ?Æ7½Ê½7¼ Û4aÅ7±€ÊÅwͶ¥º1äEEº¥Í§žžxjffjclw¬¬°ÅË›g4ççg!-k k´›;µs2Ñ2˽ÑÜܽÊËЀ€€Ðs2Ê{˽zYË7-icfjžÃ4aiiµË½so§§žž§4¤ç4çiic44¼Ãx¥¥ííuu}ÍxxÃÃfžççç.a---h¬µwlio¼44;w›k€{7´›´Ë{±s»Ñ27€›4i-hÈh!;X-µ!n7sh4ÍuÍÃu¼4;›khhhh›µn¬kË?n!Ðе±ÑÆÆ?Æ7½Ê½7¼ Û4aÅ7±€ÊÅwͶ¥º1äEEº¥Í§žžxjffjclw¬¬°ÅË›g4ççg!-k k´›;µs2Ñ2˽ÑÜܽÊËЀ€€Ðs2Ê{˽zYË7-icfjžÃ4aiiµË½so§§žž§4¤ç4çiic44¼Ãx¥¥ííuu}ÍxxÃÃfžççç.a---h¬µwlio¼44;w›k€{7´›´Ë{±s»Ñ27€›4i-hÈh!;X-µ!n7sh4ÍuÍ}ux4;›kh´hh-µµ¬ÊV»ËËs½Yz~½Ø½ÊËÊËË{222»zÜ»ÐŤfj}}çl!; Ø7l§oo§44ž44¤g§oo¼Í÷¶¥}üÃÃoox¼x4ci;›----›°!4¼o§çc;a¬ÆÐ??k›-7€??77ÐÐ77!-h ›i4;!!!n´7Ьc¼¼ÃuÍ}¼!-Æ´µXaaa¬?Ëk.§j!;i¬ 7È ?7?7мº÷xih7Ð7s wÛ1äqEóã÷uo¼§žg-l; YsÅ´;cç§4ihhkhlcl›ÊV»ËËs½Yz~½Ø½ÊËÊËË{222»zÜ»ÐŤfj}}çl!; Ø7l§oo§44ž44¤g§oo¼Í÷¶¥}üÃÃoox¼x4ci;›----›°!4¼o§çc;a¬ÆÐ??k›-7€??77ÐÐ77!-h ›i4;!!!n´7Ьc¼¼ÃuÍ}¼!-Æ´µXaaa¬?Ëk.§j!;i¬ 7È ?7?7мº÷xih7Ð7s wÛ1äqEóã÷uo¼§žg-l; YsÅ´;cç§4ihhkhlcl›ÊV»ËËs½Yz~½Ø½ÊËÊËË{222»zÜ»ÐŤfj}}çl!; Ø7l§oo§44ž44¤g§oo¼Í÷¶¥}üÃÃoox¼x4ci;›----›°!4¼o§çc;a¬ÆÐ??k›-7€??77ÐÐ77!-h ›i4;!!!n´7Ьc¼¼ÃÃÍücw-Æk›Xa-a ØÊ€ÊËYzÜܘVV˜½»ÊÊ222ÊÑYØÜ˜zz½?!jÍ};g¤7Ë!§§fžfž4¤;çfj¼o¶qÃox¼§§¼¼o§4ççc!›´´-aµwi§o§çciXµk Å?kwh hh¬k7Ñ»!j;-Åдii!wwh 7-lçf¼Ííͼçi´´¬µµ›h¬hkË?!¤ç;4¶¼n?Ð7Ð ÆÈ›µÐ€c qE¢ç¬ÆÐÐÊ€ ngEEE1óE¥Íf44;µ´!i.?YY½{k¤4ži-¬kÈh;¤ ØÊ€ÊËYzÜܘVV˜½»ÊÊ222ÊÑYØÜ˜zz½?!jÍ};g¤7Ë!§§fžfž4¤;çfj¼o¶qÃox¼§§¼¼o§4ççc!›´´-aµwi§o§çciXµk Å?kwh hh¬k7Ñ»!j;-Åдii!wwh 7-lçf¼Ííͼçi´´¬µµ›h¬hkË?!¤ç;4¶¼n?Ð7Ð ÆÈ›µÐ€c qE¢ç¬ÆÐÐÊ€ ngEEE1óE¥Íf44;µ´!i.?YY½{k¤4ži-¬kÈh;¤ ØÊ€ÊËYzÜܘVV˜½»ÊÊ222ÊÑYØÜ˜zz½?!jÍ};g¤7Ë!§§fžfž4¤;çfj¼o¶qÃox¼§§¼¼o§4ççc!›´´-aµwi§o§çciXµk Å?kwh hh¬k7Ñ»!j;-Åдii!wwh 7-lçf¼Íí¼4c´´-µ›h¬!7ÊË2ÑYzÜz~VzػѻÊÊÊ»Y½½Ü½YYzÅ!fíç›´µ°wn˘VÐkl44§ž4çjçiiçjjj¼÷Íj§§fxjfžç¤;µ-k´h›X;4jjçiiwµ¬-kk¬X›µµµwµ´7½›i-{?g!µ°X´ÆÐ?hXiç¤4oÃoj§cak-n-h-hе;;µ;ÍxÈ Å?Æ7 -nÊà qã÷h ËÐÐÆµ4¶ºq1Uóq÷ç¤lµX;;µÐË2»ËÐ7h;ç4!X›µµ;!7ÊË2ÑYzÜz~VzػѻÊÊÊ»Y½½Ü½YYzÅ!fíç›´µ°wn˘VÐkl44§ž4çjçiiçjjj¼÷Íj§§fxjfžç¤;µ-k´h›X;4jjçiiwµ¬-kk¬X›µµµwµ´7½›i-{?g!µ°X´ÆÐ?hXiç¤4oÃoj§cak-n-h-hе;;µ;ÍxÈ Å?Æ7 -nÊà qã÷h ËÐÐÆµ4¶ºq1Uóq÷ç¤lµX;;µÐË2»ËÐ7h;ç4!X›µµ;!7ÊË2ÑYzÜz~VzػѻÊÊÊ»Y½½Ü½YYzÅ!fíç›´µ°wn˘VÐkl44§ž4çjçiiçjjj¼÷Íj§§fxjfžç¤;µ-k´h›X;4jjçiiwµ¬-kk¬X›µµµwµ´7½›i-{?g!µ°X´ÆÐ?hXiç¤4foÃoj§cak›µ-hc-s{Ñ»ÜzÜܘ~YÊÑ2{{ÊYܽ~ÜYYk!j¥º¼µkh ÐkaÅYV˜Ê´!g4ç4ççç4žžçg;cž44o }f§ffj}Ãf§¼¼žç¤ci!›hk¬ag¼žc;wwa›µµµnµµnl!-77-.ž; k°;µnµ›k7Ð?¬°iž;;l;i44ol-›°a›- È2˵;h ;çµÈk 7??¬}¼Å à x4!´±±±Åhl§qóóóäU1ºuç!l¤;-ÐY€ÊÑ»ÑÑ{ÐÆ´ hh›µic-s{Ñ»ÜzÜܘ~YÊÑ2{{ÊYܽ~ÜYYk!j¥º¼µkh ÐkaÅYV˜Ê´!g4ç4ççç4žžçg;cž44o }f§ffj}Ãf§¼¼žç¤ci!›hk¬ag¼žc;wwa›µµµnµµnl!-77-.ž; k°;µnµ›k7Ð?¬°iž;;l;i44ol-›°a›- È2˵;h ;çµÈk 7??¬}¼Å à x4!´±±±Åhl§qóóóäU1ºuç!l¤;-ÐY€ÊÑ»ÑÑ{ÐÆ´ hh›µic-s{Ñ»ÜzÜܘ~YÊÑ2{{ÊYܽ~ÜYYk!j¥º¼µkh ÐkaÅYV˜Ê´!g4ç4ççç4žžçg;cž44o }f§ffj}Ãf§¼¼žç¤ci!›hk¬ag¼žc;wwa›µµµnµµnl!-77-.ž; k°;µnµ›k7Ð?¬°iž;;lli44j;-›µa--nÆË˽ܘ˜zØÊ{ÊÊÊÑY½ØzÜzÜzÜÜkžÛºiµnk7Æh?Y~Ñ?hµ!iiç444ç礤ic§í Íuüj¼¼¼§žjuoj4i¤ž4iµh h.¤ç4lna!!;!!!aka;礼;kÅ›;!nµlX›ahÈÆs?hw4}i!a›Xwl;i!nn-h-µkk±awa½?!›7б ?ÅÅaÛEc?cjÛÛÍx¼çwhÅÐsÐ?-;öUUäUºÃi;i;!-Ñ2{ÅYYÑËʽz»½Ü½Ñ€Ðh°nÆË˽ܘ˜zØÊ{ÊÊÊÑY½ØzÜzÜzÜÜkžÛºiµnk7Æh?Y~Ñ?hµ!iiç444ç礤ic§í Íuüj¼¼¼§žjuoj4i¤ž4iµh h.¤ç4lna!!;!!!aka;礼;kÅ›;!nµlX›ahÈÆs?hw4}i!a›Xwl;i!nn-h-µkk±awa½?!›7б ?ÅÅaÛEc?cjÛÛÍx¼çwhÅÐsÐ?-;öUUäUºÃi;i;!-Ñ2{ÅYYÑËʽz»½Ü½Ñ€Ðh°nÆË˽ܘ˜zØÊ{ÊÊÊÑY½ØzÜzÜzÜÜkžÛºiµnk7Æh?Y~Ñ?hµ!iiç444ç礤ic§í Íuüj¼¼¼§žjuoj4i¤ž4iµh h.¤ç4lna!!;!!!aka;礼;kÅ›;!nµlX›ahÈÆs?hw4}i!anXwllcwµn-h-µ nÐYËËʽVz½ÑÑ»22ÑYYØØ~½Y½˜z?µij ž;;;µnX´ÊÜÊ? khµw;;cžž44çiici;;ççž§fjo4fo¼žic4ç;aÈhwi;lcglwµµl!;;!wh´›cq¥!wlXµliµ›-hk??h;jÍži°nXa›na›hh--µµ´µwlaYʬh? 7 ?k XUqh¤¥ }çÈ??77›ç 1óUUäUqÍo¼ž;wkÊËsÅwµ´Ð»»{ÑØ½Üؽ nÐYËËʽVz½ÑÑ»22ÑYYØØ~½Y½˜z?µij ž;;;µnX´ÊÜÊ? khµw;;cžž44çiici;;ççž§fjo4fo¼žic4ç;aÈhwi;lcglwµµl!;;!wh´›cq¥!wlXµliµ›-hk??h;jÍži°nXa›na›hh--µµ´µwlaYʬh? 7 ?k XUqh¤¥ }çÈ??77›ç 1óUUäUqÍo¼ž;wkÊËsÅwµ´Ð»»{ÑØ½Üؽ nÐYËËʽVz½ÑÑ»22ÑYYØØ~½Y½˜z?µij ž;;;µnX´ÊÜÊ? khµw;;cžž44çiici;;ççž§fjo4fo¼žic4ç;aÈhwi;lcglwµµl!;;!wh´›cq¥!wlXµliµ›-hk??h;jÍži°nµa››a-hh-›ÐËéYÑY˜˜V½Y½½Y»»YØØY½zÑY˜V½?ai4xf4ç444;?éÊ hkk-a!;ç4gc;;g;µ--? a;ç4ž¼jj¼§§jçccç4c--iwal.!;;;;wi;wl;wn-kw ͤg.ah›ic;X›h 77-.§Ãow°ww°›››-hh››-a››µµÊ»˜2Ð?h?7?Å7µ¼ó8}´;à ¶ºãº÷º¶¥÷ç?´-hhl1U88äEº¶¥žcµ?ÐËËhwilXX¬ Ê{»Y½½~ÐËéYÑY˜˜V½Y½½Y»»YØØY½zÑY˜V½?ai4xf4ç444;?éÊ hkk-a!;ç4gc;;g;µ--? a;ç4ž¼jj¼§§jçccç4c--iwal.!;;;;wi;wl;wn-kw ͤg.ah›ic;X›h 77-.§Ãow°ww°›››-hh››-a››µµÊ»˜2Ð?h?7?Å7µ¼ó8}´;à ¶ºãº÷º¶¥÷ç?´-hhl1U88äEº¶¥žcµ?ÐËËhwilXX¬ Ê{»Y½½~ÐËéYÑY˜˜V½Y½½Y»»YØØY½zÑY˜V½?ai4xf4ç444;?éÊ hkk-a!;ç4gc;;g;µ--? a;ç4ž¼jj¼§§jçccç4c--iwal.!;;;;wi;wl;wn-kw ͤg.ah›ic;X›h 77-.§Ãow°wµ›aa-hhµ›-7n?{2»ÜܽYØYÊ»2»2Ñ»Y½zYYÜ~7hwx§Ã4jf§í§k½éÊkkkk-¬µnX;c4ç¤;gci;!hл»2±-!ig§j§§§¼f444ç;?µci;!°!›››aµwµ!!X°µ›¢;;§µ?YÊ2{ÐhnwhÈÐ7µ¤çuoçi;w!!h-a¬7Xn¬-a°w-»Y2s7??h ;oqq¥;ng íÍÛÃÛÛÛ ¢§-µnµi§1ä88UE¥¥1uwhËYYÑ !!wl;çXs½ØÊY7n?{2»ÜܽYØYÊ»2»2Ñ»Y½zYYÜ~7hwx§Ã4jf§í§k½éÊkkkk-¬µnX;c4ç¤;gci;!hл»2±-!ig§j§§§¼f444ç;?µci;!°!›››aµwµ!!X°µ›¢;;§µ?YÊ2{ÐhnwhÈÐ7µ¤çuoçi;w!!h-a¬7Xn¬-a°w-»Y2s7??h ;oqq¥;ng íÍÛÃÛÛÛ ¢§-µnµi§1ä88UE¥¥1uwhËYYÑ !!wl;çXs½ØÊY7n?{2»ÜܽYØYÊ»2»2Ñ»Y½zYYÜ~7hwx§Ã4jf§í§k½éÊkkkk-¬µnX;c4ç¤;gci;!hл»2±-!ig§j§§§¼f444ç;?µci;!°!›››aµwµ!!X°µ›¢;;§µ?YÊ2{ÐhnwhÈÐ7µ¤çuoçi;w!!--›¬7°naØÅÅ2½Y~zÑÑÑ{2Ø»2»Y»»»Y½Y»ØzÜÆ´hµ!oÃͼojx-ØÜkhÈkÈ ´¬-µw;ii;igic;kܽʻÊÈju}ojxxj§ž§ç;7k;!›´kÆÐ€€Ð77 k´´kh¬kç;È2é˜Ü½½½´;!nh´¤}j4gi°n-hhÈlµ›hÈhanX´ËzY7Èh´´-´h´l4ãu!!žjfcççž4ççžf¬µX!cž Uþ8q÷EºUºž-ÐËÑ»Ñ7nXan;cçµ?»z½ØÅÅ2½Y~zÑÑÑ{2Ø»2»Y»»»Y½Y»ØzÜÆ´hµ!oÃͼojx-ØÜkhÈkÈ ´¬-µw;ii;igic;kܽʻÊÈju}ojxxj§ž§ç;7k;!›´kÆÐ€€Ð77 k´´kh¬kç;È2é˜Ü½½½´;!nh´¤}j4gi°n-hhÈlµ›hÈhanX´ËzY7Èh´´-´h´l4ãu!!žjfcççž4ççžf¬µX!cž Uþ8q÷EºUºž-ÐËÑ»Ñ7nXan;cçµ?»z½ØÅÅ2½Y~zÑÑÑ{2Ø»2»Y»»»Y½Y»ØzÜÆ´hµ!oÃͼojx-ØÜkhÈkÈ ´¬-µw;ii;igic;kܽʻÊÈju}ojxxj§ž§ç;7k;!›´kÆÐ€€Ð77 k´´kh¬kç;È2é˜Ü½½½´;!nh´¤}j4gi°a¬-h lµ›€?s»˜é˜sÅ7ÐË22ÊÑÑYY½½Y»½½Xiw¬kc44ff¼ÃÛ½2 kÈkÅ??? kXigii;gi›Æ»YYѽ~»Ðµ;ÃÛͼÃí¼¼§j4ÆÐµ4cwaµ-k7Ë»~V½{7?7 ;çXiakËVéVØÐ?ÆÐÆÅh;}ͼ§4iµ-›µ¬´-nc!µ›hkh¬-›´7ÑÐkµX¬hhh?È!ž};4äçç4¤igç4ciiµhnaµµ!;gÃ18óãEEä1õÆÐ½2~YÆh››;žx§i-?Ѐ?s»˜é˜sÅ7ÐË22ÊÑÑYY½½Y»½½Xiw¬kc44ff¼ÃÛ½2 kÈkÅ??? kXigii;gi›Æ»YYѽ~»Ðµ;ÃÛͼÃí¼¼§j4ÆÐµ4cwaµ-k7Ë»~V½{7?7 ;çXiakËVéVØÐ?ÆÐÆÅh;}ͼ§4iµ-›µ¬´-nc!µ›hkh¬-›´7ÑÐkµX¬hhh?È!ž};4äçç4¤igç4ciiµhnaµµ!;gÃ18óãEEä1õÆÐ½2~YÆh››;žx§i-?Ѐ?s»˜é˜sÅ7ÐË22ÊÑÑYY½½Y»½½Xiw¬kc44ff¼ÃÛ½2 kÈkÅ??? kXigii;gi›Æ»YYѽ~»Ðµ;ÃÛͼÃí¼¼§j4ÆÐµ4cwaµ-k7Ë»~V½{7?7 ;çXiakËVéVØÐ?ÆÐÆÅh;}ͼ§4iµ-an¬hhµ¤!nak7€€Ñ»Ø˜V7hk ?±ÐË{Ê»ØØ½Üܽ½»½ÜÜÜÅ!cXhxÍ .YÊ7?Å?Å ÆÆ7ÐÐ7k;ž44i.ii!n±ÑYÊË~Yд;xÍÃÃÃof4§§4;7~±!g;lww°ah ?Y阽½Ø2½7;h¤44;k½V½Yz˜V³z2ТÍÍx4.a-µ-k-.ç!nXa´h››a›h haX›kÅ? д!4õl!!c4ž§ç;igcg;;;g-k-n-;i;!ç¥1EUóqÛgk7Ø»YYѱhn¬li4f¼cnk7€€Ñ»Ø˜V7hk ?±ÐË{Ê»ØØ½Üܽ½»½ÜÜÜÅ!cXhxÍ .YÊ7?Å?Å ÆÆ7ÐÐ7k;ž44i.ii!n±ÑYÊË~Yд;xÍÃÃÃof4§§4;7~±!g;lww°ah ?Y阽½Ø2½7;h¤44;k½V½Yz˜V³z2ТÍÍx4.a-µ-k-.ç!nXa´h››a›h haX›kÅ? д!4õl!!c4ž§ç;igcg;;;g-k-n-;i;!ç¥1EUóqÛgk7Ø»YYѱhn¬li4f¼cnk7€€Ñ»Ø˜V7hk ?±ÐË{Ê»ØØ½Üܽ½»½ÜÜÜÅ!cXhxÍ .YÊ7?Å?Å ÆÆ7ÐÐ7k;ž44i.ii!n±ÑYÊË~Yд;xÍÃÃÃof4§§4;7~±!g;lww°ah ?Y阽½Ø2½7;h¤44;k½V½Yz˜V³z2ТÍÍx4.a-µhk›;4!›µc›Å7Ë»V鯛hkkkÅÐsʽ½Ø½½zzØØzzVz l!››i§§¼}Í} 4ÅÆ?7Æ7??7??7s2Ë ›4ž4g;;l 7ËËÊÜÜ»Ñ ;} Ífoo¼4i›Ð{ËÆha!!;!;´zV½ÜzÈ2¬!ççil-7»z˜ézYËn¥ÍÍ}çµµ--´žž!›µ›hhh-µµn--h¬h ?7€ .i;;xcii44cii;cci;.-h›h¬;lgi;cx¶ääEE}µ {YÑY½Ð ´-;cçžžc›Å7Ë»V鯛hkkkÅÐsʽ½Ø½½zzØØzzVz l!››i§§¼}Í} 4ÅÆ?7Æ7??7??7s2Ë ›4ž4g;;l 7ËËÊÜÜ»Ñ ;} Ífoo¼4i›Ð{ËÆha!!;!;´zV½ÜzÈ2¬!ççil-7»z˜ézYËn¥ÍÍ}çµµ--´žž!›µ›hhh-µµn--h¬h ?7€ .i;;xcii44cii;cci;.-h›h¬;lgi;cx¶ääEE}µ {YÑY½Ð ´-;cçžžc›Å7Ë»V鯛hkkkÅÐsʽ½Ø½½zzØØzzVz l!››i§§¼}Í} 4ÅÆ?7Æ7??7??7s2Ë ›4ž4g;;l 7ËËÊÜÜ»Ñ ;} Ífoo¼4i›Ð{ËÆha!!;!;´zV½ÜzÈ2¬!ççil-7»z˜ézYËn¥ÍÍ}çµµ›µ›h°4!›X4;¬ ˽é7-kÈh´k±€ÊYؽÜÜܽ½½~ÜÜÊh›nhµ;jÃíÃ}Ãiah´ ??7? 7ËÊʀȵ§çiiµÈ€ÑYz½Y{- xj¼¼§§¼fç;-˽2Æ ;iiwnnµ§!n´7Y~³Ø½Ðh!cžž;- ½é~zÊ? xoÍiÈha›aa-;Ãç!-an¬---li›¬´kÈ?ÐÆ›¤clciÛ÷ Ío4¤4ccç44礵µn¬hµ!!;g¤.!¼8þþþEiÈÐ{YØ»YY€hkn;iii4ž4;¬ ˽é7-kÈh´k±€ÊYؽÜÜܽ½½~ÜÜÊh›nhµ;jÃíÃ}Ãiah´ ??7? 7ËÊʀȵ§çiiµÈ€ÑYz½Y{- xj¼¼§§¼fç;-˽2Æ ;iiwnnµ§!n´7Y~³Ø½Ðh!cžž;- ½é~zÊ? xoÍiÈha›aa-;Ãç!-an¬---li›¬´kÈ?ÐÆ›¤clciÛ÷ Ío4¤4ccç44礵µn¬hµ!!;g¤.!¼8þþþEiÈÐ{YØ»YY€hkn;iii4ž4;¬ ˽é7-kÈh´k±€ÊYؽÜÜܽ½½~ÜÜÊh›nhµ;jÃíÃ}Ãiah´ ??7? 7ËÊʀȵ§çiiµÈ€ÑYz½Y{- xj¼¼§§¼fç;-˽2Æ ;iiwnnµ§!n´7Y~³Ø½Ðh!cžž;- ½é~zÊ? xoÍiÈha›µn›lx4w›µçç;µµÈ»~7 ÆÅ Å 7ÐÊØzz½½z~z½zÜܘ~7h´n!¤Í ÛÛ ciah´Èk? Å7ssÊ7›;4žçgi°?»ÊY½Y»»±µ¼ÛxÍ}xo¼fjglkÊYYÊYhwg;°µµ;cçç¤laÈ7ËÜ~z{ha;çžiÅVéÜY{Ûà cÐ?-›--µÛç!--naah›icwhhkhhkk-wcfhÈco¢ºº ¥ujžç礤çž!!wµa°!;;;icwiÃäþäu°?Ë»»Ê»½»ÆÅh°;i¤çcçç;µµÈ»~7 ÆÅ Å 7ÐÊØzz½½z~z½zÜܘ~7h´n!¤Í ÛÛ ciah´Èk? Å7ssÊ7›;4žçgi°?»ÊY½Y»»±µ¼ÛxÍ}xo¼fjglkÊYYÊYhwg;°µµ;cçç¤laÈ7ËÜ~z{ha;çžiÅVéÜY{Ûà cÐ?-›--µÛç!--naah›icwhhkhhkk-wcfhÈco¢ºº ¥ujžç礤çž!!wµa°!;;;icwiÃäþäu°?Ë»»Ê»½»ÆÅh°;i¤çcçç;µµÈ»~7 ÆÅ Å 7ÐÊØzz½½z~z½zÜܘ~7h´n!¤Í ÛÛ ciah´Èk? Å7ssÊ7›;4žçgi°?»ÊY½Y»»±µ¼ÛxÍ}xo¼fjglkÊYYÊYhwg;°µµ;cçç¤laÈ7ËÜ~z{ha;çžiÅVéÜY{Ûà cÐ?----µ ç!--ç!!sz»ÐÆÐ7777s»½½zzØØz½~zÜVzÐËÆ7h¬!o¢¶¶¢ ºj4clwah´´È ?ÆÆ7±Ðs7h!cçc!;7½»Ê»{ÑY?c}íÍxj¼¼§c;X?»½Ê2h;c;wµh;gci;çççiiµh±˜éË2Ð n;l?˜~YY2 ãºc7¬h¬¬µž¢çhh´¬¬khiXkk--µg§o¼ ¼inli¼¢÷Û¥¶÷of4444;;!!lwl¤i!!;lc¶8UU8ãchÑË2ػشl;içç!!sz»ÐÆÐ7777s»½½zzØØz½~zÜVzÐËÆ7h¬!o¢¶¶¢ ºj4clwah´´È ?ÆÆ7±Ðs7h!cçc!;7½»Ê»{ÑY?c}íÍxj¼¼§c;X?»½Ê2h;c;wµh;gci;çççiiµh±˜éË2Ð n;l?˜~YY2 ãºc7¬h¬¬µž¢çhh´¬¬khiXkk--µg§o¼ ¼inli¼¢÷Û¥¶÷of4444;;!!lwl¤i!!;lc¶8UU8ãchÑË2ػشl;içç!!sz»ÐÆÐ7777s»½½zzØØz½~zÜVzÐËÆ7h¬!o¢¶¶¢ ºj4clwah´´È ?ÆÆ7±Ðs7h!cçc!;7½»Ê»{ÑY?c}íÍxj¼¼§c;X?»½Ê2h;c;wµh;gci;çççiiµh±˜éË2Ð n;l?˜~YY2 ãºc7¬h¬hµ4¥çhh.chkÜÐÊ Æ7?7ËËѽzܽ½½ÜܽzzܘØÊ€ËsÐÆh;Íãã¥Û }¼§ç;µ-hhkÈk Ѐ{€7È-!cg;n-´Êz€Ê»»ÊÊ?i¥Ûͼf4cc¬sØYØ2s´.4çcc°;c¤;!;gi;;;lnk??Èh!hsÊzY˜zkÛíi?Ƭ-µw¼¢a-iµhk-li´ È›!if ÃÍoc-haižÃ¶Eq Íjgg;wwl!wµ;;;;;lwiE881ã¢!72Ê{»»»z~kw;;;¤.chkÜÐÊ Æ7?7ËËѽzܽ½½ÜܽzzܘØÊ€ËsÐÆh;Íãã¥Û }¼§ç;µ-hhkÈk Ѐ{€7È-!cg;n-´Êz€Ê»»ÊÊ?i¥Ûͼf4cc¬sØYØ2s´.4çcc°;c¤;!;gi;;;lnk??Èh!hsÊzY˜zkÛíi?Ƭ-µw¼¢a-iµhk-li´ È›!if ÃÍoc-haižÃ¶Eq Íjgg;wwl!wµ;;;;;lwiE881ã¢!72Ê{»»»z~kw;;;¤.chkÜÐÊ Æ7?7ËËѽzܽ½½ÜܽzzܘØÊ€ËsÐÆh;Íãã¥Û }¼§ç;µ-hhkÈk Ѐ{€7È-!cg;n-´Êz€Ê»»ÊÊ?i¥Ûͼf4cc¬sØYØ2s´.4çcc°;c¤;!;gi;;;lnk??Èh!hsÊzY˜zkÛíi?Ƭ-µwf÷›-ilw›´¥ik ±7Ð7?Æ7ÐËÊØz½½½zz½zÜܽ2ÊÑ2{€7hiÃ÷¢¥÷}o§4ciµ¬hkÈ ?Æ€Ês7?hµµ!!µ-?sÊ222YËX¼ Û}¼i¤iµ7Y½½ÑÊ›çuj4wl;gcciic;fiÅ7hw ´¼n»~éV Ðío! khkh}ã¼li-k ›!-hh´hhh-w;fÍÍu}i›h-;ic¼ ¥¥¶÷Íži!°µµ!!wwlÍ1)8󺬱Ê2Øz»2»»Ë w¤clw›´¥ik ±7Ð7?Æ7ÐËÊØz½½½zz½zÜܽ2ÊÑ2{€7hiÃ÷¢¥÷}o§4ciµ¬hkÈ ?Æ€Ês7?hµµ!!µ-?sÊ222YËX¼ Û}¼i¤iµ7Y½½ÑÊ›çuj4wl;gcciic;fiÅ7hw ´¼n»~éV Ðío! khkh}ã¼li-k ›!-hh´hhh-w;fÍÍu}i›h-;ic¼ ¥¥¶÷Íži!°µµ!!wwlÍ1)8󺬱Ê2Øz»2»»Ë w¤clw›´¥ik ±7Ð7?Æ7ÐËÊØz½½½zz½zÜܽ2ÊÑ2{€7hiÃ÷¢¥÷}o§4ciµ¬hkÈ ?Æ€Ês7?hµµ!!µ-?sÊ222YËX¼ Û}¼i¤iµ7Y½½ÑÊ›çuj4wl;gcciic;fiÅ7hw ´¼n»~éV Ðío! khkhÍE§!.lXahxº÷§cw?ÊÐkÅÆ7ÐË»½½½zzؽ½~ÜÜzØY»YYkgu ÷¢ íüo¼§;!a¬¬hkk7ÐËsÐÐÆÅk-!!- ?ÐË{{{»» ! Ãççc?»~ܽ½Ënçi;;iggi;°g¼¼i- È›¬ni!sVÜܘ24ºo!h¬°w;o÷Ejiil¬ Èwglµ ´´ Åkh´;ç¼Ã¼¼ºÛÍ;-¬›X›l§í÷¥¥¥íoži!µ!wwcíþ)Û n¬Ð2½½€-ii!lXahxº÷§cw?ÊÐkÅÆ7ÐË»½½½zzؽ½~ÜÜzØY»YYkgu ÷¢ íüo¼§;!a¬¬hkk7ÐËsÐÐÆÅk-!!- ?ÐË{{{»» ! Ãççc?»~ܽ½Ënçi;;iggi;°g¼¼i- È›¬ni!sVÜܘ24ºo!h¬°w;o÷Ejiil¬ Èwglµ ´´ Åkh´;ç¼Ã¼¼ºÛÍ;-¬›X›l§í÷¥¥¥íoži!µ!wwcíþ)Û n¬Ð2½½€-ii!lXahxº÷§cw?ÊÐkÅÆ7ÐË»½½½zzؽ½~ÜÜzØY»YYkgu ÷¢ íüo¼§;!a¬¬hkk7ÐËsÐÐÆÅk-!!- ?ÐË{{{»» ! Ãççc?»~ܽ½Ënçi;;iggi;°g¼¼i- È›¬ni!sVÜܘ24ºo!h¬°w;o÷E¼ciw;µwhi¢ ¥÷k????ÐÐsÊY½½zz½Ü~~zY½½½ØØ½½Ø»7n4u }¼jfjoçlµa›¬´È?±Ð€77? ›whkk?ЀÐÐ{2sȧ¥ íÛÍj§4ik{½zÜØØ½Ë-u4;l;igigj}¼¼¼;°lž4l¬{{Ðhµ›lXwçuÃ}í÷¥§ç4µhȵ¼4;wkhhÈ ÈÈ È›ij¼} ÷;wµ--!}Û¢¥ uo§cii;!!!!!!!ww4þ8¥w7Ð ´h-µÐÐÑzÊk;g;µwhi¢ ¥÷k????ÐÐsÊY½½zz½Ü~~zY½½½ØØ½½Ø»7n4u }¼jfjoçlµa›¬´È?±Ð€77? ›whkk?ЀÐÐ{2sȧ¥ íÛÍj§4ik{½zÜØØ½Ë-u4;l;igigj}¼¼¼;°lž4l¬{{Ðhµ›lXwçuÃ}í÷¥§ç4µhȵ¼4;wkhhÈ ÈÈ È›ij¼} ÷;wµ--!}Û¢¥ uo§cii;!!!!!!!ww4þ8¥w7Ð ´h-µÐÐÑzÊk;g;µwhi¢ ¥÷k????ÐÐsÊY½½zz½Ü~~zY½½½ØØ½½Ø»7n4u }¼jfjoçlµa›¬´È?±Ð€77? ›whkk?ЀÐÐ{2sȧ¥ íÛÍj§4ik{½zÜØØ½Ë-u4;l;igigj}¼¼¼;°lž4l¬{{Ðhµ›lXwçuÃÍí ¥§ç4!iaµ.¼}Í1Ežn 7 77zÜz½½½½zÜÜYØYØYÑ27h;ç¼u í¼§¼í¼c;!wX›´ ÆÐ7Æ7?€ ¬ÈÈÈ Æ77ЀËÐl¼÷÷ o¼§;›7»z½YYYY›4§§ç;;;4ž÷ç¼u}ºu!k!Ã}í¥¥¥ãEqÃÃ;n;}ÍÛ÷ºofµ--Xi§i!w-?? ÅÐŵçf§uÍÃ}Û¥÷f!h kç¼ÍÃíu4ii;ll!!l!;xþEž »»Ê?hlci›µ;!!iaµ.¼}Í1Ežn 7 77zÜz½½½½zÜÜYØYØYÑ27h;ç¼u í¼§¼í¼c;!wX›´ ÆÐ7Æ7?€ ¬ÈÈÈ Æ77ЀËÐl¼÷÷ o¼§;›7»z½YYYY›4§§ç;;;4ž÷ç¼u}ºu!k!Ã}í¥¥¥ãEqÃÃ;n;}ÍÛ÷ºofµ--Xi§i!w-?? ÅÐŵçf§uÍÃ}Û¥÷f!h kç¼ÍÃíu4ii;ll!!l!;xþEž »»Ê?hlci›µ;!!iaµ.¼}Í1Ežn 7 77zÜz½½½½zÜÜYØYØYÑ27h;ç¼u í¼§¼í¼c;!wX›´ ÆÐ7Æ7?€ ¬ÈÈÈ Æ77ЀËÐl¼÷÷ o¼§;›7»z½YYYY›4§§ç;;;4ž÷ç¼u}ºu!k!Ã}í¥¥¥ãEqÃÃ;n;}Í÷¶jjXww4wnµc§¢1ºÍµÈÐ7ÐÊYÜzYØØ~zØ»Y½YY½»Y»Ê7hµ;¤§¼ÍÛüoÍoci;llnak ÅÅ Ð?µ-hk ?? ?7Ð-g Û Íof§4iµ7½z½YØØ´gjçl;¤4}íu¼Ãq4¤oÛº¶qEqE1EEi´!Ãí ºEEíÃa¬´hµçfži4.-?ÐÅkkXX!c§ž}}¼xÍ oi›kka.jíÃxÍ}x4c.;ll!wlµgäUí°ÐsÑÜVVY ›!;lww4wnµc§¢1ºÍµÈÐ7ÐÊYÜzYØØ~zØ»Y½YY½»Y»Ê7hµ;¤§¼ÍÛüoÍoci;llnak ÅÅ Ð?µ-hk ?? ?7Ð-g Û Íof§4iµ7½z½YØØ´gjçl;¤4}íu¼Ãq4¤oÛº¶qEqE1EEi´!Ãí ºEEíÃa¬´hµçfži4.-?ÐÅkkXX!c§ž}}¼xÍ oi›kka.jíÃxÍ}x4c.;ll!wlµgäUí°ÐsÑÜVVY ›!;lww4wnµc§¢1ºÍµÈÐ7ÐÊYÜzYØØ~zØ»Y½YY½»Y»Ê7hµ;¤§¼ÍÛüoÍoci;llnak ÅÅ Ð?µ-hk ?? ?7Ð-g Û Íof§4iµ7½z½YØØ´gjçl;¤4}íu¼Ãq4¤oÛº¶qEqE1EEi´!Ãí ¶1E¼µa°c!!;ç§ ¥¶¥ÃcnhÆËY½Yؽ½½»YYYØØY½YÊÆ´›°;cç§ÃuuoÃ}uçççccc..-kk--kÆÈXhh Å È Æ7 ¼Û¥÷ xÃx4ihܘz½Y» lj§c.ic¤q} žj¥º ºqqãEº¥ºEq1í;!j ÛÛºEó x- kµgž¼fžg!µ›-°;礤44¤gižuÍÃoí }4!È7kl4ÃxoÍí}ü4¤i;;;;l!cžÛUä¶iÅË2ÊÊ»ÊYéÜ€k›a°c!!;ç§ ¥¶¥ÃcnhÆËY½Yؽ½½»YYYØØY½YÊÆ´›°;cç§ÃuuoÃ}uçççccc..-kk--kÆÈXhh Å È Æ7 ¼Û¥÷ xÃx4ihܘz½Y» lj§c.ic¤q} žj¥º ºqqãEº¥ºEq1í;!j ÛÛºEó x- kµgž¼fžg!µ›-°;礤44¤gižuÍÃoí }4!È7kl4ÃxoÍí}ü4¤i;;;;l!cžÛUä¶iÅË2ÊÊ»ÊYéÜ€k›a°c!!;ç§ ¥¶¥ÃcnhÆËY½Yؽ½½»YYYØØY½YÊÆ´›°;cç§ÃuuoÃ}uçççccc..-kk--kÆÈXhh Å È Æ7 ¼Û¥÷ xÃx4ihܘz½Y» lj§c.ic¤q} žj¥º ºqqãEº¥ºEq1í;!j ÛÛºE÷x!hh!›!µµl;gxoqºÍça?Ëѽ½zV2Ø»»Y½½z½Y?k›nw;i4f¼xxÃ}u¼cç4çç;h-››h ËËh›h khhÈÅ? ?›¥¥ Û}ž44;ÈY½˜˜~YzéÅç¼ccicž¼uÃx¼f ç¥÷í÷¢ º¥¥¥÷Í¥ç§ à ¶U÷Íçµkkcccfžž4ill¤;c4ç¤ccc;žÃ¼f¼x¼Ãu§! ± ¬4jͼ4¤giic;!;4ç¶8óohs»{ÜÜ~z½Æ-hh!›!µµl;gxoqºÍça?Ëѽ½zV2Ø»»Y½½z½Y?k›nw;i4f¼xxÃ}u¼cç4çç;h-››h ËËh›h khhÈÅ? ?›¥¥ Û}ž44;ÈY½˜˜~YzéÅç¼ccicž¼uÃx¼f ç¥÷í÷¢ º¥¥¥÷Í¥ç§ à ¶U÷Íçµkkcccfžž4ill¤;c4ç¤ccc;žÃ¼f¼x¼Ãu§! ± ¬4jͼ4¤giic;!;4ç¶8óohs»{ÜÜ~z½Æ-hh!›!µµl;gxoqºÍça?Ëѽ½zV2Ø»»Y½½z½Y?k›nw;i4f¼xxÃ}u¼cç4çç;h-››h ËËh›h khhÈÅ? ?›¥¥ Û}ž44;ÈY½˜˜~YzéÅç¼ccicž¼uÃx¼f ç¥÷í÷¢ º¥¥¥÷Í¥ç§ à ºä÷Íç-hkh››n!;iilc4¢ µ±½»zzÜÜ~YYYY½½YYY½ØÑËÆ -µµa!gç4žoÍuÍç4ž44444g›kkµ-ÅÐË?h›a›¬¬hhkkk¬-§¥ íxž§ç!лØzé»Ê»»?cu¤wgg44žü4kȬ!c4ÃuÍ}Íí¶EoÃofž4}¥ºq1¶f;!µ¬ -;44çci;;!igcg;i4f§§§¼¼§çl› Ækµc¼ÃÃÃuͼžcii¤i;;§ç.881w€€{»Ê½Ü~V{h-hkh››n!;iilc4¢ µ±½»zzÜÜ~YYYY½½YYY½ØÑËÆ -µµa!gç4žoÍuÍç4ž44444g›kkµ-ÅÐË?h›a›¬¬hhkkk¬-§¥ íxž§ç!лØzé»Ê»»?cu¤wgg44žü4kȬ!c4ÃuÍ}Íí¶EoÃofž4}¥ºq1¶f;!µ¬ -;44çci;;!igcg;i4f§§§¼¼§çl› Ækµc¼ÃÃÃuͼžcii¤i;;§ç.881w€€{»Ê½Ü~V{h-hkh››n!;iilc4¢ µ±½»zzÜÜ~YYYY½½YYY½ØÑËÆ -µµa!gç4žoÍuÍç4ž44444g›kkµ-ÅÐË?h›a›¬¬hhkkk¬-§¥ íxž§ç!лØzé»Ê»»?cu¤wgg44žü4kȬ!c4ÃuÍ}Íí¶EoÃofž4}¥ºq1¥f;ÈÈh¬--¬hȬ- 7È›-!§ ¢hzܽY˜éܻʻY½½½z½Y2?k¬a°n°lcçç§oÍ}x4ç4ç4444iXÈ hh €s7È-›--hh´hk´ È-i ÷  o§4iXsܽ黽½{µçc.ç;g¤žjchkk-nl;çž§fxÃi;4x4!uí q1¥žicc;µlcžž§4çc;!licig;l;c4jjj4i!nhÐ ›;4x}}uuo§ciicçžcfº)8jÐËY{YØzzz˜2 ÈÈh¬--¬hȬ- 7È›-!§ ¢hzܽY˜éܻʻY½½½z½Y2?k¬a°n°lcçç§oÍ}x4ç4ç4444iXÈ hh €s7È-›--hh´hk´ È-i ÷  o§4iXsܽ黽½{µçc.ç;g¤žjchkk-nl;çž§fxÃi;4x4!uí q1¥žicc;µlcžž§4çc;!licig;l;c4jjj4i!nhÐ ›;4x}}uuo§ciicçžcfº)8jÐËY{YØzzz˜2 ÈÈh¬--¬hȬ- 7È›-!§ ¢hzܽY˜éܻʻY½½½z½Y2?k¬a°n°lcçç§oÍ}x4ç4ç4444iXÈ hh €s7È-›--hh´hk´ È-i ÷  o§4iXsܽ黽½{µçc.ç;g¤žjchkk-nl;çž§fxÃi;4x4!uí q1¥4i? k´k???ÆhkÊYË?7ÆÐ- ¥Ã2Ë»YY½Y½zz½ÜY{Ë7Åk¬aµnwiççoÍožç44ç4çk Èk Ð{Ð Èhhhh´h´k kh!f÷¥¢¥Íf4çkYܘ½zz7l4gi;.;iç4;›hk´¬-X!;icççžj¥ººíçžxͼ¼¥ã}iiçciicç4çcççi;..ic;!Xw;çf¼joo¼fçiwÅ?Åh§§ÃÍÃçcccçç¼ç›ç8-Ð2ÐY½~˜˜ÊÅ? k´k???ÆhkÊYË?7ÆÐ- ¥Ã2Ë»YY½Y½zz½ÜY{Ë7Åk¬aµnwiççoÍožç44ç4çk Èk Ð{Ð Èhhhh´h´k kh!f÷¥¢¥Íf4çkYܘ½zz7l4gi;.;iç4;›hk´¬-X!;icççžj¥ººíçžxͼ¼¥ã}iiçciicç4çcççi;..ic;!Xw;çf¼joo¼fçiwÅ?Åh§§ÃÍÃçcccçç¼ç›ç8-Ð2ÐY½~˜˜ÊÅ? k´k???ÆhkÊYË?7ÆÐ- ¥Ã2Ë»YY½Y½zz½ÜY{Ë7Åk¬aµnwiççoÍožç44ç4çk Èk Ð{Ð Èhhhh´h´k kh!f÷¥¢¥Íf4çkYܘ½zz7l4gi;.;iç4;›hk´¬-X!;icççžj¥ººíçžxͼ¼¥ãuii?Èk?ÐÐÐÆkksÊ€7s{2´¤¼ ¥¼- Ð?Æs»YY½Y»Ê€Ækkh›aaµ;c4ç§}ͼ4¤¤4çžçžç;›´kkÅ7ÐË7 ÈÈkkkkkhhk-iu÷í÷÷¼§ž;¬szØ»˜Ü~˜Êaçg!;;;icžç.!µ›hhh¬-anwl;g4¼ºEÛÃÛ }xž;içjžççççc;w;icicçç¤;!µµ;¤ž§foÃÃx¼4i!µnk? -l;cof4ccgžc§a¬¥þžÐÐ7ÑÜ~Øsk?Èk?ÐÐÐÆkksÊ€7s{2´¤¼ ¥¼- Ð?Æs»YY½Y»Ê€Ækkh›aaµ;c4ç§}ͼ4¤¤4çžçžç;›´kkÅ7ÐË7 ÈÈkkkkkhhk-iu÷í÷÷¼§ž;¬szØ»˜Ü~˜Êaçg!;;;icžç.!µ›hhh¬-anwl;g4¼ºEÛÃÛ }xž;içjžççççc;w;icicçç¤;!µµ;¤ž§foÃÃx¼4i!µnk? -l;cof4ccgžc§a¬¥þžÐÐ7ÑÜ~Øsk?Èk?ÐÐÐÆkksÊ€7s{2´¤¼ ¥¼- Ð?Æs»YY½Y»Ê€Ækkh›aaµ;c4ç§}ͼ4¤¤4çžçžç;›´kkÅ7ÐË7 ÈÈkkkkkhhk-iu÷í÷÷¼§ž;¬szØ»˜Ü~˜Êaçg!;;;icžç.!µ›hhh¬-anwl;g4¼ºEÛÃÛ }xž.?´hk?7Æ7±Ð7ÐÐË»»Èlio÷ujµÐ±Å? hs»ÜÜ»Ð?kkh---››µ;¤¤4¼}o444ž4žž4iX-kkkÈ?7?Æ ? kkkÈÈkk´kkµ4Í¥¥ Ãx¼jçi¬ÊYYzzézÈii;iiggc¤g;!wa¬¬hhh´k-aX!;iž¢  ¥¥ §gçif§4¤cç¤;µ-n!i44¤;´-i4¼¼ooo§çc;hkÈh;gi¤ççççcçcigižXÆi8)¥ÅsËYY~ÜYд?´hk?7Æ7±Ð7ÐÐË»»Èlio÷ujµÐ±Å? hs»ÜÜ»Ð?kkh---››µ;¤¤4¼}o444ž4žž4iX-kkkÈ?7?Æ ? kkkÈÈkk´kkµ4Í¥¥ Ãx¼jçi¬ÊYYzzézÈii;iiggc¤g;!wa¬¬hhh´k-aX!;iž¢  ¥¥ §gçif§4¤cç¤;µ-n!i44¤;´-i4¼¼ooo§çc;hkÈh;gi¤ççççcçcigižXÆi8)¥ÅsËYY~ÜYд?´hk?7Æ7±Ð7ÐÐË»»Èlio÷ujµÐ±Å? hs»ÜÜ»Ð?kkh---››µ;¤¤4¼}o444ž4žž4iX-kkkÈ?7?Æ ? kkkÈÈkk´kkµ4Í¥¥ Ãx¼jçi¬ÊYYzzézÈii;iiggc¤g;!wa¬¬hhh´k-aX!;iž¢  ¥¥ §gçÆhXµ¬h?7 7Ð?Æ{ÑÐË7ha¤.hk ÐhÈÐѽÜYÑ?k´hh-›--a!;i4jÃj444fçiw- Æ? ?Æ?ÆÅÈk´kkk´ h´k¬;j ¥ Íxç¤çch½ÜÊzV˜s-iç44çccl!na››¬hh´k¬›X.o Û} í¶ºͧçcgç§¼f4¤icglw;içççç;!kÈ-wigç§ÃÃÍÍÃg;µa´khµ!iicgg¤ççç¤ccggçw7-qäa±Ëл½é»€7ÆhXµ¬h?7 7Ð?Æ{ÑÐË7ha¤.hk ÐhÈÐѽÜYÑ?k´hh-›--a!;i4jÃj444fçiw- Æ? ?Æ?ÆÅÈk´kkk´ h´k¬;j ¥ Íxç¤çch½ÜÊzV˜s-iç44çccl!na››¬hh´k¬›X.o Û} í¶ºͧçcgç§¼f4¤icglw;içççç;!kÈ-wigç§ÃÃÍÍÃg;µa´khµ!iicgg¤ççç¤ccggçw7-qäa±Ëл½é»€7ÆhXµ¬h?7 7Ð?Æ{ÑÐË7ha¤.hk ÐhÈÐѽÜYÑ?k´hh-›--a!;i4jÃj444fçiw- Æ? ?Æ?ÆÅÈk´kkk´ h´k¬;j ¥ Íxç¤çch½ÜÊzV˜s-iç44çccl!na››¬hh´k¬›X.o Û} í¶ºͧ礀k›µ›-È?´ÅÅkÅÑYÊËÐ ›;4§Í4l°- Æ?´ ±2zÜØÊÐÅh¬h¬--h-a-¬cfofž§§f§žc;›ÅÐ7Æ??Æ7Æ? k´kkkhkh¬h-XçÍíÛ÷÷ÛÍÃÃccji?ÑÑz½˜¬44ç444çci;;wnn››---››¤§í¶1º}Í¥ÛÃu¼žiccž¼f§fciii;;w;c¤ç4gi›k -!;içfÃ}Ãf4c!µhkh›µw;i;;ig¤ççcc¤;c.??ç1äÃ7€7YÜéVYÐÐÊ€k›µ›-È?´ÅÅkÅÑYÊËÐ ›;4§Í4l°- Æ?´ ±2zÜØÊÐÅh¬h¬--h-a-¬cfofž§§f§žc;›ÅÐ7Æ??Æ7Æ? k´kkkhkh¬h-XçÍíÛ÷÷ÛÍÃÃccji?ÑÑz½˜¬44ç444çci;;wnn››---››¤§í¶1º}Í¥ÛÃu¼žiccž¼f§fciii;;w;c¤ç4gi›k -!;içfÃ}Ãf4c!µhkh›µw;i;;ig¤ççcc¤;c.??ç1äÃ7€7YÜéVYÐÐÊ€k›µ›-È?´ÅÅkÅÑYÊËÐ ›;4§Í4l°- Æ?´ ±2zÜØÊÐÅh¬h¬--h-a-¬cfofž§§f§žc;›ÅÐ7Æ??Æ7Æ? k´kkkhkh¬h-XçÍíÛ÷÷ÛÍÃÃccji?ÑÑz½˜¬44ç444çci;;wnn››---››¤§í¶1º}Í¥ÛÃu¼žË?hhhhkÆ€?k?ÊÐ{7±?h;j¼ilg;›???ÐY~Ñ ¬---››k›› 7k!¤¼§žžff§ž§gk77??Å ? kkkÈkkk´h-¬›lu¢¢uuíç¼wƽYYYØÜ˜iž4ç4ž4ç¤;i;!!l!Xn››---h!4x E1º ÛxfÃuxu4¤¤4§4¤iigc.;i¤444ç;h?´;.i;gÃ}¼§wa´khn!!l;.c4çi¤ç.ggÈÐ-ã8E7ÐÐ{Vܱh {Ë?hhhhkÆ€?k?ÊÐ{7±?h;j¼ilg;›???ÐY~Ñ ¬---››k›› 7k!¤¼§žžff§ž§gk77??Å ? kkkÈkkk´h-¬›lu¢¢uuíç¼wƽYYYØÜ˜iž4ç4ž4ç¤;i;!!l!Xn››---h!4x E1º ÛxfÃuxu4¤¤4§4¤iigc.;i¤444ç;h?´;.i;gÃ}¼§wa´khn!!l;.c4çi¤ç.ggÈÐ-ã8E7ÐÐ{Vܱh {Ë?hhhhkÆ€?k?ÊÐ{7±?h;j¼ilg;›???ÐY~Ñ ¬---››k›› 7k!¤¼§žžff§ž§gk77??Å ? kkkÈkkk´h-¬›lu¢¢uuíç¼wƽYYYØÜ˜iž4ç4ž4ç¤;i;!!l!Xn››---h!4x E1º ÛxfÃuxultris-1.0.19/src/gfx/back3.bmp0000664000175000017500000011311612140770047012725 00000000000000BMN–6(Ç»’û-û-~rr\NNA::-&&È®±³ž ufgŽeVWŠ‹2.-UJJ”‚ƒÞÒÔQFFm^_ áÌÎ"~=22I>>vjjßÄÇ©šš‚vvD&*7!W>>(S26oNS^cxV[ †jj¿¦¨2&&Ú¾ÁK25’vv&"!¡’“kJO/cFJG.1X:>2**^RR§‚‡fZZ׺½‚ffqbc9642 \JJµ’—”rwXBBcNN"MBB ~ƒF::‡nnlVV &¼ž¢š‚…9..cJJÔ®´¬Št^^’z}€nnXFF*""R:: $±Ž“6**>&)cBF?..D22K66dRRЩ®&œ†† “nsjZZ"„rrŒz{~bb*Ÿz½šŸP>>vZZþçëxbb2"";**dNRbRVXFJoRVmVZ‹rr':&&jZ^zjjÖ²·)XBFL::r^b•~~-"|ff˳µÇ¦«7""@.2<*.ŒbiL:>' _>C«–˜Q>BD26Ä¡¦€jn´–šŽnr]JNL6:5&*ybfùÛ߈vvA66}fj¤Š¥ŽŽjNRjoD*-"›v{rVZ˜z~E6:# vz‹fl.)*^BFjRR^FJøÍÓ©’’iRV¨†‹2"&pZZdJNˆnr^FFC"&x^b—~‚îÅÊRBF†bgwRWF66T6: ‚†Z_¢†‰W>B "¼¢¥-"&9"&qZ^Ȫ®€jjkFL³š¼–œÀª«€bfN.3•†‡.""ض»*å¾ÄáºÀjNNnrŒrvrVV§Ž’RBBˆjn1„fj.µ¢£†rvíÌÑz^^.:&*^NR ôÔÙ†Š"R:>6&&«’–Žvv”vzwZ^,,èèüGèA®GLAAÐY©%e©ßjß}©øuj~‘Ý©©n,d Ý»ú݈ŽvúÇÇ(ñaÝv_ˆˆLj‘…­ƒODW(\4–-((nLy¡(,%èèg’õ’üY’YeAG©,®®  , Y%ÐeeôήAeøDn®DAeY ,e’A A ~®®Ý®®~Ðdj®Î©ß%®Ð®© ®eßd©Wn ,Y‘d jdønd DA  èèƒ,øè²¥,AAèô,A® ®n®‘ñWWOH©ß©Ýꌃ‘}»u%Ý‘~ô}Ý®n©}}²®dj‘ß%‘ê~ññ‘Œñj~u®‘4‘d~©ôßdÐAZ,d®dj}j©eAèèGüü’YYYY,G©}Í-4-n , ,,d‘j}‘‘ ñß©deL®dnø(}݃e©\nêߎdj‘®dß(Ý®ßd’nd}߃®‘4 Ý©©ôWd®Î‘n}%ÎDA G , ø,eè²¥ü,,,,Aèè WÝd4–Jq›žxkivœCb`…¹\yÇúê…{VÇ_ú]œqVœŽ…Vtç›ÓJ1v©`OEH\dddDƒ‘4Ýd©ßd~ø©®Ð’GG’²üYYõ’üÎôGe d\_Ý,j- ‘((y€>v…ñ<uƒ\d®dd_úñúvu‘Aeü eƒ eøèg¥’e,W -E­7H•ÌçŒ7÷  S¸„B‡fMíæ±¼ÙîÁ‰ÏN¸°aC>ÕãîCI°£°Áœ‰{BV…–Äl>ŽO©VnÄ¢óÇß_(q n’AYYYg’²Y,jYÐÝÐq\ 4 - vESVqUV…Vx†¢¾¾†S¿ÓB¾‰S¦q¹ N¼‰˜…S5ç”ÇŒúvÇú­•VE…(ôn­(qŽ`ú¡©ƒEÝ®©Ð--³,’’è’,WOH•Ž_¢ŠÜ¼kBS°{U˜ÚTºNµ/FféÕk‡ICV Óž¹¶¾¼wî™ÕÓ_¢>Õ ¼Šf*œlJqv;ú…焜 ¼bÇvçVÇwVtqã4D èA²’,,®(¡VEOOHH`<ççE… Hç<ä”°‰¼z¢ÁI"é—I™|PÊ!µ¿ÌmfhÉɵRÁ¿a½Õ†ÌJ&fäý{´½ýÌž«´`P¶¹>œ°¹¢k‡X_˜¹`Œœ{*¼•SÇ …A-gYYK‘(H\b•yuvHÇv‘<ç H5>q…v>JSç>SÓ±À“+¿11ȸ¾‰3´‰°BÒvœŽ›v„]S>qbq Uqn_v©Žwqv\}vy…©–œ` ò\Ýø_݈,Ñü¥¥}Dˆ<>vçžVV*V>µÿ¬/r$$Åmzrhp&![±&ŧº¤¤^£l$b&÷+¦|ûw{ÔÏw¼¨¢«PaÀœa#P´PP2S‡ I2S«œËɉlðb–BUHb- èG’üè €q¡5­Hñq_qçJS`>tqJX¦å¸ÀaÉ“½*Áï$1¨µ¿Tk2wq>T_„JJÇ>•†bOÇ­ ;>vß¡Oñ`\•vÇñêq…4ƒÑ¥’С7 V`vV„Vb3ÚÆ¿|*ÖI¿:6@oº?ËF$R@¸@P6‡#þ:É#Úš£#2r£3Pªå⦽#2B½ëÿ¿ë:Ùþ@1ý«"`ÌýÚÉÉ¿¼°þ̬ÁžŽ• ÎK’Y,(›Ç_`q`œœ`òvb‰VH»Ž'qúÝúUU…(ß»ÝjÇyçBÒì_¿¹zœ–²ü%L;i¹ˆùÀC«È¹#£?Ï£å¨rÀ/Û&¸§Øp#º+^6ªâFª¤ÊÚrëlðé¨"zéšrÚz#Úåþ"31B^rTðzPPÿÅm¼#å$1Èr&/±éÿrÁœB EÇ\`<…-`J>`VñbCXqÇB…2Jty>ÓJ¾*Óvq…>V…HfUßVÇBƒa•>Ç`HÇñl úŽ›`(…~Ò(ñúñvbœ2_̶`_…4²üÐL˜kbqÌ`½aSÔ×@“zš—ºÆM$o?‡QöŸ—Q:‡oË#[‹&Té&P1½1^TBSÌSŠ'ÿIéPz䤤¼:ÆÀ!/@æ"@IF?#þ/mâ*?ð!m‡XÈCJE{\G’WHú……>„ŽÇ‰>bUt>¼ç¼b kJrµÇ ;>¼€ ; 7; Jkž°ÕVVybSUbV›b J…q…­B–ÇBçO;]_ú_]„|«é€ˆˆ-’gü©n7ã'w`µ¼1‰‰É|âÔ™¤Ù'f‹Ú£#Ôö¸£Ø@@Ø—&×Rr™Ïl‡fMíä‡U '¢××â—÷öö9棾£MMÓ×þ×'T&‡Mð§Ï™&!±$“SV•ED’üg,4êò…•Èqb vEv\ñ`ŒqqCtq_<`7ç7•¡Eß¡(EV\V–`ú`êOŽ>ˆƒÝˆú­ƒVŽ…vòÝú\(E(qB›wIJä' ­-õgüUbJ¼¿´“Byb;U ÇiV`çCvêOŒ‘vqVa_w°{ÓÓžÓ˜{›l˜Ü.žITP>>llkUl  ‡.æT'‹)ööÿš^È^ÛBû‡egüKçÝ_2¹B…ŠÓUÒ©Y©A‘DÝjˆ%‘ˆ®ñ ®G(4ÝWADDGLn©e®® ,èè%-d}\² eDˆˆƒDDˆ,ÎÎÎÑ ƒõ-edDú_>x„2fÓӹ܆Ž(Ñ’4UwéÖ#mwžç¢75n®©nn©®d‘dD‘-©’jH®‘Žñ20vu‘²dÝ©dW d 0ê0}(WÝÒßΑƒÝun݈0êaœ_âNŸŸªéȵ¿“…ynDYüOE¡]¨a`…blPìd³,-njúÐ,ßÝdAGe¡èü,gAG-ÐdWDA ,-WnÐÝA4ø ø,,4Ñ Ž üèGƒƒÎ,eA®©(7>…C`œ{Pw£›Žõg²G-ç–Úr¬šz¼bnA®%dßdDe®ÐADjjd®nݲ}80êjÒ8jjßK ô©Ð²Gn_ñ Z%ƒ®}jñvßnßôôÎ~jñ=¯¯êêa±‹™I!ÛUvê¡G,’,²<4–_q…¹”k•jnW-²nÝg-®ÍA®ÝW®G’ ÝdeGDn©,-W-E,,eG’»®©\LW-- ,Έ4 ˆèÎG ƒˆÍøÝ eЩž>…¶Žäq*N ó¡’g’üO5¼¿^/þžÔãW²®d’ n(((\_(~K ‘\òˆXZC ta½•­ß‘%%ZD®(eñv}Z‘¯%8,‘judêd©®}ß%ÍZjŒj‘}#¬@t*ȶqu5,’g,4q;¹ùùkM{Ò~je4L } λ;uHd\Ý®L²,©L-DLLL- e’WÎLL¡øô©Ye ƒƒL-nøeø-èøèˆeee®®Ad©©j{;`CÏžJS¢O8²õ,GH¢ÁÅ!ÿ1Ìa\%’®LOW-Wn,%ÑÎ~uß–>æ£M¸r6MM[11 V…ß0²}ÐA G‘jKìv_\j%0Kv„›\‘j}–¼l¬„ ~2`S>”µÒb²Gü¡ŽV2SB™û`Ò}n(dAn •'Ü –¡EHúEÝÝ~Ld}d AèY -’ÎA©U˜…vOøeÎô,,èeüŽˆˆ­nDDAn}Í»>VÒœ**Iayˆ4õ’,I::3*zÕ\Y%¡K®WLDDnnƒdñ‘u_aÕfS‰S‡I£¸‡ÅÏP¿È¾ÕU;Õñ%e,DuƒÒ„yž˜%jvó>„ž}‘…‰l÷æ `Gjj`{tžÁV˜`©üg,;L>„¶¾ž¤ŠvñÝYdôø– C;¼b¹–dÝHE ún,®nnL-- ’ƒ %(7kiçq¡qqÎ’,ôèƒÎèe7î4 ó4-ñ4%d,n¡(0aCðù•n²Kõ †Ë?Øðþê®Kj --eeD©‘}B‰‰T¢^ÀÖå^ÆI"™Æâ/tl ˜VdeÐ®Ý Ð]PXwÕ ˆu{{…‘dtVÌCC-©Ð>”B…Õt \’AY’ úúçÈJk¼í`ZuY’Wd‘Ó¹wò>b…VÝO’²üÒ1¿ëé«°ß®ß}»8Ít>ab°;OÄ¡`_u< _‘dA,-- 貃,\ C„J22œŒœLø,,èGƒŽÑG\7†¡ƒ\V(\j-Od\BÓ䌘iOѲ²õ%E X¿^â#*qñ%ÎY,, 4 4-(Ì{B‡ÿÈ#@ª±â6[o[+Æ"T¨zNäÚ>çL² DçCCV„¶½>*VV_V…Ò~„¼žvP-DGÄ.¹Â„…H•L4g¥gUqC*½Ú{lñˆ©,~%Çby`*¶¹q_»_b;­b]y;_n4 ü(²(–;˜q¿ÓÌ…¨Vv”ˆüø Îè–\(4††uŽwx­úß©n•xUwŒv •–DK²² HU‰"™#¼{\Ð’Ðeè,Ae4Α`_$×fPââImmop¤FººÊ¸—šzÈ«b„(Gdd;T¢½VPÓ¢v{›† i…0b•PPâa³eu;J_µC_¡…–²,,y…Ò¼å¤O%(Ð%® .¹Ì0Cb¨ˆññ~5lú>‰qJ¢ Ðeü³Ðdñ7ó °>>q½vÇ 7 ƒ,è-Ñ¡­›xç¡óH(©nV>ikX˜™E»øõègdW;ž“"@F|UO%,, LÝDndv}©vJÓ'×6ŪI#š@ªo[‡h#‡—fÉB«S`-²dL ¢CPzžÕê>SÓ>bVx8‘îëz¼Á¹EOeñ˜SÒ»;¹¡gYÇC3ý#ÂT¹ød’AnÝlUù_ß„]…úúúúñOiC{†•¤kŽd4<jHJT¼ù*a;ÓŽ7 øè,ƒ­ˆ­•ˆœyiÒ7E®²LO¡…vbîÌÏÑD²üK-Ý÷ÉëÚé£l°ŽGô ,, WW-Oñ0~ù¼S?p'ë“Ë|Ê[[ÊÊh±±Éðɾ/@éz\Çn-® †ÿ#Á¼`_ù¹žbi>ÇJ;B̾U(©»…BS„T¼¡çH®’ üE2Úh½Ú‡JneL®Î`CŒÒÕ…ujdOE’AãTTä"J‰À¨_¿b>C>vub¢"̦´­nÐŽX¹¾„£›®²gKYÌ3ÚâC1¿ ú®LeWUîçúVÓ}d%\O©Ýñuúdžæ{ Ó•j²G~ÐÝ……œ>2vBß_ 4,èüèø­ÝxùvœÌ˜ç_vHeAn7i…¿J–_O޲õ¥¡‰´*Æ:mþ÷O’G,eWÝ©Í}v`•SCÀÈ^$Æ?p¬¤6+[6ÖØ¿h¼éåð"{qdAßb;ð#ðFR2›wb†œŒÁ•X¦P¼`~ÀÕë°¸UqE¡AgVŒ?hÀÓ¾®’AÐ> >8ÒHñ_\AWEW\(nÒ2JBÿÈa…v® %v†wÇq{_¹i…> -ü, –\Ò2~*y¢t OÝÝ,WJqÁ``¡(Ñgü²ÂIPª^±ã O%èèWÝßú jEl×9˜¨`Ìâå|ðmÊëÅÅ/±ðªÊ$#Ƶ&#IbŽ}GÝ¡‰šþµ3½=2¼¹bC›wb`†v¿tJ¼>O®~I°¼Vî{E72`À@ÚÈf†nΈœñ…‘ž`%²Ñ,-ñ…`BÓ3aVÒq AG©EEiqC ¢>… -õèƒe­»v•€>•ùÓSC½–…DnO Óœ¶„ÄшKõ²LU°Û§z&Iæ¡eeYAD¡WônÇ ÙŠŠÕ„äP뾪p'h$ÚþÊ$ªI:Pm@£·F¾° %HžÓæ×ÿBC@Á|°¢¼;‘]ÁB¼½#˜lZ uaf:1b÷EÐ’HiC2ÌÀŒ£ (Y®`úñ>•_ç»~©©LWDÐ,2ÌSÄ¡ÝÐeÍ;‰`wqú>œ{ˆŽüôøeέ…ÍŒ2û¦¶÷¹wCv¡ndСî`VlÑŽg’’H›Ûz½«q¡©GÐd\4d}Ou U懿¦äI±+|¤)&/ÚIº:&ª‡[c?‰ä`ÝÐukëë¬&$¨ÀXRÕ¾¶žã¾ÌñãJ„«|‡í0%‘ù‰T“PQÕbÝGeK®¼{*aC‡k_®©,n»• Ç`„JiúnnÝY- »‘êŒ_ÜîŒE߃GDLl¹¶‰qq…çB¿UŽL©ADnOHŽœ {C¸Sq_Ç练Ý ;…œb2爃²ü¥UÜaÿâ—éÓ Çj®eÐ,©(dß`Ò¼åëðé¾â3“/6‚Úæz¼ë§I?Q·ªÆ/±"qñßjƒÜlbmÉ+a¨«ëPäý| _¨‰kPw{k`²d_žNå/Rr¾ˆ²²’²`l£µù•{çßdƒ®ÐÇiŽ„b*]]`q†_©ÐLè³eß»‘Œ‰ùaB7ÐGL¡UÓ¼ ŽOœÓÛýÝЩ~jnÝvç>q3‰¾½œ*çœçú_%¡5Ýv_wŽœ„ÝüAÕB+”¤. ²Adßn®L-nôñ80ꑨ‘2«^r&£'m1¼¬¿:@§Å§ªhhÉý„}©Ñi|wÆÂ”‰ìÿþ+3äm{žBˆ¼y•žµ°ž7%Ý‘›l˜XÛ3¶VYÐ%%  wñŽBµ‰Vuññn¡ú¼Ev›JŽwEE-,-ƒ»}„÷žC.ú©Ðei¼Cœ•„ ˆÒ½Ú1SˆA--%®ñ( ›Á{ÕÁ*Ckqj»uÝ…H»_qbú3•ˆKü¥d7÷z§$“é¢nG®eG-ÝO‘jê 2a3ÀZì*!F"Rºcæ/$^ÊRðØoo6Rhh•ÐKdñ¢JÕSÁëBpËt¹Ì¼‰~ÒÁ¼ä¼Cvq{LˆÍ…äI—oÀ‰ 5Щ²K;q`2ò>˜ Ýd4’©H7ÜJ„PyaÒ\…E <-è%ƒìU÷¢Õ Ân%®v7ÓC2BVa>ðäEÐÐen»~kf`bÌVbC˜S–w(4•y\`„qü~_w3È1å¿…E®eDe®dß8Èr+Q‡ðåho§þº?^:#:º§ºF±Æm"Èvúñ%iw„Ö½é+¯2ŵ±Á|kJ¨¤b‰I¹{òÐ ß`‰+É3¾\%²YlbÒ¨‰¢l;ˆÐ‘(L%nÜ q> ivçÝW5EqV>ã£Vbjˆô`¢½Ì…Bi–;Œ0¦×qeLW}nO\;̉ak{t{…vU úú}`;`ŒOê„çŽK’}`CP^/@–ÇGA,  4®®_Bf+r§ÞÞ[:Fp‡Ã"ÅÊm§§r@¸oÞ[6áÞ#‰T‘} (w¼tä|´2‘!1Åý«ÁÓ˜=¿ë¾T@‰‡Hß²Ý<›Z$¿*v‘},ÍK ç}¹žBw›W®L\Ž®­•›†úyV(…q¡–45…Ì´>¿–¹lŽ€dYjCIP •¿ÇœÈr¡DѮλ`óH;Á¼Pœ5;yW4…<\O0ˆùœˆ¥¥u"““¿*•…Ð,, W©\_ ™'6Épªmá|Ö)å+¬^3ðÚ§RÆ#o?6È$Õ¼v(²`ät½1+¼=1"r˜z¼wý`*£ëIlCBœ©‘K‘q°éëBf¬C ßYgÐG”ÓktaC ÒdWe¡n®\>>>úBVyHb¡xH`2>>XwßV>߈n~U˜CS¨_5_¿`¤öL®jßÝÝ(Už¶¼]›E˜HjO®ç4¡•¡bù*w>Lƒg’»¹Éfá/Ũý{AYè--4nH5Š+‹coØ?Ø|FÏRÚzm&z!Úš6R£rM+$¿¼d©©»UV/^½C¶ê¨&½¾µ½Cî]a‡RÚ$Ìßj~ˆHäI隬ï÷E’’Ybãka†* •>®®\~–vúqVV>ú5Ý¡n; `¶ŒŽ`Ò`Ó<‘(Ý©²ÉJ´´2_žŽ•X„)4nY}(5iq‰Buòbq`•{¡ßn­OEb{ê­Â¾L’jtÚåcMFùÓY’4‰Ù—º‹‹º—@Ö$$ÚÚ¬zI[±‡¿Æ@ÉRÛ?Þ‹æ{½„d®Ð¼¢ÈPJ]¨¿ë/Úr«S¬BÚ”m&ÊzS`~Ð(Hž&6£¬„igGG²;l‘•Ìw` 5ñD- ŽÝn‘©y5q›4H¡Ýb\>{]œê]q(ú©©ßV¼Œ„ˆi<›×Ì\On,®W–ßOq² ALl÷…qZ£”ÑW²¥ê›f/@+F&tUdL’4W ‘3µÊÅ&$ª““ÖÿÚéÂÌ@ðð6"rªÊºRÚÔMðC;5©d‘uU+ÿ$3„¹‘1m1žžÁÕ$SưN˵ÿb„%ˆ©BU‰×mÞ‹¨…_ƒôDE7¨_BVÜ;OÐÝÝj®‘‘œUq_E®ÝH…dÇ›çÎúu>÷ }\ÑOvêvÒtCç\Vvbñƒ¡(®ônu5– `B` WÍD<E…>…{ÓTÝ¥Ý7|1¿Àz&w;Küü®D¡Ð ‘‡:ª@o$ÈìaÛ¦‰Õ¨zäÿÉë$ÆX1:""⼜ó5‘©~Ϧ£:µä`êÆ¬Ú$éÿ‰&aP&rÊÃÿPœjß‘v¢ÈþF“/a’A² Äì_„…†;dA4® ÝnŒñZú¡\U>`Y©ÝnÝLnê²0]ÌnÄ¡>‘©Ý\LDn®Aç{­ˆÝ•ã…En®D 5•¢ÄÌù¢õõˆt{µ12¨é¼¼AAgô‘‘}vBhº[?—[âê0_C¨…|f¦ÁX*ÈTâ3tBwÁÇ>bDG®\T'ËéÚ¶Ó`lRšÿ¿È«|¨##+—[Ï _²Í<{aÉŠðå„`j®GY²vBqaubÝ’L%}©\`ˆjÍ}j²Z‘ôdŽ»•Ouß‘Kññˆ(©ß©dHŒñ‘vH4"oÖ£˜†eô©W’©g0‘‹M‹R™[mä„_vO„ŒvSþÌ1„µ¬´Èaz¼Bç,Ðôß*¿^2Ú†v0¿$rN&Ámðì/¸::ºFºÚˆ²ßY{ ‰hpÃË–ñL’Yg`ú€ç Ç\4 W< Í®%ZˆñKƒ‘ˆ©~}}8‘j ®e,DA’Ý- -©jˆñj,D ü4ddjΩLD} DLÐ\ßn‘Ý®©Ýe,A5¡…çVÓ3w¢OL²ü,ùÈë¬&  ÐA’Y(4%¯*@p‹áØm/S •ß‘jç ¢PäªRIPBÌB>>7neÐút½‰ëTt¨¦r¿Täþ ÂaȺFmÅ:# úÐjÑtž*ÁP¿/¸bH’è¢ q–¼uÄÐAeeKe²A݃ñjÍ‘®²e®YÝ(Yeed’(ˆL¡,g-賡4u~®ƒG üèAÍ}²‘Y©®dødÐ}Îd%‘ ßÐW’e,®’WÑÇñŽ…¹ÑgüAb½È!¤½Vt©ndE ãt`ÀÛ/M@âX%Ò;i`Ä>¶£[+ÈP| ý•½_viçÄ-©Ð…Âþðÿ¾÷äJ$¬«Úäÿ„Ê 2&§F/^#I(ß%qCjÈmË1° ÝüôKA¡°_Ççy\D, A EH7óE<ÝЃƒŽ®GAG-4, ƒ‘ßdø,üü ƒnWÝ eÐÝeedjd%e %ÎKLGEèY5»›`]>œ•ˆø¥il:zælÂ;ÎÎ… fÁCbtzÅâ^#hØcþ ;E<``_¼XB:â&µ”º{džqÌ>›ÐA®…kf$ÅÚPqaµºBÛ¾µat0*6RFƱ±bŽÐdêî¿&^Ø”VV¡ÐüK¡7…‘Buq7AA-’e(óVU 5óÝ–VqOkUÐ(,¡ÝÐ-L®Î } (_O袖OCVHH{Hv’‘LAôDVçÒ`òkžƒ’õüŒÁ•ù¬{C½i†‘ç`+Æå|”âm±FQÞŸ—Ÿ‚X0dD_`m:phrå/Ìtlbq`œCí d»‘wÌ31TfÕZš±^ä+þz ]¨ËØ@$ªQÙH}©5t#ÈtûS\DügEq¨Žœl>d®®e%ñÜîŽv>úkžOŽ\òòa×kµŠl½av%Î%<©Œ‘*£XÁ˜¹¾Â´_‰Õ¢¸*œJžfÓ_¹2ˆß²è\ç`EODãxŽDKg íI¨È2½>biu_¿)r§h+š±ÖmF6ªRïöcaß_V|&mðo#3F[µ¦‰b; ¿é„†jÐ~–¾Ê{^ÿ×ëðF§£m¼é¨1[£Ø[#§½qg}Eç¹ûM$ÌÄKGe²;EçlqBa{xún©Ð\H¢iiçv`Vçq`XX¤/vë¬2«yäv%_qÝ,ÝK éºm½½™ÌâµP=¦º«3¢ÿPBwl3tÓ…|‘nWAD7>wV E Eˆ¥õ¥_Ü„å‡SÚlÇŽ_Ò1™‚[§6‹?&—˧6—Ø‚'añ5Jšr#ðpQ$|Åëy`˜Ók…0ÝÝdkt«S'{ˆréRð¼†yÓñ×Ôɪ±þi4-D €2ÈP±3Œ…_’,’ÐÝ(‡ùÇS;©®ÐÐuÓ¹UNi…wúñ›77_Ç›{wŠz*{^ÿfk‡v`ÇÐ4L,ЄÚP^þ´S{þB*z*„œ‡lðPPJ†"_wCa¼S£i, ²­v_óuÄ¡ˆˆ²ü²¨NJ¾æäJž_bߌ_ðØQ?“Ê?Po6§È±6p+À¿|TI&Æ$[p:$o§Ê¿m˜Ö¾©Kj\bžû¤¹t‘ÖIÂV Uk ñ‘‰×Þ×h¬Õjn‘A Ù‡¦fC„vú%AKG~– B23£ã}©‘dv €‡vÇŒ–J ›{ÄÌBÿž&/̘NÌlK}A LÍvo—¬ÿ£`œçv¦¤vC¸C{Ó¹„{w¿¼¶|´ž1¢¦†,DiÇ…úH¡E–W²²gêä$«é1SÇ›%}‘r[Ãá?/±:$|—9[6Ö aP§FÊ:±Øoá[Þº“âT«‰/&Škn®}A–ÂS×knvK0‰˜Ù'.5}ÍÒt9Ÿï”ve©²>…þ'Æ!À`` ’ ²;Ù„¨v”ßnj,ÂvPVÇùò–q휽_SVw«£`ìqæN–U {®(WeY,Õ”rðË'*P‰*Vv¨›ž_wÕÕSP½£*œÁ«fþ̨Üç-G©\yw`E¡ yˆgg²ñž‰13ÚCTUÑ߯_‡[÷["Ê2ÚNöc@±¨¨|º[ª/Rhp[‹?o§ªËXÆ^cÙ½ê©K~ßVJ` GW}Çi.ln®}jˆvP‡ùn%AO’fBz—ztk ,,’,›Uãvñ ú‘²~Œtˆêuž¨•0qw¢qCÓJCBBt«¿‰StÕž ß\Ý ~S‡331&vb½JÕb ›V„aV{¼†Cr¦IäJÀbVd%EbH`¡­H-’õ¥ê¢ý/2â½¢¹ %0jÖØÞà?/å_ÿR:“0åµ6I6$hƪcho±6º:F§—¿ÙV¡,n²Ydñ%Ð~ÐndÍOH4ÍgßÐ%ß}njÐ\©%’7°ÒÖ3$⊔ eô UH>]ꨕûÇ©®( ›œ*¹vùCÛœVN½‰q„] ñXÓ›M S„Jdn~Y»SI/Æ´C½k>÷¼¹7Çab••|œ&/w&@âF‰l7 L-G_qÇÇE»ˆõõgP¦å"Á&lD²juR—R‚pÊ£>ñ`^!3ÖoÅh@ËFR§Ã‚R±Ê§#Ro&mº|„Óe,LG\%d©Y©e%Ðdj®ddYø®ô%}(ÐjnO,LU¢Œaå$2J–²ÐAGí\çV]Sfve©%Bæ¼P Cž¼ò¿qP‰vÌÒVÓžw`mÁw¹B…b0ˆd-Р¬ÈJ2œtav¨_»nnEq`>k‰¿@|Ï/É«¼”4ôô`bU„4 5K²²¨žXâ@?ÅUj}d‘¨pc?‹Þ+¸ä ÀÈÈP666:º‹—º‹[Þ·hª/Pµp6oc‹ùúYAø GneÐGn’Ðe²DG®%²‘ÎÐAèd²(ƒÐL7:!*v_ÝY,ül¡Ž]ZvNÜn©©v”a¢f`¿VÓ€B¹`œ_†À=޽T¹xˆOÝADˆ†/3ÿP2¹dˆ2ˆÝy7¢>xçù•bã˜CÂ[¤Ú >ßß…4Ñ4ÑÑ¥’ˆÏN/|šf1íUW²jñ8É[Ø—ŸÔ`a_µå$hF—™|Ê#?—MŸQ‚ߪ@ÊÆ3:ª[m›ôA,Ged®©ƒ%A²jnnvE»yL%%’nôDAYDdk;Õ#@Ïë¶`\G²’U–>`_*Ž÷;ú²ú%‘_伕ն{¼q½VJÁ¼•}v`qu*žýaÙVvv©G‘¼¿a"½ÌXkS\}uqÝÝDd`…qSÌùJ¹1æ#Iâ¼;njñH>úÎ(4€­ƒKõü›×l™^P”å. ÐD}ÖRºÃö9ÿz=6¤™'ï9TQM@ªchRcå?ÅFo£Å3XƬ£S%A -n©Ý‘K-¡EE>¼¢ÓÕV©ˆ²Ðèdd%ÐúH˜¾3lÞl…©D®’i…jÒ_BNkŽß(HuKw{bq>•k5ç¡VÇ`¿*ì_‰vúÝen nµ“Á¢ùaOˆ__‘jdnVH²0`bw`‰Òë/½œ€dOÎ(*Bˆ5ˆ²²’a‰“þªÈ!¨…ˆü©©‘0?6pööµa¨“@Þö·‚ëþÞàºR"Û±Fë1ÊÊmâ^Ö[«yÝY nßK©HÄ€ b¢„z¬ÕmVb>©GÐ}dÝd ; Õ´m!1¼>©K’ü®EÇœ¨yœ.ñeÝDZòú7i 'çÇqçv›Ž­`bqVUŠBÒ…ñò‘G}¼¢ð¦¨S_Oˆ­ŽˆÎH¡çqEƒn0­qÁºP1yCÝŽu45›4n4²Kg>æë&@Û3X_­WÐd%§?Þ6þMé:º6ÖŒåIFM×þ^«RIâ|×zɬƪ'dLü,D’Αƒ\çHkžååÉ+mɘ_%®jß©-a½^"Jú©’©v¿v2¨|aß((vOjn–lû 7…iç†U;¢k Næ¾¶a›ç~,,‘ywPÌt…©HqÐn5;­ua_`­…v`O5>|&Ú^Vv¡øA>çV\Ey4;¡ø-’õ’œæÚ§|!/Áyd,Z¨coÞïærð±Öá‹2µSÓÀ—æÿS ¾öNÿ1¿«¬ÖâÛ10©-ƒAñǹVļbJ¦PðÊËRÈ|¬½ç…%©®,²(¶Û´¾ÿùò®A®YÐ úòìq` Ü‘,vG(©¡ß}_\¡%vß¡(Vb7…O‘v_…új0_`_‘b4ôL(>Pz$za•u(dk_bEE›`‘ݘiR@1tÇ‘ a JVW¡W¥’TJX^Ú$£ë‰4è,eôcQM"&±hhÅ?&hæµkÁB½X´¸û¬UäBtžk^Åź_Y²ü-ƒ©‘vw>çb¼Ó¦“P§§?ºoËþSi›ô®Kø’¸ä:F6qç(GK ²nœ]Ò2ã ßjÝÝ%d(ú ADñ}©(,ˆ©dY©(~‘ZììêÒ–„ˆ©dA’͹Ë×@¿auu\d˜H…HjuO;ˆ–Lîiw?é1w–ƒ~<_• 4ŽŽ²gg¹f1a/c^C„d’ü©©Àé?ÔÈ$mð6º¨Æt–2µz2VÕC°þµ„B*ÿëÉë:`Íe n…S>{¼{zð/µ/±É§[Mªº”¾wß®©Oee<°¹Pzrl¸>Ý’YGKE…`qtñÜ…‘L, - ’dÝñd4©©©OøˆÝødu©Anjddò-Ý_®4®j{¤MÉé¦Ò(}.>­Zˆ‘‘òçu_ƒyÿºI_J®~~Ó•qu²x­ÑÑõüí1È“Á„¼{,èeD©ÑZt'íCÈvÿÉéÈkJj†Õù…Áw¹?¾Szš±P:+ÚÿÄK®Yjê…°¢¹½3$åz‡éÿûF‡¬@Ú+É”ñ²dG²7y>*#b GA ›vÇvw UÝn4 ³ˆ,èG®n©eˆnD4eAdƒÝeƒˆ4Ä4O–d©ôñ:¤±"µVq n©kVx xyˆ••xÌœÌy䱫Jøednú†H¾–ñ ü`ÏyâRÈ>;(YL ú0÷)'ŒÀ*¾úˆ”ŒvÜ *_ÚÁ¸[ÿzë1"/PbV©øed²ñ°UÚ¿q@—éw ytþš¨Å§¬‰¦¼jL%A©k B¨‰l g²²(ß_v_ †K W,-Y,Gdn,jÐ’D©eˆ»WLˆˆˆÎOÑW΃AY˜Ù¬:å–ÎH‰Zç2¹Ó„ôŽ{÷y–÷¶•ھ㖖ÎøÝ˜Ä••€¶OÑüüÞ‰Ïé3M¸qG-ÐßújlÙûCj0v¨Œ~–`8޽¢&œ|ý¤ûšë¿â1zJJqAè%’ø_Jÿz¢Óž3r¹kÙMN‡[RR@F«žnKß lC°½½…y4g’,,4ÝúŽlÒ….©4(G,,D,edÍAAn ®nK,GnLôÎG(Lˆøˆøˆø®n®êIš#3Ìœ Ð(›~_œ–¼y{¢œ$Ž„îÒ{¾½½ÄL’ƒ÷¹qV~y*døü¥VX|@þª‡>eü ,Y ußÄlÏ̈=v2B0`œ~j¨BÓÂBŒ¨é'£ÙB"ä^*Úxn©,dν «J¼‰±l|>òß_&é+±º«Á‡qÝK²n vÀ33m‰¡W’üg²LHǹB\íÝ®D,üeGÝÐЖq`ÎnO­øƒˆøÎ(ÎjOW©ˆÎG®ú¤)Å1ììñ„uÝy5EĈµ••¢Âówξ¾œÓ"1`\<ôˆ\˜_œy\Hy£yO¥¥üE'T¨Æ"‡íkq,õe’©©j …Áž2éC3I”wqŽ_CC_]] ÂIû½"é¿zÓ®G’%Ot¢IÚCéÕɤt~ôj8]|ÞR$r‡mÕ¹ˆƒ®\ Ó¿ÊÆ¤žVOdge–H æ‘ ”{ѮђDnn¡ x5ã| ŽJ5˜˜†•ããl㘡Î%ÑnÎWLd©÷ÓåbŒaŽWOE¹\ƒòŽ„ä¢ÓùÛMÓÈ#“ÁˆÑ›ÄGAe›–ó{­ã_~³ü„” éåâÁ÷y,èd’GÝñy…CŒ¿@_lf¸'™Úl¾q¾'æb3B½t¹¼ûÏTt`eGeD­;Õ{Bé ¾U ЩjZžÔ?ðªzþ° K}®qÕ ^XZ“tlÇKègA\ŽŒˆq°lnD%‘%ô_lçUÉ)IV2`˜ŒS ž›NÂÂyžnòKÍŽÐŽü,ñ”æ$^Ì>vY_©n Ž˜ Áî2wÛxR¶“¾Û½b шÎòyy\Î7½„Oõœ‰É×##*`DGAÐGG²e. =Œa^â¾MMÓÿ1“w°µz¾zý¢SVhT”K©\ÕéÓµ>U¡j ÐÐn‘Ø|Ré1Úîk>‘‘}ç{ýº@±aétŽ©²ô-nv…_×;~D©Yn_JTÈéF¸|C¦½Sj¹†˜„­†žéòÒžNŽnuKHø ,D¢CXv¼ŽOE4eEL›˜wwy¨ÎœØ‹Ö3˽Ày÷x4’›qZ~EHÌ–ƒƒ¥ü¥¹°ÿ"fXPSkD’YK--Lje J 2a@þ#š¬fÊ£‰CJÁ>‡JTb´{ÿâItLe ©†° t½«äœÇAKDe²ZvÚF£Úð¿‰î®~ß¹I^!mFC•¡²üY%Ol`qb (®%n¾b=PmPÿÌ@‹ë/2S½„¶¾ÊŽòìw˜æ.òêúÍL ²ÎySz„ˆ_EHnn¡»Ä»›V•¹œÒFRR¬¾±"½ÑôƒÌú`Äæ>Ž¥ü–žw¦a3´¢ž¡A ü ©e-DL … ”¨*aƇ!*Pë|¾é¾ë>¾¹I>ÓC¼tN¾(GD ¼þ½þµ¤–©²ƒA%ߌ°:¬š:T¢{q~Zñ¢ÙÔ#åÈé¾B‘G GYÙ_ ` 5ddÐDN£t¿@Ï/ëÖ[Âëab‰ùw¾«{wŽ"¾”˜„­~»’ACœ¿]Ü5W©ˆ­Ž•›]ôò˜¬×÷h“/z˜l–Dd7ã2•–ƒy˜Äˆ-õ¥…t‰#!¿$P7’GYèdè, D4Ýñ†la¨ÛÀ¨ÈÌ#˜I‰£ä&t½tt¼/Óy‘ˆeDA€$ÿ‰”>(GÐ’D‘ÒRézû¾‡bž(u®v¹¼é6º?‹m*Z²YAv<`‰_V 5ƒDAu¾ ëé×ïðÈ*ðɵ*ÿÓæþ!ù¾$¾Ë£æ€ˆe,Î5‰¢2¹  S½ëR??Á†D²,, nu=ëä¾1I½w„„žŽw{¹z„¦rÌääë#S›ŒY©èA߆íS儽¢Õw˜qO¡…žÕí?@ºCB¢kÒuDz˜1ºQF¿¸€Çg’’KHV_ ¹.ñ}¢{µ¼+Të½Á"ù|w_lœê¶¢¬ºÚzÈî L²•Ithz|¹bv>b¨Ò΢̢{¦¼ÓÚzä„éÂ$þ1•N Lƒe¡˜›Óv­DÂVш¥¥¥¾ÓtÊB"Ci(Y -Ðe Ý–\ˆ=as¤"´#È•ãw/ùÚ^/¶äz„"3rS&¬lO%GGd~£þ¶S´U÷aJbC k¶_ÅRý|Ó…˜(d\7;×`B§‡1ŒJOGGüADE…V_íO ®dVPJ+¨ÈµrB¤C¹_¹EžÓ˜T6TÚÛ¨Á°ó- ,èAŒ„@‡ë¶„  bññ½›Ó¹wÓ˜ù¾{˜Æé°¦ä"ÿló4øƒ•€òˆ<ŽŽîÄüaX#rÌ`V\©,,DL-L_Ò‘ì„™9™ë/éÈ""ÊÆ/“"?oÁ#XršÚ°¾ AW ®njTft¼ž¿é¦žwEµf@3ÿÖCw_‰}~\O>¼À™¬BçñA²g%LÇ0q 7O®ôÐ`˜w„ñCJù{†¶VUyî¾Ì¬"¢Êé2ÿ…˜èÑèY\Œž¬Âÿ̶Ǜ…¢¿Á¾¹Ú¹ã„«ëºä$Áž¬“Èþ×€DÍ\¢>2¡ –›N*Î4üõqæ‰I𣿉lHGDAudè-eWÇ_ ñ0>í—Ö6ºo$Ö$“Ö6hÆÃ‹ëMþÂÚ¤”uZ ®©}I™š$/¹´ÚP…wC†y¿Ì1*â›…>j®(†HSS¨B#w€GY,g\¡†>vùÌãÓ–døZUC2ÁÁÓé¶étù>Çvi¬†ž{þÛž#w†œU4ˆ-L³ø²ˆ{˜h«À꽜¹¹žùÿžùÓ½±î½¢Á˜éTžÿwÿž{æˆø4A;›Ž­­ÏL( P“1é 'Ü®G•, ,D‘òÝ‘ßñ ÓÞc‚cpo@h//F‚p6Æ‹?$$éÞŒ}©~©ñ_+¬Ém:Ú¿Ib˜ „z¦¾B_Vy¨>¡ôn …½°zB*;®Ðe’u;q`vVÝ% ú`V¶–b¹°JJCfB2CSæ÷É{ÿw°TŽw¹yÑ-ˆŽøˆ•„Ì{–´*“´±Æ@"ž$ÿÿ$$^$ºÁ“°h/˜wó„žY(ƒƒ­€4­›ˆ²²¸m2|t˜{”4²OÎnÝ,--L-ßWA®‘vTÉöÞØ‚$Fp·áQ/^ºž‡&ÕZÍ‘nñ(v~2ÏÉÆÅBÌzÕz¶`>ÓzPœ¨…k4ge({•œðV•Çãj%’gDJÕ2_i ÎK²%n­›ÁJœ÷EjLDOÎ%¡€yã >¢ã$ò•¹ ¢{ŽÑ4ƒ³ ƒøD• x;°óãžw2*ú†›€ ‰yž ¢y>wóOÄd(øÎˆ4¡H7–ƒÑõK%ða^h×åÚÇnDd}¡ -,Ýnñ©LDOìŒÌ‚ö?Qoï‚Q·áºh"R#¢•YdW ³,WnÙ ¬é#ë/1IÉÙ¾¢lN¦`}G44®Ž C°°b_ÐY²©`H¢{`C ó,©44üÎ-D®Ð–7 x•–„•qxjƒˆWOø-²õ ÑŽÄ–Ñ­›››–7Žyx•eÑ–,ƒøeK(lyó ¡UЮjeAÐ%d©êG,-’d~Z0À깋R[éMዟî¯ÎZ%Ge’ -ƒ’ègL`ÑÀëpl½¨ù=ßßZ}%}}©n’ô‘ÄTUa>Sl ÝG-eõO…tatwvnnd , ,,-D44 è-üˆ4èA ˆŽD¡Le ƒ ,ü, èèLLˆƒüY,è ƒ’ÎèøõLƒ õ,ôL\–OŽˆÓ†i …шK²Kùí¤±""^/BS箃%G©® 8}ôL,Y ’©‘~~ê!ÛÌF$Úz¬÷¾Ò~0j‘©G®A,,èeèAÐΩ Œ ‘0}‘K‘}ÐÐD²®G²Z‘½”ëž¹Ó¶>;7®A’¥YH…Â] ý`yK®,YD ü , Y ƒøüÎ, ôeWÎLøLGƒƒüè-AgAÎõø èèè üee øôÎüüeøüè,èAÎèüøƒy¡•`Ó­„–ž-» ²è`”hp$$h@@‡û÷íqVŒv0ñÐè, eßñÒ ¯ôêžÿ¶¯ Zê8 ~~8‘ßÐAô‘©dÐ}®j}%‘0}8ÎЩ®~ÐA%Y®Îjú |¸l‰*t¨HleüüKW5w‰–ÌV„y DYW¡v]CÒ bÕ–OO_uƒ\`ßun©4ƒÝ êу ˆÍŽƒÑ4Ž4Ñ•­`~_¡ˆ•_ƒ–H ŽøÝ–((ŽDGˆ®(–E\~-€Uù•î{¢›×ƒèüg’j…É6ª@ªÊhµÅéI Ť޸@#ºûU5 THþÉ÷TæÏ”9'˜þ†NºûûÏf¤¤ ¸¼˜C‡÷˜æwç (5óLE¼¹>ëä«é¼BŽ¡v<’güY…_Œt\Çiw{¹¼_b5{q>…Ž¡  ;5©EÄ€¡Ä ¢ž˜ž•›óœx–x5yƒH†*ˆ{•žòˆÒ°°q{†E˜››Ž–›{ÓÓwÓÓ¬˜OÝøõg\`SÉo‚pª6“ÖXº'&&‡+å@rÖ¼Ò7–TªIÔÉÿëÓë3×™ûwÚz„N'¤×þ‡Þp|ÈwT¼|ÿl¬œ{ix×'H ›b ãÂ Ïæ{3U˜tU g’¥KL5­ 1Á¹¼_Oq†S ãV…òq„¢qç>b…›wóóãy\ž˜EÄ›Ä`•…œœ*¹î€•y¹y¹„–{•_Ž¹Â£Óçyl•ãywî••œw„¾Â´Iz$wÖæƒgKgõAN‚ºcºÖ“嵓“:"^§6“"o"^ÿyq“¿:§F½ÈÌŨ֚ŦÀRÞ#ÊÖþþ¿ÚzÏ¢C1ÕþÕÕTk‡ ‡¢Pk›¹1JÕV™¢bÕ„¦å^1/|VÇ4’,Yg-;¼½bV†y>ViÓ¶¦J¼¢¢¹*t „CÓ`v깘„†ãœ––°…òãž;ŽySw½ˆ–ÏVÒ¶Ót Ói2>ÌwÓ–{w¢˜„Cw_žÂÙ{Óy„“†Ózä1*2' D²’õA(SÏ‹‚àØºo§c&Ƨ#˺ØF@ÊÛ¸:XBå§Fhh#zºRÂÿ")¬È?—§3â¾±@ËFåÉFåÿ¼ÂIæÁtùBÁti¼¾é^ðI$šÊ/SJÁÿå/P1µ{bq gè¥W•Ž>bB=Ç* Vy…2ñ‰¢ž˜y…Ç dŽÒwÓœ±Ó¶¾½…Ž••>U;ò_•ŽuˆÁ¹ç]aÒ–ùw„˜Žˆ½¹¹q› S˜°wÖ„hÿ´Ó#˜w¹{ˆÿ¹ÕˆøÑõ²KL²Ž:Ø‹Qºáco@ËQRº^#@6[p^ÊÈ1M3#ÊM‹o?ö?h#3Ö§Ö§/#º±c§ðP&Rëaz_Áù›{‰¹C1éÆÊ3r:r[6Rc@¾/ðÆÚðÌ…EKèü (VHaw¹„ùÈiÄ_ÌXÁ„`çŒ_…vi{C¹ÊÉé§2¦¬z–*ÌŽŽ•–v¡ykiV2ˆ•qi„wlóž•…Ä–x•¿/“$3ȵ¬Ú#äžÖÿ䆎-K²üü ©uu/'·QáMRc§@£M‹—ª·p¿º‹B:"“[Þhh±·Ÿ@§§"^±ØºhºR@âðF^"â$ÖâÌ1åJÁB“å$¨I&R/1hÆÅÊ/:ªµ$ÊÆI"!^«{¸i4üg¥¥,,ü`EC>È–`iiSb¿Ì>va„Ç`i¨kó…Ž ë3"¨„a¾Ìœ´–„ç–„Ó– x{›Vò›°žÓ>•q–óΛ­Ž­¹ãž¢î{{ëþzÚ1Ú3ÉÚ{$£ùžäVÎø8¥²²jddÍìœÁ¤äû¤Þ 溪¸Ë§MR9ºàhÉàºo6Ro[ÊR#ð6غ¬±c[Øh6Ø‹àªFËo|oÊ3±?[Fÿ§/½È«z3šÖ×@zI§±Æ‡§F¸ÏÞ‡qÝ,gg²¥ øüƒW5ó˜Ž{˜{Âaû¾J¹ÌIwÓUžB㸄–œq>wž–qœC–ÇVE ¹qb<qv\{òÒŽîb{Jœ¶¶TÚÉë$Ë£Õ°ÕqÕçtÑ--²²G®©®ßjuúaq¨–µ¶µC´«z¶ëP#tSI£ä|ýÔ‹à—‚Ë×@F‹'6¬£9Ô'ŸMÞ9™£6&h)[ÉR—·þp1‡ªéþûé¦é¬?™—¤@oÉðMØÚU¶ú©GYgõD õGƒÑ•yó¹î{žw½UÓ¹÷†S˜tiµV¶‰žx¼Ò›{ ;€†ŽC–U Ó> B_Jq¢ l˜; ›ž°Õî°Â™¤éþf:|N†˜St;`O‘Έ¥õKü ,’G®}ßú–n_b…`¡`(Ý(ñuÒ_Îv8„ú_20]8*_ì``‘ú_„çB_›2>¼„a½„…v}¨JVVv0%~0¨Z*Òv>=Z²®GGü¥ƒ,¥õèøèôøôeƒÐ~Vv‘j‘%v~²ßБd}ƒ8ƒ©{ –»²Î ˆ Í~ô%΃%ñ_ÝeÍvÎK}ß%}dôƒÎø©®’eGÍDƒøƒ8ßZ}‘ÎÐÐA%},,®Gƒ-Î,èüK²gü,   ¡úŽqÌ¿r/«/¼ÉNÛPS‡|r[¦ÂÉ:t‹ûþwCB…‰þ×ýR‹Šæ[tðûµä—{È¿NÁ½÷{wJÁä¿wbœœJqV yç…–²}’’Yü¥õ, ÑüÎø²Í΃øôê©ñ%0KuÝ%}Îúß~òòƒÎŽòƒŽ~òvΈˆˆßZ®n‘}Kƒjñ‘‘}ˆ‘‘%~λôø8ˆƒÎ~ÐˆÎøe‘Z©dÎÎdÎeeƒ’G,’,,õõKYE¡¡>‡SùŨ"#@¿µ§r3FÙ"ÊM”§þÿoØÊ!hT$:¬ë$$Ë[¸ë/a|hšäo™§/:ª§ÿCCž`‰B1¾‡2fl½‰b7›;ÐÍüg¥õèÑx† ã˜T€††˜wJî瘀ÂU¢žl”æklî„¶†£•˜›˜s†Â•ݰbÓñbJUV>l x°w žl{†Ž4;;ó–VžV`E7–5 5ŽŽˆLõü² E¡-(O_ÇV–ëæ‡µBµåPå*ëfé3¿±)"À"FðÁå1éšz´´:_„ȾT+ª½ÈP^嫚ëB“BB§ÿ:^ÿ§@R¤£PÿË¿Õržw>|ky›†5ã-üg¥ügƒ,Žæ.æ€wx˜ž†æ½¹¹‰CžI°|æ‡C¦‡û˜Á¹ÏÁמQÌæÁ—æ„ä{±™”SÓt½£¸¹Â雼>¢UTæ„î×þù½°ãóy›•kwwÁ½ù{k‰Ü…wq`>…¡–ÑW’²nH\€_`Ì:ºI×Á:•¹lT¶½{£ÕVVÌãÁ–Ì{ Ùf•㸘aS ˜”ÜSiU°…¼˜žqqÕ`aXå"$"µF¤Þ?"ÿhÊÖÂ' ˜‡J{‰ùVb‘²%%KKƒƒŽ÷ã{w"#Fão¢Ó1ð2þÉoÿzäS/¤¾Nµ/†ÚÓ$¬þ˜™Ïª¾ëÈ$Ì™I!¬Ù”*mCâæþ™$Ú¦Û«„æÏ¾ÓæV­ÓTÒ¹Ôab2ŒP|JfÁ¿ÈPÓP˜†OÎõ’d_O›v*½„3«Ú“ÊÖ:B*Jk¹¼äk°f¶ÌŒ‰ÌwTJ χSt>b5i¤ JJtœ˜Va JE‰ y„mF™9‡ÊÖ|^^a^¬o@o#m‡«zË¿ÿqÇ„ˆdKK%²8ˆ†î¢““Ö“[±ÆÖ±wJm@ûmBIf$ÕF#¬/ä"å$ÚØØëéªäF½[3¦/¾Êÿ1rF#3^ÿ@½#þmÌ$ÁÖêØÂ¾„w@¢„¢C]aµaùÓ¼‰lå"µ/µ:#Ú1œˆK’g]½„TSBC¨ÈCÖaI‡|@é#“1¿z:/åµë¿r!"ð:a&Õ##¶"ëð1ëœÀ¿µ¦zÚa¼Sµéþ"È#/!M6å±/Å"m@/Ë$Ê/aÖ&a/Æ#Æ1Ê̶¼ÇuK²²ÍêžphÊhÊ[o6ºF?‹R×9Á[6”Å—mˤðë?ËË™£[?R±äé¾ÚÚ˺¸f£þlÙ”?æTûé×FþFTÁ|?䘱æwwJÁžÚmÁºÁÿÆ1+Éh^똛­DgYõaSµ>½_|‹É@"é@ŠØr‡ºÖ#År9—c‡hP‡'[ÅʱoºXð&å*¿È¨31ÆIÉ$/ÊÅXâ¤[±rð¨^@|šzIÉM¬FéI/$aÊÊ“3RÊ^3â¼wv}Y²K»Ò›RùÖ$Ø66—h66F"zéÖqȦ½ÚËÁžÁ^/Ú1¾ëÈÆTžI¢Öÿ3ÿÆwÌPÁµÓ¾éläÌžéI:&ÿ½½{T¹ÚTû¸£¢Óäää«ÓË‹TðfÆë"Æm@6ªå)Ô‰O‘8õ’X ÓÌÌtJ˜)û ´ÂÚR‚öö+oMÊ[öàQ‹É—Ø?hcà‚[Â׋F¸h/Æ"&ºpðF@/§RÞïö‹RÁ¼™fM¦|Élýí°S|‡ÕÅ@ÿ$Ö&âBIž…`%üüKøÄT¢$hFhÔÔ‚@ì¨}`av…0¿`aÈ_`0– =êˆ_Ò¨ñêq– `…ñŽq`qqÇÇ_ˆ–ñvˆ–Ž`uòÒˆy_òŽ–ŽÒa`qðÂFIš‡Iÿ@“¬?Ïîˆõ²`¦æ¿„C{ÓS›VNÜÓ>`zB11ëM:Œ3“È0!BÅFo"ʬšºëF?+§É£˜«m:š/£ºþ¬|&×éI1ŽþS{UJ ‡¢|ž‡÷Ùsš¨“Û¤l’ôlã›/"±$—Q32Sv>Õq>œBÒV–úŽuŽŽ…Ñ͎Έ»Žƒñ­\ÄnÎÝWúú‘únô_çÇ(\ƒ¡­»uŽ•y¼`ò„Ç\0ˆŒ„ÂþÊ´þ1m#¾ûNóêKgüÌylž°f¼bî `‘ñ‘~n®ßú‘ñ-ÝKjÝdDuvŒ}_‘ßvu‘(ˆ²jnunn»}ñú‘n‘߻߻ñu0j0ÝZ~ênô~%ˆnߌ{@Ÿ‚‡éa*Jò¡¡èèƒã{{›±±ºØö‹þÈù¨; ˆ…vñ®ÝÇ߈ÐeLÑ¡eDΈeƒøè<SzNSw…7 è,eLD,OG®²© ôd’ø ³Y4H–n_( ,KdèGAYDHúß(}ήL -< <%_uY(OOeèÝ\¹tt1‰v¨_ ¥¥ü¥ƒ†¢¢¾@ª$oàØ“¨½ó¡ EÝnÝejñ0jñjZ®ÐÝÍ‘] 0ÝÝ-- ,ÎG ©²®®ß‘n²®nˆ4--Ad¢¢ÊþÓ½ÁÏ$ÓKÍõ̇ë*È^>,è-W©uÐD‘~Í®}dGDÐeOÝu»‘(nÍdÐA²AèèGWDÝd©}²j®en -ÝDKKñô©j©DD4LÝE¹çž¦B•E¥ü̓›žFªªïRÈ„¶>DÑHHÝ\® -<®=Òêq_‘nƒ‘Ò}ZßnŽ-,,,,G(e}ˆ%~jjˆ%Z„`ôd¡¡Ç%ñ<Œ¡4eL5ía¨¿*¦ Á¾Ó¼~’¥¥q¼@|â^Ì…OY -,DW8®,®®DL®®²dg A©©ú®\©n©\ADAÐDE©ÐnøÎ‘®Ðe4Ý,®ô²K‘%}Ͳ%® ¡dúB¶zC>x…èõ¥KÑ÷ž"@hªÊª‚RÈB½»(e¡\q\nD4,øñµÕÔll¢k”«ÚëCiŽL4K 4\4……¹`BçǼINN…‘‘H`vO®ÝÌV­OADD;1µðÿæCœ¶{›Ñü¥ÁBÕo¬ðtWGü³èY®~E–7UÝYjD,’‘‘d0~ÎÑ5(W%’eDAdnÍ_\øÍ‘jLAGWn8u~ˆ\ñͲ%jn4©ÝVbqœ¼l7,Y²øl„†$h§ººQ@!´ÓŽOßÝ–d\4dМ׽”ý2˜¹Õ Šfý¿]œßnLeøŽ¡w¸lTÕtqb˜ùtÂÉCÓ›}_£NÓ¶¦ÂMµéÖª#P”¸ç`OÝÝ Ý_Œ(4- ‰ä”‰f…UÞÚƒKèë¾z¦#ºµ¹OeAèÎè%øV_®,,G\>kû ä¹•…bSn®jdW\ (Çy–jb†nЩ¡7Ž¡V<¡d-’DbaµÙt¾‡ÿé°k¹À8}’D©Yˆ„*ê3wqE©èèæÓ"ùR—?——Ö윛œ(©‘ñœ¨uÝ©¡ÝñCÅ^$"¬Ÿ‰û°†ÿ3P¼‡ n݈ñ}ñ_°&oýMÁ½CâhR×F«æ{y(ECCéÿTÕ>ÔÉwƒK²èÓ¶¦“ÆË {GüAee\€bqœ|Ó>µ¶ÓÕb›`Zd©nv;iv•¼C–b«,AVH >q~Ý%ÍL×ãÕ„/m¦ºfmrÉ×|`jeèAƒ_>Vaú…ç-Kô–îžžR[FoÏ‚žÒ¹dnˆ`a`_vÝWÝK_Ìä'mØØ@äÕëÀ¶æÓ7®`(Щu…qþžæ±þÌÁJ ù¤±"PU>_J›…\ƒ_x>V-²4­qÓ{2ÓUÁÏÙ>n²¥¹|^âI&é˜EЮÐ,e5`½œ¦>t*¦J„¢Óq8®- H>ßBtCJ>½U®dúç­_K}AeÂä×þz/^rÚ¦$”9 …dKÐÝ( CP˜Ó`¡4gõž"¹±$"·ÚÈòŽÝßdv…Œçv©Ðd®ß¾&"Å£+‘J``_XÚ¬„k£ú(,WΆ䰵Èt>_VÇO¢ðÆ/ÚM¾êJaK0<(O\Ýu…ñWÐd¢PÿäPzéû¶Ó»KèUt¼z/ÉM|ÇôèèA©CŽB_PÌ“´`{‰kq©‘O(7n­~v…›wÚ'lV©ñóbq7ç®Ñ©dE¼S«º¤¾z:Ú¬?´¨Ú' ,nqBÓ•” `¡e’gÎKÄ÷žù$@p^Æá¹K]\vñu`]`̈OdndñSJ^ëR¾Àêˆì_„¦¨Ì÷n©D%WqiJCJÕBn(eAHû6h¬÷|a{ÝÝ_%\ñŒ…W4- uUÕòÿÚ½ÂbÌþîøg¥ä¾wÛ@‡¢UŽjD©nx b¦`½CÛBÿÌPJžq0©OôEOÎV_Œ½˜´¨‰>yn-¡\›5>EVHß}¡OÒBwtætª¾§$£þ0PçG³©ÐHçw2ä¼ÄÄ,K¢€Ó/oº/ûÃV*ˆOÐ `Eq¨–yEOD ñÓS$‡ºé28d‘Çœ¿IÙ”çˆ Ü”î°€Ž\³Ùª#äýP]‘‘ˆHÝ ¡ŒŽd Ð`¿X#3f½tÿ dõ J*|B@«Â_©Ad©ß5¼œ„µ3½ÈÕâw”Íήd57•`㇎ŽCJSPzäWŽn› ­J®YHq›XPP$Õ^‰z½S½œŽ›üüõú˜C`tU.;yg,õ¹îF˜"º·ž8Ž¡›<(\((LWD\tÂ÷º™£Œ©0u½ä¾¿¸ÔçvYèey;£UäÂ;C¹÷ÂUˆgè‰w+*zɉq %®}© C• ” ¿`B`¶UóUKÝuƒ(ÒV…;UJ¼ùµ„a›С(–œ…€Ü°K®®Ç\ÌÓžCw¼3ëk˜¼ñ`,’ DÝUJêwx°YõK8ˆÓ€™#Ê"z—÷•òуÑn݃‘‘ jñO-ÑWwl×þפßÝdÝ…Bž½{|…ß dn»>¢žœ¿qúD,Š[¢l »©» ©4\ß»j__dL4ÝbSþ«11 Á†ÓŽK¥†¦ÀþëÚµ¶β®,uÜk2½˜ Óù¾°P£”žU°%‘ñúçñ„‘2„CÓµ¢°J˜ÕW 5­çqÇSU.jdnO»``qÕya„C_*…ÓÕ„Ý L®ß„ãvJU’’üŽxî@±“$ÖÊ×•ŽŽÝÑe Ýd©®d<4L(ñ¶Âä˜qŽ•d²–>µËÏÓÄ ’nV>zµPwùvv-4Ól Ì`¢¡d%®ÐÍÎA©ƒ0n4A®Ó 'ÚzvÁ"ÌRÓ²èîP_½Á>µ¢i}Ð,n÷>_a‰˜½U÷义ÒUß©dnbçk>­úlBu†fžþ‡(©qHua_Ç…¼}KôO5…Çv•B{¼Bxav y®’®nNVVbJiHKg²Í¬F""$˜p÷œ-4 ‘®‘ñ}’ ’ü L8úwSV©­EèŽU…œ÷™µñ-Ž_{v^r$"_u\W_ǘTU®‘©Ý©dOdß‘ED4Gb{Á½v{…wÏ>A²gèÏ Èðpö™íi’®Îdu'lEùÓUaŒq†_Ì\V®‘»úž° T¢̄$î„_½Ò%V–yœJ•xO}Ðn¡•C 5>ža”†ù•qÜiOG Wdް‰¶2êêÇü²K–°îÈ"/ÖFQÒOƒèÐÝ‘©ˆßñn(4d(júŽx A–¹UN¢ˆn4Gd_òœ{N°¶òòƒWñuç_K\H›b{ÈúÄ-ƒ(çC¿¿½¼ÓRÏ{Ý’Âm3@¾|J  e’4®°q•ywU ¾ÕùC‡Twb`‘(ß®E`V• ûÓ˜PJ_¿œu}S@Jt‰ ÇdD LiƒuVÕÌ{w°C>úxHYOK_Ut¸l qKY͆ûo“^±p‹—*-D®ß(…–2CµJ¢ãlÇ…ÝL GD†xÄeø,’ ŽŽœ¹•÷›–`Onvn‘}ß5C„`bµJIv…\,ÐG J{{{v?‚žôõ’¥[@!Êr$› ¡GO}_ÂëJqœœX¹Â‰3ûka~nô •5Œ¨µt`´qù>CKOTÕÚë^Â{OnÍõ(>4Oy{Õa_v{Cbq†Ee,n»VIÁä˜;’ø8{”?†$Æ6$‹Éˆj–ÎŽn%{…¼w@Áÿ° ûóç Oƒ4ƒƒ•ÄÄÑÄŽƒˆ ƒø–óóxÓ†œˆ–Ž4¡‘nñŒ†JëT½z#“½ŒÇ< 4O„{C{JúÄÆMÁZKüüÊå“X¬VÝG,O©u˜‡wCC‰œPÂ3œÕ>ͲˆY;b¿œì2‰«½˜ÀµŒd_þÕ¦½ÛÓqvdY\HCw`‰{IJé™VÂT|bÐeG _#¢~ù…BH5AÍ{‚ÂÃ@o‹#§§“ˆ• ôdLqbù¦tBëlU9tç•-Ñ ƒƒÑ®Îˆ€¢¹T›¹KKˆøôˆŽy„œÓêÌŽœZEq\Ý¡ƒ~tÓI£Æÿ樠_v ÝÝG¡ >„>{ç`"Šžˆ’õ²Ié¿¿¦wJ4ÐA-jßtµ¹ÂÂ|½œSµvä{v%ju–ãĉyPv/™T¦‡SÌ¢ƒ¢Èå¿¿7dnÍ©¹Uç˜*±‡rz"+éµb̘`òƒA ©b>¶yC¹„wÿ‹„~Í¥¥'÷÷ÖÈ“*Ó\GGGn˜lC¹S¸C¨¨¨ÌkVŒ_\`ÕB13´µ´É#JÚ«Sñ_S*U¼ä>B²®ÐÝÕUN½À¿+rm§å13ë½¶ÀA,²eÝwV¹½U9÷üg8–Óp±§$˜áŽ¡jgu…;UJ¦ÁV½.HG Køòž@{–Äw3Ž–ž€/›•ãØMÂÀ •dd--úß*`{ÁÌU¿˜12v\ DLE…žbÄ_>˜Qy©Kgæ±+Š×Ì`G e®ßCŠæó‰BÒœt‰Bñ_U¤¡K‘ß}T梌È"r3IÖÁ×k}>*«• q®%Íuq*¨¼¦Èâ!È:F¬ÿ¾IaV®%’j`CÁ´ûµ…¡Ag’8­Â°û""p$[àŽ¡®nŽŽ>PrC2É`ÀC…(©L ƒ~Ά÷°äûRæÂù˜Á¬¬{§#Â?hÉîÓòêßeÝúЩ_ßK0Œl{1¹BbVŽ(²,Ζն…Cçh䎥¥üæÚý¬þ¾J”\ôLnD ò°¾J˜ù½Vî‰;‰lB0‘ƒ„M¤*2B“!ÚT¼Þ¶Îè›;¢¢Ó˜„_ôÍjú{„ê¿r?r3!¨Å[׺m^_Î%©ˆ{ýSB‡˜n4Kô8~ã÷±“Ö±Û±æ!~‘Ð~ô\t˜„ÚºŒ v%ƒ® ôƒƒÑѹ˜RæÄáF$Ó$™¹FoȪwp°/ûpázñed\ %Ýnv®»>VC¹½{¶ÇO’,eUVbJb›J´ûk\üSB!3¿ðbUY,enÝñ‰¹|wS‰¼ê¦Ô Tj‘u*B8Õþéþ¬|å¿é×µ ’¡ç‚T‡ Cy®j}ߤ¬¼$—ðËoÖ^/^ʰþl$0ee²nñÓìSµq__çgGK²óNp@±Fª?R––%ñ2bkë¶ÿׯ‘ñdKøÎ£æã°Éá“6[h×Ô[ƾº¾±"QF[Ô‹$ìjL©Lnnu®~úVÓ˜C>aTúHE4®4;;˜˜€çw~Û˜†Ž’¥üV½Ú´¹ã’L(Dn~`˜kt b_vqb(­ˆ~òß~aŠŠµœRÚ{°Á Uñd- …y¼fÂÓÇ%‘%Žäût!ÿ±¤cÉ/"ÿ+ÚéŠÂß,®qÓa…•„ gGKã°$ûhª#QØ!œ–ˆ~ÝaÁ{IIŸñv~W-ƒ~ÒòžTÉïop#@‹ª—Qo@Ô/Ê"{ØF[§[ohÈ©\v dŽô_ß`J>bîiS÷__nY ;BœbJçCÆ£øKü²Â‰ùC¦þ£ ¡Ð, 4\ñ`Áf”‡ãk¡Anƒ8ußuß‘ ‘ÓÏ×ϸt銸xß}A{S‰TÓkwÍ%ß7Ù™Â3Û¿TÞ&ð£2¿ž‰`ÐôGk¹ÉÕãièüõ•÷•/RFF^@—– œ²êINÉ#?ª&¿z˜>OE›xyŽœãÔ‚"3F“pª#h@—ªé¬¬±¬º6cÖʧ[‡B7 y tE{ú;£kžkêjnW®ƒi›aȶ>b›•¢{ƒ¥¥¢t`I¬t  HD’LLWOßÒvú\vn%de‘ndÝd©uú}ñÕž>…`êZˆAúi{¤@|PVç}~–{¢˜™|ð#+±§¬Á½ikçd,,dH¢C`„„UK²8xT†p$±±Ö@wœçß0…˜Sð¸m¬£ðÕÙ¹ Mwò޹°p˜$ÿ§¬ÔŠÊwªÿ$˜“$Ô™Úph±Fàc¢óy ywC˜{÷J]ÓéÒj(4G ¡B`Ç`…Vùӆβ¥kœê‘M{Cb…eü Aj»u‘ÎßjЩ, Î d-Ýjßñe\¡~~}dßñì%dY}}eÇ*µÂ1{>Ä®e®‘a‰¸¤™TS«_*ä ¹íÜÇ‘K4 ,%lñ2ž'¼( –¢°Û"ÖÖØÔz–ˆyÝŽÂÿºÉo@º?ÈÏ£>˜ãóœ„ã¹Ö"¢º?ÿÖÛò3¨ùÒ“*ì¨"ÿ#§@?@FJViî£ký¹ÕtwÁC …u\Ý45 aXœvœžwTxK²¥UC‰¹þVHg den\Ýñd-W,, -ÎLD(eL\Ajd‘ôì²%’DG D(WJXT¬ÿ˜VÐDñ®}u{{ÂkäéwwžîŠUôгdT¶rBI×U5Gõ²žž”ï$“Æ#ÔM¹Ûêˆón`¤&T:š‚Ëð6§RÂ{ÓŽ@ž¬[F[«É¹Ö–Ò–Û2vŽ¢¾h±?§o$!>†S¼žCùÌC¾éJC9{`ú W xb–››2ˆœwÏ›K²¥”‰ËzM¼T õ,Lƒ-Б©(Ýeô,³- ³,4e’ L%-®®®YG-A, ³,,œçž¾šCµÕd%AjÍ%Z…aêX_¨ÒñÇjO©©KAèˆg%ç£tC ‘¼€’K•Ï6Q¾#ªc‚$ÀÄú–ꅉµ$Æ6#/6h±×ë°˜F„/œÖRh÷F¶`2 œ–ó „ìÓM&ÅRpÃF3_½¼Ì{a½½Sž1¶µ¨ ¸¶Ç\-Ð~VÓ½t{bÇ`ù'„²’¥”ßÌ*aCžä ©è ,ddd¡¡Î,ü,èeGÐüY,²Y ,’’õYg ³ñaB½#^¹z`, ejÐZñßñK8vñ‘ˆK©ÐügWd%Ýt¼|w‰ˆ»Kgüõ˜•œÃ±@#Ø9$Ò>aŽvu„Á‡¬M6p‚·±@M—¤þºRœžRرœ¾p„Òòv\–H•„wÒä¸$ØQ‹#1¹½¿éž£fû¸Â¾¸+Á¸2Òu¡-n i……]VVVN•²I¹VÌ“ÚS ú®YLDD\Ýuô©²AA%%’ÐÍÐß‘}ßjß%ßßÍ}dee,èD _C::ð^Jya²ÐG’D\V0]œ`¼q_`„vEeD®-,œ …2Àb¨ß¡’K’8ó€/•—[ÖàÃžŽŽ~nv`v_„Ár"“Û{¹Ó„ŽŽùœÒ§žã#h@û„–òŽ„ŽyHVÄß•£þªFØpFPµBv…µv2¼>¨Àò›`œ`Ý\E- Ð w]*vC_¶Ó*Küü¿ÿ6[âÚJCq©ü dvŽÒЮ8©}Í‘‘K‘ñZ000X‘ 0=av\ЩGüèe%–¾B¨½J Kd®U°¼t¢i>ãœ*vaCw•K,-K©…t¢é„¢(YôoØ@"@àÞ4O•ñ4W\øÄ•çΈø4­ ƒˆôê¬"hØ@FØ/¨Ž`¡uaH•(y‡¸cËöÅP¹ÌêŽvvnññ–Çnñê`ƒÐO D\5iq…\E–œÁ–K¥õèäXå:Å|y{Ä’®LDÝßu}Í>t˜ãtœÈ``:|É+‡ËÉ‹£ªå&F¤˜›©DügdužÁ½älJ˜ ©g4Ù'CÖ:IE\…¼¹Õbž57e dn©ŽwvX¸„]…5YõKwQ6‹Ã˜Û$à·˜-ˆÑøÑˆÑƒ4üD øòòÓªªh#Q÷´ùê­ÇOVÝ`v‡|"ö[[ÖBlC`úúA4 4¡¡Ýñ(©~ÝOeü®i†qކLuwfx,¥Ôâ#ë#¾¾¢AGèDŽ}‘`bÙ‡ l‰ÙSÕ:"F‡)R@Ê@+'×Míu®®‘K |„é[äV}AAdlí£º †5>wl{¹ 4g`¼`>3V‰.K,’õ¹Þ[¬ù#·ïã³–ˆ–4ˆeøeÑeøˆø-,³ , õÑ»œ°?æhºÖù–²­•`dn­–O•„…×ÅÆË§['2bòu(¡OOOLnDv4…DW‘dœîaa_7Vy°­õüÉ/!1^"¤¤,’GeÝÎúl V†S‰ ‹ïæ‡×ÞïÙ‚öö'F÷ÁU­-YdYaÂqË™‡˜{>L©ˆg}BÿzÓ„_•çbœ>‰î’¥a_'PrF—s§añ­ W-DeL(Ý(Ž44 O`v´„¹7E>æxgK¥™ÚÛ13BiEGÐnA%úC–vœ`¼î‰žTIÔ™ÔÏM?càcR+[×:*½¾V%x\ô÷½ÚmæSuÐ%©Wj0ê…òjDnÇ vj®eKd¢C*v…ç©KKè8€Þo"°˜ÀÆ‚Þã <ˆ~݈Έøƒêˆ~ƒ–KŽèˆƒŽÒ†÷º„“ÂT–­Î–_¡n_¡u…v`ýÆo#ï[[]ƒ­ú%,LWLdL(O\8ßñHOeG®­>½l\\_†æÄè艌¿m¿Cœ`qAüЮ>ltNV]qa{zœù^µ#¬¬ð/PØ™Ë#±+tSq~dÇl|ä«BT©Ð,®Ð–;¹ÁÇÝ(ú޼qVjg YÐd…˜¹˜¢ù»HgK•™ºÿÓ“!?p{WŽˆÎÍ­yw˜½•ùù¹w›ŽÄ­œwûR$@FÓÝ\Ý vŽ…Œ1º+Ê@[‚F ‘©,d(GW’Ð,e©ødd_»K®²e4ˆb……úŽd¢­K¥IÈš¬FR˜t ²%Aí ܹ‰J¶ÚaÕ2"¿"þþ#Ê$Ö§ªº"$µzBžž˜q%Ž ˜wªþ½>V©dÐÜlCÓ7Oß_VÓ{aŽ üüDÝ®–æUâ”k7dKKYüÄ6º@ÓÆ“ªÃ‚Ó ³Oßô–­¢N°æÓTÉ{°æ°žæ†„œ„—ph[æž„~– ¡Ov_êÒajé&[[6ºphvññjÒn²Wen-~Ω‘0‘‘v<,,Wj>V{]œ–OO¹˜gèõ¥ÏN{Ö)£ÿÙ7ÐAG©°ŠP̽wùPz¾ÅPë3#^m$Ö¨“š‡Öh'Å_XÌ…‘ÇTIÚPzSiiÐ,%,i{kV–(Ýñ0`êúdOYW ’Ý`¼t¶`È”°Ag²’yÉ[¬Ì¹R@áÞ{4êÒøwãæä¬¬Ú™‹Rž•x˜œ?§@Ê@¾±­ÒƒunOƒ~_v¨™éR^ð[MhpB½q ¢bb€Jçq¿ ÌÐúnÐÐndB¢¹½J\–îüõT¸¬ÀµÆB¤†’AG(ySfÓjñBBt¾ž«^åB"!&&&orÖ^±pàm£Á{XÓ‡‘~Õ$×+1…¢­²GøA£{¢b œùZê0-e Aƒ5¹Èœw KY¥xÁÖ½R¢ªÊR·„³ˆKZ\¢lãæ°$"F½¦Ræäœ¬™@6FFʧÊä¾Ó{>_bU*ŒRšh&ÖÖoFšf3¶_ž‰wŽB›JœXr‚Näv}DÑD®ñ{k¨`>Œk£Ó­²K¥¥>œÚ⎅<ñD²DV{yÒ˜‡Šþµ×@§"P/NغÞ@3?hØÅÆ^!°ÿ–_ž_½pTwtHd®Ðe»Ò°f‰” fJ‡é¾Â€O  %œIñ_*ùßgKõ•¹Êäé›±“Øá¶Ñ4\~±yRÚ¬½3ÚÓù¶½?M§/§6±±±6±˜#£˜Õf½w”ðåë#“å$—Æ“ð“ȹaJV½¿1"É|£¤Çˆú©OÍw1]Á†;xž¹­g’ü'¾*“¨P®A©Ot¹¹_£tP¦tPRB¬ÚX&zå"ð*F[ÛÖ"6X1´U@B‘ñ ¿3/t'lHßLÐY‘}Z0}`ê Àì*êñ®D- ,A-_y̽¹>ßú’õ¥›é^¾¢¹Ö/QÞ•ƒD}êêß÷í¾{"w!wþæû£Â¾÷ÊÆÛh6±$±‹#""h‚™¾¾¾˜ä&m§r$Ú^¬6?Ê“ÿ…3vS"ÿþþ^‡@/?VbÎd On\bS‡S{ñŒ•÷÷w²¥S*žµ/{¢;’©,®›t °Ó扰{PëaÅ+šÆ#*ÿÿ¿&FÖêÛ@§ëåFIœˆßî=ÿ‡N,ndA}jjì0Œ_B‘1C%Ð’ WeΡ°¸ISJ EE²Y¥õîÓN€½˜“[p¨O³Žˆˆî°ž¢•¢ÂM£˜žwœ!/¨zQª@áÅ6Ö?éPSþðÉ[ÅI±§hz#T?Ô⵫ּV‰wJfz#zªé3¢ñ¡W²~CÿB¦¿»¡Ók’ü¥,J1_ªþJ*;V%ƒAÎbÓÚ¢‹T‡‡_ÿ×ÿr¤ápr“ÛÉ2ÿF™ð3µ:Ù£‚þ„jñw‡“/wû_®ÎÝWôdXÙî늣|I§F‡`n², LK>{C2¹œb{èæ±˜Á›§“[™•<–êZ~{†ž„$„2wù„•ÒŽÑ`êXºÉ§Ô‹[#phÖþæFº¤6m+@±±"å$oË@µ{„SSÓ¹¢ab½1CšåâJúOdddw¹Vÿv0‘Hîî–güž03IT_µq\nY}‘>{qCb¤îNë1hË#ª)‚ÔØr>žU¼äâ¬Ém$±‹É‰lIuä£åm#¿qn©Ð®úî¢MMϘ £ªà'Iɹd’’,,4}žŽÀJêùb²²è°ž"˜Ö‹Ø¼ƒÑ¯ »„†¾˜†¹ÒãqòH4­K×T§9@@É#äº@+ËÅ@ªFo?:ª#zféÒ vç`H`…`qk1{lÁO©n²Î}vS3¿”_ÝUN˜õ¥ü …œvJCÓ5OdKjˆV¹SXò¿ÀJÚ‘1I@ÈÛ#—6Qb‰l«M|¨Êz¦XS‰ÁJvê˜UÏÁ¦Jyô}ô’eEJP1Õµf‡?¸ºÊþ†dAdøN˜‡J]PÜKü›˜3›îÆÛ‹º¹ˆ(Œ~Ñ€„ÓĬê¹ò»ø<ƒLˆdŽNæÂû@@¾@˜ØÉ1[?M[hªÉ¬Q‡&Â:Ž d’>(~²]›¶°‰–vñ}©`‘œ˜ë¢°wNÓNÁDzüæbÁÿ™¼œ®®,çùþž¨ê…J½µÚ™r*B‡éë½µâÚÌC3m1«$Á$]ˆv‡/ë«Á‡ jAdÁ䣇¹Ú¾¬—ºÚrtÐ’³,d ÕPÿ1„qy7g’g²yó{{°"ïM½`D~~ˆ –û€–†"êÒìÎÝ4ø L ­ˆn››¹„ùÚ¾*3^Ú$¬±Å§Êºÿ½{_=y4LD dÝ®ˆˆŽÓ{Óä­ø(Kq„½ÌœU×¢K°P?þ½™¹_®,YÎ÷¨X‰ù¼1*ëšÔ¾Úð½Ûé¬Sœ>ùB„3¼zBÓýayIVañ¢aa飊\®j»aqaJ½¾'?åÈz{þw¾‰®®‘Onô‰˜ÌÈ¿¶ý %Kg–x†RNá/äïæ¶ˆˆ~êˆRÛR¯~úxƒOƒ OŽƒˆž±žTNSˆÇ__ñ¿þt3¦'SŒ_…-Ñó4­ƒˆøßêìêÚÂMRñ²-G­”„¨œ–äÏ„>KüüNÿXrPJl»dYAÍñ¤½3̉ëÙz2´™¾¦ýÁ1!™™ý_1ã`C_2ŒVbUäµ¼X~w‡Ì¦ÿÿÕ _j²®äÌȽIÁþt^âÊ¢¼k”2j©ß‘XSÚ&Ú¿läçKAKKyNwºoÓØàà*–ŽGKꜰ@׋h´3!ÌóÑ5ó4–DøøˆŽ¹±¾¾É€ç5(dÒ_ù¨Ì¬f°V_Ð Ž-ˆ- Lj~~êZ2/þ‹R¹œÐÑΖOžy¹˜î–¾1„K²’¤é^«¶û˜EG©ßU˜¸÷$ÿ™Mÿ*_Õ#tÁÿÌëս‡颹`À¶é¼ __C{¢‰Ia`d} ÝSMw:`æ@zé$3ÁtÂÂyjЮ©Î_¢éÿ#Ò¨CÜвK²ƒ{ó¹ÖœÖ[™M„•wƒˆêˆ‹‹±Qp˜×–шŽ­4øƒòx¬žÌ¶»Žß%êvÁtýUt¾ç»Ýˆ(ÝD Ž©ˆd•Ó±ºRFÌœ®4,øxˆÛwwwyÉž²èÉM¬Å|ÕC\e®©®l|[Ið¦«âûÚÌXÿ¾´ÛȨXÂÕé/*¢ýÕä¹PUÿä*}ùXI™£aC%ôôU…ùù@ûrµ1z¹¶‰tî*}®©²ßùzÌr‰é¼ù¢%’gô {‹x/@QM¶y4ÄdÒ™°#ÊþÊáÊDˆÑƒ,,--ÑôžºÌ#ÏÂ>4Ý(`lžw½‰¹vßH LLøôô(AeôxÓ÷‚TÌ/“hœÒøÎˆ­œì!˜˜°œ²K¥üÚ¤âNµ3–¡G%©´½¨½¦Ëtzµé¹ë£äF&¢C½™×Ú¾vµýzzÌÈÌÚI`vÒ½C1«Ó•tOÐÐñV Ï‡žÌ¬:ÿ$ÿ+ÚÚéäÁB‘’’®Cµ*½éýÓK,KŽÏ×o/ÖÚQMœ–\LÒ]€ÃþÖzpÏŠƒøƒøü4ÑÑ ÎôFFÿ6×¹*H(ƒñßi J¼‰„_~®A4d΃Ѓd~ñ5Ä÷ûÌÈézËwZDLüW˜ã30{¹•£™ä²õüâ^!¨qµ{ è»®_“1z¼¬¢31&ÚËF½¹ÚÁÀÌP¾z±Èþ÷3*¾«ÚÁòçt½2ÉpÕ›ƒjGßV…{¾ä!þp¾¦Ìµý‰‰aÍ®®ô ¶”Â^1„yÁV²K’ôˆx M֬ާ—º“_ŽÑêÄ»ñp¢3ɬööM–uÑŽƒÎ»ê"ÛÛ““†LAjÓ˜U¹>…úúK(®8ƒ\W߃ôøy˜óNÁ¶zéÚ×*dÑÍô€–„b_z™¢_K²üÿ“¨v„{’n}’žÿ½µCaJ1䓼TÿŒµ¼f/&£rÌÁ‰|Bµÿz¨«å1«É¼y•¨¿ë¦¼bn©®ŒUÓ¶¸‰ýI/BIR^ÿë½qÛƒHD©n…Vÿf¾|I‰çGKG²ø­°¢˜F“äï™{ˆ›nHç…œ›û™QÞM«%€lU€-LAGêì#R6—þ¾Wƒu a­çç‘_`Kyããl¹•»n–îNé¢#Ö^¾–,ÑѰ˜ã±„¹•w†½õüè£Â/“ä´>x¡G,’ßbkëÿF÷p{忦â¦Ì«¦"¿”IÁ쾋9×°]Á^ÿ«‰£Õ`VS½½tâb;ƒj,~k‰Œ„ù¾RzÁÖ¿‡TJz¶°_}<Ð {2*¿ê† вKKŽãØ$"±ÞRž­–„y¹žSÖ„Ûêvò˜•îãƒÒò"Þ#ooh¢v%nDn;S…Õx}ô~\Ó£k£€–»êV›NŠÁ¨Ì{N„–®­ˆD(÷°wœ›{Tëu8GÏ™‡þÿJq¢ÐGe©l™š˜¤é ‰Ì¿Á¸¹Ë븅2ä÷§2þz½÷3½µå¾ÌéÌ…‰¤¦J¦ãßjÝßiw„*VÁ±Sf#X#Úé3ÕæòneDn®l¤ùë¬ÓaÕg胕ãÓã$¹Rï™¶Œ(•óB]B]¨–Žx;˜”ÎøÎÍ!Q‚$º#ä½deeÝ; _VV‘ôÝZY½˜Ìîy•`‘¢NNž£R“ŽLƒ©ƒîû{„w†–ÁÁ8èÏz"¤ztqqè²ô%žËf¦Õ¹â«BJÌÂIVw½ëCœëJBéPÁÖœvð#jŽÓž¸É×N°D~%ê›Õ J[¿|éR½ÆX1ÕÌî‘j-’ƒt™¨J‹¶…©%ô•ž¬#ÖãáÞ{2`­\•y¶Žˆƒ–ÎB~êˆ{†{U÷ƒˆÍò¨á—cúoP`ƒ %Ý›˜w›y`ßêñœl×¹{lŽyúÇv]ÌŽìêE»ˆüã˜{„¶Ž•'þŽK’ü¬r&Ë«ÕóžO}‘wTzlù*1â˜tœÁt°tÌC|aÈ¢tlt«lÓæ|1Bžä`alXÌ/ž¦{i} Y\iî°¨¶µ3{Ö&zz¶¦B0ß44j U¢¨ŒJb`vKKèKx˜±Ó$±hppž–Žuˆu_nŽ››ˆñu›ä½ž¢î€y {ÓFQØØ@Êp¹nd‘‘ kÓÇq T tkÂÁ¶ÓÌîž•ÒĈž•êŒq4ƒ-OÑ Â±œÛ–Ž›[¢çjõKtÌÈ3¿¨…¡K²b|±¼bNlä÷ÉS弦¿Úw'ž˜Á †¤‡žU½b¸w_v„Ó‘ÈÚé‰Uˆ%ÎßãäÕz11RË&f¾µb¸JìjA ‘ ‰q¹° gggÍÑ­¹Tã$Ö‹MÉòEe­òG–…•Žê•ÿã×£¾?o±6pM何ßj˜y…t½¹˜PðfÌùîqó Çdƒb…yƒòŽˆ–„óŽø,ÎŽT㛦B>Äí{¨K²üë¦$m:C¡©’ÍÎdC¸ýä¼¾Tã£kÿy`wBb{>ãTa…_…ítk‰¹ž>‰Ï…ˆÕUv*˜NkÝ®DÐã¤tt¢CC½¬m¬¬ÈþÌ£8j 4K© …X2ù…ç ’èK4y€F±žÖžºÚºŽƒƒ­ÎÎŽ–ó–O­ßì„÷˜±@Áy£ywÿ±6c“oF„vß} ¼{J¼å_"TÂÚ½½Á†U––Ñ®»ˆÑW44-ADy¢„zyÄ›¢Ã¾œKµë*zÂllEe’%`÷Ï«…VJS°CÕ„Cùê_Pœ¹Ž˜N¨•œwùvñ……S•…y°B*!«fb%ß‘©J”˜C¿/“3Pþ´zÚm¾ÂÌ]% AWÓ{–¿Ų́i’舕$“ذ›Zv–®Ž¡HÑø4dÑÇqfÚÿ6ä#äžÉׯoRÈʬ¶úHñß‘U‰Ó¶¿U ë½¾Nžò¹­E†4D­AÑ(Ž4ô4Ζƒ³ÓæÚ/Ó{˜y‚Â>ô²¥‚*êÛÕã÷A®ôvä'9k*{w–SB`¼¦wq*ÒœŒ…_`Áù–`Œ…ñqC†ˆ0…S´Ja˜øê®}aTfµÿ«ÕN!3§ÂËíTB K‘ GWDka`B_aH5²G²ˆ›N÷$#ÆÓM9TŽˆ4vŽŽEƒ-ŽœÒžÂÆÊéþ«{Fäz63@R£Àœì‘Òˆ›>îîlBÌÿÚ„ë@z¶CVûΈ ­-ÑEO³ˆ³øˆ{{òŽ››yÙTŽKõè? 3{N×Le®‘`¿if ¼bBù_¶¨`qž¼XÕ¢w´qa_ÈœBÕ{°vŒñn Ù £ñdKj{äâ$1ûfër:æ×C¯ñßKü,~lˆÁäÓœ`ñ•’¥KKxîº÷È@Ø‚ÂÒ•D5ÑO›øÄø Ñ•LŽ–›Nëžž›qkÂäÉÂÚ°¶] ߨì‘À›*¨ùwœ!ÀzV›•Ä•€¡­³Ñш–ƒ– L-øLÄ€Û–Ûy•¹æ¬…²ü"*¦+ä¿Á…•O®Aè4g®ê†  ˜lUwU¢¼'l¶Ú§ÀȵɊ£ÚS Õ…ê8‘ ”);\ñônÐ,e‘ɇþ:š'FlTžJˆ%d®n õøÎq¹ä¾z2ùŽ’K²’øžž±“±[Þæ–4üŽLe,ˆƒ-ŽLÑ Ž¡¡yÄy­OŽ(ލÍ숎ìꄈžwê•…HÎ-øx­OxƒÑDÎèøèO†ó•y$˜˜ãÔ@–8õS2ȾÕVb_`©©eèg β0\HbóžVqÁ¾ž‰1mȽ&|¬£„›ø%}j e²\ilÞŽ©‘OD’,ñ¼ÞRûºX¼C¼Ý}YÎDG Ñ üÝ–3{Ú¦ÁVœ­²øÑã¢Êo¬ŸT•ˆÑO–4•­-³ ˆÑ–-OÑ-L<4 уA»Žêƒƒˆ–Ž­øƒ\Wô4OÄÑ–O­Oƒ4GŽ ü-ÑyƒÂw{°ÊªÞT2Kü¥ü™þ^Bÿ$éž°q%²,üA®ô~ƒe‘dÐß~ñ}~jÝЮdAK-,Y,,d’ß –0©}jd,,-ŒÛj2j¹BH,ÐèeLD<ŽƒÂ–¦´Ó•yè ž¢FF@—Þ? Îe4®n%ÍŽuWdøÎOD LÑnLADˆGƒŽÍAe8Lˆ,ø,Dƒ³èèL -,ˆÑeøÎ Ínnø%DAôÑ DèÑôŽóœy°ªFMì–Kõ¥üð¾¦3ä¿2¼€d©%²Y¥A,Ð’Y®’}®©%G%YDü, Y, è,,,üü ,-Gn%nô®²0Î}`d’ƒ²øˆKññ‘‘}K©ôøY’èè dôÄîÓäÁÁ†{5øK’’–ãžØö$Rþ˜„–ÑÍøƒOddø®ÎWˆ®ˆõÍ4ÑOÑøÎΈÑÎЈôÑèøDDLDüD-èüüèõή~²øƒWAøÑdAƒøLGô’øLô–„Ê@§Ê—ïT*²’’IÁ1mɼµ÷žž0}%AA’èèY,eA,d},%G%d,è¥ü üYüèèèY¥èG%²Î~j ‘Yˆ®G©A}ß%ÍG®’ eõÎ,Aƒèøí™Âþ°ù•Ä•è¥õÑx±h—±‹FÊØ˜xŽÑø~λƒôd~Dn²ÎƒAÎnƒ~~ôø®©%ˆ%øƒ²ƒ-Έ-üü’üèøèõüè,ƒD®,L~Ю~~A©Ñˆˆ©~ˆWøÍÑ †„ò/?6±§¾œ²Kg¾Öé""´PPbw(d8A,üGeA’’ ®enGeô,,GDG,è, ,e d©‘}%Í©jôͲ©ßß%-G,ALAGG®eAee,üƒx°ywäÁyŽ.²²KA÷ϺֺÖh±Ôî¾›­–Έø–8ˆˆDΈGWnøƒƒøAÎWÍøøˆÎ»ÎŽÑˆôуƒÑˆÍ–ƒø4ŽÑøÑ΃õÑAˆˆYDƒÑ-²eш%λ…¢ˆ#Ö$ÞڜͲ¥ÿ"µ/Pé+$F¾ž>C >4L 4 ,©e ©©®(Ðnñôj‘‘vß‘}ˆ}}ñßd_j}uñ\©dDÝÐ,ü---õ®eDDD,üˆó;€£Ûwù˜lŽãK¥üKˆ ÷""Æ“Öožžž††¹¢›•••–`–óœ–êê›–óÓ•yÄ€Ó†éz°#ºTTÂ㘘N¹̆E ƒÑWOÑŽ ó­–5ói;„òˆ±“/[#6§ÞÁœÍ¥²ýT¬ÊâÚÿð¬@¼¹Á÷i> ã ¡O_\›­tC£t{lC=̦éCVCÂkbÜ ;qVU€ v•  ;5d5˜ǘ›ž†× ½w¹Ò(;x¥õô˜°hÓ""Ö‚±#˜Ø°ãæNN˜T™ã÷Ó¢€›yãîã°˜•Žž„žT›–{Ó°¢¾ÚM§M§@F@w6þ^3–Ó–­yó Ñ–†˜7ó•x¢†ã€ó¹¹„±§ÆªoáÞ{–%Kõ›¾ÿIÿ“/FXÊÊâ¬S£‡  lÜ;•­ –>b•'`f|F$é™Ôý#$P¿6hF&†¹ÜaE5; H¡EÜx×ÂVtUžµÿ y †Ïûä½½ã­x›KüKd4ã¬o6º3¾¾û¢¬F°ã€™›ŽTžž¹ó¢œyÓT÷îNîù¹TwyãT†¹Á"ªë@!ÖÚÀÖ^"ëÖÖ{yx˜Nטó†îĘîîÂîòœœ„›•"#oRooïá{ˆ²ü²JtIä¬mâÅ!^¿þB`þÈC‰¼vå¨`žÁb½÷¾_ÈêB¨¼¦$ÛBÿz¨åéÿBaÓ˜Ó`…`˜ çó¼;‰›açSaq2"32Õ[¹¹Ìêz¨´y˜Äx ü¥’ÄUãÓªoű@ÖhªÉh˜¹ª™°‹÷°œæ¾ÓžÖùÛ£¢žÂw„€ÉÓ"ÓR÷û@hÆTÞÀ½¾Ê÷È/Óê2{ù„•¹÷žT†y2÷xކ÷†žz¶ÓÖ›{"þ$RØàÞ…ÍKõ²¥¶‡í¤Å^r¨:¿2“ë$FÉa"“½´_È`„Cbaœê˜ž¨î¤…–Õ÷Ì…ŽqÌÓbJbw…5ûbÒB‘•w›Ìa鄨m2Pµ!/Nä˜Ì¨Ì½ƒüè²A;°ž¾o±Æ^h[/¾±ŽhRžÉ±È½é¢¶wÌœÌ$M¾Óh¢6—"ÌȄƄ±w„ò•2›æ£ÓV¹Â•ß¡ãæòw˜§„•½°Ó›„wwÖÖþ˜¢Ú6˜§Å§ÆÖªöö¬ÐKG<_½ŸÙÙ@I6§[¤:mhRÅI/2ëâ½½¦{Úa„qV¼SSbaíw_€V”q…眫ȼ¡©úŽw‘V __*X‘ÌVÚ“Ê#ªµ3ÌÓ½êÒò_žl;L’K÷{Räh±ÆÊ÷é3ÊÖÿÊ3Ö"À"½Öî“Ó½#¢Mÿ¬@w?w"Ö!Ê^Û#þž­››˜°{7–Äy{ó­•™#¢¬Ì´¢÷/žÌÛÖ¶§^“Ö!@Öù˜û¢#ØÆ[àákô¥³K0u„¼äFF?å±?”oÅ¿/&âÉÉ3´´wé¨aMTXaSÞTBž`vˆ i…Hy>l32vœ––ú_E\Œ`ñÒ]ì0V´˜2#2ì"1/3ù*wÌ]•››y-èü¥¥¥ôî÷T¬#ÿÖFÚ@±"oÆ$´Ö/Öw#$w"3??"Ö“Ö"±@"$#Ö§$/§éÖÖRÁ¹˜›››y†Û@Å3Ö“#´"½#È$û§3ºRF^Ê#£™#ɬª@‹ö)8üü (~>œÚ‚pˬ¤o:o[ŠŠåTϸ&æ@¶„aœtÕ´3$fÿvå¹*{Cb‰V–Jt¼ù…ç{ÄΖ‘œ›„¶¹_ ñ–2µ**ëÌ¿Pÿ„¾žÉ™£ãÑø¥üͲl‹”Þ$F¾ÆÅªºÖ@h#o§^Å/ªÆªÛ™R$Ö$3"hÅÊÖ/§#"""±Ö/È“"6//"ÖÅÿ«1Û•**!¨ÛÚÿ/^±½ÆÿÈ?ºR"Ø6º‰×Úÿ£?R‹K²’¥üè³Ð`ç…Œ a@+¸FØá‚º‡?äûÉ£@°Nׇ¢f:R‚oåŪ±‹M:zäÂtI×fI;ÜbSt¢‰Ù ÇU5Stž…½Vû'°'NÉ#F#æžãùŽnô,Îèèü²K¯æ[§Rº@QFšh#?Rª[poo6Fª@!QRÿ@$"/hF6Ö±"È“"ho?ª6ƧÖh^$±“@§ÊhªºM6¬Mp#Rº§ºoo—h/@hºpcÔcÉ‚áÞoZ¯Kôü¥¥©®ƒßÌv80 À ¨X¨1½¨1´œaù|t2Vœ*tlw6?غ±?&±/:@Ë#½Ú/Ú½œwU…U çç¼*¾i>iy¼ÂkÓbwCSf¢°û1$ÚÁ3ujød²èü¥èüÐK K88¯6[ÏR?MMØ—cá‹pF‹ÔºoÉ?Ô‚6F?p?Foo6h??R@—RQ—QFQ‹á‹o[—‹@‹QFºQºØQØØÞà9cáÞØápºàKK8ZK¯8¯K8ZK¯’¥¥ü,ltris-1.0.19/src/hint.c0000664000175000017500000002005412140770047011562 00000000000000/*************************************************************************** hint.c - description ------------------- begin : Sun Jan 6 2002 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include "ltris.h" #include "hint.h" SDL_Surface *hint_balloon = 0; SDL_Surface *hint_bkgnd = 0; SDL_Surface *balloon = 0; SDL_Surface *balloon_peek = 0; int balloon_peek_add_x = 9, balloon_peek_add_y = 9; /* added to actual balloon to display peek */ int balloon_tile_size; Hint *cur_hint = 0; Font *hint_font = 0; int hint_delay = 0; float hint_alpha; int hint_text_x = 10 + 9, hint_text_y = 10; /* text is drawn at this offset within balloon */ extern Config config; extern Sdl sdl; /* ==================================================================== Locals ==================================================================== */ /* ==================================================================== Create actual hint picture displayed. ==================================================================== */ void hint_create_pic() { int x, y; free_surf( &hint_balloon ); hint_balloon = create_surf( cur_hint->sw, cur_hint->sh, SDL_SWSURFACE ); for ( y = 0; y < cur_hint->sh - balloon_peek_add_y; y += balloon_tile_size ) for ( x = 0; x < cur_hint->sw - balloon_peek_add_x; x += balloon_tile_size ) { DEST( hint_balloon, x + balloon_peek_add_x, y, balloon_tile_size, balloon_tile_size ); /* get proper tile */ if ( y == 0 ) { if ( x == 0 ) SOURCE( balloon, 0, 0 ) else if ( x >= cur_hint->sw - balloon_peek_add_x - balloon_tile_size ) SOURCE( balloon, balloon_tile_size * 2, 0 ) else SOURCE( balloon, balloon_tile_size, 0 ) } else if ( y >= cur_hint->sh - balloon_peek_add_y - balloon_tile_size ) { if ( x == 0 ) SOURCE( balloon, 0, balloon_tile_size * 2 ) else if ( x >= cur_hint->sw - balloon_peek_add_x - balloon_tile_size ) SOURCE( balloon, balloon_tile_size * 2, balloon_tile_size * 2 ) else SOURCE( balloon, balloon_tile_size, balloon_tile_size * 2 ) } else { if ( x == 0 ) SOURCE( balloon, 0, balloon_tile_size ) else if ( x >= cur_hint->sw - balloon_peek_add_x - balloon_tile_size ) SOURCE( balloon, balloon_tile_size * 2, balloon_tile_size ) else SOURCE( balloon, balloon_tile_size, balloon_tile_size ) } blit_surf(); } /* peek */ DEST( hint_balloon, 0, cur_hint->sh - balloon_peek->h, balloon_peek->w, balloon_peek->h ); SOURCE( balloon_peek, 0, 0 ); blit_surf(); /* text */ for ( y = 0, x = 0; x < cur_hint->text->count; y += hint_font->height, x++ ) write_text( hint_font, hint_balloon, hint_text_x, hint_text_y + y, cur_hint->text->lines[x], OPAQUE ); } /* ==================================================================== Publics ==================================================================== */ /* ==================================================================== Load/delete hint resources. ==================================================================== */ void hint_load_res() { balloon = load_surf( "balloon.bmp", SDL_SWSURFACE ); balloon_peek = load_surf( "balloon_peek.bmp", SDL_SWSURFACE ); balloon_tile_size = balloon->w / 3; hint_font = load_fixed_font( "f_tiny_black.bmp", 32, 96, 6 ); } void hint_delete_res() { free_surf( &balloon ); free_surf( &balloon_peek ); free_font( &hint_font ); free_surf( &hint_balloon ); } /* ==================================================================== Create a hint. The passed x,y position is where the end of the Sprechblasenspitze is. Contents is converted to lines (duplicated). ==================================================================== */ Hint* hint_create( int x, int y, char *contents ) { Hint *hint = calloc( 1, sizeof( Hint ) ); /* get text */ hint->text = create_text( contents, 36 ); /* get screen size and convert string */ hint->sw = 240 + balloon_peek_add_x; hint->sh = balloon_tile_size * ( 2 + ( hint->text->count + 0 ) * hint_font->height / balloon_tile_size ) + balloon_peek_add_y; hint_set_pos( hint, x, y ); return hint; } void hint_delete( Hint *hint ) { if ( !hint ) return; free( hint ); } /* ==================================================================== Set the background on which the hints will be displayed. ==================================================================== */ void hint_set_bkgnd( SDL_Surface *bkgnd ) { hint_bkgnd = bkgnd; } /* ==================================================================== Set this hint as actual one. If NULL was passed no hint will be handled. ==================================================================== */ void hint_set( Hint *hint ) { if ( config.quick_help ) cur_hint = hint; else cur_hint = 0; if ( cur_hint ) { hint_alpha = 255; hint_delay = 500; hint_create_pic(); } } /* ==================================================================== Set hint to this position. ==================================================================== */ void hint_set_pos( Hint *hint, int x, int y ) { /* adjust screen position so that balloon's peek is at x,y */ hint->sx = x; hint->sy = y - hint->sh - balloon_peek->h / 2; } /* ==================================================================== Show/hide/update _current_ hint. ==================================================================== */ void hint_hide() { if ( !cur_hint || hint_delay ) return; DEST( sdl.screen, cur_hint->sx, cur_hint->sy, cur_hint->sw, cur_hint->sh ); SOURCE( hint_bkgnd, cur_hint->sx, cur_hint->sy ); blit_surf(); add_refresh_rect( cur_hint->sx, cur_hint->sy, cur_hint->sw, cur_hint->sh ); /* peek */ DEST( sdl.screen, cur_hint->sx + balloon_peek_add_x, cur_hint->sy + cur_hint->sh + balloon_peek_add_y, balloon_peek->w, balloon_peek->h ); SOURCE( hint_bkgnd, cur_hint->sx + balloon_peek_add_x, cur_hint->sy + cur_hint->sh + balloon_peek_add_y ); blit_surf(); add_refresh_rect( cur_hint->sx + balloon_peek_add_x, cur_hint->sy + cur_hint->sh + balloon_peek_add_y, balloon_peek->w, balloon_peek->h ); } void hint_show() { if ( !cur_hint || hint_delay ) return; DEST( sdl.screen, cur_hint->sx, cur_hint->sy, cur_hint->sw, cur_hint->sh ); SOURCE( hint_balloon, 0, 0 ); alpha_blit_surf( hint_alpha ); add_refresh_rect( cur_hint->sx, cur_hint->sy, cur_hint->sw, cur_hint->sh ); } void hint_update( int ms ) { /* delay */ if ( hint_delay > 0 ) { hint_delay -= ms; if ( hint_delay <= 0 ) hint_delay = 0; } /* if delay fade blend if if still alpha */ if ( hint_delay == 0 && hint_alpha > 0 ) { hint_alpha -= 1.0 * ms; if ( hint_alpha < 0 ) hint_alpha = 0; } } ltris-1.0.19/src/sdl.h0000664000175000017500000001115512140770047011411 00000000000000/*************************************************************************** sdl.h - description ------------------- begin : Thu Apr 20 2000 copyright : (C) 2000 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef SDL_H #define SDL_H #include #define BITDEPTH 16 #ifdef __cplusplus extern "C" { #endif // draw region // #define DEST(p, i, j, k, l) {sdl.d.s = p; sdl.d.r.x = i; sdl.d.r.y = j; sdl.d.r.w = k; sdl.d.r.h = l;} #define SOURCE(p, i, j) {sdl.s.s = p; sdl.s.r.x = i; sdl.s.r.y = j; sdl.s.r.w = sdl.d.r.w; sdl.s.r.h = sdl.d.r.h;} #define FULL_DEST(p) {sdl.d.s = p; sdl.d.r.x = 0; sdl.d.r.y = 0; sdl.d.r.w = (p)->w; sdl.d.r.h = (p)->h;} #define FULL_SOURCE(p) {sdl.s.s = p; sdl.s.r.x = 0; sdl.s.r.y = 0; sdl.s.r.w = sdl.d.r.w; sdl.s.r.h = sdl.d.r.h;} typedef struct { SDL_Surface *s; SDL_Rect r; } DrawRgn; // Sdl Surface // #define SDL_NONFATAL 0x10000000 SDL_Surface* load_surf(char *fname, int f); SDL_Surface* create_surf(int w, int h, int f); void free_surf( SDL_Surface **surf ); inline void lock_surf(SDL_Surface *sur); inline void unlock_surf(SDL_Surface *sur); void blit_surf(void); void alpha_blit_surf(int alpha); void fill_surf(int c); void set_surf_clip( SDL_Surface *surf, int x, int y, int w, int h ); Uint32 set_pixel( SDL_Surface *surf, int x, int y, int pixel ); Uint32 get_pixel( SDL_Surface *surf, int x, int y ); /* draw a shadowed frame and darken contents which starts at cx,cy */ void draw_3dframe( SDL_Surface *surf, int cx, int cy, int w, int h, int border ); // Sdl Font // enum { OPAQUE = 0 }; enum { ALIGN_X_LEFT = (1L<<1), ALIGN_X_CENTER = (1L<<2), ALIGN_X_RIGHT = (1L<<3), ALIGN_Y_TOP = (1L<<4), ALIGN_Y_CENTER = (1L<<5), ALIGN_Y_BOTTOM = (1L<<6) }; typedef struct { SDL_Surface *pic; int align; int color; int height; char char_width[256]; int char_offset[256]; char keys[256]; char offset; char length; //last written rect int save_last; int last_x; int last_y; int last_width; int last_height; } Font; Font* load_font(char *fname); Font* load_fixed_font(char *fname, int off, int len, int w); void free_font(Font **sfnt); int write_text(Font *sfnt, SDL_Surface *dest, int x, int y, char *str, int alpha); inline void lock_font(Font *sfnt); inline void unlock_font(Font *sfnt); SDL_Rect last_write_rect(Font *fnt); int text_width(Font *fnt, char *str); /* mouse buttons */ enum { LEFT_BUTTON = 1, MIDDLE_BUTTON = 2, RIGHT_BUTTON = 3, WHEEL_UP = 4, WHEEL_DOWN = 5, BUTTON_COUNT }; /* video modes */ typedef struct { int id; char name[64]; int width, height, depth; int flags; int ok; } Video_Mode; /* Sdl */ enum { RECT_LIMIT = 200, FADE_DEF_TIME = 500, FADE_IN = 0, FADE_OUT = 1 }; typedef struct { SDL_Surface *screen; DrawRgn d, s; int rect_count; SDL_Rect rect[RECT_LIMIT]; int fade; } Sdl; void init_sdl( int f ); void quit_sdl(); Video_Mode def_video_mode(); Video_Mode std_video_mode( int id ); Video_Mode video_mode( int width, int height, int depth, int flags ); Video_Mode* cur_video_mode(); char** get_mode_names( int *count ); int set_video_mode( Video_Mode mode ); void hardware_cap(); inline void refresh_screen( int x, int y, int w, int h ); void refresh_rects(); void add_refresh_rect(int x, int y, int w, int h); int wait_for_key(); void wait_for_click(); inline void lock_screen(); inline void unlock_screen(); inline void flip_screen(); void fade_screen( int type, int ms ); void take_screenshot( int i ); /* cursor */ /* creates cursor */ SDL_Cursor* create_cursor( int width, int height, int hot_x, int hot_y, char *source ); /* timer */ inline int get_time(); inline void reset_timer(); #ifdef __cplusplus }; #endif #endif ltris-1.0.19/src/Makefile.in0000664000175000017500000005746312233753072012541 00000000000000# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ bin_PROGRAMS = ltris$(EXEEXT) subdir = src DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc21.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intdiv0.m4 \ $(top_srcdir)/m4/intmax.m4 $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes.m4 $(top_srcdir)/m4/inttypes_h.m4 \ $(top_srcdir)/m4/isc-posix.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/longdouble.m4 \ $(top_srcdir)/m4/longlong.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/printf-posix.m4 \ $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/signed.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ $(top_srcdir)/m4/wchar_t.m4 $(top_srcdir)/m4/wint_t.m4 \ $(top_srcdir)/m4/xsize.m4 $(top_srcdir)/acinclude.m4 \ $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) am_ltris_OBJECTS = sdl.$(OBJEXT) menu.$(OBJEXT) item.$(OBJEXT) \ manager.$(OBJEXT) value.$(OBJEXT) main.$(OBJEXT) \ audio.$(OBJEXT) event.$(OBJEXT) list.$(OBJEXT) tools.$(OBJEXT) \ config.$(OBJEXT) chart.$(OBJEXT) tetris.$(OBJEXT) \ bowl.$(OBJEXT) shrapnells.$(OBJEXT) cpu.$(OBJEXT) \ hint.$(OBJEXT) parser.$(OBJEXT) ltris_OBJECTS = $(am_ltris_OBJECTS) ltris_DEPENDENCIES = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(ltris_SOURCES) DIST_SOURCES = $(ltris_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ @sound_flag@ @buf_flag@ @inst_flag@ @hi_inst_flag@ @dis_flag@ @locdir_flag@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GENCAT = @GENCAT@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_WPRINTF = @HAVE_WPRINTF@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGMERGE = @MSGMERGE@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ POSUB = @POSUB@ RANLIB = @RANLIB@ SDL_CFLAGS = @SDL_CFLAGS@ SDL_CONFIG = @SDL_CONFIG@ SDL_LIBS = @SDL_LIBS@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ buf_flag = @buf_flag@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ dis_flag = @dis_flag@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ hi_dir = @hi_dir@ hi_inst_flag = @hi_inst_flag@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ inst_dir = @inst_dir@ inst_flag = @inst_flag@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ locdir_flag = @locdir_flag@ mandir = @mandir@ mixer_flag = @mixer_flag@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sound_flag = @sound_flag@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ ltris_SOURCES = sdl.c menu.c item.c manager.c value.c main.c audio.c event.c \ list.c tools.c config.c chart.c tetris.c bowl.c shrapnells.c cpu.c hint.c \ parser.c ltris_LDADD = @mixer_flag@ EXTRA_DIST = sdl.c menu.c item.c manager.c value.c main.c audio.c event.c \ list.c tools.c config.c chart.c tetris.c bowl.c shrapnells.c cpu.c \ sdl.h menu.h item.h manager.h value.h audio.h event.h list.h tools.h \ config.h chart.h tetris.h bowl.h shrapnells.h cpu.h ltris.h \ hint.c hint.h gfx.S gfx.h parser.h gettext.h \ empty.hscr figures SUBDIRS = gfx sounds all: all-recursive .SUFFIXES: .SUFFIXES: .c .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign src/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p; \ then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) ltris$(EXEEXT): $(ltris_OBJECTS) $(ltris_DEPENDENCIES) $(EXTRA_ltris_DEPENDENCIES) @rm -f ltris$(EXEEXT) $(LINK) $(ltris_OBJECTS) $(ltris_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/audio.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bowl.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/chart.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/config.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpu.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/event.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hint.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/item.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/list.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/manager.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/menu.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/parser.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sdl.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/shrapnells.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tetris.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tools.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/value.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done check-am: all-am check: check-recursive all-am: Makefile $(PROGRAMS) installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-binPROGRAMS clean-generic mostlyclean-am distclean: distclean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-data-local install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-binPROGRAMS install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-local .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \ install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am check check-am clean clean-binPROGRAMS \ clean-generic ctags ctags-recursive distclean \ distclean-compile distclean-generic distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-binPROGRAMS install-data install-data-am \ install-data-local install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-pdf install-pdf-am \ install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic pdf pdf-am ps ps-am tags tags-recursive \ uninstall uninstall-am uninstall-binPROGRAMS uninstall-local install-data-local: $(mkinstalldirs) $(DESTDIR)$(inst_dir) $(INSTALL_DATA) figures $(DESTDIR)$(inst_dir)/figures $(mkinstalldirs) $(DESTDIR)$(hi_dir) if ! test -f $(DESTDIR)$(hi_dir)/ltris.hscr; then \ $(INSTALL_DATA) --mode=666 empty.hscr $(DESTDIR)$(hi_dir)/ltris.hscr; \ fi; uninstall-local: -rm -fr $(DESTDIR)$(inst_dir) -rm -f $(DESTDIR)$(hi_dir)/ltris.hscr # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: ltris-1.0.19/src/event.c0000664000175000017500000001462612140770047011751 00000000000000/*************************************************************************** event.c - description ------------------- begin : Sat Sep 8 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include "ltris.h" #include "event.h" extern Sdl sdl; extern SDL_Cursor *empty_cursor; extern SDL_Cursor *std_cursor; extern Config config; int keystate[SDLK_LAST]; int buttonstate[BUTTON_COUNT]; int rel_motion = 0; /* relative mouse motion? */ int motion_x = 0, motion_y = 0; /* current position of mouse */ int motion_rel_x = 0; /* position of mouse relative to old position */ int motion = 0; /* motion occured? */ int motion_button = 0; /* button pressed while moving */ float motion_mod; /* interna */ int intern_motion = 0; /* event_filter noted a motion so event_poll will set motion next time */ int intern_motion_rel_x = 0; int intern_motion_x = 0, intern_motion_y = 0; int intern_motion_last_x, intern_motion_last_y = 0; int intern_motion_button = 0; int intern_block_motion = 0; /* ==================================================================== Event filter used to get motion x. ==================================================================== */ int event_filter( const SDL_Event *event ) { /* if this is a mousemotion event get the latest mouse position and set motion and motion_x and drop this event */ /* event_poll does not return any motion events instead motion_x is used directly */ if ( event->type == SDL_MOUSEMOTION ) { if ( intern_block_motion ) return 0; /* mouse warp to keep in window */ if ( !intern_motion ) { intern_motion_last_x = intern_motion_x; intern_motion_last_y = intern_motion_y; intern_motion = 1; intern_motion_rel_x = event->motion.xrel; } else intern_motion_rel_x += event->motion.xrel; intern_motion_x = event->motion.x; intern_motion_y = event->motion.y; intern_motion_button = event->motion.state; return 0; } return 1; } /* ==================================================================== Reset event states ==================================================================== */ void event_reset() { memset( keystate, 0, sizeof( keystate ) ); memset( buttonstate, 0, sizeof( buttonstate ) ); motion_mod = (float)(config.motion_mod) / 100; intern_motion = motion = 0; } /* ==================================================================== Grab or release input. Hide cursor if events are kept in window. Use relative mouse motion and grab if config tells so. ==================================================================== */ void event_grab_input() { /* if rel_motion is set the global rel_motion_x is updated by event_poll() (internal value is always updated by event_filter()) */ rel_motion = config.rel_motion; /* use empty cursor if fullscreen or grab is set */ if ( config.grab || sdl.screen->flags & SDL_FULLSCREEN ) SDL_SetCursor( empty_cursor ); /* grab input if grab activated or rel_motion is set as we have to grab the input and hide the cursor if so */ if ( config.grab || rel_motion ) SDL_WM_GrabInput( SDL_GRAB_ON ); /* if rel_motion is set hide the cursor to get relative motion events even when cursor hits the border (due to grab) */ if ( rel_motion ) SDL_ShowCursor( 0 ); } void event_ungrab_input() { /* show cursor, grab nothing */ SDL_WM_GrabInput( SDL_GRAB_OFF ); rel_motion = 0; SDL_ShowCursor( 1 ); SDL_SetCursor( std_cursor ); } /* ==================================================================== Poll next event and set key and mousestate. Return Value: True if event occured ==================================================================== */ int event_poll( SDL_Event *event ) { motion = 0; /* check if motion occured: does not cause an event */ if ( intern_motion ) { /* gather all motion events to one absolute/relative position until event_poll is called next time */ intern_motion = 0; /* if either absolute position is used or relative motion occured set motion flag so paddle may move */ if ( !rel_motion || intern_motion_rel_x ) motion = 1; /* absolute position */ motion_x = intern_motion_x; motion_y = intern_motion_y; /* button */ motion_button = intern_motion_button; /* use motion modifier and invert if wanted */ if ( rel_motion && motion ) { motion_rel_x = (int)( motion_mod * intern_motion_rel_x ); if ( config.invert ) motion_rel_x = -motion_rel_x; #ifdef MOUSE_WARP /* reset mouse pointer as current solution does not work for BeOS */ SDL_EventState( SDL_MOUSEMOTION, SDL_IGNORE ); SDL_WarpMouse(sdl.screen->w >> 1, sdl.screen->h >> 1); SDL_EventState( SDL_MOUSEMOTION, SDL_ENABLE ); #endif } } /* check queued events */ if ( SDL_PollEvent( event ) ) { switch ( event->type ) { case SDL_QUIT: return 1; case SDL_MOUSEBUTTONUP: buttonstate[event->button.button] = 0; return 1; case SDL_MOUSEBUTTONDOWN: buttonstate[event->button.button] = 1; return 1; case SDL_KEYUP: keystate[event->key.keysym.sym] = 0; return 1; case SDL_KEYDOWN: keystate[event->key.keysym.sym] = 1; return 1; default: return 1; } } return 0; } /* ==================================================================== Block/unblock motion event ==================================================================== */ void event_block_motion( int block ) { intern_block_motion = block; } ltris-1.0.19/src/Makefile.am0000664000175000017500000000203012140770047012502 00000000000000DEFS = @DEFS@ @sound_flag@ @buf_flag@ @inst_flag@ @hi_inst_flag@ @dis_flag@ @locdir_flag@ bin_PROGRAMS = ltris ltris_SOURCES = sdl.c menu.c item.c manager.c value.c main.c audio.c event.c \ list.c tools.c config.c chart.c tetris.c bowl.c shrapnells.c cpu.c hint.c \ parser.c ltris_LDADD = @mixer_flag@ EXTRA_DIST = sdl.c menu.c item.c manager.c value.c main.c audio.c event.c \ list.c tools.c config.c chart.c tetris.c bowl.c shrapnells.c cpu.c \ sdl.h menu.h item.h manager.h value.h audio.h event.h list.h tools.h \ config.h chart.h tetris.h bowl.h shrapnells.h cpu.h ltris.h \ hint.c hint.h gfx.S gfx.h parser.h gettext.h \ empty.hscr figures SUBDIRS = gfx sounds install-data-local: $(mkinstalldirs) $(DESTDIR)$(inst_dir) $(INSTALL_DATA) figures $(DESTDIR)$(inst_dir)/figures $(mkinstalldirs) $(DESTDIR)$(hi_dir) if ! test -f $(DESTDIR)$(hi_dir)/ltris.hscr; then \ $(INSTALL_DATA) --mode=666 empty.hscr $(DESTDIR)$(hi_dir)/ltris.hscr; \ fi; uninstall-local: -rm -fr $(DESTDIR)$(inst_dir) -rm -f $(DESTDIR)$(hi_dir)/ltris.hscr ltris-1.0.19/src/cpu.c0000664000175000017500000003217112140770047011412 00000000000000/*************************************************************************** cpu.c - description ------------------- begin : Sun Jan 6 2002 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include "ltris.h" #include "list.h" #include "cpu.h" typedef struct { int x, y, rot; /* destination data used by bowl */ int score; /* score of this destination. highest score wins */ /* debug score mods */ int holes_mod, complete_mod, alt_mod, steep_mod, abyss_mod, block_mod; } CPU_Dest; /* ==================================================================== Locals ==================================================================== */ /* ==================================================================== Reset bowl with original data: empty = 0 blocked = 1 ==================================================================== */ void cpu_reset_bowl( CPU_Data *cpu_data ) { int i, j; for ( i = 0; i < cpu_data->bowl_w; i++ ) for ( j = 0; j < cpu_data->bowl_h; j++ ) cpu_data->bowl[i][j] = cpu_data->original_bowl[i][j]; } /* ==================================================================== Check if cpu_block fits in at this position. ==================================================================== */ int cpu_validate_block_pos( CPU_Data *cpu_data, int x, int y, int rot ) { int i, j; for ( j = 3; j >= 0; j-- ) for ( i = 3; i >= 0; i-- ) if ( cpu_data->block->mask[rot][i][j] ) { if ( x + i < 0 || x + i >= cpu_data->bowl_w ) return 0; if ( y + j >= cpu_data->bowl_h ) return 0; if ( y + j < 0 ) continue; if ( cpu_data->bowl[x + i][y + j] ) return 0; } return 1; } /* ==================================================================== Check if the passed position is valid for cpu_data->block, drop the block and insert to cpu_bowl with index 2. ==================================================================== */ int cpu_insert_block( CPU_Data *cpu_data, int x, int rot, int *y ) { int i, j; /* check if out of bowl at the sides*/ for ( i = 0; i < 4; i++ ) { for ( j = 0; j < 4; j++ ) if ( cpu_data->block->mask[rot][i][j] ) if ( x + i < 0 || x + i >= cpu_data->bowl_w ) return 0; } /* drop tile down */ *y = -3; while ( cpu_validate_block_pos( cpu_data, x, *y + 1, rot ) ) (*y)++; /* insert block */ for ( i = 0; i < 4; i++ ) { for ( j = 0; j < 4; j++ ) if ( cpu_data->block->mask[rot][i][j] ) cpu_data->bowl[x + i][(*y) + j] = 2; } return 1; } /* ==================================================================== Count number of completed lines. ==================================================================== */ int cpu_count_compl_lines( CPU_Data *cpu_data ) { int i, j, line_count; line_count = 0; for ( j = 0; j < cpu_data->bowl_h; j++ ) { for ( i = 0; i < cpu_data->bowl_w; i++ ) if ( !cpu_data->bowl[i][j] ) break; if ( i == cpu_data->bowl_w ) { for ( i = 0; i < cpu_data->bowl_w; i++ ) cpu_data->bowl[i][j] = 3; line_count++; } } return line_count; } /* ==================================================================== Remove completed lines. ==================================================================== */ void cpu_remove_compl_lines( CPU_Data *cpu_data ) { int i, j, l; int line_count = 0; int line_y[4]; /* count lines and get pos */ for ( j = 0; j < cpu_data->bowl_h; j++ ) { if ( cpu_data->bowl[0][j] == 3 ) { line_y[line_count++] = j; } } /* remove */ for ( j = 0; j < line_count; j++ ) for ( i = 0; i < cpu_data->bowl_w; i++ ) { for ( l = line_y[j]; l > 0; l-- ) cpu_data->bowl[i][l] = cpu_data->bowl[i][l - 1]; cpu_data->bowl[i][0] = 0; } } /* ==================================================================== Get alteration of column. ==================================================================== */ int cpu_get_alt( CPU_Data *cpu_data, int col ) { int j; if ( col == -1 || col == cpu_data->bowl_w ) return cpu_data->bowl_h; for ( j = 0; j < cpu_data->bowl_h; j++ ) if ( cpu_data->bowl[col][j] != 0 ) break; return cpu_data->bowl_h - j; } /* ==================================================================== This is the main analyze function. CPU_Data::bowl has the block already added and 'dest' already contains the position of the block and does only need the score. ==================================================================== */ int CPU_SCORE_BASIC = 100; /* starting score */ int CPU_SCORE_HOLE = -26; /* each single hole */ int CPU_SCORE_ALT = 5; /* each altitude level (tile ) */ int CPU_SCORE_LINE = 17; /* each line completed */ int CPU_SCORE_STEEP = -3; /* steepness score */ int CPU_SCORE_ABYSS = -7; /* an abyss hole counts this score */ int CPU_SCORE_BLOCK = -5; /* every tile above the last hole belonging to the inserted block cashes this penalty */ void cpu_analyze_bowl( CPU_Data *cpu_data, CPU_Dest *dest ) { int i, j; int line_count; int max_alt = 0; int line_score; int y, abyss_depth; int diff; int aux_alt; /* count completed lines -- lines that will be removed are marked as 3 */ line_count = cpu_count_compl_lines( cpu_data ); cpu_remove_compl_lines( cpu_data ); /* get maximum alt */ for ( i = 0; i < cpu_data->bowl_w; i++ ) { if ( max_alt < cpu_get_alt( cpu_data, i ) ) max_alt = cpu_get_alt( cpu_data, i ); } /* ANALYZE */ /* LINES */ /* clearing a single line is quite bad as there'll propably be holes and * some tiles remaining so we don't give any bonus for this except if * the bowl contents grows to high. legalize it! */ line_score = CPU_SCORE_LINE + (max_alt/2); if ( line_count == 1 ) { switch ( cpu_data->aggr ) { case 0: /* defensive */ if ( max_alt > 9 ) dest->complete_mod = line_score; break; case 1: /* normal */ if ( max_alt <= 5 ) dest->complete_mod = -line_score; else if ( max_alt <= 12 ) dest->complete_mod = -(line_score/2); break; case 2: /* aggressive */ if ( max_alt <= 12 ) dest->complete_mod = -line_score; break; case 3: /* kamikaze */ if ( max_alt <= 8 ) dest->complete_mod = -(line_score * 2); else if ( max_alt <= 14 ) dest->complete_mod = -line_score; break; } } else dest->complete_mod = line_score * line_count * line_count; /* HOLES */ /* each hole simply count a score */ for ( i = 0; i < cpu_data->bowl_w; i++ ) { for ( j = cpu_data->bowl_h - 1; j > cpu_data->bowl_h - 1 - cpu_get_alt( cpu_data, i ); j-- ) { if ( !cpu_data->bowl[i][j] ) dest->holes_mod += CPU_SCORE_HOLE; } } /* ALTITUDE */ /* the deeper you place the tile the better */ dest->alt_mod = CPU_SCORE_ALT * dest->y; /* STEEPNESS */ /* height difference to the neighbored tiles */ for ( i = 1; i < BOWL_WIDTH - 1; i++ ) { diff = abs( cpu_get_alt( cpu_data, i ) - cpu_get_alt( cpu_data, i - 1 ) ) + abs( cpu_get_alt( cpu_data, i ) - cpu_get_alt( cpu_data, i + 1 ) ); dest->steep_mod += CPU_SCORE_STEEP; } /* ABYSS */ /* abyss is the deepness of a struct with a single hole at the highest point */ for ( i = 0; i < cpu_data->bowl_w; i++ ) { /* get deepest point */ aux_alt = cpu_get_alt( cpu_data, i - 1 ); if ( cpu_get_alt( cpu_data, i + 1 ) < aux_alt ) aux_alt = cpu_get_alt( cpu_data, i + 1 ); /* if this value is below the col's alt we don't have an abyss */ if ( cpu_get_alt( cpu_data, i ) >= aux_alt ) continue; y = cpu_data->bowl_h - aux_alt - 1; /* check abyss_depth */ abyss_depth = 0; while ( y + 1 < cpu_data->bowl_h && !cpu_data->bowl[i][y + 1] ) { abyss_depth++; y++; } /* we're at position above the abyss and have it's height */ if ( abyss_depth >= 2 ) dest->abyss_mod += CPU_SCORE_ABYSS * abyss_depth; } /* BLOCK */ /* to keep the bowl down we need to complete lines and therefore keep the upper holes in reach. * therefore we punish each tile above the last hole. as already inserted blocks doesn't matter * we just score the current block. */ for ( i = 0; i < cpu_data->bowl_w; i++ ) { /* first col tile */ y = cpu_data->bowl_h - cpu_get_alt( cpu_data, i ); while ( y < cpu_data->bowl_h && cpu_data->bowl[i][y] ) { if ( cpu_data->bowl[i][y] == 2 ) dest->block_mod += CPU_SCORE_BLOCK; y++; } } /* score together */ dest->score = CPU_SCORE_BASIC + dest->holes_mod + dest->complete_mod + dest->alt_mod + dest->abyss_mod + dest->steep_mod + dest->block_mod; } /* ==================================================================== Backup/restore bowl information. Used for preview analyzes. ==================================================================== */ void cpu_backup_bowl( CPU_Data *cpu_data ) { int i, j; for ( i = 0; i < cpu_data->bowl_w; i++ ) for ( j = 0; j < cpu_data->bowl_h; j++ ) cpu_data->backup_bowl[i][j] = cpu_data->bowl[i][j]; } void cpu_restore_bowl( CPU_Data *cpu_data ) { int i, j; for ( i = 0; i < cpu_data->bowl_w; i++ ) for ( j = 0; j < cpu_data->bowl_h; j++ ) cpu_data->bowl[i][j] = cpu_data->backup_bowl[i][j]; } /* ==================================================================== Publics ==================================================================== */ /* ==================================================================== Analyze situation and set CPU_Data::dest_x and CPU_Data::dest_rot which is used by bowl to move the block. The important part is the cpu_analyze_bowl() function above. You want your own AI... edit this function!. ==================================================================== */ void cpu_analyze_data( CPU_Data *cpu_data ) { int x, rot, y; CPU_Dest *dest, *best_dest; List *list = list_create( LIST_AUTO_DELETE, LIST_NO_CALLBACK ); /* get and analyze valid positions of block */ cpu_data->block = cpu_data->original_block; for ( rot = 0; rot < 4; rot++ ) { for ( x = -4; x < 14; x++ ) { cpu_reset_bowl( cpu_data ); if ( cpu_insert_block( cpu_data, x, rot, &y ) ) { dest = calloc( 1, sizeof( CPU_Dest ) ); dest->x = x; dest->y = y; dest->rot = rot; cpu_analyze_bowl( cpu_data, dest ); list_add( list, dest ); } } } /* get highest score as final dest -- same score the deeper block is used */ best_dest = list_first( list ); while ( ( dest = list_next( list ) ) != 0 ) { if ( dest->score > best_dest->score ) best_dest = dest; else if ( dest->score == best_dest->score && dest->y > best_dest->y ) best_dest = dest; } cpu_data->dest_x = best_dest->x; cpu_data->dest_y = best_dest->y; cpu_data->dest_rot = best_dest->rot; cpu_data->dest_score = best_dest->score; /* DEBUG */ /* printf( "DESTINATION: %i/%i\n", best_dest->x, best_dest->rot); printf( "Lines: %6i\n", best_dest->complete_mod ); printf( "Alt: %6i\n", best_dest->alt_mod ); printf( "Holes: %6i\n", best_dest->holes_mod ); printf( "Steepness: %6i\n", best_dest->steep_mod ); printf( "Abyss: %6i\n", best_dest->abyss_mod ); printf( "Blocking: %6i\n", best_dest->block_mod ); printf( "---------- %6i\n", best_dest->score );*/ list_delete( list ); } ltris-1.0.19/src/tools.h0000664000175000017500000001006412140770047011765 00000000000000/*************************************************************************** tools.h - description ------------------- begin : Fri Jan 19 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef __TOOLS_H #define __TOOLS_H /* this file contains some useful tools */ /* free with a check */ #define FREE( ptr ) { if ( ptr ) free( ptr ); ptr = 0; } /* check if a serious of flags is set in source */ #define CHECK_FLAGS( source, flags ) ( source & (flags) ) /* return random value between ( and including ) upper,lower limit */ #define RANDOM(lower, upper) ((lower)+(int)(((double)((upper)-(lower)+1))*rand()/(RAND_MAX+1.0))) /* compute distance of two vectors */ #define VEC_DIST( vec1, vec2 ) ( sqrt( ( vec1.x - vec2.x ) * ( vec1.x - vec2.x ) + ( vec1.y - vec2.y ) * ( vec1.y - vec2.y ) ) ) /* compares to strings and returns true if their first strlen(str1) chars are equal */ inline int strequal( char *str1, char *str2 ); /* delete lines */ void delete_lines( char **lines, int line_number ); /* delay struct */ typedef struct { int limit; int cur; } Delay; /* set delay to ms milliseconds */ inline void delay_set( Delay *delay, int ms ); /* reset delay ( cur = 0 )*/ inline void delay_reset( Delay *delay ); /* check if time's out ( add ms milliseconds )and reset */ inline int delay_timed_out( Delay *delay, int ms ); /* set timer so that we have a time out next call of delay_timed_out() */ inline void delay_force_time_out( Delay *delay ); /* return distance betwteen to map positions */ int get_dist( int x1, int y1, int x2, int y2 ); /* init random seed by using ftime */ void set_random_seed(); /* get coordintaes from string */ void get_coord( char *str, int *x, int *y ); // text structure // typedef struct { char **lines; int count; } Text; // convert a str into text ( for listbox ) // Text* create_text( char *str, int char_width ); // delete text // void delete_text( Text *text ); /* ==================================================================== Get type and prefix from string: type::prefix Set both pointers 0 if failure. ==================================================================== */ void get_type_and_prefix( char *arg, char **ext, char **prefix ); /* ==================================================================== Replace any existence of character old into new. ==================================================================== */ void strrepl( char **str, char c_old, char c_new ); /* ==================================================================== Counter with a current float value and a target value. Approaches the target value until reached when counter_update() is called. ==================================================================== */ typedef struct { double approach; /* approaching value usually used for a smooth counter display */ double value; /* actual value */ } Counter; void counter_set( Counter *counter, double value ); void counter_add( Counter *counter, double add ); double counter_get_approach( Counter counter ); double counter_get( Counter counter ); void counter_update( Counter *counter, int ms ); void fill_int_array_rand( int *array, int start, int count, int low, int high ); void fill_random_block_bags( int *bag, int bag_count ); #endif ltris-1.0.19/src/item.c0000664000175000017500000001672512140770047011570 00000000000000/*************************************************************************** item.c - description ------------------- begin : Thu Sep 20 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include "manager.h" extern Sdl sdl; extern SDL_Surface *mbkgnd; extern Font *mfont, *mhfont; /* ==================================================================== Locals ==================================================================== */ float alpha_change = 0.4; /* ==================================================================== Create a basic item. ==================================================================== */ Item *item_create_basic( int type, char *name, char *hint ) { Item *item = calloc( 1, sizeof( Item ) ); /* name */ item->name = strdup( name ); /* id */ item->item_id = -1; /* alpha */ item->halpha = 255; item->alpha = 0; /* type */ item->type = type; /* hint if astring was passed */ if ( hint == 0 ) item->hint = 0; else item->hint = hint_create( 0, 0, hint ); /* the position will be set when this item is adjusted in menu adjust */ return item; } /* ==================================================================== Publics ==================================================================== */ /* ==================================================================== Create item. Return Value: item ==================================================================== */ Item *item_create_separator( char *name ) { Item *item = item_create_basic( ITEM_SEPARATOR, name, 0 ); return item; } Item *item_create_range( char *name, char *hint, int *val_int, int min, int max, int step ) { Item *item = item_create_basic( ITEM_RANGE, name, hint ); item->value = value_create_range_int( val_int, min, max, step ); return item; } Item *item_create_switch( char *name, char *hint, int *val_int, char *str_off, char *str_on ) { char **names = calloc( 2, sizeof( char* ) ); Item *item = item_create_basic( ITEM_SWITCH, name, hint ); names[0] = strdup( str_off ); names[1] = strdup( str_on ); item->value = value_create_range_str( val_int, names, 2 ); free( names[0] ); free( names[1] ); free( names ); return item; } Item *item_create_switch_x( char *name, char *hint, int *val_int, char **strings, int count ) { Item *item = item_create_basic( ITEM_SWITCH_X, name, hint ); item->value = value_create_range_str( val_int, strings, count ); return item; } Item *item_create_key( char *name, char *hint, int *val_int, int *filter ) { Item *item = item_create_basic( ITEM_KEY, name, hint ); item->value = value_create_key( val_int, filter ); return item; } Item *item_create_edit( char *name, char *hint, char *val_str, int limit ) { Item *item = item_create_basic( ITEM_EDIT, name, hint ); item->value = value_create_edit( val_str, limit ); return item; } Item *item_create_link( char *name, char *hint, void *menu ) { Item *item = item_create_basic( ITEM_LINK, name, hint ); item->link = menu; return item; } Item *item_create_action( char *name, char *hint, int item_id ) { Item *item = item_create_basic( ITEM_ACTION, name, hint ); item->item_id = item_id; return item; } /* ==================================================================== Delete item (void pointer for compatiblity when using with list) ==================================================================== */ void item_delete( void *pitem ) { Item *item = (Item*)pitem; if ( !item ) return; if ( item->name ) free( item->name ); if ( item->value ) value_delete( item->value ); if ( item->hint ) hint_delete( item->hint ); free( item ); } /* ==================================================================== Adjust alignment of name and value strings ==================================================================== */ void item_adjust( Item *item ) { /* alignment - name */ item->nx = 0; item->ny = item->h / 2; item->nalign = ALIGN_X_LEFT | ALIGN_Y_CENTER; if ( item->type == ITEM_LINK || item->type == ITEM_ACTION || item->type == ITEM_SEPARATOR ) { item->nx = item->w / 2; item->nalign = ALIGN_X_CENTER | ALIGN_Y_CENTER; } item->vx = item->w - 1; item->vy = item->h / 2; item->valign = ALIGN_X_RIGHT | ALIGN_Y_CENTER; /* hint position */ if ( item->hint ) hint_set_pos( item->hint, item->x + item->w * 0.6, item->y ); } /* ==================================================================== Hide/Show item ==================================================================== */ void item_hide( Item *item ) { DEST( sdl.screen, item->x, item->y, item->w, item->h ); SOURCE( mbkgnd, item->x, item->y ); blit_surf(); add_refresh_rect( item->x, item->y, item->w, item->h ); } void item_show( Item *item ) { Font *font = mfont; /* name */ if ( item->font ) font = item->font; /* manual override if special font was set */ font->align = item->nalign; mhfont->align = item->nalign; write_text( font, sdl.screen, item->x + item->nx, item->y + item->ny, item->name, item->alpha ); if ( item->halpha < 255 ) write_text( mhfont, sdl.screen, item->x + item->nx, item->y + item->ny, item->name, item->halpha ); /* value string */ if ( item->value ) { font->align = item->valign; mhfont->align = item->valign; write_text( font, sdl.screen, item->x + item->vx, item->y + item->vy, item->value->val_str, item->alpha ); if ( item->halpha < 255 ) write_text( mhfont, sdl.screen, item->x + item->vx, item->y + item->vy, item->value->val_str, item->halpha ); } add_refresh_rect( item->x, item->y, item->w, item->h ); } /* ==================================================================== Update alpha of item ==================================================================== */ void item_update_alpha( Item *item, int ms ) { if ( item->highlighted ) { item->halpha = 0; item->alpha = 255; } else { if ( item->halpha < 255 ) { item->halpha += alpha_change * ms; if ( item->halpha > 255 ) item->halpha = 255; } if ( item->alpha > 0 ) { item->alpha -= alpha_change * ms; if ( item->alpha < 0 ) item->alpha = 0; } } } /* ==================================================================== Check if position's on item. ==================================================================== */ int item_focus( Item *item, int x, int y ) { if ( item->type == ITEM_SEPARATOR ) return 0; /* may never be focused */ return ( x >= item->x && y >= item->y && x < item->x + item->w && y < item->y + item->h ); } ltris-1.0.19/src/shrapnells.c0000664000175000017500000002217312140770047012777 00000000000000/*************************************************************************** shrapnells.c - description ------------------- begin : Sat Sep 8 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include "ltris.h" #include "config.h" #include "list.h" #include "shrapnells.h" extern Config config; extern Sdl sdl; extern SDL_Surface *offscreen; List *shrapnells = 0; /* ==================================================================== Local ==================================================================== */ /* ==================================================================== Create a single shrapnell and add to list. ==================================================================== */ void shrapnell_create( int x, int y, int w, int h, float vx, float vy, float gx, float gy ) { Shrapnell *shr = calloc( 1, sizeof( Shrapnell ) ); shr->pic = create_surf(w, h, SDL_SWSURFACE); SDL_SetColorKey(shr->pic, 0, 0); DEST(shr->pic, 0, 0, w, h); SOURCE(offscreen, x, y); blit_surf(); shr->x = x; shr->y = y; shr->v.x = vx; shr->v.y = vy; shr->g.x = gx; shr->g.y = gy; shr->alpha = 64; list_add( shrapnells, shr); } /* ==================================================================== Delete a shrapnell ==================================================================== */ void shrapnell_delete( void *ptr ) { Shrapnell *shr = (Shrapnell*)ptr; SDL_FreeSurface( shr->pic ); free( shr ); } /* ==================================================================== Public ==================================================================== */ /* ==================================================================== Initate or delete shrapnell list ==================================================================== */ void shrapnells_init() { shrapnells = list_create( LIST_AUTO_DELETE, shrapnell_delete ); } void shrapnells_delete() { list_delete( shrapnells ); } /* ==================================================================== Create shrapnells from position in offscreen ==================================================================== */ void shrapnells_create( int x, int y, int w, int h, int type ) { int i, j; int shr_w, shr_h; /* no animations? */ if (!config.anim) return; /* create shrapnells */ switch (type) { case 0: case 1: shr_w = BOWL_BLOCK_SIZE; shr_h = h; for ( i = 0, j = 1; i < w; i += shr_w, j++ ) { if ( type == 0 ) shrapnell_create(x + i, y, shr_w, shr_h, 0, ( 11 - j ) * -0.015, 0, 0.0002 ); else shrapnell_create(x + i, y, shr_w, shr_h, 0, j * -0.015, 0, 0.0002 ); } break; case 2: case 3: shr_w = BOWL_BLOCK_SIZE; shr_h = h; for ( i = 0, j = 1; i < w / 2; i += shr_w, j++ ) { if ( type == 2 ) { shrapnell_create( x + i, y, shr_w, shr_h, 0, j * -0.016, 0, 0.0002 ); shrapnell_create( x + w - i - shr_w, y, shr_w, shr_h, 0, j * -0.016, 0, 0.0002 ); } else { shrapnell_create( x + i, y, shr_w, shr_h, 0, ( 6 - j ) * -0.016, 0, 0.0002 ); shrapnell_create( x + w - i - shr_w, y, shr_w, shr_h, 0, ( 6 - j ) * -0.016, 0, 0.0002 ); } } break; case 4: /* shr_w = BOWL_BLOCK_SIZE; shr_h = h; for ( i = 0, j = 1; i < w / 2; i += shr_w, j++ ) { shrapnell_create( x + i, y, shr_w, shr_h, ( 6 - j ) * 0.02, 0, 0, 0 ); shrapnell_create( x + w - i - shr_w, y, shr_w, shr_h, ( 6 - j ) * -0.02, 0, 0, 0 ); } break;*/ case 5: case 6: shr_w = BOWL_BLOCK_SIZE; shr_h = h; for ( i = 0, j = 1; i < w; i += shr_w, j++ ) { if ( type == 5 ) shrapnell_create( x + i, y, shr_w, shr_h, j * -0.02, ( 11 - j ) * -0.01, 0, 0.0002 ); else shrapnell_create( x + i, y, shr_w, shr_h, ( 11 - j ) * 0.02, ( 11 - j ) * -0.01, 0, 0.0002 ); } break; } } /* ==================================================================== Remove all shrapnells ==================================================================== */ void shrapnells_reset() { list_clear( shrapnells ); } /* ==================================================================== Show, hide all shrapnells. ==================================================================== */ void shrapnells_hide() { List_Entry *entry = shrapnells->head.next; Shrapnell *shr; int x, y; while ( entry != &shrapnells->tail ) { shr = entry->item; x = (int)shr->x; y = (int)shr->y; DEST(sdl.screen, x, y, shr->pic->w, shr->pic->h); SOURCE(offscreen, x, y); blit_surf(); add_refresh_rect(x, y, shr->pic->w, shr->pic->h); entry = entry->next; } } void shrapnells_show() { List_Entry *entry = shrapnells->head.next; Shrapnell *shr; int x, y; while ( entry != &shrapnells->tail ) { shr = entry->item; x = (int)shr->x; y = (int)shr->y; DEST(sdl.screen, x, y, shr->pic->w, shr->pic->h); SOURCE(shr->pic, 0, 0); if (!config.trp || shr->alpha == 0) blit_surf(); else alpha_blit_surf((int)shr->alpha); add_refresh_rect(x, y, shr->pic->w, shr->pic->h); entry = entry->next; } } /* ==================================================================== Update and remove expired shrapnells ==================================================================== */ void shrapnells_update( int ms ) { List_Entry *entry = shrapnells->head.next; Shrapnell *shr; while ( entry != &shrapnells->tail ) { shr = entry->item; shr->v.x += shr->g.x * ms; shr->v.y += shr->g.y * ms; shr->x += shr->v.x * ms; shr->y += shr->v.y * ms; if (shr->alpha < 255) shr->alpha += 0.20 * ms; entry = entry->next; if (shr->alpha > 255 || shr->x + shr->pic->w < 0 || shr->y + shr->pic->h < 0 || shr->x > sdl.screen->w || shr->y > sdl.screen->h) list_delete_entry( shrapnells, entry->prev ); } } /* ==================================================================== Brick explosion animations. ==================================================================== */ #define exp_change 0.008 #define exp_alpha_change 0.2 List *exps; SDL_Surface *exp_pic = 0; int exp_w, exp_h; /* size */ int exp_frame_count; /* frame count */ typedef struct { float alpha; float cur; /* current frame */ int x, y; /* position in screen */ } Exp; void exp_load() { exps = list_create( LIST_AUTO_DELETE, LIST_NO_CALLBACK ); exp_pic = load_surf( "explosion.bmp", SDL_SWSURFACE ); exp_w = exp_h = exp_pic->h; exp_frame_count = exp_pic->w / exp_w; } void exps_clear() { list_clear( exps ); } void exp_delete() { if ( exp_pic ) SDL_FreeSurface( exp_pic ); exp_pic = 0; if ( exps ) list_delete( exps ); exps = 0; } void exp_create( int x, int y ) { Exp *exp = calloc( 1, sizeof( Exp ) ); exp->x = x - ( exp_w >> 1 ); exp->y = y - ( exp_h >> 1 ); exp->alpha = 0; list_add( exps, exp ); } void exps_hide() { Exp *exp; list_reset( exps ); while ( ( exp = list_next( exps ) ) ) { DEST( sdl.screen, exp->x, exp->y, exp_w, exp_h ); SOURCE( offscreen, exp->x, exp->y ); blit_surf(); add_refresh_rect( exp->x, exp->y, exp_w, exp_h ); } } void exps_show() { Exp *exp; list_reset( exps ); while ( ( exp = list_next( exps ) ) ) { DEST( sdl.screen, exp->x, exp->y, exp_w, exp_h ); SOURCE( exp_pic, (int)exp->cur * exp_w, 0 ); if ( config.trp ) alpha_blit_surf( exp->alpha ); else blit_surf(); } } void exps_update( int ms ) { Exp *exp; list_reset( exps ); while ( ( exp = list_next( exps ) ) ) { if ( exp->alpha < 255 ) { exp->alpha += exp_alpha_change * ms; if ( exp->alpha > 255 ) exp->alpha = 255; } exp->cur += exp_change * ms; if ( exp->cur >= exp_frame_count ) list_delete_current( exps ); } } ltris-1.0.19/src/tetris.c0000664000175000017500000005310412140770047012134 00000000000000/*************************************************************************** tetris.c - description ------------------- begin : Tue Dec 25 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include "ltris.h" #include "event.h" #include "chart.h" #include "bowl.h" #include "shrapnells.h" #include "tetris.h" SDL_Surface *blocks = 0; SDL_Surface *logo = 0; Font *font = 0, *large_font = 0; SDL_Surface *qmark = 0; /* question mark */ SDL_Surface *bkgnd = 0; /* background + 3dframes */ SDL_Surface *offscreen = 0; /* offscreen: background + blocks */ int last_bkgnd_id = -99; /* last background chosen */ #ifdef SOUND Sound_Chunk *wav_click = 0; #endif Bowl *bowls[BOWL_COUNT]; /* all bowls */ int *next_blocks = NULL, next_blocks_size = 0; /* all receive same blocks */ extern Sdl sdl; extern Config config; extern int term_game; extern char gametype_ids[8][64]; /* ==================================================================== Locals ==================================================================== */ /* ==================================================================== Draw the tetris logo to the offscreen. ==================================================================== */ void tetris_draw_logo() { int x = 460, y = 100; draw_3dframe( offscreen, x - logo->w / 2 - 4, y - logo->h / 2 - 4, logo->w + 8, logo->h + 8, 6 ); DEST( offscreen, x - logo->w / 2, y - logo->h / 2, logo->w, logo->h ); FULL_SOURCE( logo ); blit_surf(); } /* ==================================================================== Request confirmation. ==================================================================== */ enum{ CONFIRM_YES_NO, CONFIRM_ANY_KEY, CONFIRM_PAUSE }; void draw_confirm_screen( Font *font, SDL_Surface *buffer, char *str ) { FULL_DEST(sdl.screen); fill_surf(0x0); font->align = ALIGN_X_CENTER | ALIGN_Y_CENTER; write_text(font, sdl.screen, sdl.screen->w / 2, sdl.screen->h / 2, str, 0); } int confirm( Font *font, char *str, int type ) { SDL_Event event; int go_on = 1; int ret = 0; SDL_Surface *buffer = create_surf(sdl.screen->w, sdl.screen->h, SDL_SWSURFACE); SDL_SetColorKey(buffer, 0, 0); #ifdef SOUND sound_play( wav_click ); #endif FULL_DEST(buffer); FULL_SOURCE(sdl.screen); blit_surf(); draw_confirm_screen( font, buffer, str ); refresh_screen( 0, 0, 0, 0 ); while (go_on && !term_game) { SDL_WaitEvent(&event); /* TEST */ switch ( event.type ) { case SDL_QUIT: term_game = 1; break; case SDL_KEYUP: if ( type == CONFIRM_ANY_KEY ) { ret = 1; go_on = 0; break; } else if ( type == CONFIRM_PAUSE ) { if ( event.key.keysym.sym == config.pause_key ) { ret = 1; go_on = 0; break; } else if ( event.key.keysym.sym == SDLK_f ) { config.fullscreen = !config.fullscreen; set_video_mode( std_video_mode( config.fullscreen ) ); draw_confirm_screen( font, buffer, str ); refresh_screen( 0, 0, 0, 0 ); } } else if (event.key.keysym.sym == SDLK_ESCAPE) { // ESC always returns false go_on = 0; ret = 0; } else { // check pressed key against yes/no letters char *keyName = SDL_GetKeyName(event.key.keysym.sym); char *yesLetter = _("y"); char *noLetter = _("n"); if (strcmp(keyName, yesLetter) == 0) { go_on = 0; ret = 1; } if (strcmp(keyName, noLetter) == 0) { go_on = 0; ret = 0; } } break; } } #ifdef SOUND sound_play( wav_click ); #endif FULL_DEST(sdl.screen); FULL_SOURCE(buffer); blit_surf(); refresh_screen( 0, 0, 0, 0 ); SDL_FreeSurface(buffer); reset_timer(); return ret; } /* ==================================================================== Do a new background to bkgnd and add all nescessary frames for the specified gametype in config::gametype. Id == -1 means to use a random background. Copy result to offscreen and screen. Draws bowl contents. ==================================================================== */ enum { BACK_COUNT = 6 }; void tetris_recreate_bkgnd( int id ) { SDL_Surface *pic = 0; char name[32]; int i, j; /* load and wallpaper background */ if ( id == -1 ) { do { id = rand() % BACK_COUNT; } while ( id == last_bkgnd_id ); last_bkgnd_id = id; } FULL_DEST( bkgnd ); fill_surf( 0x0 ); /* load background */ sprintf( name, "back%i.bmp", id ); if ( ( pic = load_surf( name, SDL_SWSURFACE | SDL_NONFATAL ) ) != 0 ) { for ( i = 0; i < bkgnd->w; i += pic->w ) for ( j = 0; j < bkgnd->h; j += pic->h ) { DEST( bkgnd, i, j, pic->w, pic->h ); SOURCE( pic, 0, 0 ); blit_surf(); } SDL_FreeSurface( pic ); } /* let the bowls contribute to the background :) */ for ( i = 0; i < BOWL_COUNT; i++ ) if ( bowls[i] ) bowl_draw_frames( bowls[i] ); /* draw to offscreen */ FULL_DEST( offscreen ); FULL_SOURCE( bkgnd ); blit_surf(); /* add logo if place */ if ( config.gametype <= 2 ) tetris_draw_logo(); /* draw bowl contents */ for ( i = 0; i < BOWL_COUNT; i++ ) if ( bowls[i] ) bowl_draw_contents( bowls[i] ); /* put offscreen to screen */ FULL_DEST( sdl.screen ); FULL_SOURCE( offscreen ); blit_surf(); } /* ==================================================================== Publics ==================================================================== */ /* ==================================================================== Load/delete all tetris resources. ==================================================================== */ void tetris_create() { logo = load_surf( "logo.bmp", SDL_SWSURFACE ); SDL_SetColorKey( logo, SDL_SRCCOLORKEY, get_pixel( logo, 0, 0 ) ); blocks = load_surf( "blocks.bmp", SDL_SWSURFACE ); qmark = load_surf( "quest.bmp", SDL_SWSURFACE ); SDL_SetColorKey( qmark, SDL_SRCCOLORKEY, get_pixel( qmark, 0, 0 ) ); font = load_fixed_font( "f_small_yellow.bmp", 32, 96, 8 ); large_font = load_fixed_font( "f_white.bmp", 32, 96, 10 ); bkgnd = create_surf( sdl.screen->w, sdl.screen->h, SDL_SWSURFACE ); SDL_SetColorKey( bkgnd, 0, 0 ); offscreen = create_surf( sdl.screen->w, sdl.screen->h, SDL_SWSURFACE ); SDL_SetColorKey( offscreen, 0, 0 ); bowl_load_figures(); bowl_init_block_masks(); #ifdef SOUND wav_click = sound_chunk_load( "click.wav" ); #endif } void tetris_delete() { if ( logo ) SDL_FreeSurface( logo ); logo = 0; if ( blocks ) SDL_FreeSurface( blocks ); blocks = 0; if ( qmark ) SDL_FreeSurface( qmark ); qmark = 0; free_font( &font ); free_font( &large_font ); if ( offscreen ) SDL_FreeSurface( offscreen ); offscreen = 0; if ( bkgnd ) SDL_FreeSurface( bkgnd ); bkgnd = 0; #ifdef SOUND if ( wav_click ) sound_chunk_free( wav_click ); wav_click = 0; #endif } /* ==================================================================== Initiate/clear a new game from config data. After tetris_init() the screen is drawn completely though not updated to use the fade effect. ==================================================================== */ int tetris_init() { /* create block buffer with several bags each containing all 7 * tetrominoes permuted randomly */ next_blocks_size = BLOCK_BAG_COUNT * BLOCK_COUNT; next_blocks = calloc( next_blocks_size, sizeof(int) ); fill_random_block_bags( next_blocks, BLOCK_BAG_COUNT ); /* create bowls according to the gametype */ switch ( config.gametype ) { case GAME_DEMO: bowls[0] = bowl_create( 70, 0, 460, 300, blocks, qmark, "Demo", 0 ); break; case GAME_CLASSIC: case GAME_FIGURES: bowls[0] = bowl_create( 70, 0, 460, 300, blocks, qmark, config.player1.name, &config.player1.controls ); break; case GAME_VS_HUMAN: case GAME_VS_CPU: if ( config.center_preview ) { bowls[0] = bowl_create( 20, 0, 273, 200, blocks, qmark, config.player1.name, &config.player1.controls ); if ( config.gametype == GAME_VS_HUMAN ) bowls[1] = bowl_create( 420, 0, 367, 200, blocks, qmark, config.player2.name, &config.player2.controls ); else bowls[1] = bowl_create( 420, 0, 367, 200, blocks, qmark, "CPU-1", 0 ); } else { bowls[0] = bowl_create( 20, 0, 290, 340, blocks, qmark, config.player1.name, &config.player1.controls ); if ( config.gametype == GAME_VS_HUMAN ) bowls[1] = bowl_create( 420, 0, 350, 60, blocks, qmark, config.player2.name, &config.player2.controls ); else bowls[1] = bowl_create( 420, 0, 350, 60, blocks, qmark, "CPU-1", 0 ); } break; case GAME_VS_HUMAN_HUMAN: case GAME_VS_HUMAN_CPU: case GAME_VS_CPU_CPU: bowls[0] = bowl_create( 10, 0, -1, -1, blocks, qmark, config.player1.name, &config.player1.controls ); if ( config.gametype != GAME_VS_CPU_CPU ) bowls[1] = bowl_create( 220, 0, -1, -1, blocks, qmark, config.player2.name, &config.player2.controls ); else bowls[1] = bowl_create( 220, 0, -1, -1, blocks, qmark, "CPU-1", 0 ); if ( config.gametype == GAME_VS_HUMAN_HUMAN ) bowls[2] = bowl_create( 430, 0, -1, -1, blocks, qmark, config.player3.name, &config.player3.controls ); else bowls[2] = bowl_create( 430, 0, -1, -1, blocks, qmark, "CPU-2", 0 ); break; } /* background */ tetris_recreate_bkgnd( 1 ); /* shrapnells */ shrapnells_init(); return 1; } void tetris_clear() { int i; if (next_blocks) { next_blocks_size = 0; free( next_blocks ); next_blocks = NULL; } for ( i = 0; i < BOWL_COUNT; i++ ) { if ( bowls[i] ) bowl_delete( bowls[i] ); bowls[i] = 0; } /* shrapnells */ shrapnells_delete(); } /* ==================================================================== Run a successfully initated game. ==================================================================== */ void tetris_run() { SDL_Event event; int leave = 0; int i; int fps_delay = 0; int ms; int request_pause = 0; int game_over = 0; int bkgnd_level = 0; int bowl_count; /* number of active bowls */ char sshot_str[128]; int screenshot_id = 0; int gain_multiplayer_bonus = 0; int escape = 0; /* count number of bowls */ bowl_count = 0; for ( i = 0; i < BOWL_COUNT; i++ ) if ( bowls[i] ) bowl_count++; SDL_ShowCursor( 0 ); /* delay */ switch ( config.fps ) { case 1: fps_delay = 20; break; case 2: fps_delay = 10; break; case 3: fps_delay = 5; break; } /* main loop */ fade_screen( FADE_IN, FADE_DEF_TIME ); reset_timer(); event_reset(); while ( !leave && !term_game ) { if ( config.fps ) SDL_Delay( fps_delay ); if ( event_poll( &event ) ) { switch ( event.type ) { case SDL_QUIT: term_game = 1; break; case SDL_KEYDOWN: for ( i = 0; i < BOWL_COUNT; i++ ) if ( bowls[i] ) bowl_store_key( bowls[i], event.key.keysym.sym ); break; case SDL_KEYUP: if (game_over) leave = 1; else if (event.key.keysym.sym == config.pause_key) request_pause = 1; else switch ( event.key.keysym.sym ) { case SDLK_ESCAPE: escape = 1; if ( confirm( large_font, _("End Game? y/n"), CONFIRM_YES_NO ) ) for ( i = 0; i < BOWL_COUNT; i++ ) if ( bowls[i] && !bowls[i]->game_over ) bowl_finish_game( bowls[i] ); break; case SDLK_f: /* switch fullscreen */ config.fullscreen = !config.fullscreen; set_video_mode( std_video_mode( config.fullscreen ) ); FULL_DEST( sdl.screen ); FULL_SOURCE( offscreen ); blit_surf(); refresh_screen( 0, 0, 0, 0 ); case SDLK_TAB: sprintf( sshot_str, "ss%i.bmp", screenshot_id++ ); SDL_SaveBMP( sdl.screen, sshot_str ); break; default: break; } break; default: break; } } ms = get_time(); for ( i = 0; i < BOWL_COUNT; i++ ) if ( bowls[i] ) bowl_hide( bowls[i] ); shrapnells_hide(); if ( request_pause && !game_over ) { for ( i = 0; i < BOWL_COUNT; i++ ) if ( bowls[i] ) bowl_toggle_pause( bowls[i] ); request_pause = 0; } for ( i = 0; i < BOWL_COUNT; i++ ) if ( bowls[i] ) bowl_update( bowls[i], ms, game_over ); /* check if any of the bowls entered a new level and change background if so */ if ( !config.keep_bkgnd ) { for ( i = 0; i < BOWL_COUNT; i++ ) if ( bowls[i] ) if ( bowls[i]->level > bkgnd_level ) { bkgnd_level = bowls[i]->level; /* recreate background */ tetris_recreate_bkgnd( -1 ); refresh_screen( 0, 0, 0, 0 ); reset_timer(); } } shrapnells_update( ms ); for ( i = 0; i < BOWL_COUNT; i++ ) if ( bowls[i] ) bowl_show( bowls[i] ); shrapnells_show(); refresh_rects(); /* check if game's over */ if ( !game_over ) { /* count number of finished bowls */ game_over = 0; for ( i = 0; i < BOWL_COUNT; i++ ) if ( bowls[i] && bowls[i]->game_over ) game_over++; if ( ( game_over == 1 && bowl_count == 1 ) || ( bowl_count > 1 && bowl_count - game_over <= 1 ) ) game_over = 1; else game_over = 0; if ( game_over && bowl_count > 1 && !escape ) gain_multiplayer_bonus = 1; } /* the last bowl in multiplayer gains additional 100,000 score */ if ( gain_multiplayer_bonus ) { gain_multiplayer_bonus = 0; for ( i = 0; i < BOWL_COUNT; i++ ) if ( bowls[i] && !bowls[i]->game_over ) counter_add( &bowls[i]->score, 50000 ); } } fade_screen( FADE_OUT, FADE_DEF_TIME ); /* highscore entries */ chart_clear_new_entries(); for ( i = 0; i < BOWL_COUNT; i++ ) if ( bowls[i] ) chart_add( chart_set_query( gametype_ids[config.gametype] ), bowls[i]->name, bowls[i]->level, counter_get( bowls[i]->score ) ); SDL_ShowCursor( 1 ); } /* ==================================================================== Run a number of CPU games to get an average score gained so you'll see if your analyze algorithm in cpu.c cpu_analyze_bowl() sucks or rocks! ==================================================================== */ extern int CPU_SCORE_HOLE; extern int CPU_SCORE_ALT; extern int CPU_SCORE_LINE; extern int CPU_SCORE_STEEP; extern int CPU_SCORE_ABYSS; extern int CPU_SCORE_BLOCK; extern int count_occ( int *array, int size, int min, int max ) { int i, count; count = 0; for ( i = 0; i < size; i++ ) if ( array[i] >= min && array[i] <= max ) count++; return count; } void tetris_make_stat() { int i; int game_count = 50; double total = 0; int total_lines = 0; double scores[1024]; int lines[1024]; Bowl *bowl = 0; SDL_Event event; int leave = 0; FILE *file = 0; printf( "*****\n" ); bowl = bowl_create( 0, 0, -1, -1, blocks, qmark, "Demo", 0 ); /* reset counters */ total = 0; total_lines = 0; memset( lines, 0, sizeof( lines ) ); memset( scores, 0, sizeof( scores ) ); printf( "Computing: %3i %3i %3i %3i %3i %3i\n", CPU_SCORE_HOLE, CPU_SCORE_ALT, CPU_SCORE_LINE, CPU_SCORE_STEEP, CPU_SCORE_ABYSS, CPU_SCORE_BLOCK ); for ( i = 0; i < game_count; i++ ) { if ( SDL_PollEvent( &event ) && event.type == SDL_KEYUP && event.key.keysym.sym == SDLK_ESCAPE ) leave = 1; bowl_quick_game( bowl, 1 ); lines[i] = bowl->lines; total_lines += lines[i]; scores[i] = bowl->score.value; total += scores[i]; printf( "%3i: %5i: %14.0f\n", i, lines[i], scores[i] ); if ( leave ) return; } if ( i != game_count ) game_count = i; if ( game_count <= 0 ) return; /* write to file */ file = fopen( "stats", "a+" ); fprintf( file, "SETTING: %3i %3i %3i %3i %3i %3i\n", CPU_SCORE_HOLE, CPU_SCORE_ALT, CPU_SCORE_LINE, CPU_SCORE_STEEP, CPU_SCORE_ABYSS, CPU_SCORE_BLOCK ); for (i = 0; i < game_count;i++) fprintf( file, "%3i: %5i: %14.0f\n", i, lines[i], scores[i] ); fprintf( file, "-----\n" ); fprintf( file, " 0-100: %4i 101-200: %4i 201-400: %4i\n", count_occ( lines, game_count, 0, 100 ), count_occ( lines, game_count, 101, 200 ), count_occ( lines, game_count, 201, 400 ) ); fprintf( file, "401-600: %4i 601-800: %4i rest: %4i\n", count_occ( lines, game_count, 401, 600 ), count_occ( lines, game_count, 601, 800 ), count_occ( lines, game_count, 801, 100000 ) ); fprintf( file, "-----\n" ); fprintf( file, "Avg.Lines: %i Avg.Score: %i\n", total_lines / game_count, (int)(total / game_count) ); fprintf( file, "\n" ); fclose( file ); bowl_delete( bowl ); } #ifdef _1 void tetris_make_stat() { int i; int game_count = 10; double total = 0; int total_lines = 0; int scores[1024]; int lines[1024]; Bowl *bowl = 0; int ms = 4; SDL_Event event; int leave = 0; char str[256]; font->align = ALIGN_X_LEFT | ALIGN_Y_TOP; tetris_recreate_bkgnd( 0 ); DEST( sdl.screen, 300, 0, 320, 480 ); fill_surf( 0x0 ); refresh_screen( 0, 0, 0, 0 ); if ( config.visualize ) shrapnells_init(); for ( i = 0; i < game_count; i++ ) { bowl = bowl_create( 0, 0, -1, -1, blocks, qmark, "Demo", 0 ); if ( config.visualize ) bowl->blind = 0; else bowl->blind = 1; bowl->mute = 1; while ( !bowl->game_over && !leave ) { if ( SDL_PollEvent( &event ) && event.type == SDL_KEYUP && event.key.keysym.sym == SDLK_ESCAPE ) leave = 1; bowl_update( bowl, ms, 0 ); if ( config.visualize ) refresh_rects(); } lines[i] = bowl->lines; scores[i] = counter_get_target( bowl->score ); sprintf( str, "%4i\n", lines[i] ); write_text( font, sdl.screen, 310 + ( i % 7 ) * 42, 10 + ( i / 7 ) * 16, str, OPAQUE ); refresh_screen( 0, 0, 0, 0 ); total += scores[i]; total_lines += bowl->lines; bowl_delete( bowl ); printf( "%3i: %12i\n", i, scores[i] ); /* DEBUG */ if ( leave ) break; } if ( config.visualize ) shrapnells_delete(); if ( i != game_count ) game_count = i; if ( game_count <= 0 ) return; sprintf( str, "Avg Score: %i Avg. Lines: %i\n", (int)(total / game_count), total_lines / game_count ); write_text( font, sdl.screen, 330, 428, str, OPAQUE ); sprintf( str, "0-200: %i 201-400:: %i\n", count_occ( lines, game_count, 0, 200 ), count_occ( lines, game_count, 201, 400 ) ); write_text( font, sdl.screen, 330, 444, str, OPAQUE ); sprintf( str, "401-600: %i >601: %i\n", count_occ( lines, game_count, 401, 600 ), count_occ( lines, game_count, 601, 10000 ) ); write_text( font, sdl.screen, 330, 460, str, OPAQUE ); refresh_screen( 0, 0, 0, 0 ); wait_for_click(); } #endif ltris-1.0.19/src/audio.h0000664000175000017500000000424212140770047011727 00000000000000/*************************************************************************** sound.h - description ------------------- begin : Sun Jul 29 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef __AUDIO_H #define __AUDIO_H #ifdef SOUND /* ==================================================================== Wrapper for the SDL_mixer functions. ==================================================================== */ /* ==================================================================== Initiate/close audio ==================================================================== */ int audio_open(); void audio_close(); /* ==================================================================== Sound chunk ==================================================================== */ typedef Mix_Chunk Sound_Chunk; Sound_Chunk* sound_chunk_load( char *file_name ); void sound_chunk_free( Sound_Chunk *chunk ); /* ==================================================================== Sound stuff ==================================================================== */ void sound_enable( int enable ); void sound_volume( int level /*0 - 127*/ ); void sound_play( Sound_Chunk *chunk ); /* ==================================================================== Music stuff ==================================================================== */ void music_volume( int level ); #endif #endif ltris-1.0.19/src/list.h0000664000175000017500000001565312140770047011611 00000000000000/*************************************************************************** list.h - description ------------------- begin : Sun Sep 2 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef __LIST_H #define __LIST_H #ifdef __cplusplus extern "C" { #endif /* ==================================================================== Dynamic list handling data as void pointers. ==================================================================== */ typedef struct _List_Entry { struct _List_Entry *next; struct _List_Entry *prev; void *item; } List_Entry; typedef struct { int auto_delete; int count; List_Entry head; List_Entry tail; void (*callback)(void*); List_Entry *cur_entry; } List; /* ==================================================================== Create a new list auto_delete: Free memory of data pointer when deleting entry callback: Use this callback to free memory of data including the data pointer itself. Return Value: List pointer ==================================================================== */ enum { LIST_NO_AUTO_DELETE = 0, LIST_AUTO_DELETE }; enum { LIST_NO_CALLBACK = 0 }; List *list_create( int auto_delete, void (*callback)(void*) ); /* ==================================================================== Delete list and entries. ==================================================================== */ void list_delete( List *list ); /* ==================================================================== Delete all entries but keep the list. Reset current_entry to head pointer. ==================================================================== */ void list_clear( List *list ); /* ==================================================================== Insert new item at position. Return Value: True if successful else False. ==================================================================== */ int list_insert( List *list, void *item, int pos ); /* ==================================================================== Add new item at the end of the list. ==================================================================== */ int list_add( List *list, void *item ); /* ==================================================================== Delete item at pos. If this was the current entry update current_entry to valid previous pointer. Return Value: True if successful else False. ==================================================================== */ int list_delete_pos( List *list, int pos ); /* ==================================================================== Delete item if in list. If this was the current entry update current_entry to valid previous pointer. Return Value: True if successful else False. ==================================================================== */ int list_delete_item( List *list, void *item ); /* ==================================================================== Delete entry. ==================================================================== */ int list_delete_entry( List *list, List_Entry *entry ); /* ==================================================================== Get item from position if in list. Return Value: Item pointer if found else Null pointer. ==================================================================== */ void* list_get( List *list, int pos ); /* ==================================================================== Check if item's in list. Return Value: Position of item else -1. ==================================================================== */ int list_check( List *list, void *item ); /* ==================================================================== Return first item stored in list and set current_entry to this entry. Return Value: Item pointer if found else Null pointer. ==================================================================== */ void* list_first( List *list ); /* ==================================================================== Return last item stored in list and set current_entry to this entry. Return Value: Item pointer if found else Null pointer. ==================================================================== */ void* list_last( List *list ); /* ==================================================================== Return item in current_entry. Return Value: Item pointer if found else Null pointer. ==================================================================== */ void* list_current( List *list ); /* ==================================================================== Reset current_entry to head of list. ==================================================================== */ void list_reset( List *list ); /* ==================================================================== Get next item and update current_entry (reset if tail reached). Return Value: Item pointer if found else Null (if tail of list). ==================================================================== */ void* list_next( List *list ); /* ==================================================================== Get previous item and update current_entry. Return Value: Item pointer if found else Null (if head of list). ==================================================================== */ void* list_prev( List *list ); /* ==================================================================== Delete the current entry if not tail or head. This is the entry that contains the last returned item by list_next/prev(). Return Value: True if it was a valid deleteable entry. ==================================================================== */ int list_delete_current( List *list ); /* ==================================================================== Check if list is empty. Return Value: True if list counter is 0 else False. ==================================================================== */ int list_empty( List *list ); /* ==================================================================== Return entry containing the passed item. Return Value: True if entry found else False. ==================================================================== */ List_Entry *list_entry( List *list, void *item ); #ifdef __cplusplus }; #endif #endif ltris-1.0.19/src/config.h0000664000175000017500000000557112140770047012101 00000000000000/*************************************************************************** config.h - description ------------------- begin : Tue Feb 13 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef __CONFIG_H #define __CONFIG_H /* game type ids */ enum { GAME_DEMO = 0, GAME_CLASSIC, GAME_FIGURES, GAME_VS_HUMAN, GAME_VS_CPU, GAME_VS_HUMAN_HUMAN, GAME_VS_HUMAN_CPU, GAME_VS_CPU_CPU, GAME_LAST }; typedef struct { int left; int right; int rot_left; int rot_right; int down; int drop; } Controls; typedef struct { char name[32]; Controls controls; } Player; /* configure struct */ typedef struct { /* directory to save config and saved games */ char dir_name[512]; /* game options */ int gametype; int starting_level; int preview; int expert; Player player1; Player player2; Player player3; int help; int slow; /* multiplayer */ int holes; int rand_holes; int send_all; int send_tetris; /* cpu */ int cpu_aggr; /* how much plays the cpu on completing multiple lines */ int cpu_delay; /* delay in ms that CPU waits before moving down fast */ int cpu_rot_delay; /* delay between rotative steps */ /* controls */ int hori_delay; int vert_delay; int pause_key; /* sound */ int sound; int volume; /* 1 - 8 */ /* graphics */ int trp; int anim; int fullscreen; int fade; int fps; /* frames per second: 0 - no limit, 1 - 50, 2 - 100, 3 - 200 */ int bkgnd; int smooth_hori; int block_by_block; /* lbreakout2 event data */ int motion_mod; int rel_motion; int grab; int invert; /* various */ int quick_help; int visualize; /* compute stats hidden? */ int keep_bkgnd; int clear_keystate; int center_preview; int async_col_check; } Config; /* config directory name in home directory */ #define CONFIG_DIR_NAME ".lgames" /* set config to default */ void config_reset(); /* load config */ void config_load( ); /* save config */ void config_save( ); #endif ltris-1.0.19/src/event.h0000664000175000017500000000423312140770047011747 00000000000000/*************************************************************************** event.h - description ------------------- begin : Sat Sep 8 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ /* ==================================================================== Event filter used to get motion x. ==================================================================== */ int event_filter( const SDL_Event *event ); /* ==================================================================== Reset event states ==================================================================== */ void event_reset(); /* ==================================================================== Grab or release input. Hide cursor if events are kept in window. Use relative mouse motion and grab if config tells so. ==================================================================== */ void event_grab_input(); void event_ungrab_input(); /* ==================================================================== Poll next event and set key and mousestate. Return Value: True if event occured ==================================================================== */ int event_poll( SDL_Event *event ); /* ==================================================================== Block/unblock motion event ==================================================================== */ void event_block_motion( int block ); ltris-1.0.19/src/main.c0000664000175000017500000000764612140770047011560 00000000000000/*************************************************************************** main.cpp - description ------------------- begin : Die Feb 29 13:27:43 MET 2000 copyright : (C) 2000 by Michael Speck email : ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifdef HAVE_CONFIG_H #include "../config.h" #endif #include "ltris.h" #include "event.h" #include "chart.h" #include "manager.h" #include "tetris.h" #include "hint.h" int term_game = 0; extern Sdl sdl; extern Config config; extern char gametype_names[8][64]; extern char gametype_ids[8][64]; int main(int argc, char *argv[]) { int result = ACTION_NONE; int leave = 0; /* i18n */ #ifdef ENABLE_NLS setlocale (LC_ALL, ""); bindtextdomain (PACKAGE, LOCALEDIR); textdomain (PACKAGE); #endif /* ltris info */ printf( "LTris %s\nCopyright 2002-2011 Michael Speck\nPublished under GNU GPL\n---\n", VERSION ); printf( "Looking up data in: %s\n", SRC_DIR ); #ifndef SOUND printf( "Compiled without sound and music\n" ); #endif set_random_seed(); /* set random seed */ /* game ids - not translated to be fixed independant of language */ strcpy(gametype_ids[0],"demo"); strcpy(gametype_ids[1],"classic"); strcpy(gametype_ids[2],"figures"); strcpy(gametype_ids[3],"vshuman"); strcpy(gametype_ids[4],"vscpu"); strcpy(gametype_ids[5],"vshumanhuman"); strcpy(gametype_ids[6],"vshumancpu"); strcpy(gametype_ids[7],"vscpucpu"); /* game names - translated for display */ strcpy(gametype_names[0],_("Demo")); strcpy(gametype_names[1],_("Classic")); strcpy(gametype_names[2],_("Figures")); strcpy(gametype_names[3],_("Vs Human")); strcpy(gametype_names[4],_("Vs CPU")); strcpy(gametype_names[5],_("Vs Human&Human")); strcpy(gametype_names[6],_("Vs Human&CPU")); strcpy(gametype_names[7],_("Vs CPU&CPU")); config_load(); init_sdl( SDL_INIT_VIDEO | SDL_INIT_AUDIO | SDL_INIT_TIMER ); set_video_mode( std_video_mode( config.fullscreen ) ); SDL_WM_SetCaption( "LTris", 0 ); sdl.fade = config.fade; SDL_SetEventFilter( event_filter ); #ifdef SOUND audio_open(); sound_enable( config.sound ); sound_volume( config.volume * 16 ); #endif /* create */ hint_load_res(); manager_create(); tetris_create(); chart_load(); /* run game */ manager_fade( FADE_IN ); while( !leave && !term_game ) { result = manager_run(); switch( result ) { case ACTION_QUIT: leave = 1; break; case ACTION_MAKE_STAT: manager_fade( FADE_OUT ); tetris_make_stat(); manager_fade( FADE_IN ); break; case ACTION_PLAY: manager_fade( FADE_OUT ); if ( tetris_init() ) { tetris_run(); tetris_clear(); } manager_fade( FADE_IN ); break; default: break; } } manager_fade( FADE_OUT ); /* delete stuff */ tetris_delete(); manager_delete(); chart_save(); chart_delete(); hint_delete_res(); #ifdef SOUND audio_close(); #endif config_save(); return EXIT_SUCCESS; } ltris-1.0.19/src/gettext.h0000664000175000017500000000620212140770047012310 00000000000000/* Convenience header for conditional use of GNU . Copyright (C) 1995-1998, 2000-2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef _LIBGETTEXT_H #define _LIBGETTEXT_H 1 /* NLS can be disabled through the configure --disable-nls option. */ #if ENABLE_NLS /* Get declarations of GNU message catalog functions. */ # include /* Get declarations of setlocale() and LC_ALL. Really needed? Seems * to be done by libintl already but does not hurt anyway... */ # include #else /* Solaris /usr/include/locale.h includes /usr/include/libintl.h, which chokes if dcgettext is defined as a macro. So include it now, to make later inclusions of a NOP. We don't include as well because people using "gettext.h" will not include , and also including would fail on SunOS 4, whereas is OK. */ #if defined(__sun) # include #endif /* Disabled NLS. The casts to 'const char *' serve the purpose of producing warnings for invalid uses of the value returned from these functions. On pre-ANSI systems without 'const', the config.h file is supposed to contain "#define const". */ # define gettext(Msgid) ((const char *) (Msgid)) # define dgettext(Domainname, Msgid) ((const char *) (Msgid)) # define dcgettext(Domainname, Msgid, Category) ((const char *) (Msgid)) # define ngettext(Msgid1, Msgid2, N) \ ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2)) # define dngettext(Domainname, Msgid1, Msgid2, N) \ ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2)) # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \ ((N) == 1 ? (const char *) (Msgid1) : (const char *) (Msgid2)) # define textdomain(Domainname) ((const char *) (Domainname)) # define bindtextdomain(Domainname, Dirname) ((const char *) (Dirname)) # define bind_textdomain_codeset(Domainname, Codeset) ((const char *) (Codeset)) #endif /* A pseudo function call that serves as a marker for the automated extraction of messages, but does not call gettext(). The run-time translation is done at a different place in the code. The argument, String, should be a literal string. Concatenated strings and other string expressions won't work. The macro's expansion is not parenthesized, so that it is suitable as initializer for static 'char[]' or 'const char[]' variables. */ #define gettext_noop(String) String #endif /* _LIBGETTEXT_H */ ltris-1.0.19/src/chart.h0000664000175000017500000000753112140770047011733 00000000000000/*************************************************************************** chart.h - description ------------------- begin : Mon Sep 24 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ /* ==================================================================== Highscore chart entry ==================================================================== */ typedef struct { char name[32]; int level; double score; int new_entry; /* newly entered the highscore */ } Chart_Entry; /* ==================================================================== Levelset highscore chart. ==================================================================== */ enum { CHART_ENTRY_COUNT = 10 }; typedef struct { Chart_Entry entries[CHART_ENTRY_COUNT + 1]; /* last entry is space holder for new entry */ char *name; } Set_Chart; /* ==================================================================== Load highscore. If it doesn't exist try to create it in HI_DIR if this fails fall back to ~/.lbreakout and create highscore there. ==================================================================== */ void chart_load(); /* ==================================================================== Delete resources ==================================================================== */ void chart_delete(); /* ==================================================================== Save chart in directory it was loaded from. ==================================================================== */ void chart_save(); /* ==================================================================== Check if this player entered the highscore chart and update it. ==================================================================== */ void chart_add( Set_Chart *chart, char *name, int level, double score ); /* ==================================================================== Sort chart with stable algorithm (bubble sort's ok) by wanted value. ==================================================================== */ enum { SORT_BY_LEVEL = 0, SORT_BY_SCORE }; void chart_sort( Set_Chart *chart, int type ); /* ==================================================================== Draw highscores centered in regio x,y,w,h ==================================================================== */ void chart_show( Set_Chart *chart, int x, int y, int w, int h ); /* ==================================================================== Clear all new_entry flags (done before new players are added to chart when game over). ==================================================================== */ void chart_clear_new_entries(); /* ==================================================================== Query set chart by this name or if not found create a new one by this name. ==================================================================== */ Set_Chart* chart_set_query( char *name ); /* ==================================================================== Query chart by id. If id is invalid return 0. ==================================================================== */ Set_Chart* chart_set_query_id( int id ); ltris-1.0.19/src/manager.h0000664000175000017500000000476612140770047012253 00000000000000/*************************************************************************** manager.h - description ------------------- begin : Thu Sep 20 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef __MANAGER_H #define __MANAGER_H #include "ltris.h" #include "list.h" #include "value.h" #include "item.h" #include "menu.h" #include "hint.h" /* ==================================================================== Actions generated by menu ==================================================================== */ enum { ACTION_NONE = 0, ACTION_QUIT, ACTION_PLAY, ACTION_QUICK_HELP, ACTION_MAKE_STAT }; /* ==================================================================== Load/delete background and create and link all menus ==================================================================== */ void manager_create(); void manager_delete(); /* ==================================================================== Run menu until request sent ==================================================================== */ int manager_run(); /* ==================================================================== Fade in/out background of menu ==================================================================== */ void manager_fade( int type ); /* ==================================================================== Update screen without menu itself as this is shown next frame. ==================================================================== */ void manager_show(); /* ==================================================================== Update set list when creating a new file for editor. ==================================================================== */ void manager_update_set_list(); #endif ltris-1.0.19/src/gfx.S0000664000175000017500000005702112140770047011370 00000000000000/*************************************************************************** gfx.S - description ------------------- begin : Mon Mar 13 2000 copyright : (C) 2000 by Michael Speck email : ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ .macro CrtStack pushl %ebp movl %esp, %ebp pushl %ebx .endm .macro DelStack popl %ebx popl %ebp .endm .data .balign 16 .globl rrShft rrShft: .byte 0 .globl grShft grShft: .byte 0 .globl brShft brShft: .byte 0 .globl rlShft rlShft: .byte 0 .globl glShft glShft: .byte 0 .globl blShft blShft: .byte 0 .globl rMask rMask: .long 0 .globl gMask gMask: .long 0 .globl bMask bMask: .long 0 .globl bpp bpp: .byte 0 .globl pixelsize pixelsize: .byte 0 .globl clp_lx clp_lx: .long 0 .globl clp_ty clp_ty: .long 0 .globl clp_rx clp_rx: .long 0 .globl clp_by clp_by: .long 0 .text .balign 16 .globl SD_Pnt SD_Pnt: CrtStack //x < lx movl clp_lx, %eax cmp %eax, 16(%ebp) jl 9f //y < ty movl clp_ty, %eax cmp %eax, 20(%ebp) jl 9f //x > rx movl clp_rx, %eax cmp %eax, 16(%ebp) jg 9f //y > ry subl clp_by, %eax cmp %eax, 20(%ebp) jg 9f xorw %bx, %bx movb 26(%ebp), %bl //get red part movb rrShft, %cl shrb %cl, %bl movb rlShft, %cl shlw %cl, %bx xorw %ax, %ax movb 25(%ebp), %al //get green part movb grShft, %cl shrb %cl, %al movb glShft, %cl shlw %cl, %ax orw %ax, %bx xorw %ax, %ax movb 24(%ebp), %al //get blue part movb brShft, %cl shrb %cl, %al movb blShft, %cl shlw %cl, %ax orw %ax, %bx //wordvalue in bx movl 20(%ebp), %eax //y movl 12(%ebp), %ecx //w mull %ecx addl 16(%ebp), %eax //offset in eax movl 8(%ebp), %ecx movw %bx, (%ecx,%eax,2) 9: DelStack ret .globl SD_Box SD_Box: CrtStack pushl %edi //x < lx ? movl clp_lx, %eax cmpl %eax, 16(%ebp) jge 0f movl 16(%ebp), %ebx subl %ebx, %eax subl %eax, 24(%ebp) movl clp_lx, %eax movl %eax, 16(%ebp) 0: //y < ty ? movl clp_ty, %eax cmp %eax, 20(%ebp) jge 1f movl 20(%ebp), %ebx subl %ebx, %eax subl %eax, 28(%ebp) movl clp_ty, %eax movl %eax, 20(%ebp) 1: //x > rx movl clp_rx, %eax movl 16(%ebp), %ebx addl 24(%ebp), %ebx subl $1, %ebx cmp %eax, %ebx jle 2f movl clp_rx, %ebx movl 16(%ebp), %eax subl %eax, %ebx addl $1, %ebx movl %ebx, 24(%ebp) 2: //y > ty movl clp_by, %eax movl 20(%ebp), %ebx subl $1, %ebx addl 28(%ebp), %ebx cmp %eax, %ebx jle 3f movl clp_by, %ebx movl 20(%ebp), %eax subl %eax, %ebx addl $1, %ebx movl %ebx, 28(%ebp) 3: //valid w? movl 24(%ebp), %eax cmpl $0, %eax jle 4f //valid h? movl 28(%ebp), %eax cmpl $0, %eax jle 4f xorw %bx, %bx movb 34(%ebp), %bl //get red part movb rrShft, %cl shrb %cl, %bl movb rlShft, %cl shlw %cl, %bx xorw %ax, %ax movb 33(%ebp), %al //get green part movb grShft, %cl shrb %cl, %al movb glShft, %cl shlw %cl, %ax orw %ax, %bx xorw %ax, %ax movb 32(%ebp), %al //get blue part movb brShft, %cl shrb %cl, %al movb blShft, %cl shlw %cl, %ax orw %bx, %ax //wordvalue in ax pushw %ax; movl 20(%ebp), %eax //load y_pos mull 12(%ebp) addl 16(%ebp), %eax movl %eax, %edi shll $1, %edi //offset in lpdest addl 8(%ebp), %edi //add lpdest_EA pushl %ds popl %es movl 28(%ebp), %edx //get height movl 12(%ebp), %ebx subl 24(%ebp), %ebx shll $1, %ebx //edi add-on popw %ax lp: movl 24(%ebp), %ecx rep; stosw addl %ebx, %edi decl %edx jnz lp 4: popl %edi DelStack ret .globl SD_Rct SD_Rct: CrtStack pushl %edi //x < lx ? movl clp_lx, %eax cmpl %eax, 16(%ebp) jge 0f movl 16(%ebp), %ebx subl %ebx, %eax subl %eax, 24(%ebp) movl clp_lx, %eax movl %eax, 16(%ebp) 0: //y < ty ? movl clp_ty, %eax cmp %eax, 20(%ebp) jge 1f movl 20(%ebp), %ebx subl %ebx, %eax subl %eax, 28(%ebp) movl clp_ty, %eax movl %eax, 20(%ebp) 1: //x > rx movl clp_rx, %eax movl 16(%ebp), %ebx addl 24(%ebp), %ebx subl $1, %ebx cmp %eax, %ebx jle 2f movl clp_rx, %ebx movl 16(%ebp), %eax subl %eax, %ebx addl $1, %ebx movl %ebx, 24(%ebp) 2: //y > ty movl clp_by, %eax movl 20(%ebp), %ebx subl $1, %ebx addl 28(%ebp), %ebx cmp %eax, %ebx jle 3f movl clp_by, %ebx movl 20(%ebp), %eax subl %eax, %ebx addl $1, %ebx movl %ebx, 28(%ebp) 3: //valid w? movl 24(%ebp), %eax cmpl $0, %eax jle 4f //valid h? movl 28(%ebp), %eax cmpl $0, %eax jle 4f xorw %bx, %bx movb 34(%ebp), %bl //get red part movb rrShft, %cl shrb %cl, %bl movb rlShft, %cl shlw %cl, %bx xorw %ax, %ax movb 33(%ebp), %al //get green part movb grShft, %cl shrb %cl, %al movb glShft, %cl shlw %cl, %ax orw %ax, %bx xorw %ax, %ax movb 32(%ebp), %al //get blue part movb brShft, %cl shrb %cl, %al movb blShft, %cl shlw %cl, %ax orw %bx, %ax //wordvalue in ax pushw %ax; movl 20(%ebp), %eax //load y_pos mull 12(%ebp) addl 16(%ebp), %eax movl %eax, %edi shll $1, %edi //offset in lpdest addl 8(%ebp), %edi //add lpdest_EA pushl %ds popl %es movl 28(%ebp), %edx //get height subl $2, %edx movl 12(%ebp), %ebx subl 24(%ebp), %ebx shll $1, %ebx //edi add-on popw %ax movl 24(%ebp), %ecx rep; stosw addl %ebx, %edi cmp $0, %edx jle 9f lp2: movw %ax, (%edi) movl 24(%ebp), %ecx subl $1, %ecx shll $1, %ecx addl %ecx, %edi; movw %ax, (%edi) addl $2, %edi; addl %ebx, %edi decl %edx jnz lp2 9: movl 24(%ebp), %ecx rep; stosw 4: popl %edi DelStack ret .globl SD_CBx SD_CBx: CrtStack pushl %edi //x < lx ? movl clp_lx, %eax cmpl %eax, 16(%ebp) jge 0f movl 16(%ebp), %ebx subl %ebx, %eax subl %eax, 24(%ebp) movl clp_lx, %eax movl %eax, 16(%ebp) 0: //y < ty ? movl clp_ty, %eax cmp %eax, 20(%ebp) jge 1f movl 20(%ebp), %ebx subl %ebx, %eax subl %eax, 28(%ebp) movl clp_ty, %eax movl %eax, 20(%ebp) 1: //x > rx movl clp_rx, %eax movl 16(%ebp), %ebx addl 24(%ebp), %ebx subl $1, %ebx cmp %eax, %ebx jle 2f movl clp_rx, %ebx movl 16(%ebp), %eax subl %eax, %ebx addl $1, %ebx movl %ebx, 24(%ebp) 2: //y > ty movl clp_by, %eax movl 20(%ebp), %ebx subl $1, %ebx addl 28(%ebp), %ebx cmp %eax, %ebx jle 3f movl clp_by, %ebx movl 20(%ebp), %eax subl %eax, %ebx addl $1, %ebx movl %ebx, 28(%ebp) 3: //valid w? movl 24(%ebp), %eax cmpl $0, %eax jle 4f //valid h? movl 28(%ebp), %eax cmpl $0, %eax jle 4f xorl %edi, %edi xorl %eax, %eax //edi destination pushl %ds popl %es movl 20(%ebp), %eax mull 12(%ebp) addl 16(%ebp), %eax shll $1, %eax addl 8(%ebp), %eax movl %eax, %edi //dest offset in edi movl 28(%ebp), %edx //height outerl5: movl 24(%ebp), %ecx //width pushl %edx innerl5: pushl %ecx xor %eax, %eax movb 34(%ebp), %al movb rrShft, %cl shrb %cl, %al mull 36(%ebp) movb rlShft, %cl shll %cl, %eax pushl %eax //relative red source part movl (%edi), %eax andl rMask, %eax shrl %cl, %eax movl $100, %ebx subl 36(%ebp), %ebx mull %ebx shll %cl, %eax //relative red dest part popl %ebx addl %ebx, %eax movl $100, %ebx divl %ebx andl rMask, %eax pushl %eax xor %eax, %eax movb 33(%ebp), %al movb grShft, %cl shrb %cl, %al mull 36(%ebp) movb glShft, %cl shll %cl, %eax pushl %eax //relative green source part movl (%edi), %eax andl gMask, %eax shrl %cl, %eax movl $100, %ebx subl 36(%ebp), %ebx mull %ebx shll %cl, %eax //relative green dest part popl %ebx addl %ebx, %eax movl $100, %ebx divl %ebx andl gMask, %eax pushl %eax xor %eax, %eax movb 32(%ebp), %al movb brShft, %cl shrb %cl, %al mull 36(%ebp) movb blShft, %cl shll %cl, %eax pushl %eax //relative blue source part movl (%edi), %eax andl bMask, %eax shrl %cl, %eax movl $100, %ebx subl 36(%ebp), %ebx mull %ebx shll %cl, %eax //relative blue dest part popl %ebx addl %ebx, %eax movl $100, %ebx divl %ebx andl bMask, %eax popl %ebx orl %ebx, %eax popl %ebx orl %ebx, %eax movw %ax, (%edi) addl $2, %edi popl %ecx decl %ecx jnz innerl5 popl %edx movl 12(%ebp), %ebx subl 24(%ebp), %ebx shll $1, %ebx addl %ebx, %edi decl %edx jnz outerl5 4: popl %edi DelStack ret .globl SC_Opq SC_Opq: CrtStack pushl %edi pushl %esi //x < lx ? movl clp_lx, %eax cmpl %eax, 16(%ebp) jge 0f movl 16(%ebp), %ebx subl %ebx, %eax subl %eax, 40(%ebp) addl %eax, 32(%ebp) movl clp_lx, %eax movl %eax, 16(%ebp) 0: //y < ty ? movl clp_ty, %eax cmp %eax, 20(%ebp) jge 1f movl 20(%ebp), %ebx subl %ebx, %eax subl %eax, 44(%ebp) addl %eax, 36(%ebp) movl clp_ty, %eax movl %eax, 20(%ebp) 1: //x > rx movl clp_rx, %eax movl 16(%ebp), %ebx addl 40(%ebp), %ebx subl $1, %ebx cmp %eax, %ebx jle 2f movl clp_rx, %ebx movl 16(%ebp), %eax subl %eax, %ebx addl $1, %ebx movl %ebx, 40(%ebp) 2: //y > ty movl clp_by, %eax movl 20(%ebp), %ebx addl 44(%ebp), %ebx subl $1, %ebx cmp %eax, %ebx jle 3f movl clp_by, %ebx movl 20(%ebp), %eax subl %eax, %ebx addl $1, %ebx movl %ebx, 44(%ebp) 3: //valid w? movl 40(%ebp), %eax cmpl $0, %eax jle 4f //valid h? movl 44(%ebp), %eax cmpl $0, %eax jle 4f xorl %edi, %edi xorl %esi, %esi xorl %eax, %eax //esi source movl 36(%ebp), %eax //sy mull 28(%ebp) //dw addl 32(%ebp), %eax //sx shll $1, %eax addl 24(%ebp), %eax movl %eax, %esi //source offset in esi //edi destination pushl %ds popl %es movl 20(%ebp), %eax mull 12(%ebp) addl 16(%ebp), %eax shll $1, %eax addl 8(%ebp), %eax movl %eax, %edi //dest offset in edi movl 12(%ebp), %eax subl 40(%ebp), %eax shll $1, %eax //edi add-on after completed line movl 28(%ebp), %ebx subl 40(%ebp), %ebx shll $1, %ebx //esi add-on after completed line movl 44(%ebp), %edx //height outerl3: movl 40(%ebp), %ecx //line width rep; movsw addl %eax, %edi addl %ebx, %esi dec %edx jnz outerl3 4: popl %esi popl %edi DelStack ret .globl SC_Clp SC_Clp: CrtStack pushl %edi pushl %esi //x < lx ? movl clp_lx, %eax cmpl %eax, 16(%ebp) jge 0f movl 16(%ebp), %ebx subl %ebx, %eax subl %eax, 40(%ebp) addl %eax, 32(%ebp) movl clp_lx, %eax movl %eax, 16(%ebp) 0: //y < ty ? movl clp_ty, %eax cmp %eax, 20(%ebp) jge 1f movl 20(%ebp), %ebx subl %ebx, %eax subl %eax, 44(%ebp) addl %eax, 36(%ebp) movl clp_ty, %eax movl %eax, 20(%ebp) 1: //x > rx movl clp_rx, %eax movl 16(%ebp), %ebx addl 40(%ebp), %ebx subl $1, %ebx cmp %eax, %ebx jle 2f movl clp_rx, %ebx movl 16(%ebp), %eax subl %eax, %ebx addl $1, %ebx movl %ebx, 40(%ebp) 2: //y > ty movl clp_by, %eax movl 20(%ebp), %ebx addl 44(%ebp), %ebx subl $1, %ebx cmp %eax, %ebx jle 3f movl clp_by, %ebx movl 20(%ebp), %eax subl %eax, %ebx addl $1, %ebx movl %ebx, 44(%ebp) 3: //valid w? movl 40(%ebp), %eax cmpl $0, %eax jle 4f //valid h? movl 44(%ebp), %eax cmpl $0, %eax jle 4f xorl %edi, %edi xorl %esi, %esi xorl %eax, %eax //esi source movl 36(%ebp), %eax //sy mull 28(%ebp) //dw addl 32(%ebp), %eax //sx shll $1, %eax addl 24(%ebp), %eax movl %eax, %esi //source offset in esi //edi destination pushl %ds popl %es movl 20(%ebp), %eax mull 12(%ebp) addl 16(%ebp), %eax shll $1, %eax addl 8(%ebp), %eax movl %eax, %edi //dest offset in edi movl 12(%ebp), %eax subl 40(%ebp), %eax shll $1, %eax //edi add-on after completed line movl 28(%ebp), %ebx subl 40(%ebp), %ebx shll $1, %ebx //esi add-on after completed line movl 44(%ebp), %edx outerl2: movl 40(%ebp), %ecx innerl2: pushl %ecx movw (%esi), %cx cmp $0, %cx jz nopixel movw (%esi), %cx movw %cx, (%edi) nopixel: addl $2, %esi addl $2, %edi popl %ecx decl %ecx jnz innerl2 addl %eax, %edi addl %ebx, %esi decl %edx jnz outerl2 4: popl %esi popl %edi DelStack ret .globl SC_Trp_11 SC_Trp_11: CrtStack pushl %edi pushl %esi //x < lx ? movl clp_lx, %eax cmpl %eax, 16(%ebp) jge 0f movl 16(%ebp), %ebx subl %ebx, %eax subl %eax, 40(%ebp) addl %eax, 32(%ebp) movl clp_lx, %eax movl %eax, 16(%ebp) 0: //y < ty ? movl clp_ty, %eax cmp %eax, 20(%ebp) jge 1f movl 20(%ebp), %ebx subl %ebx, %eax subl %eax, 44(%ebp) addl %eax, 36(%ebp) movl clp_ty, %eax movl %eax, 20(%ebp) 1: //x > rx movl clp_rx, %eax movl 16(%ebp), %ebx addl 40(%ebp), %ebx subl $1, %ebx cmp %eax, %ebx jle 2f movl clp_rx, %ebx movl 16(%ebp), %eax subl %eax, %ebx addl $1, %ebx movl %ebx, 40(%ebp) 2: //y > ty movl clp_by, %eax movl 20(%ebp), %ebx addl 44(%ebp), %ebx subl $1, %ebx cmp %eax, %ebx jle 3f movl clp_by, %ebx movl 20(%ebp), %eax subl %eax, %ebx addl $1, %ebx movl %ebx, 44(%ebp) 3: //valid w? movl 40(%ebp), %eax cmpl $0, %eax jle 4f //valid h? movl 44(%ebp), %eax cmpl $0, %eax jle 4f xorl %edi, %edi xorl %esi, %esi xorl %eax, %eax //esi source movl 36(%ebp), %eax //sy mull 28(%ebp) //dw addl 32(%ebp), %eax //sx shll $1, %eax addl 24(%ebp), %eax movl %eax, %esi //source offset in esi //edi destination pushl %ds popl %es movl 20(%ebp), %eax mull 12(%ebp) addl 16(%ebp), %eax shll $1, %eax addl 8(%ebp), %eax movl %eax, %edi //dest offset in edi movl 44(%ebp), %edx outerl: movl 40(%ebp), %ecx innerl: movw (%esi), %bx cmpw $0, %bx jz 7f movl (%esi), %eax andl rMask, %eax movl (%edi), %ebx andl rMask, %ebx addl %ebx, %eax shrl $1, %eax andl rMask, %eax pushl %eax movl (%esi), %eax andl gMask, %eax movl (%edi), %ebx andl gMask, %ebx addl %ebx, %eax shrl $1, %eax andl gMask, %eax pushl %eax movl (%esi), %eax andl bMask, %eax movl (%edi), %ebx andl bMask, %ebx addl %ebx, %eax shrl $1, %eax andl bMask, %eax popl %ebx orl %ebx, %eax popl %ebx orl %ebx, %eax movw %ax, (%edi) 7: addl $2, %esi addl $2, %edi decl %ecx jnz innerl movl 12(%ebp), %ebx subl 40(%ebp), %ebx shll $1, %ebx addl %ebx, %edi movl 28(%ebp), %ebx subl 40(%ebp), %ebx shll $1, %ebx addl %ebx, %esi decl %edx jnz outerl 4: popl %esi popl %edi DelStack ret .globl SC_Trp_X SC_Trp_X: CrtStack pushl %edi pushl %esi //x < lx ? movl clp_lx, %eax cmpl %eax, 16(%ebp) jge 0f movl 16(%ebp), %ebx subl %ebx, %eax subl %eax, 40(%ebp) addl %eax, 32(%ebp) movl clp_lx, %eax movl %eax, 16(%ebp) 0: //y < ty ? movl clp_ty, %eax cmp %eax, 20(%ebp) jge 1f movl 20(%ebp), %ebx subl %ebx, %eax subl %eax, 44(%ebp) addl %eax, 36(%ebp) movl clp_ty, %eax movl %eax, 20(%ebp) 1: //x > rx movl clp_rx, %eax movl 16(%ebp), %ebx addl 40(%ebp), %ebx subl $1, %ebx cmp %eax, %ebx jle 2f movl clp_rx, %ebx movl 16(%ebp), %eax subl %eax, %ebx addl $1, %ebx movl %ebx, 40(%ebp) 2: //y > ty movl clp_by, %eax movl 20(%ebp), %ebx addl 44(%ebp), %ebx subl $1, %ebx cmp %eax, %ebx jle 3f movl clp_by, %ebx movl 20(%ebp), %eax subl %eax, %ebx addl $1, %ebx movl %ebx, 44(%ebp) 3: //valid w? movl 40(%ebp), %eax cmpl $0, %eax jle 4f //valid h? movl 44(%ebp), %eax cmpl $0, %eax jle 4f xorl %edi, %edi xorl %esi, %esi xorl %eax, %eax //esi source movl 36(%ebp), %eax //sy mull 28(%ebp) //dw addl 32(%ebp), %eax //sx shll $1, %eax addl 24(%ebp), %eax movl %eax, %esi //source offset in esi //edi destination pushl %ds popl %es movl 20(%ebp), %eax mull 12(%ebp) addl 16(%ebp), %eax shll $1, %eax addl 8(%ebp), %eax movl %eax, %edi //dest offset in edi movl 44(%ebp), %edx outerl4: movl 40(%ebp), %ecx pushl %edx innerl4: pushl %ecx movw (%esi), %bx cmpw $0, %bx jz 7f movl (%esi), %eax andl rMask, %eax movb rlShft, %cl shrl %cl, %eax mull 48(%ebp) shll %cl, %eax pushl %eax //relative red source part movl (%edi), %eax andl rMask, %eax shrl %cl, %eax movl $100, %ebx subl 48(%ebp), %ebx mull %ebx shll %cl, %eax //relative green dest part popl %ebx addl %ebx, %eax movl $100, %ebx divl %ebx andl rMask, %eax pushl %eax movl (%esi), %eax andl gMask, %eax movb glShft, %cl shrl %cl, %eax mull 48(%ebp) shll %cl, %eax pushl %eax //relative red source part movl (%edi), %eax andl gMask, %eax shrl %cl, %eax movl $100, %ebx subl 48(%ebp), %ebx mull %ebx shll %cl, %eax //relative green dest part popl %ebx addl %ebx, %eax movl $100, %ebx divl %ebx andl gMask, %eax pushl %eax movl (%esi), %eax andl bMask, %eax movb blShft, %cl shrl %cl, %eax mull 48(%ebp) shll %cl, %eax pushl %eax //relative blue source part movl (%edi), %eax andl bMask, %eax shrl %cl, %eax movl $100, %ebx subl 48(%ebp), %ebx mull %ebx shll %cl, %eax //relative blue dest part popl %ebx addl %ebx, %eax movl $100, %ebx divl %ebx andl bMask, %eax popl %ebx orl %ebx, %eax popl %ebx orl %ebx, %eax movw %ax, (%edi) 7: addl $2, %esi addl $2, %edi popl %ecx decl %ecx jnz innerl4 popl %edx movl 12(%ebp), %ebx subl 40(%ebp), %ebx shll $1, %ebx addl %ebx, %edi movl 28(%ebp), %ebx subl 40(%ebp), %ebx shll $1, %ebx addl %ebx, %esi decl %edx jnz outerl4 4: popl %esi popl %edi DelStack ret .globl SC_Clr_11 SC_Clr_11: CrtStack pushl %edi pushl %esi //x < lx ? movl clp_lx, %eax cmpl %eax, 16(%ebp) jge 0f movl 16(%ebp), %ebx subl %ebx, %eax subl %eax, 40(%ebp) addl %eax, 32(%ebp) movl clp_lx, %eax movl %eax, 16(%ebp) 0: //y < ty ? movl clp_ty, %eax cmp %eax, 20(%ebp) jge 1f movl 20(%ebp), %ebx subl %ebx, %eax subl %eax, 44(%ebp) addl %eax, 36(%ebp) movl clp_ty, %eax movl %eax, 20(%ebp) 1: //x > rx movl clp_rx, %eax movl 16(%ebp), %ebx addl 40(%ebp), %ebx subl $1, %ebx cmp %eax, %ebx jle 2f movl clp_rx, %ebx movl 16(%ebp), %eax subl %eax, %ebx addl $1, %ebx movl %ebx, 40(%ebp) 2: //y > ty movl clp_by, %eax movl 20(%ebp), %ebx addl 44(%ebp), %ebx subl $1, %ebx cmp %eax, %ebx jle 3f movl clp_by, %ebx movl 20(%ebp), %eax subl %eax, %ebx addl $1, %ebx movl %ebx, 44(%ebp) 3: //valid w? movl 40(%ebp), %eax cmpl $0, %eax jle 4f //valid h? movl 44(%ebp), %eax cmpl $0, %eax jle 4f xorl %edi, %edi xorl %esi, %esi xorl %eax, %eax //esi source movl 36(%ebp), %eax //sy mull 28(%ebp) //dw addl 32(%ebp), %eax //sx shll $1, %eax addl 24(%ebp), %eax movl %eax, %esi //source offset in esi //edi destination pushl %ds popl %es movl 20(%ebp), %eax mull 12(%ebp) addl 16(%ebp), %eax shll $1, %eax addl 8(%ebp), %eax movl %eax, %edi //dest offset in edi movl 44(%ebp), %edx //height outerl7: movl 40(%ebp), %ecx //width pushl %edx innerl7: pushl %ecx movw (%esi), %bx cmpw $0, %bx jz 7f xor %ebx, %ebx movb 46(%ebp), %bl movb rrShft, %cl shrb %cl, %bl movb rlShft, %cl shll %cl, %ebx //relative red sourve value movl (%edi), %eax andl rMask, %eax addl %ebx, %eax shrl $1, %eax andl rMask, %eax pushl %eax xor %ebx, %ebx movb 45(%ebp), %bl movb grShft, %cl shrb %cl, %bl movb glShft, %cl shll %cl, %ebx //relative green sourve value movl (%edi), %eax andl gMask, %eax addl %ebx, %eax shrl $1, %eax andl gMask, %eax pushl %eax xor %ebx, %ebx movb 44(%ebp), %bl movb brShft, %cl shrb %cl, %bl movb blShft, %cl shll %cl, %ebx //relative blue sourve value movl (%edi), %eax andl bMask, %eax addl %ebx, %eax shrl $1, %eax andl bMask, %eax popl %ebx orl %ebx, %eax popl %ebx orl %ebx, %eax movw %ax, (%edi) 7: addl $2, %edi addl $2, %esi popl %ecx decl %ecx jnz innerl7 movl 28(%ebp), %eax subl 40(%ebp), %eax shll $1, %eax addl %eax, %esi movl 12(%ebp), %ebx subl 40(%ebp), %ebx shll $1, %ebx addl %ebx, %edi popl %edx decl %edx jnz outerl7 4: popl %esi popl %edi DelStack ret .globl SC_Clr_X SC_Clr_X: CrtStack pushl %edi pushl %esi //x < lx ? movl clp_lx, %eax cmpl %eax, 16(%ebp) jge 0f movl 16(%ebp), %ebx subl %ebx, %eax subl %eax, 40(%ebp) addl %eax, 32(%ebp) movl clp_lx, %eax movl %eax, 16(%ebp) 0: //y < ty ? movl clp_ty, %eax cmp %eax, 20(%ebp) jge 1f movl 20(%ebp), %ebx subl %ebx, %eax subl %eax, 44(%ebp) addl %eax, 36(%ebp) movl clp_ty, %eax movl %eax, 20(%ebp) 1: //x > rx movl clp_rx, %eax movl 16(%ebp), %ebx addl 40(%ebp), %ebx subl $1, %ebx cmp %eax, %ebx jle 2f movl clp_rx, %ebx movl 16(%ebp), %eax subl %eax, %ebx addl $1, %ebx movl %ebx, 40(%ebp) 2: //y > ty movl clp_by, %eax movl 20(%ebp), %ebx addl 44(%ebp), %ebx subl $1, %ebx cmp %eax, %ebx jle 3f movl clp_by, %ebx movl 20(%ebp), %eax subl %eax, %ebx addl $1, %ebx movl %ebx, 44(%ebp) 3: //valid w? movl 40(%ebp), %eax cmpl $0, %eax jle 4f //valid h? movl 44(%ebp), %eax cmpl $0, %eax jle 4f xorl %edi, %edi xorl %esi, %esi xorl %eax, %eax //esi source movl 36(%ebp), %eax //sy mull 28(%ebp) //dw addl 32(%ebp), %eax //sx shll $1, %eax addl 24(%ebp), %eax movl %eax, %esi //source offset in esi //edi destination pushl %ds popl %es movl 20(%ebp), %eax mull 12(%ebp) addl 16(%ebp), %eax shll $1, %eax addl 8(%ebp), %eax movl %eax, %edi //dest offset in edi movl 44(%ebp), %edx //height outerl6: movl 40(%ebp), %ecx //width pushl %edx innerl6: pushl %ecx movw (%esi), %bx cmpw $0, %bx jz 7f xor %eax, %eax movb 50(%ebp), %al movb rrShft, %cl shrb %cl, %al mull 52(%ebp) movb rlShft, %cl shll %cl, %eax pushl %eax //relative red source part movl (%edi), %eax andl rMask, %eax shrl %cl, %eax movl $100, %ebx subl 52(%ebp), %ebx mull %ebx shll %cl, %eax //relative red dest part popl %ebx addl %ebx, %eax movl $100, %ebx divl %ebx andl rMask, %eax pushl %eax xor %eax, %eax movb 49(%ebp), %al movb grShft, %cl shrb %cl, %al mull 52(%ebp) movb glShft, %cl shll %cl, %eax pushl %eax //relative green source part movl (%edi), %eax andl gMask, %eax shrl %cl, %eax movl $100, %ebx subl 52(%ebp), %ebx mull %ebx shll %cl, %eax //relative green dest part popl %ebx addl %ebx, %eax movl $100, %ebx divl %ebx andl gMask, %eax pushl %eax xor %eax, %eax movb 48(%ebp), %al movb brShft, %cl shrb %cl, %al mull 52(%ebp) movb blShft, %cl shll %cl, %eax pushl %eax //relative blue source part movl (%edi), %eax andl bMask, %eax shrl %cl, %eax movl $100, %ebx subl 52(%ebp), %ebx mull %ebx shll %cl, %eax //relative blue dest part popl %ebx addl %ebx, %eax movl $100, %ebx divl %ebx andl bMask, %eax popl %ebx orl %ebx, %eax popl %ebx orl %ebx, %eax movw %ax, (%edi) 7: addl $2, %edi addl $2, %esi popl %ecx decl %ecx jnz innerl6 movl 28(%ebp), %eax subl 40(%ebp), %eax shll $1, %eax addl %eax, %esi movl 12(%ebp), %ebx subl 40(%ebp), %ebx shll $1, %ebx addl %ebx, %edi popl %edx decl %edx jnz outerl6 4: popl %esi popl %edi DelStack ret .globl Gfx_SetClipRgn Gfx_SetClipRgn: CrtStack movl 8(%ebp), %eax movl %eax, clp_lx //left x movl 12(%ebp), %eax movl %eax, clp_ty //top y movl 8(%ebp), %eax addl 16(%ebp), %eax subl $1, %eax movl %eax, clp_rx //right x movl 12(%ebp), %eax addl 20(%ebp), %eax subl $1, %eax movl %eax, clp_by //bottom y DelStack ret ltris-1.0.19/src/menu.c0000664000175000017500000003277312140770047011577 00000000000000/*************************************************************************** menu.c - description ------------------- begin : Thu Sep 20 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #include "manager.h" #ifdef SOUND #include "audio.h" #endif List *menus = 0; /* list of menus used to delete them later */ extern Font *mfont, *mhfont, *mcfont; extern int gap_height; /* gap size between items */ extern Menu *cur_menu; extern int motion, motion_x, motion_y; /* mouse motion event */ #ifdef SOUND extern Sound_Chunk *wav_menu_motion, *wav_menu_click; #endif /* ==================================================================== Create menu. ==================================================================== */ Menu *menu_create( char *name, int layout, int x, int y, int w, int h, int border ) { Menu *menu = calloc( 1, sizeof( Menu ) ); /* name */ menu->name = strdup( name ); /* layout */ menu->layout = layout; menu->x = x + border; menu->y = y + border; menu->w = w - border * 2; menu->h = h - border * 2; /* items are cleared normally */ menu->items = list_create( LIST_AUTO_DELETE, item_delete ); /* add menu to list menus */ list_add( menus, menu ); /* create caption */ menu_add( menu, item_create_separator( name ) ); ((Item*)menu->items->head.next->item)->font = mcfont; menu_add( menu, item_create_separator( "" ) ); /* return menu */ return menu; } /* ==================================================================== Delete menu and all submenus starting with root menu ==================================================================== */ void menu_delete( void *pmenu ) { Menu *menu = (Menu*)pmenu; if ( !menu ) return; list_delete( menu->items ); if ( menu->name ) free( menu->name ); free( menu ); } /* ==================================================================== Add item to menu. ==================================================================== */ void menu_add( Menu *menu, Item *item ) { list_add( menu->items, item ); if ( item->type == ITEM_LINK && (Menu*)item->link != menu ) ((Menu*)item->link)->parent = menu; } /* ==================================================================== Adjust position and size of all entries according to layout. ==================================================================== */ void menu_adjust( Menu *menu ) { int height, x, y; Item *item; if ( menu->layout == MENU_LAYOUT_CENTERED ) { /* get full height of all items + gaps */ height = menu->items->count * mhfont->height + ( menu->items->count - 1 ) * gap_height; /* get positions of items */ y = menu->y + ( menu->h - height ) / 2; x = menu->x; /* set position */ list_reset( menu->items ); while( ( item = list_next( menu->items ) ) ) { item->x = x; item->y = y; item->w = menu->w; item->h = mhfont->height; y += gap_height + mhfont->height; item_adjust( item ); /* adjust alignment */ } return; } fprintf( stderr, "menu_adjust: layout %i not supported\n", menu->layout ); } /* ==================================================================== Select menu: clear current item and set extern variable cur_menu ==================================================================== */ void menu_select( Menu *menu ) { if ( cur_menu ) menu_unselect_cur_item( cur_menu ); cur_menu = menu; menu->cur_item = 0; hint_set( 0 ); } /* ==================================================================== Show/hide all items ==================================================================== */ void menu_hide( Menu *menu ) { Item *item; list_reset( menu->items ); while ( ( item = list_next( menu->items ) ) ) item_hide( item ); } void menu_show( Menu *menu ) { Item *item; list_reset( menu->items ); while ( ( item = list_next( menu->items ) ) ) item_show( item ); } /* ==================================================================== Update alpha of items and modify items according to event (if any) ==================================================================== */ int menu_update( Menu *menu, SDL_Event *event, int ms ) { int result = ACTION_NONE; Item *item, *old_item; int item_used; void (*callback)(void); /* update alpha of all items */ list_reset( menu->items ); while ( ( item = list_next( menu->items ) ) ) item_update_alpha( item, ms ); /* if value::grab is set do only except keyup events */ if ( menu->cur_item && menu->cur_item->type == ITEM_KEY && menu->cur_item->value->grab ) { if ( event && event->type == SDL_KEYDOWN ) value_set_key( menu->cur_item->value, event->key.keysym.sym ); return result; } /* if other event occured check */ if ( event ) switch ( event->type ) { case SDL_KEYDOWN: switch ( event->key.keysym.sym ) { case SDLK_ESCAPE: /* if ESCAPE is pressed go up to last menu or leave */ if ( strequal( _("Back"), ((Item*)menu->items->tail.prev->item)->name ) ) menu_select( ((Item*)menu->items->tail.prev->item)->link ); else if ( strequal( _("Quit"), ((Item*)menu->items->tail.prev->item)->name ) ) result = ACTION_QUIT; break; case SDLK_RETURN: if ( !menu->cur_item ) break; item_used = 1; /* callback */ callback = menu->cur_item->callback; /* action */ switch ( menu->cur_item->type ) { case ITEM_ACTION: result = menu->cur_item->item_id; break; case ITEM_LINK: menu_select( menu->cur_item->link ); break; case ITEM_KEY: value_grab( menu->cur_item->value ); break; case ITEM_SWITCH: case ITEM_SWITCH_X: case ITEM_RANGE: value_inc( menu->cur_item->value ); break; default: item_used = 0; break; } if ( item_used ) { #ifdef SOUND sound_play( wav_menu_click ); #endif if ( callback ) (callback)(); } break; case SDLK_RIGHT: if ( !menu->cur_item ) break; item_used = 1; switch ( menu->cur_item->type ) { case ITEM_SWITCH: case ITEM_SWITCH_X: case ITEM_RANGE: value_inc( menu->cur_item->value ); break; default: item_used = 0; break; } #ifdef SOUND if ( item_used ) sound_play( wav_menu_click ); #endif break; case SDLK_LEFT: if ( !menu->cur_item ) break; item_used = 1; switch ( menu->cur_item->type ) { case ITEM_SWITCH: case ITEM_SWITCH_X: case ITEM_RANGE: value_dec( menu->cur_item->value ); break; default: item_used = 0; break; } #ifdef SOUND if ( item_used ) sound_play( wav_menu_click ); #endif break; case SDLK_UP: menu_up( menu ); hint_set( menu->cur_item->hint ); #ifdef SOUND sound_play( wav_menu_click ); #endif break; case SDLK_DOWN: menu_down( menu ); hint_set( menu->cur_item->hint ); #ifdef SOUND sound_play( wav_menu_click ); #endif break; default: /* if type is edit: edit! */ if ( menu->cur_item && menu->cur_item->type == ITEM_EDIT ) { value_edit( menu->cur_item->value, event->key.keysym.sym, event->key.keysym.unicode ); #ifdef SOUND sound_play( wav_menu_click ); #endif break; } break; } break; case SDL_MOUSEBUTTONUP: if ( !menu->cur_item ) break; item_used = 1; callback = menu->cur_item->callback; switch ( menu->cur_item->type ) { case ITEM_ACTION: result = menu->cur_item->item_id; break; case ITEM_LINK: menu_select( menu->cur_item->link ); break; case ITEM_SWITCH: case ITEM_SWITCH_X: case ITEM_RANGE: if ( event->button.button == LEFT_BUTTON ) value_inc( menu->cur_item->value ); else value_dec( menu->cur_item->value ); break; case ITEM_KEY: value_grab( menu->cur_item->value ); break; default: item_used = 0; break; } if ( item_used ) { #ifdef SOUND sound_play( wav_menu_click ); #endif if ( callback ) (callback)(); } break; } /* mouse motion is handled by event_filter so check motion */ if ( motion ) { /* select item mouse pointer is on */ old_item = menu->cur_item; menu_unselect_cur_item( menu ); list_reset( menu->items ); while( ( item = list_next( menu->items ) ) ) if ( item_focus( item, motion_x, motion_y ) ) { menu_select_item( menu, item ); if ( old_item != menu->cur_item ) { #ifdef SOUND sound_play( wav_menu_motion ); #endif } break; } if ( menu->cur_item ) hint_set( menu->cur_item->hint ); else hint_set( 0 ); } return result; } /* ==================================================================== Select/unselect item: update menu::cur_item und item::highlight ==================================================================== */ void menu_unselect_cur_item( Menu *menu ) { if ( menu->cur_item ) menu->cur_item->highlighted = 0; menu->cur_item = 0; } void menu_select_item( Menu *menu, Item *item ) { menu->cur_item = item; menu->cur_item->highlighted = 1; } /* ==================================================================== Go one valid menu item up or down. ==================================================================== */ void menu_up( Menu *menu ) { List_Entry *entry; Item *item; int valid = 0; /* no selection so far: select first item after caption */ if ( !menu->cur_item ) { menu_select_item( menu, list_get( menu->items, 2 ) ); return; } /* get entry -- MUST exist so don't check */ entry = list_entry( menu->items, menu->cur_item ); /* get next entry */ do { entry = entry->prev; if ( entry == &menu->items->head ) entry = menu->items->tail.prev; item = (Item*)entry->item; if ( item->type == ITEM_SEPARATOR ) continue; valid = 1; } while ( !valid ); /* set as current */ menu_unselect_cur_item( menu ); menu_select_item( menu, entry->item ); } void menu_down( Menu *menu ) { List_Entry *entry; Item *item; int valid = 0; /* no selection so far: select first item after caption */ if ( !menu->cur_item ) { menu_select_item( menu, list_get( menu->items, 2 ) ); return; } /* get entry -- MUST exist so don't check */ entry = list_entry( menu->items, menu->cur_item ); /* get next entry */ do { entry = entry->next; if ( entry == &menu->items->tail ) entry = menu->items->head.next; item = (Item*)entry->item; if ( item->type == ITEM_SEPARATOR ) continue; valid = 1; } while ( !valid ); /* set as current */ menu_unselect_cur_item( menu ); menu_select_item( menu, entry->item ); } ltris-1.0.19/src/value.h0000664000175000017500000001150712140770047011744 00000000000000/*************************************************************************** value.h - description ------------------- begin : Thu Sep 20 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef __VALUE_H #define __VALUE_H /* ==================================================================== Value contained and handled by item. ==================================================================== */ enum { VALUE_NONE = 0, /* no value: separator */ VALUE_RANGE_INT, /* range of integers */ VALUE_RANGE_STR, /* range of strings: min == 0, max == count, step == 1 */ VALUE_KEY, /* single key value */ VALUE_EDIT /* editable string */ }; typedef struct _Value { int type; /* type of value */ int min, max, step; /* integer range of value */ int *val_int; /* value as integer (position in range or key value) */ char *val_str; /* value as string (either name or converted val_int) --duplicated except for VALUE_EDIT */ char **names; /* if set val_int is associated to the indexed name and val_str is set to this name instead of the converted integer value --duplicated */ int name_count; /* number of names */ int *filter; /* key filter (size: SDLK_LAST) --duplicated */ List *other_keys; /* list of other key values for VALUE_KEY: these are restricted, too */ int grab; /* if type is VALUE_KEY and this is set all events except QUIT and KEYUP are ignored */ } Value; /* ==================================================================== Auxiliary functions to setup a key filter. ==================================================================== */ void filter_clear( int *filter ); void filter_set( int *filter, int first, int last, int allowed ); /* ==================================================================== Create a value. names and filter are duplicated and freed by value_delete(). Return Value: value ==================================================================== */ Value *value_create_empty(); Value *value_create_range_int( int *val_int, int min, int max, int step ); Value *value_create_range_str( int *val_int, char **names, int count ); Value *value_create_key( int *val_int, int *filter ); Value *value_create_edit( char *val_str, int limit ); /* ==================================================================== Delete a value ==================================================================== */ void value_delete( Value *value ); /* ==================================================================== Increase, decrease if range. ==================================================================== */ void value_dec( Value *value ); void value_inc( Value *value ); /* ==================================================================== Grab input of VALUE_KEY ==================================================================== */ void value_grab( Value *value ); /* ==================================================================== Set key value if VALUE_KEY and clear grab flag ==================================================================== */ void value_set_key( Value *value, int val_int ); /* ==================================================================== Edit string if VALUE_EDIT ==================================================================== */ void value_edit( Value *value, int code, int unicode ); /* ==================================================================== Add another dynamically restricted key (as VALUE_KEY) to other_key list. ==================================================================== */ void value_add_other_key( Value *value, Value *other_key ); /* ==================================================================== Set a new name list (and update position) for VALUE_RANGE_STR. ==================================================================== */ void value_set_new_names( Value *value, char **names, int count ); #endif ltris-1.0.19/src/tetris.h0000664000175000017500000000410512140770047012136 00000000000000/*************************************************************************** tetris.h - description ------------------- begin : Tue Dec 25 2001 copyright : (C) 2001 by Michael Speck email : kulkanie@gmx.net ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef __TETRIS_H #define __TETRIS_H /* ==================================================================== Load/delete all tetris resources. ==================================================================== */ void tetris_create(); void tetris_delete(); /* ==================================================================== Initiate/clear a new game from config data. After tetris_init() the screen is drawn completely though not updated to use the fade effect. ==================================================================== */ int tetris_init(); void tetris_clear(); /* ==================================================================== Run an successfully initated game. ==================================================================== */ void tetris_run(); /* ==================================================================== Run a number of CPU games to get an average score gained so you'll see if your analyze algorithm in cpu.c cpu_analyze_bowl() sucks or rocks! ==================================================================== */ void tetris_make_stat(); #endif ltris-1.0.19/config.guess0000775000175000017500000012516012140770051012204 00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. timestamp='2004-08-11' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Per Bothner . # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # # The plan is that this can be called by configure scripts if you # don't specify an explicit build system type. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit 0 ;; --version | -v ) echo "$version" ; exit 0 ;; --help | --h* | -h ) echo "$usage"; exit 0 ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi trap 'exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; { tmp=`(umask 077 && mktemp -d -q "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown case "${UNAME_MACHINE}" in i?86) test -z "$VENDOR" && VENDOR=pc ;; *) test -z "$VENDOR" && VENDOR=unknown ;; esac test -f /etc/SuSE-release -o -f /.buildenv && VENDOR=suse # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep __ELF__ >/dev/null then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit 0 ;; amd64:OpenBSD:*:*) echo x86_64-unknown-openbsd${UNAME_RELEASE} exit 0 ;; amiga:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; arc:OpenBSD:*:*) echo mipsel-unknown-openbsd${UNAME_RELEASE} exit 0 ;; cats:OpenBSD:*:*) echo arm-unknown-openbsd${UNAME_RELEASE} exit 0 ;; hp300:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; luna88k:OpenBSD:*:*) echo m88k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; mac68k:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; macppc:OpenBSD:*:*) echo powerpc-unknown-openbsd${UNAME_RELEASE} exit 0 ;; mvme68k:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; mvme88k:OpenBSD:*:*) echo m88k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; mvmeppc:OpenBSD:*:*) echo powerpc-unknown-openbsd${UNAME_RELEASE} exit 0 ;; pmax:OpenBSD:*:*) echo mipsel-unknown-openbsd${UNAME_RELEASE} exit 0 ;; sgi:OpenBSD:*:*) echo mipseb-unknown-openbsd${UNAME_RELEASE} exit 0 ;; sun3:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; wgrisc:OpenBSD:*:*) echo mipsel-unknown-openbsd${UNAME_RELEASE} exit 0 ;; *:OpenBSD:*:*) echo ${UNAME_MACHINE}-unknown-openbsd${UNAME_RELEASE} exit 0 ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit 0 ;; macppc:MirBSD:*:*) echo powerppc-unknown-mirbsd${UNAME_RELEASE} exit 0 ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit 0 ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE="alpha" ;; "EV4.5 (21064)") UNAME_MACHINE="alpha" ;; "LCA4 (21066/21068)") UNAME_MACHINE="alpha" ;; "EV5 (21164)") UNAME_MACHINE="alphaev5" ;; "EV5.6 (21164A)") UNAME_MACHINE="alphaev56" ;; "EV5.6 (21164PC)") UNAME_MACHINE="alphapca56" ;; "EV5.7 (21164PC)") UNAME_MACHINE="alphapca57" ;; "EV6 (21264)") UNAME_MACHINE="alphaev6" ;; "EV6.7 (21264A)") UNAME_MACHINE="alphaev67" ;; "EV6.8CB (21264C)") UNAME_MACHINE="alphaev68" ;; "EV6.8AL (21264B)") UNAME_MACHINE="alphaev68" ;; "EV6.8CX (21264D)") UNAME_MACHINE="alphaev68" ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE="alphaev69" ;; "EV7 (21364)") UNAME_MACHINE="alphaev7" ;; "EV7.9 (21364A)") UNAME_MACHINE="alphaev79" ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` exit 0 ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit 0 ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit 0 ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit 0;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit 0 ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos exit 0 ;; *:OS/390:*:*) echo i370-ibm-openedition exit 0 ;; *:OS400:*:*) echo powerpc-ibm-os400 exit 0 ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit 0;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit 0;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit 0 ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit 0 ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit 0 ;; DRS?6000:UNIX_SV:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7 && exit 0 ;; esac ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; i86pc:SunOS:5.*:*) echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit 0 ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit 0 ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit 0 ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit 0 ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit 0 ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit 0 ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit 0 ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit 0 ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit 0 ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit 0 ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} exit 0 ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit 0 ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit 0 ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit 0 ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit 0 ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit 0 ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c \ && $dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \ && exit 0 echo mips-mips-riscos${UNAME_RELEASE} exit 0 ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit 0 ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit 0 ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit 0 ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit 0 ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit 0 ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit 0 ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit 0 ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${TARGET_BINARY_INTERFACE}x = x ] then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit 0 ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit 0 ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit 0 ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit 0 ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit 0 ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit 0 ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit 0 ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit 0 ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit 0 ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0 echo rs6000-ibm-aix3.2.5 elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit 0 ;; *:AIX:*:[45]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit 0 ;; *:AIX:*:*) echo rs6000-ibm-aix exit 0 ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit 0 ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit 0 ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit 0 ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit 0 ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit 0 ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit 0 ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in 32) HP_ARCH="hppa2.0n" ;; 64) HP_ARCH="hppa2.0w" ;; '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 esac ;; esac fi if [ "${HP_ARCH}" = "" ]; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if [ ${HP_ARCH} = "hppa2.0w" ] then # avoid double evaluation of $set_cc_for_build test -n "$CC_FOR_BUILD" || eval $set_cc_for_build if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E -) | grep __LP64__ >/dev/null then HP_ARCH="hppa2.0w" else HP_ARCH="hppa64" fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit 0 ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit 0 ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0 echo unknown-hitachi-hiuxwe2 exit 0 ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit 0 ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit 0 ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit 0 ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit 0 ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit 0 ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit 0 ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit 0 ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit 0 ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit 0 ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit 0 ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit 0 ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit 0 ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit 0 ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit 0 ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit 0 ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit 0 ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit 0 ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit 0 ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit 0 ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit 0 ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit 0 ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit 0 ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit 0 ;; *:FreeBSD:*:*) echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit 0 ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit 0 ;; i*:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit 0 ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit 0 ;; x86:Interix*:[34]*) echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//' exit 0 ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit 0 ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit 0 ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit 0 ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit 0 ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; *:GNU:*:*) # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit 0 ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu exit 0 ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit 0 ;; arm*:Linux:*:*) echo ${UNAME_MACHINE}-${VENDOR}-linux exit 0 ;; cris:Linux:*:*) echo cris-axis-linux exit 0 ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-${VENDOR}-linux exit 0 ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-${VENDOR}-linux exit 0 ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-${VENDOR}-linux exit 0 ;; mips:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef mips #undef mipsel #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=mipsel #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=mips #else CPU= #endif #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` test x"${CPU}" != x && echo "${CPU}-${VENDOR}-linux" && exit 0 ;; mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef mips64 #undef mips64el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=mips64el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=mips64 #else CPU= #endif #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` test x"${CPU}" != x && echo "${CPU}-${VENDOR}-linux" && exit 0 ;; ppc:Linux:*:*) echo powerpc-${VENDOR}-linux exit 0 ;; ppc64:Linux:*:*) echo powerpc64-${VENDOR}-linux exit 0 ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null if test "$?" = 0 ; then LIBC="-libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-${VENDOR}-linux${LIBC} exit 0 ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-${VENDOR}-linux ;; PA8*) echo hppa2.0-${VENDOR}-linux ;; *) echo hppa-${VENDOR}-linux ;; esac exit 0 ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-${VENDOR}-linux exit 0 ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux exit 0 ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-${VENDOR}-linux exit 0 ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-${VENDOR}-linux exit 0 ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-${VENDOR}-linux exit 0 ;; x86_64:Linux:*:*) echo x86_64-${VENDOR}-linux exit 0 ;; i*86:Linux:*:*) # The BFD linker knows what the default object file format is, so # first see if it will tell us. cd to the root directory to prevent # problems with other programs or directories called `ld' in the path. # Set LC_ALL=C to ensure ld outputs messages in English. ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ | sed -ne '/supported targets:/!d s/[ ][ ]*/ /g s/.*supported targets: *// s/ .*// p'` case "$ld_supported_targets" in elf32-i386) TENTATIVE="${UNAME_MACHINE}-${VENDOR}-linux" ;; a.out-i386-linux) echo "${UNAME_MACHINE}-${VENDOR}-linuxaout" exit 0 ;; coff-i386) echo "${UNAME_MACHINE}-${VENDOR}-linuxcoff" exit 0 ;; "") # Either a pre-BFD a.out linker (linuxoldld) or # one that does not give us useful --help. echo "${UNAME_MACHINE}-${VENDOR}-linuxoldld" exit 0 ;; esac # Determine whether the default compiler is a.out or elf eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include #ifdef __ELF__ # ifdef __GLIBC__ # if __GLIBC__ >= 2 LIBC=gnu # else LIBC=gnulibc1 # endif # else LIBC=gnulibc1 # endif #else #ifdef __INTEL_COMPILER LIBC=gnu #else LIBC=gnuaout #endif #endif #ifdef __dietlibc__ LIBC=dietlibc #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=` test x"${LIBC}" != x && echo "${UNAME_MACHINE}-${VENDOR}-linux-${LIBC}" | sed 's/linux-gnu/linux/' && exit 0 test x"${TENTATIVE}" != x && echo "${TENTATIVE}" && exit 0 ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit 0 ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit 0 ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit 0 ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit 0 ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit 0 ;; i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit 0 ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit 0 ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit 0 ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit 0 ;; i*86:*:5:[78]*) case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} exit 0 ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit 0 ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i386. echo i386-pc-msdosdjgpp exit 0 ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit 0 ;; paragon:*:*:*) echo i860-intel-osf1 exit 0 ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit 0 ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit 0 ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit 0 ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit 0 ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && echo i486-ncr-sysv4.3${OS_REL} && exit 0 /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && echo i586-ncr-sysv4.3${OS_REL} && exit 0 ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && echo i486-ncr-sysv4 && exit 0 ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit 0 ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit 0 ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit 0 ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit 0 ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit 0 ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit 0 ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit 0 ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit 0 ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit 0 ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit 0 ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit 0 ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit 0 ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit 0 ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit 0 ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit 0 ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit 0 ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit 0 ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit 0 ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit 0 ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit 0 ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit 0 ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit 0 ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit 0 ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit 0 ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown case $UNAME_PROCESSOR in *86) UNAME_PROCESSOR=i686 ;; unknown) UNAME_PROCESSOR=powerpc ;; esac echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit 0 ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = "x86"; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} exit 0 ;; *:QNX:*:4*) echo i386-pc-qnx exit 0 ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit 0 ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit 0 ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit 0 ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit 0 ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = "386"; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 exit 0 ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit 0 ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit 0 ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit 0 ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit 0 ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit 0 ;; *:ITS:*:*) echo pdp10-unknown-its exit 0 ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} exit 0 ;; *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit 0 ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms && exit 0 ;; I*) echo ia64-dec-vms && exit 0 ;; V*) echo vax-dec-vms && exit 0 ;; esac esac #echo '(No uname command or uname output not recognized.)' 1>&2 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 eval $set_cc_for_build cat >$dummy.c < # include #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) # if !defined (ultrix) # include # if defined (BSD) # if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); # else # if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); # else printf ("vax-dec-bsd\n"); exit (0); # endif # endif # else printf ("vax-dec-bsd\n"); exit (0); # endif # else printf ("vax-dec-ultrix\n"); exit (0); # endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && $dummy && exit 0 # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit 0 ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit 0 ;; c34*) echo c34-convex-bsd exit 0 ;; c38*) echo c38-convex-bsd exit 0 ;; c4*) echo c4-convex-bsd exit 0 ;; esac fi cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: ltris-1.0.19/depcomp0000775000175000017500000003554512140770051011250 00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2004-05-31.23 # Copyright (C) 1999, 2000, 2003, 2004 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA # 02111-1307, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try \`$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by `PROGRAMS ARGS'. object Object file output by `PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputing dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit 0 ;; -v | --v*) echo "depcomp $scriptversion" exit 0 ;; esac if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ## The second -e expression handles DOS-style file names with drive letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the `deleted header file' problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. tr ' ' ' ' < "$tmpdepfile" | ## Some versions of gcc put a space before the `:'. On the theory ## that the space means something, we add a space to the output as ## well. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like `#:fec' to the end of the # dependency line. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr ' ' ' ' >> $depfile echo >> $depfile # The second pass generates a dummy entry for each header file. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> $depfile else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts `$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. stripped=`echo "$object" | sed 's/\(.*\)\..*$/\1/'` tmpdepfile="$stripped.u" if test "$libtool" = yes; then "$@" -Wc,-M else "$@" -M fi stat=$? if test -f "$tmpdepfile"; then : else stripped=`echo "$stripped" | sed 's,^.*/,,'` tmpdepfile="$stripped.u" fi if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi if test -f "$tmpdepfile"; then outname="$stripped.o" # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile" sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; icc) # Intel's C compiler understands `-MD -MF file'. However on # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c # ICC 7.0 will fill foo.d with something like # foo.o: sub/foo.c # foo.o: sub/foo.h # which is wrong. We want: # sub/foo.o: sub/foo.c # sub/foo.o: sub/foo.h # sub/foo.c: # sub/foo.h: # ICC 7.1 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using \ : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in `foo.d' instead, so we check for that too. # Subdirectories are respected. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then # Dependencies are output in .lo.d with libtool 1.4. # With libtool 1.5 they are output both in $dir.libs/$base.o.d # and in $dir.libs/$base.o.d and $dir$base.o.d. We process the # latter, because the former will be cleaned when $dir.libs is # erased. tmpdepfile1="$dir.libs/$base.lo.d" tmpdepfile2="$dir$base.o.d" tmpdepfile3="$dir.libs/$base.d" "$@" -Wc,-MD else tmpdepfile1="$dir$base.o.d" tmpdepfile2="$dir$base.d" tmpdepfile3="$dir$base.d" "$@" -MD fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi if test -f "$tmpdepfile1"; then tmpdepfile="$tmpdepfile1" elif test -f "$tmpdepfile2"; then tmpdepfile="$tmpdepfile2" else tmpdepfile="$tmpdepfile3" fi if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for `:' # in the target name. This is to cope with DOS-style filenames: # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. "$@" $dashmflag | sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" tr ' ' ' ' < "$tmpdepfile" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # X makedepend shift cleared=no for arg in "$@"; do case $cleared in no) set ""; shift cleared=yes ;; esac case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix="`echo $object | sed 's/^.*\././'`" touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" sed '1,2d' "$tmpdepfile" | tr ' ' ' ' | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E | sed -n '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o, # because we must use -o when running libtool. "$@" || exit $? IFS=" " for arg do case "$arg" in "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" echo " " >> "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: ltris-1.0.19/po/0000775000175000017500000000000012233753110010355 500000000000000ltris-1.0.19/po/it.po0000664000175000017500000004706612233753110011266 00000000000000# Italian translations for ltris package # Traduzioni italiane per il pacchetto ltris.. # Copyright (C) 2010 Michael Speck # This file is distributed under the same license as the ltris package. # Desty Nova , 2010. # msgid "" msgstr "" "Project-Id-Version: ltris 1.0.14\n" "Report-Msgid-Bugs-To: lgames.sf.net/contact.php\n" "POT-Creation-Date: 2013-10-29 16:37+0100\n" "PO-Revision-Date: 2010-04-12 00:10+0100\n" "Last-Translator: Desty Nova \n" "Language-Team: Italian\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: src/manager.c:65 msgid "Enable/disable these quick hints." msgstr "Abilita/disabilita questi suggerimenti." #: src/manager.c:66 msgid "Set player controls and horizontal speed." msgstr "Configura i controlli del giocatore e la velocita' orizzontale." #: src/manager.c:67 msgid "Here you may customize the graphical appearance of LTris." msgstr "Qui puoi personalizzare l'aspetto grafico di LTris." #: src/manager.c:68 msgid "Audio Settings." msgstr "Configurazioni Audio." #: src/manager.c:69 msgid "Get back to nasty work." msgstr "Torna allo sporco lavoro." #: src/manager.c:70 msgid "Setup and run a cool game!" msgstr "Configura ed avvia un gioco figo!" #: src/manager.c:71 msgid "If animations disturb you you may turn them off." msgstr "Se le animazioni ti disturbano puoi disattivarle." #: src/manager.c:72 msgid "You may play LTris either in window of fullscreen mode." msgstr "Puoi giocare LTris sia in finestra che in modalita' schermo intero." #: src/manager.c:73 msgid "" "If you don't want LTris to consume all of your CPU limit the frame rate." msgstr "Se non vuoi che LTris consumi tutta la tua CPU limita il frame rate." #: src/manager.c:74 msgid "" "Horizontally move block either tile-by-tile or smooth. This is just eye-" "candy and doesn't effect the moving speed at all." msgstr "" "Muove orizzontalmente il blocco pezzo-per-pezzo o liscio. Questo e' solo un " "abbellimento e non influisce affatto sulla velocita' di movimento." #: src/manager.c:75 msgid "" "Drop block tile-by-tile or smooth.##NOTE: While tile-by-tile allows you to " "move a block below a tile multiple times you'll only be able to do so one " "time when choosing 'smooth'!#See 'Advanced Options/Collision Check' to " "improve this." msgstr "" "Caduta blocco pezzo-per-pezzo o liscio.#NOTA: Mentre pezzo-per-pezzo ti " "permette di muovere un blocco sotto un pezzo molte volte, sarai in grado di " "farlo solo una volta scegliendo 'liscio'!#Vedi 'Opzioni Avanzate/Check " "Collisione' per migliorare questo." #: src/manager.c:76 msgid "" "The less delay you take the faster the block will horizontally move and the " "more sensitive the input is handled." msgstr "" "Meno ritardo prendi piu' velocemente il blocco si muovera' orizzontalmente e " "piu' sensibile e' la gestione dell'ingresso." #: src/manager.c:77 msgid "Delay for vertical movement when using Down key." msgstr "" #: src/manager.c:78 #, fuzzy msgid "" "Left/Right: horizontal movement#Rotate Left/Right: block rotation#Down: " "faster Dropping#Drop: INSTANT drop" msgstr "" "Ogni valore di controllo ha bisogno di un tasto unico.##Sinistra/Destra: " "movimento orizzontale#Ruota Sinistra/Destra: rotazione del blocco#Giu': " "Caduta veloce#Caduta: Caduta ISTANTANEA" #: src/manager.c:79 msgid "Key used to pause and unpause a game." msgstr "" #: src/manager.c:80 msgid "Let's get it on!!!!" msgstr "Andiamo avanti!!!" #: src/manager.c:81 msgid "Human player names. If you play against CPU it will be named as CPU-x." msgstr "" "Nomi dei giocatori umani. se giochi contro la CPU sara' nominata come CPU-x." #: src/manager.c:82 #, fuzzy, c-format msgid "" "This is your starting level which will be ignored for game 'Figures' (you'll " "always start at level 0 there).##Each starting level up adds you 1.5% score " "in the end!" msgstr "" "Questo è il tuo livello di partenza che sarà ignorato per partite " "'Figure' (inizierai sempre dal livello 0 là).##Ogni livello di partenza in " "più aggiunge 1,5% di punteggio alla fine!" #: src/manager.c:83 #, fuzzy, c-format msgid "" "Enable/Disable block preview.##If disabled you'll gain 15% score in the end!" msgstr "" "Abilita/Disabilita anteprima blocco.##Se disabilitata guadagnerai un 15% di " "punteggio alla fine!" #: src/manager.c:84 msgid "" "Shows guiding lines or a shadow of the currently dropping block so you see " "where it'll hit the ground.##This option has no penalty/bonus." msgstr "" "Mostra linee guida o un'ombra del blocco che sta cadendo cosi' puoi vedere " "dove atterrera'.##Questa opzione non ha penalita'/bonus." #: src/manager.c:85 msgid "Some multiplayer and CPU settings." msgstr "Alcune configurazioni multigiocatore e CPU." #: src/manager.c:86 msgid "" "A line send to your opponent's bowl will have this number of holes in it. " "The more holes the harder it will be to remove this line so you should " "choose a low value (e.g. 1 or 2) for long multiplayer games." msgstr "" "Una linea inviata al recipiente del tuo avversario avra' questo numero di " "buchi. Piu' buchi ci sono e piu' sara' difficile rimuovere questa linea, " "cosi' dovresti scegliere un valore basso (es. 1 o 2) per partite " "multigiocatore lunghe." #: src/manager.c:87 msgid "" "This option controls how the holes in the lines are created when more than " "one line is sent. If the option is on, the holes will appear randomly for " "each line. If the option is off, all the lines that are sent in one go, will " "have the holes in the same spot." msgstr "" "Questa opzione controlla come i buchi nelle linee vengono creati quando piu' " "di una linea e' inviata. Se l'opzione e' accesa, i buchi appariranno " "casualmente per ogni linea. Se l'opzione e' spenta, tutte le linee che sono " "inviate insieme, avranno i buchi nel solito punto." #: src/manager.c:88 msgid "" "You'll have to complete more than one line to send any lines to your " "opponent. If this option is enabled all lines will be send else one will be " "substracted.##If disabled:#3 Line send -> 2 lines received##If enabled:#3 " "lines send -> 3 lines received" msgstr "" "Dovrai completare piu' di una linea per inviare qualsiasi linea al tuo " "avversario. Se questa opzione e' abilitata tutte le linee saranno inviate " "altrimenti una sara' sottratta.##Se disabilitata:#3 linee inviate -> 2 linee " "ricevute##Se abilitata:#3 linee inviate -> 3 linee ricevute." #: src/manager.c:89 msgid "" "If this option is enabled your opponent will receive all four lines of your " "tetris ignoring the 'Send All' setting." msgstr "" "Se questa opzione e' abilitata il tuo avversario ricevera' tutte e quattro " "le linee del tuo tetris ignorando la configurazione 'Invia Tutte'." #: src/manager.c:90 msgid "" "This is the delay in milliseconds the CPU waits before dropping a block." msgstr "" "Questo e' il ritardo in millisencondi che la CPU aspetta prima di lasciar " "cadere un blocco." #: src/manager.c:91 msgid "" "The more aggressive the style is the more priority is put on completing " "multiple lines at the expense of a balanced bowl contents." msgstr "" "Piu' lo stile e' aggressivo piu' priorita' e' data al completamento di linee " "multiple al costo di un contenuto del recipiente bilanciato." #: src/manager.c:92 msgid "Some advanced options." msgstr "Alcune opzioni avanzate." #: src/manager.c:93 msgid "" "Test the CPU analyze algorithm in cpu.c and give an average score for a " "number of games." msgstr "" "Esamina l'algoritmo di analisi della CPU in cpu.c e da' un punteggio medio " "per un numero di partite." #: src/manager.c:94 msgid "" "If you turn visualization off the results will be computed faster. If you " "turn them on you can see a general game behaviour and judge the algorithm by " "this behaviour." msgstr "" "Se spengi la visualizzazione i risultati verranno calcolati piu' " "velocemente. Se la accendi potrai vedere il comportamento generale del gioco " "e giudicare l'algoritmo da questo comportamento." #: src/manager.c:95 msgid "" "There are basically three different game types:##CLASSIC:#The classic tetris " "game. Starts with an empty bowl and goes as long as you make it.#FIGURES:" "#Each level a nice figure will be added to the ground of you bowl. From " "level 7-12 there will be randomly appearing single tiles and from level " "13-... there will be whole lines appearing at the bottom of your bowl. Fun!" "#TWO/THREE-PLAYER:#Either play against other humans or CPU. If you complete " "multiple lines they'll be send to your opponents according to the " "multiplayer settings you made.##And in DEMO you can see your CPU do the " "work. So relax! ;-)" msgstr "" "Ci sono di base tre tipi di gioco diversi:##CLASSICO:#Il classico tetris. " "Inizia con un recipiente vuoto e continua finche' ce la fai.#FIGURE:#Ad ogni " "livello una figura carina sara' aggiunta al fondo del tuo recipiente. Dal " "livello 7-12 ci saranno singoli pezzi che appaiono a caso e dal livello " "13-... ci saranno intere linee che appaiono sul fondo del tuo recipiente. " "Divertente!#DUE/TRE-GIOCATORI:#Gioca sia contro altri umani che la CPU. Se " "completi linee multiple saranno inviate ai tuoi avversari secondo le " "configurazioni multigiocatore che hai scelto.## E in DEMO puoi vedere la tua " "CPU fare il lavoro. Quindi rilassati! ;-)" #: src/manager.c:101 msgid "" "If you turn this on the background will change every level else it's always " "the same." msgstr "" "Se abiliti questo, lo sfondo cambiera' ad ogni livello altrimenti restera' " "sempre lo stesso." #: src/manager.c:102 msgid "" "If you enable this option the keystate of either the 'Down' key or all the " "keys are cleared so you can't accidently move the next block." msgstr "" "Se abiliti questa opzione il keystate del tasto 'Giu'' o di tutti i tasti " "viene ripulito cosi' che non puoi muovere accidentalmente il prossimo blocco." #: src/manager.c:103 msgid "" "If this is enabled the preview in Two-Player is centered in the middle of " "the screen instead that one is drawn at the bottom and one at the top." msgstr "" "Se e' abilitato l'anteprima in Due-Giocatori e' centrata in mezzo allo " "schermo invece che una disegnata sul fondo ed una in cima." #: src/manager.c:104 msgid "" "This option is only useful when 'Graphics/Drop' is 'Smooth'#(In opposite to " "'Tile-By-Tile' the block is inserted as soon as it hits the ground giving no " "possibility to move the block below another one.)#If you set this option to " "'Async' you may move the block below others but on the cost of slight " "graphical errors." msgstr "" "Questa opzione e' utile solamente quando 'Grafica/Caduta' e' 'Liscio'#" "(opposto a 'Pezzo-Per-Pezzo' il blocco e' inserito appena colpisce il " "terreno togliendo la possibilita' di muovere il blocco sotto un'altro.)#Se " "configuri questa opzione a 'Async' puoi muovere il blocco sotto altri " "blocchi ma al costo di errori grafici minori." #: src/manager.c:109 #, c-format msgid "" "In expert mode the most unsuitable piece of the current bag (a bag is a set " "of all 7 randomly sorted basic pieces) is dealt out next. This option only " "works for single player. There is a 50% score bonus in the end." msgstr "" #: src/manager.c:141 src/manager.c:142 msgid "" msgstr "" #: src/manager.c:142 #, c-format msgid "You cannot delete '%s'!\n" msgstr "Non puoi cancellare '%s'!\n" #: src/manager.c:212 msgid "No Limit" msgstr "Nessun Limite" #: src/manager.c:212 msgid "50 FPS" msgstr "50 FPS" #: src/manager.c:212 msgid "100 FPS" msgstr "100 FPS" #: src/manager.c:212 msgid "200 FPS" msgstr "200 FPS" #: src/manager.c:213 msgid "Defensive" msgstr "Difensivo" #: src/manager.c:213 msgid "Normal" msgstr "Normale" #: src/manager.c:213 msgid "Aggressive" msgstr "Aggressivo" #: src/manager.c:213 msgid "Kamikaze" msgstr "Kamikaze" #: src/manager.c:214 src/manager.c:324 src/manager.c:334 src/manager.c:354 #: src/manager.c:356 src/manager.c:358 src/manager.c:367 src/manager.c:368 #: src/manager.c:369 src/manager.c:436 src/manager.c:440 src/manager.c:445 msgid "Off" msgstr "Off" #: src/manager.c:214 msgid "Shadow" msgstr "Ombra" #: src/manager.c:214 msgid "Lines" msgstr "Linee" #: src/manager.c:215 msgid "None" msgstr "Nessuno" #: src/manager.c:215 src/value.c:44 msgid "Down" msgstr "Giu'" #: src/manager.c:215 msgid "All" msgstr "Tutto" #: src/manager.c:280 msgid "Menu" msgstr "Menu" #: src/manager.c:281 src/manager.c:303 src/manager.c:316 msgid "Graphics" msgstr "Grafica" #: src/manager.c:282 src/manager.c:297 msgid "New Game" msgstr "Nuova Partita" #: src/manager.c:283 src/manager.c:302 src/manager.c:315 msgid "Controls" msgstr "Controlli" #: src/manager.c:284 src/manager.c:411 msgid "Player1" msgstr "Giocatore1" #: src/manager.c:285 src/manager.c:412 msgid "Player2" msgstr "Giocatore2" #: src/manager.c:286 src/manager.c:413 msgid "Player3" msgstr "Giocatore3" #: src/manager.c:287 src/manager.c:361 msgid "Multiplayer Options" msgstr "Opzioni Multigiocatore" #: src/manager.c:288 src/manager.c:310 msgid "Advanced Options" msgstr "Opzioni Avanzate" #: src/manager.c:290 src/manager.c:300 msgid "Options" msgstr "Opzioni" #: src/manager.c:293 src/manager.c:305 src/manager.c:307 src/manager.c:317 #: src/manager.c:318 msgid "Audio" msgstr "Audio" #: src/manager.c:312 src/menu.c:171 msgid "Quit" msgstr "Abbandona" #: src/manager.c:320 src/manager.c:331 src/manager.c:344 src/manager.c:363 #: src/manager.c:374 src/manager.c:419 src/manager.c:424 src/manager.c:429 #: src/manager.c:434 src/manager.c:448 src/menu.c:168 msgid "Back" msgstr "Indietro" #: src/manager.c:324 msgid "Sound:" msgstr "Suono:" #: src/manager.c:324 src/manager.c:334 src/manager.c:354 src/manager.c:356 #: src/manager.c:358 src/manager.c:367 src/manager.c:368 src/manager.c:369 #: src/manager.c:436 src/manager.c:440 src/manager.c:445 msgid "On" msgstr "On" #: src/manager.c:327 msgid "Volume:" msgstr "Volume:" #: src/manager.c:334 msgid "Animations:" msgstr "Animazioni:" #: src/manager.c:335 msgid "Move:" msgstr "Muovi:" #: src/manager.c:335 src/manager.c:336 msgid "Tile By Tile" msgstr "Pezzo Per Pezzo:" #: src/manager.c:335 src/manager.c:336 msgid "Smooth" msgstr "Liscio" #: src/manager.c:336 src/manager.c:382 src/manager.c:388 src/manager.c:394 msgid "Drop:" msgstr "Caduta:" #: src/manager.c:337 msgid "Change Background:" msgstr "Cambia Sfondo:" #: src/manager.c:337 msgid "Yes" msgstr "Si" #: src/manager.c:337 msgid "No" msgstr "No" #: src/manager.c:339 msgid "Display:" msgstr "Display:" #: src/manager.c:339 msgid "Window" msgstr "Finestra" #: src/manager.c:339 msgid "Fullscreen" msgstr "Schermo intero" #: src/manager.c:342 msgid "Frame Rate:" msgstr "Frame Rate:" #: src/manager.c:346 msgid "Start Game" msgstr "Inizio Gioco" #: src/manager.c:348 msgid "1st Player:" msgstr "I Giocatore:" #: src/manager.c:349 msgid "2nd Player:" msgstr "II Giocatore:" #: src/manager.c:350 msgid "3rd Player:" msgstr "III Giocatore:" #: src/manager.c:352 msgid "Game:" msgstr "Gioco:" #: src/manager.c:353 msgid "Starting Level:" msgstr "Livello Di Inizio:" #: src/manager.c:354 msgid "Preview:" msgstr "Anteprima:" #: src/manager.c:355 msgid "Help:" msgstr "Aiuto:" #: src/manager.c:356 msgid "Expert Mode:" msgstr "Modalita' Esperto:" #: src/manager.c:358 msgid "Slow:" msgstr "Lento:" #: src/manager.c:366 msgid "Holes:" msgstr "Buchi:" #: src/manager.c:367 msgid "Random Holes:" msgstr "Buchi Casuali:" #: src/manager.c:368 msgid "Send All Lines:" msgstr "Invia Tutte Le Linee:" #: src/manager.c:369 msgid "Always Send Tetris:" msgstr "Invia Sempre Tetris:" #: src/manager.c:371 msgid "CPU Style:" msgstr "Stile CPU:" #: src/manager.c:372 msgid "CPU Drop Delay:" msgstr "Ritardo Drop CPU:" #: src/manager.c:376 msgid "Pause Key:" msgstr "" #: src/manager.c:377 src/manager.c:383 src/manager.c:389 msgid "Left:" msgstr "Sinistra:" #: src/manager.c:378 src/manager.c:384 src/manager.c:390 msgid "Right:" msgstr "Destra:" #: src/manager.c:379 src/manager.c:385 src/manager.c:391 msgid "Rotate Left:" msgstr "Ruota a Sinistra:" #: src/manager.c:380 src/manager.c:386 src/manager.c:392 msgid "Rotate Right:" msgstr "Ruota a Destra:" #: src/manager.c:381 src/manager.c:387 src/manager.c:393 msgid "Down:" msgstr "Giu':" #: src/manager.c:415 msgid "Horizontal Delay:" msgstr "Ritardo Orizzontale:" #: src/manager.c:416 #, fuzzy msgid "Vertical Delay:" msgstr "Ritardo Orizzontale:" #: src/manager.c:436 msgid "Quick Help:" msgstr "Aiuto Rapido:" #: src/manager.c:439 msgid "Clear Keystate:" msgstr "Pulisci Keystate:" #: src/manager.c:440 msgid "Center Preview:" msgstr "Anteprima Centro:" #: src/manager.c:441 msgid "Collision Check:" msgstr "Check Collisione:" #: src/manager.c:441 msgid "Sync" msgstr "Sync" #: src/manager.c:441 msgid "Async" msgstr "Async" #: src/manager.c:444 msgid "Test CPU Algorithm" msgstr "Test Algoritmo CPU" #: src/manager.c:445 msgid "Visualization" msgstr "Visualizzazione" #: src/tetris.c:126 msgid "y" msgstr "s" #: src/tetris.c:127 msgid "n" msgstr "n" #: src/tetris.c:385 msgid "End Game? y/n" msgstr "Fine Gioco? s/n" #: src/bowl.c:567 src/bowl.c:568 msgid "Game Over" msgstr "Game Over" #: src/bowl.c:1281 #, c-format msgid "%i Lvl: %i" msgstr "%i Lvl: %i" #: src/bowl.c:1548 msgid "Player:" msgstr "Giocatore:" #: src/bowl.c:1552 msgid "Score:" msgstr "Punti:" #: src/bowl.c:1554 msgid "Lines:" msgstr "Linee:" #: src/chart.c:187 msgid "Name Level Score" msgstr "Nome Livello Punti" #: src/chart.c:212 msgid "Level" msgstr "Livello" #: src/main.c:66 msgid "Demo" msgstr "Demo" #: src/main.c:67 msgid "Classic" msgstr "Classico" #: src/main.c:68 msgid "Figures" msgstr "Figure" #: src/main.c:69 msgid "Vs Human" msgstr "Vs Umano" #: src/main.c:70 msgid "Vs CPU" msgstr "Vs CPU" #: src/main.c:71 msgid "Vs Human&Human" msgstr "Vs Umano&Umano" #: src/main.c:72 msgid "Vs Human&CPU" msgstr "Vs Umano&CPU" #: src/main.c:73 msgid "Vs CPU&CPU" msgstr "Vs CPU&CPU" #: src/value.c:40 msgid "Space" msgstr "Spazio" #: src/value.c:41 msgid "Left" msgstr "Sinistra" #: src/value.c:42 msgid "Right" msgstr "Destra" #: src/value.c:43 msgid "Up" msgstr "Su" #: src/value.c:45 msgid "Right Shift" msgstr "Shift Destro" #: src/value.c:46 msgid "Left Shift" msgstr "Shift Sinistro" #: src/value.c:47 msgid "Right Ctrl" msgstr "Ctrl Destro" #: src/value.c:48 msgid "Left Ctrl" msgstr "Ctrl Sinistro" #: src/value.c:49 msgid "Right Alt" msgstr "Alt Destro" #: src/value.c:50 msgid "Left Alt" msgstr "Alt Sinistro" #: src/value.c:51 msgid "Insert" msgstr "Insert" #: src/value.c:52 msgid "End" msgstr "End" #: src/value.c:53 msgid "PageUp" msgstr "PagSu" #: src/value.c:54 msgid "PageDown" msgstr "PagGiù" #: src/value.c:55 msgid "Home" msgstr "Home" #~ msgid "" #~ "In expert mode the propabilities for the next blocks are uneven to give a " #~ "block that is most likely difficult to fit anywhere. The game becomes " #~ "really hard by this so all score is doubled in the end." #~ msgstr "" #~ "In modalita' esperto le probabilita' per i prossimi blocchi sono " #~ "irregolari per dare un blocco che e' piu' difficile da inserire ovunque. " #~ "Il gioco diventa davvero difficile e per questo tutto il punteggio e' " #~ "raddoppiato alla fine." #~ msgid "" #~ "If ON all players will get exactly the same blocks. So there is no " #~ "disadvantage to any player due to random blocks. This does not work in " #~ "expert mode as the block selection depends on your actions there." #~ msgstr "" #~ "Se ACCESO tutti i giocatori otterranno esattamente gli stessi blocchi. " #~ "Cosi' non c'e' svantaggio per nessun giocatore per via di blocchi " #~ "casuali. Non funziona in modalita' esperto dato che la selezione del " #~ "blocco dipende dalle tue azioni la'." #~ msgid "Same Blocks For All:" #~ msgstr "Stessi Blocchi A Tutti:" ltris-1.0.19/po/boldquot.sed0000664000175000017500000000033112140770051012620 00000000000000s/"\([^"]*\)"/“\1â€/g s/`\([^`']*\)'/‘\1’/g s/ '\([^`']*\)' / ‘\1’ /g s/ '\([^`']*\)'$/ ‘\1’/g s/^'\([^`']*\)' /‘\1’ /g s/“â€/""/g s/“/“/g s/â€/â€/g s/‘/‘/g s/’/’/g ltris-1.0.19/po/en@boldquot.header0000664000175000017500000000247112140770051013727 00000000000000# All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation # characters, only substitutes like grave accent (0x60), apostrophe (0x27) # and double quote (0x22). These substitutes look strange; see # http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html # # This catalog translates grave accent (0x60) and apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019). # It also translates pairs of apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019) # and pairs of quotation mark (0x22) to # left double quotation mark (U+201C) and right double quotation mark (U+201D). # # When output to an UTF-8 terminal, the quotation characters appear perfectly. # When output to an ISO-8859-1 terminal, the single quotation marks are # transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to # grave/acute accent (by libiconv), and the double quotation marks are # transliterated to 0x22. # When output to an ASCII terminal, the single quotation marks are # transliterated to apostrophes, and the double quotation marks are # transliterated to 0x22. # # This catalog furthermore displays the text between the quotation marks in # bold face, assuming the VT100/XTerm escape sequences. # ltris-1.0.19/po/quot.sed0000664000175000017500000000023112140770051011756 00000000000000s/"\([^"]*\)"/“\1â€/g s/`\([^`']*\)'/‘\1’/g s/ '\([^`']*\)' / ‘\1’ /g s/ '\([^`']*\)'$/ ‘\1’/g s/^'\([^`']*\)' /‘\1’ /g s/“â€/""/g ltris-1.0.19/po/nonascii.pl0000775000175000017500000000030312140770051012434 00000000000000#!/usr/bin/perl -w use Text::Unaccent; open(my $in, "<", $ARGV[0]) or die "Can't open $ARGV[0]: $!"; while (<$in>) { # assigns each line in turn to $_ print(unac_string('UTF-8', $_)); } ltris-1.0.19/po/Makevars0000664000175000017500000000342712140770051011777 00000000000000# Makefile variables for PO directory in any package using GNU gettext. # Usually the message domain is the same as the package name. DOMAIN = $(PACKAGE) # These two variables depend on the location of this directory. subdir = po top_builddir = .. # These options get passed to xgettext. XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ # This is the copyright holder that gets inserted into the header of the # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding # package. (Note that the msgstr strings, extracted from the package's # sources, belong to the copyright holder of the package.) Translators are # expected to transfer the copyright for their translations to this person # or entity, or to disclaim their copyright. The empty string stands for # the public domain; in this case the translators are expected to disclaim # their copyright. COPYRIGHT_HOLDER = Michael Speck # This is the email address or URL to which the translators shall report # bugs in the untranslated strings: # - Strings which are not entire sentences, see the maintainer guidelines # in the GNU gettext documentation, section 'Preparing Strings'. # - Strings which use unclear terms or require additional context to be # understood. # - Strings which make invalid assumptions about notation of date, time or # money. # - Pluralisation problems. # - Incorrect English spelling. # - Incorrect formatting. # It can be your email address, or a mailing list address where translators # can write to without being subscribed, or the URL of a web page through # which the translators can contact you. MSGID_BUGS_ADDRESS = lgames.sf.net/contact.php # This is the list of locale categories, beyond LC_MESSAGES, for which the # message catalogs shall be used. It is usually empty. EXTRA_LOCALE_CATEGORIES = ltris-1.0.19/po/pt.po_full0000664000175000017500000004203612140770051012307 00000000000000# translation of pt.po to português # Portuguese translations for ltris package. # Copyright (C) 2008 Michael Speck # This file is distributed under the same license as the ltris package. # # jose , 2008. # Jose Jorge , 2008. msgid "" msgstr "" "Project-Id-Version: pt\n" "Report-Msgid-Bugs-To: lgames.sf.net/contact.php\n" "POT-Creation-Date: 2008-03-29 12:39+0100\n" "PO-Revision-Date: 2008-03-22 22:21+0100\n" "Last-Translator: Jose Jorge \n" "Language-Team: português \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: KBabel 1.11.4\n" #: src/manager.c:65 msgid "Enable/disable these quick hints." msgstr "Activar/desactivar estes conselhos." #: src/manager.c:66 msgid "Set player controls and horizontal speed." msgstr "Definir o controlo dos jogadores e a velocidade horizontal." #: src/manager.c:67 msgid "Here you may customize the graphical appearance of LTris." msgstr "Aqui pode configurar a aparência gráfica do LTris." #: src/manager.c:68 msgid "Audio Settings." msgstr "Opções Ãudio." #: src/manager.c:69 msgid "Get back to nasty work." msgstr "Voltar ao trabalho chato." #: src/manager.c:70 msgid "Setup and run a cool game!" msgstr "Configurar e iniciar um bom jogo!" #: src/manager.c:71 msgid "If animations disturb you you may turn them off." msgstr "Se as animações o perturbam pode desligar-las." #: src/manager.c:72 msgid "You may play LTris either in window of fullscreen mode." msgstr "Você pode jogar LTris seja numa janela ou em todo o ecrã." #: src/manager.c:73 msgid "" "If you don't want LTris to consume all of your CPU limit the frame rate." msgstr "" "Se não quizer que LTris gaste todo o seu processador limite o número de " "imagens por segundo." #: src/manager.c:74 msgid "" "Horizontally move block either tile-by-tile or smooth. This is just eye-" "candy and doesn't effect the moving speed at all." msgstr "" "Move horizontalmente o bloco seja passo a passo ou suavemente. Isto é só " "para decorar e não muda nada da velocidade de movimento." #: src/manager.c:75 #, fuzzy msgid "" "Drop block tile-by-tile or smooth.##NOTE: While tile-by-tile allows you to " "move a block below a tile multiple times you'll only be able to do so one " "time when choosing 'smooth'!#See 'Advanced Options/Collision Check' to " "improve this." msgstr "" "Largar bloco ou até a bloco a multiple até um hora Avançado Opções Verificar " "até." #: src/manager.c:76 #, fuzzy msgid "" "The less delay you take the faster the block will horizontally move and the " "more sensitive the input is handled." msgstr "menos bloco e mais input é." #: src/manager.c:77 #, fuzzy msgid "" "Each control value needs a unique key for handling.##Left/Right: horizontal " "movement#Rotate Left/Right: block rotation#Down: faster Dropping#Drop: " "INSTANT drop" msgstr "" "valor a unique key para Esquerda Direita horizontal Rodar Esquerda Direita " "bloco Descer Largar" #: src/manager.c:78 msgid "Let's get it on!!!!" msgstr "Vamos a isto!!!!" #: src/manager.c:79 msgid "Human player names. If you play against CPU it will be named as CPU-x." msgstr "" "Nome dos jogadores humanos. Se jogar contra o computador o nome será CPU-x." #: src/manager.c:80 #, c-format msgid "" "This is your starting level which will be ignored for game 'Figures' (you'll " "always start at level 0 there).##Each starting level up adds you 1.5% score " "in the end!" msgstr "" #: src/manager.c:81 #, c-format msgid "" "Enable/Disable block preview.##If disabled you'll gain 15% score in the end!" msgstr "" "Activar/Desactivar a antevisão do bloco.##Se for desactivada vai obter mais " "15% score no fim!" #: src/manager.c:82 #, fuzzy msgid "" "Shows guiding lines or a shadow of the currently dropping block so you see " "where it'll hit the ground.##This option has no malus/bonus." msgstr "ou a de bloco where Este/Esta não." #: src/manager.c:83 #, fuzzy msgid "Some multiplayer and CPU settings." msgstr "Alguns e CPU configurações." #: src/manager.c:84 #, fuzzy msgid "" "A line send to your opponent's bowl will have this number of holes in it. " "The more holes the harder it will be to remove this line so you should " "choose a low value (e.g. 1 or 2) for long multiplayer games." msgstr "" "A linha até s número de em mais até remover linha a baixo valor e g ou para " "long jogos." #: src/manager.c:85 #, fuzzy msgid "" "This option controls how the holes in the lines are created when more than " "one line is sent. If the option is on, the holes will appear randomly for " "each line. If the option is off, all the lines that are sent in one go, will " "have the holes in the same spot." msgstr "" "Este/Esta em mais um linha é é ligada para linha é desligado all em um em." #: src/manager.c:86 #, fuzzy msgid "" "You'll have to complete more than one line to send any lines to your " "opponent. If this option is enabled all lines will be send else one will be " "substracted.##If disabled:#3 Line send -> 2 lines received##If enabled:#3 " "lines send -> 3 lines received" msgstr "" "Você até completa mais um linha até qualquer até é activado all else um " "desactivado Linha activado" #: src/manager.c:87 #, fuzzy msgid "" "If this option is enabled your opponent will receive all four lines of your " "tetris ignoring the 'Send All' setting." msgstr "é activado all quatro de tetris Enviar Tudo." #: src/manager.c:88 #, fuzzy msgid "" "This is the delay in milliseconds the CPU waits before dropping a block." msgstr "Este/Esta é em milisegundos CPU a bloco." #: src/manager.c:89 #, fuzzy msgid "" "The more aggressive the style is the more priority is put on completing " "multiple lines at the expense of a balanced bowl contents." msgstr "mais estilo é mais prioridade é ligada multiple nos de a." #: src/manager.c:90 msgid "Some advanced options." msgstr "Algumas opções avançadas." #: src/manager.c:91 msgid "" "Test the CPU analyze algorithm in cpu.c and give an average score for a " "number of games." msgstr "" "Testar o algoritmo de análise do computador em cpu.c e dar o resultado médio " "para um certo número de jogos." #: src/manager.c:92 #, fuzzy msgid "" "If you turn visualization off the results will be computed faster. If you " "turn them on you can see a general game behaviour and judge the algorithm by " "this behaviour." msgstr "desligado ligada a geral jogo e." #: src/manager.c:93 #, fuzzy msgid "" "There are basically three different game types:##CLASSIC:#The classic tetris " "game. Starts with an empty bowl and goes as long as you make it.#FIGURES:" "#Each level a nice figure will be added to the ground of you bowl. From " "level 7-12 there will be randomly appearing single tiles and from level " "13-... there will be whole lines appearing at the bottom of your bowl. Fun!" "#TWO/THREE-PLAYER:#Either play against other humans or CPU. If you complete " "multiple lines they'll be send to your opponents according to the " "multiplayer settings you made.##And in DEMO you can see your CPU do the " "work. So relax! ;-)" msgstr "" "jogo tetris jogo Inicia com vazio e long make level a nice até de De level " "single e de level inteira nos fundo de reproduzir outros ou CPU completa " "multiple até até configurações em CPU" #: src/manager.c:99 #, fuzzy msgid "" "If you turn this on the background will change every level else it's always " "the same." msgstr "ligada fundo modificar level else s sempre." #: src/manager.c:100 #, fuzzy msgid "" "If you enable this option the keystate of either the 'Down' key or all the " "keys are cleared so you can't accidently move the next block." msgstr "de Descer key ou all compensada t bloco." #: src/manager.c:101 #, fuzzy msgid "" "If this is enabled the preview in Two-Player is centered in the middle of " "the screen instead that one is drawn at the bottom and one at the top." msgstr "" "é activado antevisão em Dois Jogador é em de ecrã um é nos fundo e um nos " "topo." #: src/manager.c:102 msgid "" "This option is only useful when 'Graphics/Drop' is 'Smooth'#(In opposite to " "'Tile-By-Tile' the block is inserted as soon as it hits the ground giving no " "possibility to move the block below another one.)#If you set this option to " "'Async' you may move the block below others but on the cost of slight " "graphical errors." msgstr "" #: src/manager.c:107 msgid "" "In expert mode the propabilities for the next blocks are uneven to give a " "block that is most likely difficult to fit anywhere. The game becomes really " "hard by this so all score is doubled in the end." msgstr "" "Em modo perito a probabilidade de obter um bloco que não cabe bem é " "superior. O jogo fica muito mais difícil por isso todas as pontuações são " "dobradas no fim." #: src/manager.c:110 msgid "" "If ON all players will get exactly the same blocks. So there is no " "disadvantage to any player due to random blocks. This does not work in " "expert mode as the block selection depends on your actions there." msgstr "" "Se ACTIVADO todos os jogadores vão obter exactamente os mesmos blocos. Assim " "não haverá desvantagem para algum jogador devido aos blocos aleatórios. Isto " "não funciona em modo perito pois neste mode a selecção dos blocos depende " "das suas acções." #: src/manager.c:139 src/manager.c:140 msgid "" msgstr "" #: src/manager.c:140 #, c-format msgid "You cannot delete '%s'!\n" msgstr "Você não pode apagar '%s'!\n" #: src/manager.c:209 msgid "No Limit" msgstr "Sem Limite" #: src/manager.c:209 msgid "50 FPS" msgstr "50 IPS" #: src/manager.c:209 msgid "100 FPS" msgstr "100 IPS" #: src/manager.c:209 msgid "200 FPS" msgstr "200 IPS" #: src/manager.c:210 msgid "Defensive" msgstr "Defensivo" #: src/manager.c:210 msgid "Normal" msgstr "Normal" #: src/manager.c:210 msgid "Aggressive" msgstr "Agressivo" #: src/manager.c:210 msgid "Kamikaze" msgstr "Doido" #: src/manager.c:211 src/manager.c:322 src/manager.c:332 src/manager.c:352 #: src/manager.c:354 src/manager.c:356 src/manager.c:363 src/manager.c:366 #: src/manager.c:367 src/manager.c:368 src/manager.c:426 src/manager.c:430 #: src/manager.c:435 msgid "Off" msgstr "Desligado" #: src/manager.c:211 msgid "Shadow" msgstr "Sombra" #: src/manager.c:211 msgid "Lines" msgstr "Linhas" #: src/manager.c:212 msgid "None" msgstr "Nenhum" #: src/manager.c:212 src/value.c:44 msgid "Down" msgstr "Descer" #: src/manager.c:212 msgid "All" msgstr "Tudo" #: src/manager.c:278 msgid "Menu" msgstr "Menu" #: src/manager.c:279 src/manager.c:301 src/manager.c:314 msgid "Graphics" msgstr "Gráficos" #: src/manager.c:280 src/manager.c:295 msgid "New Game" msgstr "Novo Jogo" #: src/manager.c:281 src/manager.c:300 src/manager.c:313 msgid "Controls" msgstr "Controlo" #: src/manager.c:282 src/manager.c:375 msgid "Player1" msgstr "Jogador1" #: src/manager.c:283 src/manager.c:376 msgid "Player2" msgstr "Jogador2" #: src/manager.c:284 src/manager.c:377 msgid "Player3" msgstr "Jogador3" #: src/manager.c:285 src/manager.c:359 msgid "Multiplayer Options" msgstr "Opções jogadores múltiplos" #: src/manager.c:286 src/manager.c:308 msgid "Advanced Options" msgstr "Opções Avançadas" #: src/manager.c:288 src/manager.c:298 msgid "Options" msgstr "Opções" #: src/manager.c:291 src/manager.c:303 src/manager.c:305 src/manager.c:315 #: src/manager.c:316 msgid "Audio" msgstr "Ãudio" #: src/manager.c:310 src/menu.c:171 msgid "Quit" msgstr "Sair" #: src/manager.c:318 src/manager.c:329 src/manager.c:342 src/manager.c:361 #: src/manager.c:373 src/manager.c:381 src/manager.c:414 src/manager.c:419 #: src/manager.c:424 src/manager.c:438 src/menu.c:168 msgid "Back" msgstr "Voltar" #: src/manager.c:322 msgid "Sound:" msgstr "Som:" #: src/manager.c:322 src/manager.c:332 src/manager.c:352 src/manager.c:354 #: src/manager.c:356 src/manager.c:363 src/manager.c:366 src/manager.c:367 #: src/manager.c:368 src/manager.c:426 src/manager.c:430 src/manager.c:435 msgid "On" msgstr "Ligado" #: src/manager.c:325 msgid "Volume:" msgstr "Nivel:" #: src/manager.c:332 msgid "Animations:" msgstr "Animações:" #: src/manager.c:333 msgid "Move:" msgstr "Mover:" #: src/manager.c:333 src/manager.c:334 msgid "Tile By Tile" msgstr "Passo a Passo" #: src/manager.c:333 src/manager.c:334 msgid "Smooth" msgstr "Suave" #: src/manager.c:334 src/manager.c:388 src/manager.c:394 src/manager.c:400 msgid "Drop:" msgstr "Largar:" #: src/manager.c:335 msgid "Change Background:" msgstr "Modificar o Fundo:" #: src/manager.c:335 msgid "Yes" msgstr "Sim" #: src/manager.c:335 msgid "No" msgstr "Não" #: src/manager.c:337 msgid "Display:" msgstr "Vídeo:" #: src/manager.c:337 msgid "Window" msgstr "Janela" #: src/manager.c:337 msgid "Fullscreen" msgstr "Todo o Ecrã" #: src/manager.c:340 msgid "Frame Rate:" msgstr "Velocidade:" #: src/manager.c:344 msgid "Start Game" msgstr "Iniciar o Jogo" #: src/manager.c:346 msgid "1st Player:" msgstr "1ro Jogador:" #: src/manager.c:347 msgid "2nd Player:" msgstr "2do Jogador:" #: src/manager.c:348 msgid "3rd Player:" msgstr "3ro Jogador:" #: src/manager.c:350 msgid "Game:" msgstr "Jogo:" #: src/manager.c:351 msgid "Starting Level:" msgstr "Nível de Inicio:" #: src/manager.c:352 msgid "Preview:" msgstr "Antevisão:" #: src/manager.c:353 msgid "Help:" msgstr "Ajuda:" #: src/manager.c:354 msgid "Expert Mode:" msgstr "Modo Perito:" #: src/manager.c:356 msgid "Slow:" msgstr "Lento:" #: src/manager.c:363 msgid "Same Blocks For All:" msgstr "Mesmos Blocos Para Todos:" #: src/manager.c:365 msgid "Holes:" msgstr "Buracos:" #: src/manager.c:366 msgid "Random Holes:" msgstr "Buracos Aleatórios:" #: src/manager.c:367 msgid "Send All Lines:" msgstr "Enviar Todas as Linhas:" #: src/manager.c:368 msgid "Always Send Tetris:" msgstr "Sempre Enviar Tetris:" #: src/manager.c:370 msgid "CPU Style:" msgstr "Estilo de Computador:" #: src/manager.c:371 msgid "CPU Drop Delay:" msgstr "Atraso ao Largar do Computador:" #: src/manager.c:379 msgid "Horizontal Delay:" msgstr "Atraso Horizontal:" #: src/manager.c:383 src/manager.c:389 src/manager.c:395 msgid "Left:" msgstr "Esquerda:" #: src/manager.c:384 src/manager.c:390 src/manager.c:396 msgid "Right:" msgstr "Direita:" #: src/manager.c:385 src/manager.c:391 src/manager.c:397 msgid "Rotate Left:" msgstr "Rodar Esquerda:" #: src/manager.c:386 src/manager.c:392 src/manager.c:398 msgid "Rotate Right:" msgstr "Rodar Direita:" #: src/manager.c:387 src/manager.c:393 src/manager.c:399 msgid "Down:" msgstr "Descer:" #: src/manager.c:426 msgid "Quick Help:" msgstr "Ajuda Rápida:" #: src/manager.c:429 msgid "Clear Keystate:" msgstr "Limpar Teclas:" #: src/manager.c:430 msgid "Center Preview:" msgstr "Centrar Antevisão:" #: src/manager.c:431 msgid "Collision Check:" msgstr "Verificar Colisões:" #: src/manager.c:431 msgid "Sync" msgstr "Síncrono" #: src/manager.c:431 msgid "Async" msgstr "Assíncrono" #: src/manager.c:434 msgid "Test CPU Algorithm" msgstr "Testar o Algoritmo do Computador" #: src/manager.c:435 msgid "Visualization" msgstr "Visualização" #: src/tetris.c:128 msgid "y" msgstr "" #: src/tetris.c:129 #, fuzzy msgid "n" msgstr "Ligado" #: src/tetris.c:357 src/main.c:56 msgid "Demo" msgstr "Demonstração" #: src/tetris.c:358 src/main.c:57 msgid "Classic" msgstr "Clássico" #: src/tetris.c:359 src/main.c:58 msgid "Figures" msgstr "Figuras" #: src/tetris.c:360 src/tetris.c:361 msgid "Two-Player" msgstr "Dois Jogadores" #: src/tetris.c:362 src/tetris.c:363 src/tetris.c:364 msgid "Three-Player" msgstr "Três Jogadores" #: src/tetris.c:405 msgid "End Game? y/n" msgstr "Terminar o Jogo? y/n" #: src/bowl.c:523 src/bowl.c:524 msgid "Game Over" msgstr "Fim do Jogo" #: src/bowl.c:1231 #, c-format msgid "%i Lvl: %i" msgstr "%i Nvl: %i" #: src/bowl.c:1477 msgid "Player:" msgstr "Jogador:" #: src/bowl.c:1481 msgid "Score:" msgstr "Pontuação:" #: src/bowl.c:1483 msgid "Lines:" msgstr "Linhas:" #: src/chart.c:186 msgid "Name Level Score" msgstr "Nome Nível Pontuação" #: src/chart.c:211 msgid "Level" msgstr "Nível" #: src/main.c:59 msgid "Vs Human" msgstr "Contra um Humano" #: src/main.c:60 msgid "Vs CPU" msgstr "Contra o Computador" #: src/main.c:61 msgid "Vs Human&Human" msgstr "Contra um Humano&Humano" #: src/main.c:62 msgid "Vs Human&CPU" msgstr "Contra um Humano&Computador" #: src/main.c:63 msgid "Vs CPU&CPU" msgstr "Contra um Computador&Computador" #: src/value.c:40 msgid "Space" msgstr "Espaço" #: src/value.c:41 msgid "Left" msgstr "Esquerda" #: src/value.c:42 msgid "Right" msgstr "Direita" #: src/value.c:43 msgid "Up" msgstr "Subir" #: src/value.c:45 msgid "Right Shift" msgstr "Shift Direita" #: src/value.c:46 msgid "Left Shift" msgstr "Shift Esquerda" #: src/value.c:47 msgid "Right Ctrl" msgstr "Ctrl Direita" #: src/value.c:48 msgid "Left Ctrl" msgstr "Ctrl Esquerda" #: src/value.c:49 msgid "Right Alt" msgstr "Alt Direita" #: src/value.c:50 msgid "Left Alt" msgstr "Alt Esquerda" #: src/value.c:51 msgid "Insert" msgstr "Inserir" #: src/value.c:52 msgid "End" msgstr "Fim" #: src/value.c:53 msgid "PageUp" msgstr "Página Anterior" #: src/value.c:54 msgid "PageDown" msgstr "Página Seguinte" #: src/value.c:55 msgid "Home" msgstr "Inicio" ltris-1.0.19/po/tr.po0000664000175000017500000004741212233753110011272 00000000000000# translation of ltris.po to Turkce # Copyright (C) YEAR Michael Speck # This file is distributed under the same license as the PACKAGE package. # # Server Acim , 2006. msgid "" msgstr "" "Project-Id-Version: ltris\n" "Report-Msgid-Bugs-To: lgames.sf.net/contact.php\n" "POT-Creation-Date: 2013-10-29 16:37+0100\n" "PO-Revision-Date: 2006-02-05 15:08+0200\n" "Last-Translator: Server Acim \n" "Language-Team: Turkce \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11\n" #: src/manager.c:65 msgid "Enable/disable these quick hints." msgstr "Bu hızlı ip uclarını etkinlestir/etkisizlestir." #: src/manager.c:66 msgid "Set player controls and horizontal speed." msgstr "Oyuncu kontrollerini ve yatay hızı ayarla." #: src/manager.c:67 msgid "Here you may customize the graphical appearance of LTris." msgstr "LTris'in grafik gorunumunu buradan ozellestirebilirsiniz." #: src/manager.c:68 msgid "Audio Settings." msgstr "Ses Ayarları" #: src/manager.c:69 msgid "Get back to nasty work." msgstr "Calısmaya geri don." #: src/manager.c:70 msgid "Setup and run a cool game!" msgstr "Ayarla ve harika bir oyun calıstır." #: src/manager.c:71 msgid "If animations disturb you you may turn them off." msgstr "Eger animasyonlar seni rahatsız ederse onları kapatabilirsin." #: src/manager.c:72 msgid "You may play LTris either in window of fullscreen mode." msgstr "LTris'i tam ekran modundaki pencerede de oynayabilirsin." #: src/manager.c:73 msgid "" "If you don't want LTris to consume all of your CPU limit the frame rate." msgstr "" "Eger LTris'in CPU'nun tumunu harcamasını istemiyorsan cerceve oranını " "sınırla." #: src/manager.c:74 msgid "" "Horizontally move block either tile-by-tile or smooth. This is just eye-" "candy and doesn't effect the moving speed at all." msgstr "" "Yatay olarak obegi doseyerek veya duzgun tası. Bu sadece gorsel bir unsurdur " "ve hareket hızını tam olarak etkilemez." #: src/manager.c:75 msgid "" "Drop block tile-by-tile or smooth.##NOTE: While tile-by-tile allows you to " "move a block below a tile multiple times you'll only be able to do so one " "time when choosing 'smooth'!#See 'Advanced Options/Collision Check' to " "improve this." msgstr "" "Obegi doseyerek veya duzgun olarak bırak. ##DIKKAT: Doseye doseye gitmek " "sizin obegi birden fazla defa asagıya tasımanıza izin verir eger duzgun'u " "secerseniz bu islemi sadece bir kez yapabilirsiniz !#Bakınız Bunu " "iyilestirmek icin Gelismis Secenekler / Cakısma Kontrolu." #: src/manager.c:76 msgid "" "The less delay you take the faster the block will horizontally move and the " "more sensitive the input is handled." msgstr "" "Obegi ne kadar yatay olarak hızlı hareket ettirirseniz daha az gecikme " "olacak ve tanıtılan giris daha hassaslasacaktır." #: src/manager.c:77 msgid "Delay for vertical movement when using Down key." msgstr "" #: src/manager.c:78 #, fuzzy msgid "" "Left/Right: horizontal movement#Rotate Left/Right: block rotation#Down: " "faster Dropping#Drop: INSTANT drop" msgstr "" "Her kontrol degerinin tanıtılmak icin bir anahtara ihtiyacı vardır. ##Sol/" "Sag: yatay hareket.#Dondur Sol/Sag: donusu engelle#Asagı:daha hızlı " "bırakıs#Bırak ANIDEN bırak" #: src/manager.c:79 msgid "Key used to pause and unpause a game." msgstr "" #: src/manager.c:80 msgid "Let's get it on!!!!" msgstr "Devam edelim!!!!!" #: src/manager.c:81 msgid "Human player names. If you play against CPU it will be named as CPU-x." msgstr "" "Canlı oyuncu isimleri. eger islemciye karsı oynarsanız o CPU-x olarak " "adlandırılacaktır." #: src/manager.c:82 #, fuzzy, c-format msgid "" "This is your starting level which will be ignored for game 'Figures' (you'll " "always start at level 0 there).##Each starting level up adds you 1.5% score " "in the end!" msgstr "" "Bu sizin oyun dısı tutulacak olan baslangıc seviyenizdir.Burada daima 0 " "seviyesinde baslayacaksınız. ##Her baslangıc seviyesi oyun sonunda puanınıza " "yuzde 1.5 oranında eklenecektir." #: src/manager.c:83 #, fuzzy, c-format msgid "" "Enable/Disable block preview.##If disabled you'll gain 15% score in the end!" msgstr "Obek onizlemesini Etkinlestir/Etkisizlestir." #: src/manager.c:84 msgid "" "Shows guiding lines or a shadow of the currently dropping block so you see " "where it'll hit the ground.##This option has no penalty/bonus." msgstr "" "Rehber satırları veya su anda dusen obegi gosterir boylece nerede yere " "dustugunu gorursun. $$Bu secenegin bonusu yoktur." #: src/manager.c:85 msgid "Some multiplayer and CPU settings." msgstr "Bazı coklu oyuncular ve islemci ayarları." #: src/manager.c:86 msgid "" "A line send to your opponent's bowl will have this number of holes in it. " "The more holes the harder it will be to remove this line so you should " "choose a low value (e.g. 1 or 2) for long multiplayer games." msgstr "" "Rakibinizin bolgesine gondereceginiz bir hat icindeki deliklerin sayısını " "alacaktır. Delikler cogaldıkca zorluk derecesi artacak bu hattı cıkarmak " "zorunda kalacaktır, iste bu yuzden coklu oyuncu secilen oyunlarda 1 veya 2 " "gibi daha dusuk bir deger secmelisiniz." #: src/manager.c:87 msgid "" "This option controls how the holes in the lines are created when more than " "one line is sent. If the option is on, the holes will appear randomly for " "each line. If the option is off, all the lines that are sent in one go, will " "have the holes in the same spot." msgstr "" "Bu secenek, birden fazla hat gonderildiginde hatlardaki deliklerin nasıl " "yaratılacagını kontrol edecektir. Eger bu secenek acıksa, her hat icin " "delikler rastgele gozukecektir. Eger bu secenek kapalıysa, tek basına " "gonderilen tum hatlar aynı lekedeki hatları alacaklardır." #: src/manager.c:88 msgid "" "You'll have to complete more than one line to send any lines to your " "opponent. If this option is enabled all lines will be send else one will be " "substracted.##If disabled:#3 Line send -> 2 lines received##If enabled:#3 " "lines send -> 3 lines received" msgstr "" "Rakibine herhangi bir hat gondermek istiyorsan birden fazla hattı " "tamamlamalısın. Eger bu secenek etkinlestirilmis ise birisi geri cekilmis " "olsa bile tum hatlar gonderilmis olacaktır.##eger etkinlestirilmis ise: #3 " "Hat gonderildi -> 2 hat alındı##eger etkinlestirilmis ise: #3 hatlar " "gonderildi -> 3 hat alındı" #: src/manager.c:89 msgid "" "If this option is enabled your opponent will receive all four lines of your " "tetris ignoring the 'Send All' setting." msgstr "" "Eger bu secenek etkinlestirilmis ise rakibiniz tetris'in 'Hepsini Gonder' " "ayarını yok saydıgı tum dort hattı da alacaktır." #: src/manager.c:90 msgid "" "This is the delay in milliseconds the CPU waits before dropping a block." msgstr "" "Islemcinin bir obegi bırakmadan once bekletmesinden kaynaklanan milisaniye " "oranındaki bir gecikmedir." #: src/manager.c:91 msgid "" "The more aggressive the style is the more priority is put on completing " "multiple lines at the expense of a balanced bowl contents." msgstr "" "Tarz ne kadar gerilirse, dengeli hat iceriklerinin saglıklı bir sekilde " "coklu hatların tamamlanmasındaki oncelik de o kadar artar." #: src/manager.c:92 msgid "Some advanced options." msgstr "Bazı gelismis secenekler." #: src/manager.c:93 msgid "" "Test the CPU analyze algorithm in cpu.c and give an average score for a " "number of games." msgstr "" "cpu . c'deki Islemci analiz cozum yolunu test edin. ve oyun sayıları icin " "aritmetik ortalama puanı verin." #: src/manager.c:94 msgid "" "If you turn visualization off the results will be computed faster. If you " "turn them on you can see a general game behaviour and judge the algorithm by " "this behaviour." msgstr "" "Eger gorunumu kapatırsanız sonuclar daha hızlı hesaplanacaktır. Eger onları " "acarsanız genel bir oyun davranısı gorebilir ve cozum yolunu bu davranısa " "gore yargılayabilirsiniz." #: src/manager.c:95 msgid "" "There are basically three different game types:##CLASSIC:#The classic tetris " "game. Starts with an empty bowl and goes as long as you make it.#FIGURES:" "#Each level a nice figure will be added to the ground of you bowl. From " "level 7-12 there will be randomly appearing single tiles and from level " "13-... there will be whole lines appearing at the bottom of your bowl. Fun!" "#TWO/THREE-PLAYER:#Either play against other humans or CPU. If you complete " "multiple lines they'll be send to your opponents according to the " "multiplayer settings you made.##And in DEMO you can see your CPU do the " "work. So relax! ;-)" msgstr "" "Temel olarak uc farklı oyun turu vardır:##KLASIK:#Klasik tetris oyunu. Bos " "bir kase ile baslar ve siz oyunu surdurdukce bu kase dolar.#SEKILLER:#Her " "seviye de guzel bir sekil kasenizin dibine eklenecektir. 7-12 arasındaki " "seviyelerden itibaren rastgele gorunen tek dosemeler olarak ve seviye 13'ten " "sonra kasenizin dibinde gozuken daha yogun hatlar olacaktır. Eglenmenize " "bakın! #IKI/UC OYUNCULU:#Insanlara karsı veya islemciye karsı oynana oyun. " "Coklu hatları tamamlarsanız, coklu oyuncu ayarlarınıza baglı olarak, bu veri " "rakibinize gonderilecektir.##Ve DEMO'da islemcinizin oynadıgını " "goreceksiniz. Bu yuzden, rahat olun! -)" #: src/manager.c:101 msgid "" "If you turn this on the background will change every level else it's always " "the same." msgstr "" "Eger bunu acarsanız arkaplanınız her seviyede degisecek, eger acmazsanız " "aynı kalacaktır." #: src/manager.c:102 msgid "" "If you enable this option the keystate of either the 'Down' key or all the " "keys are cleared so you can't accidently move the next block." msgstr "" "Eger bu secenegi etkinlestirirseniz ya 'Asagı' tusunuz veya tum tus " "takımınız temizlenecek boylece kazara bir sonraki blogu oynatamayacaksınız." #: src/manager.c:103 msgid "" "If this is enabled the preview in Two-Player is centered in the middle of " "the screen instead that one is drawn at the bottom and one at the top." msgstr "" "Eger bu etkinlestirilmisse Iki-Oyuncu seceneginde oyunculardan birinin " "altta, digerinin ustte gosterilmesi yerine, onizleme gorunumu ekranın " "ortasında olacaktır." #: src/manager.c:104 msgid "" "This option is only useful when 'Graphics/Drop' is 'Smooth'#(In opposite to " "'Tile-By-Tile' the block is inserted as soon as it hits the ground giving no " "possibility to move the block below another one.)#If you set this option to " "'Async' you may move the block below others but on the cost of slight " "graphical errors." msgstr "" "Bu secenek 'sadece Sekiller/Bırak' secenegi 'Duzgun'e ayarlanmıssa ise yarar#" "(Doseye-Doseye'nin tersine blok dibe baska bir yere kıpırdayamayacak sekilde " "yerlestirilmistir.)#Eger bu secenegi 'Esitsiz'e isaretlerseniz bazı kucuk " "gorsel hataları goze almak pahasına blogu asagıya hareket ettirebilirsiniz." #: src/manager.c:109 #, c-format msgid "" "In expert mode the most unsuitable piece of the current bag (a bag is a set " "of all 7 randomly sorted basic pieces) is dealt out next. This option only " "works for single player. There is a 50% score bonus in the end." msgstr "" #: src/manager.c:141 src/manager.c:142 msgid "" msgstr "" #: src/manager.c:142 #, c-format msgid "You cannot delete '%s'!\n" msgstr "Bunu silemezsiniz %s !\n" #: src/manager.c:212 msgid "No Limit" msgstr "Sınır yok" #: src/manager.c:212 msgid "50 FPS" msgstr "50 FPS" #: src/manager.c:212 msgid "100 FPS" msgstr "100 FPS" #: src/manager.c:212 msgid "200 FPS" msgstr "200 FPS" #: src/manager.c:213 msgid "Defensive" msgstr "Savunmalı" #: src/manager.c:213 msgid "Normal" msgstr "Normal" #: src/manager.c:213 msgid "Aggressive" msgstr "Gergin" #: src/manager.c:213 msgid "Kamikaze" msgstr "Kamikaze" #: src/manager.c:214 src/manager.c:324 src/manager.c:334 src/manager.c:354 #: src/manager.c:356 src/manager.c:358 src/manager.c:367 src/manager.c:368 #: src/manager.c:369 src/manager.c:436 src/manager.c:440 src/manager.c:445 msgid "Off" msgstr "Kapalı" #: src/manager.c:214 msgid "Shadow" msgstr "Golge" #: src/manager.c:214 msgid "Lines" msgstr "Hatlar" #: src/manager.c:215 msgid "None" msgstr "Hicbiri" #: src/manager.c:215 src/value.c:44 msgid "Down" msgstr "Asagı" #: src/manager.c:215 msgid "All" msgstr "Hepsi" #: src/manager.c:280 msgid "Menu" msgstr "Menu" #: src/manager.c:281 src/manager.c:303 src/manager.c:316 msgid "Graphics" msgstr "Cizgeleme" #: src/manager.c:282 src/manager.c:297 msgid "New Game" msgstr "Yeni Oyun" #: src/manager.c:283 src/manager.c:302 src/manager.c:315 msgid "Controls" msgstr "Denetimler" #: src/manager.c:284 src/manager.c:411 msgid "Player1" msgstr "Oyuncu1" #: src/manager.c:285 src/manager.c:412 msgid "Player2" msgstr "Oyuncu2" #: src/manager.c:286 src/manager.c:413 msgid "Player3" msgstr "Oyuncu3" #: src/manager.c:287 src/manager.c:361 msgid "Multiplayer Options" msgstr "Cok Oyunculu Secenekler" #: src/manager.c:288 src/manager.c:310 msgid "Advanced Options" msgstr "Gelismis Secenekler" #: src/manager.c:290 src/manager.c:300 msgid "Options" msgstr "Secenekler" #: src/manager.c:293 src/manager.c:305 src/manager.c:307 src/manager.c:317 #: src/manager.c:318 msgid "Audio" msgstr "Ses" #: src/manager.c:312 src/menu.c:171 msgid "Quit" msgstr "Cık" #: src/manager.c:320 src/manager.c:331 src/manager.c:344 src/manager.c:363 #: src/manager.c:374 src/manager.c:419 src/manager.c:424 src/manager.c:429 #: src/manager.c:434 src/manager.c:448 src/menu.c:168 msgid "Back" msgstr "Geri" #: src/manager.c:324 msgid "Sound:" msgstr "Ses:" #: src/manager.c:324 src/manager.c:334 src/manager.c:354 src/manager.c:356 #: src/manager.c:358 src/manager.c:367 src/manager.c:368 src/manager.c:369 #: src/manager.c:436 src/manager.c:440 src/manager.c:445 msgid "On" msgstr "Acık" #: src/manager.c:327 msgid "Volume:" msgstr "Ses Duzeyi:" #: src/manager.c:334 msgid "Animations:" msgstr "Canlandırmalar:" #: src/manager.c:335 msgid "Move:" msgstr "Tası:" #: src/manager.c:335 src/manager.c:336 msgid "Tile By Tile" msgstr "Doseye-Doseye" #: src/manager.c:335 src/manager.c:336 msgid "Smooth" msgstr "Duzgun" #: src/manager.c:336 src/manager.c:382 src/manager.c:388 src/manager.c:394 msgid "Drop:" msgstr "Bırak:" #: src/manager.c:337 msgid "Change Background:" msgstr "Artalanı Degistir:" #: src/manager.c:337 msgid "Yes" msgstr "Evet" #: src/manager.c:337 msgid "No" msgstr "Hayır" #: src/manager.c:339 msgid "Display:" msgstr "Goruntule:" #: src/manager.c:339 msgid "Window" msgstr "Pencere" #: src/manager.c:339 msgid "Fullscreen" msgstr "Tam Ekran" #: src/manager.c:342 msgid "Frame Rate:" msgstr "Cerceve Oranı:" #: src/manager.c:346 msgid "Start Game" msgstr "Oyuna Basla" #: src/manager.c:348 msgid "1st Player:" msgstr "Birinci Oyuncu:" #: src/manager.c:349 msgid "2nd Player:" msgstr "Ikinci Oyuncu:" #: src/manager.c:350 msgid "3rd Player:" msgstr "Ucuncu Oyuncu:" #: src/manager.c:352 msgid "Game:" msgstr "Oyun:" #: src/manager.c:353 msgid "Starting Level:" msgstr "Baslama Duzeyi:" #: src/manager.c:354 msgid "Preview:" msgstr "Onizleme:" #: src/manager.c:355 msgid "Help:" msgstr "Yardım:" #: src/manager.c:356 msgid "Expert Mode:" msgstr "Uzman Kipi:" #: src/manager.c:358 msgid "Slow:" msgstr "Yavas:" #: src/manager.c:366 msgid "Holes:" msgstr "Delikler:" #: src/manager.c:367 msgid "Random Holes:" msgstr "Rasgele Delikler:" #: src/manager.c:368 msgid "Send All Lines:" msgstr "Butun Hatları Gonder:" #: src/manager.c:369 msgid "Always Send Tetris:" msgstr "Her zaman Tetris'i Gonder:" #: src/manager.c:371 msgid "CPU Style:" msgstr "Islemci Tarzı:" #: src/manager.c:372 msgid "CPU Drop Delay:" msgstr "Islemci Bırakma Gecikmesi:" #: src/manager.c:376 msgid "Pause Key:" msgstr "" #: src/manager.c:377 src/manager.c:383 src/manager.c:389 msgid "Left:" msgstr "Sol:" #: src/manager.c:378 src/manager.c:384 src/manager.c:390 msgid "Right:" msgstr "Sag:" #: src/manager.c:379 src/manager.c:385 src/manager.c:391 msgid "Rotate Left:" msgstr "Sola Dondur:" #: src/manager.c:380 src/manager.c:386 src/manager.c:392 msgid "Rotate Right:" msgstr "Saga Dondur:" #: src/manager.c:381 src/manager.c:387 src/manager.c:393 msgid "Down:" msgstr "Asagı:" #: src/manager.c:415 msgid "Horizontal Delay:" msgstr "Yatay Gecikme:" #: src/manager.c:416 #, fuzzy msgid "Vertical Delay:" msgstr "Yatay Gecikme:" #: src/manager.c:436 msgid "Quick Help:" msgstr "Hızlı Yardım:" #: src/manager.c:439 msgid "Clear Keystate:" msgstr "Tusdurumunu Temizle:" #: src/manager.c:440 msgid "Center Preview:" msgstr "Ortada Onizle:" #: src/manager.c:441 msgid "Collision Check:" msgstr "Carpısma Denetimi:" #: src/manager.c:441 msgid "Sync" msgstr "Senkronizasyon" #: src/manager.c:441 msgid "Async" msgstr "Asenkronizasyon" #: src/manager.c:444 msgid "Test CPU Algorithm" msgstr "Islemci Algoritmasını Sına" #: src/manager.c:445 msgid "Visualization" msgstr "Gorsellestirme" #: src/tetris.c:126 msgid "y" msgstr "" #: src/tetris.c:127 #, fuzzy msgid "n" msgstr "Acık" #: src/tetris.c:385 msgid "End Game? y/n" msgstr "Oyun Bitsin mi? e/h" #: src/bowl.c:567 src/bowl.c:568 msgid "Game Over" msgstr "Oyun Bitti" #: src/bowl.c:1281 #, c-format msgid "%i Lvl: %i" msgstr "%i Lvl: %i" #: src/bowl.c:1548 msgid "Player:" msgstr "Oyuncu:" #: src/bowl.c:1552 msgid "Score:" msgstr "Sonuc:" #: src/bowl.c:1554 msgid "Lines:" msgstr "Hatlar:" #: src/chart.c:187 msgid "Name Level Score" msgstr "Isim''''''''''''Seviye''''''''''''Sonuc" #: src/chart.c:212 msgid "Level" msgstr "Seviye" #: src/main.c:66 msgid "Demo" msgstr "Demo" #: src/main.c:67 msgid "Classic" msgstr "Klasik" #: src/main.c:68 msgid "Figures" msgstr "Sekiller" #: src/main.c:69 msgid "Vs Human" msgstr "Vs Insan" #: src/main.c:70 msgid "Vs CPU" msgstr "Vs Islemci" #: src/main.c:71 msgid "Vs Human&Human" msgstr "Vs Insan'a karsı I&nsan" #: src/main.c:72 msgid "Vs Human&CPU" msgstr "Vs Insan'a karsı Isl&emci" #: src/main.c:73 msgid "Vs CPU&CPU" msgstr "Vs Islemci'ye&karsı Islemci" #: src/value.c:40 msgid "Space" msgstr "Bosluk" #: src/value.c:41 msgid "Left" msgstr "Sol" #: src/value.c:42 msgid "Right" msgstr "Sag" #: src/value.c:43 msgid "Up" msgstr "Yukarı" #: src/value.c:45 msgid "Right Shift" msgstr "Sag Oteleme" #: src/value.c:46 msgid "Left Shift" msgstr "Sol Oteleme" #: src/value.c:47 msgid "Right Ctrl" msgstr "Sag Ctrl" #: src/value.c:48 msgid "Left Ctrl" msgstr "Sol Ctrl" #: src/value.c:49 msgid "Right Alt" msgstr "Sag Alt" #: src/value.c:50 msgid "Left Alt" msgstr "Sol Alt" #: src/value.c:51 msgid "Insert" msgstr "Ekle" #: src/value.c:52 msgid "End" msgstr "Son" #: src/value.c:53 msgid "PageUp" msgstr "Yukarı Sayfa" #: src/value.c:54 msgid "PageDown" msgstr "Asagı Sayfa" #: src/value.c:55 msgid "Home" msgstr "Baslangıc" #~ msgid "" #~ "In expert mode the propabilities for the next blocks are uneven to give a " #~ "block that is most likely difficult to fit anywhere. The game becomes " #~ "really hard by this so all score is doubled in the end." #~ msgstr "" #~ "Uzman kipinde gelen bloklar icin olasılıklar bir blogun uyan bir yere " #~ "hareket etmesini imkansız hale getirecek kadar duzensizdir. Oyun bu " #~ "sekilde gercekten zorlasır ve finalde sayı iki katına cıkar." #~ msgid "" #~ "If ON all players will get exactly the same blocks. So there is no " #~ "disadvantage to any player due to random blocks. This does not work in " #~ "expert mode as the block selection depends on your actions there." #~ msgstr "" #~ "ACIK seceneginde tum oyuncular tam olarak aynı obekleri alacaklardır. " #~ "Boylece herhangi bir oyuncunun rastgele bloklara rast gelmesinde bir " #~ "yarar yitimi olmayacaktır. Blok seciminin buradaki islemlerinize baglı " #~ "olması secenegi uzman kipinde calısmaz." #~ msgid "Same Blocks For All:" #~ msgstr "Herkes icin Aynı Bloklar:" #~ msgid "Two-Player" #~ msgstr "Iki-Oyuncu" #~ msgid "Three-Player" #~ msgstr "Uc-Oyuncu" ltris-1.0.19/po/de.po0000664000175000017500000004706412233753110011240 00000000000000# translation of de.po to # translation of de.po to # German translations for ltris package # German messages for ltris. # Copyright (C) 2005 Michael Speck # This file is distributed under the same license as the ltris package. # Michael Speck , 2005. # , 2005. # , 2005. # msgid "" msgstr "" "Project-Id-Version: de\n" "Report-Msgid-Bugs-To: lgames.sf.net/contact.php\n" "POT-Creation-Date: 2013-10-29 16:37+0100\n" "PO-Revision-Date: 2005-10-05 22:46+0200\n" "Last-Translator: \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: KBabel 1.9.1\n" #: src/manager.c:65 msgid "Enable/disable these quick hints." msgstr "Hinweisblasen (de-)aktivieren." #: src/manager.c:66 msgid "Set player controls and horizontal speed." msgstr "Spielerkontrollen und horizontale Geschwindigkeit setzen." #: src/manager.c:67 msgid "Here you may customize the graphical appearance of LTris." msgstr "Hier koennen Sie die grafischen Einstellungen aendern." #: src/manager.c:68 msgid "Audio Settings." msgstr "Audio-Einstellungen" #: src/manager.c:69 msgid "Get back to nasty work." msgstr "Zurueck zur unangenehmen Arbeit." #: src/manager.c:70 msgid "Setup and run a cool game!" msgstr "Spiel einstellen und starten!" #: src/manager.c:71 msgid "If animations disturb you you may turn them off." msgstr "Sollten Sie die Animationen stoeren, koennen Sie sie hier ausschalten." #: src/manager.c:72 msgid "You may play LTris either in window of fullscreen mode." msgstr "" "Sie koennen LTris entweder in einem Fenster oder im Vollbildmodus spielen." #: src/manager.c:73 msgid "" "If you don't want LTris to consume all of your CPU limit the frame rate." msgstr "" "Um zu verhindern das LTris die ganze CPU belastet, sollten Sie die Framerate " "beschraenken." #: src/manager.c:74 msgid "" "Horizontally move block either tile-by-tile or smooth. This is just eye-" "candy and doesn't effect the moving speed at all." msgstr "" "Die horizontale Bewegung eines Blocks ist entweder weich oder stueckweise. " "Das ist lediglich eine grafische Einstellung, die keinen Einfluss auf die " "Geschwindigkeit hat." #: src/manager.c:75 msgid "" "Drop block tile-by-tile or smooth.##NOTE: While tile-by-tile allows you to " "move a block below a tile multiple times you'll only be able to do so one " "time when choosing 'smooth'!#See 'Advanced Options/Collision Check' to " "improve this." msgstr "" "Bloecke fallen entweder weich oder stueckweise.##ACHTUNG: Stueckweiser Fall " "erlaubt, einen Block mehrere Stuecke unter einen anderen zu schieben, bevor " "er aufsetzt. Bei weichem Fall geht das nicht, es sei denn 'Erweiterte " "Optionen/Kollisionstest' ist entsprechend gesetzt." #: src/manager.c:76 msgid "" "The less delay you take the faster the block will horizontally move and the " "more sensitive the input is handled." msgstr "" "Je geringer die Verzoegerung ist, desto sensitiver aber auch schneller " "reagiert der Block." #: src/manager.c:77 msgid "Delay for vertical movement when using Down key." msgstr "" "Verzoegerung fuer vertikale Bewegung wenn die Runter-Taste verwendet wird." #: src/manager.c:78 msgid "" "Left/Right: horizontal movement#Rotate Left/Right: block rotation#Down: " "faster Dropping#Drop: INSTANT drop" msgstr "" "Links/Rechts: horizontale Bewegung#Rotiere Links/Rechts: Block " "Rotation#Runter: schnelleres Fallen#Fall: SOFORTIGES Aufsetzen" #: src/manager.c:79 msgid "Key used to pause and unpause a game." msgstr "Taste zum Pausieren/Fortsetzen des Spiels." #: src/manager.c:80 msgid "Let's get it on!!!!" msgstr "Los geht's!!!" #: src/manager.c:81 msgid "Human player names. If you play against CPU it will be named as CPU-x." msgstr "" "Namen der menschlichen Spieler. Die computergesteuerten heissen immer CPU-x." #: src/manager.c:82 #, fuzzy, c-format msgid "" "This is your starting level which will be ignored for game 'Figures' (you'll " "always start at level 0 there).##Each starting level up adds you 1.5% score " "in the end!" msgstr "" "Startebene (wird ignoriert fuer Spieltyp 'Figuren', das startet immer bei 0)." "##Jede Ebene ueber 0 erhoeht die Endpunktzahlum 1.5%!" #: src/manager.c:83 #, fuzzy, c-format msgid "" "Enable/Disable block preview.##If disabled you'll gain 15% score in the end!" msgstr "" "(De-)aktiviere Anzeige des naechsten Blocks. Falls deaktiviert, gibt es " "einen Bonus von 15% am Ende." #: src/manager.c:84 msgid "" "Shows guiding lines or a shadow of the currently dropping block so you see " "where it'll hit the ground.##This option has no penalty/bonus." msgstr "" "Zeige Fuehrungslinien oder einen Schatten des fallenden Blocks, so dass " "sichtbar wird, wo er auftreffen wird. Diese Option hat keine Strafen/Bonusse." #: src/manager.c:85 msgid "Some multiplayer and CPU settings." msgstr "Einige Mehrspieler- und CPU-Einstellungen." #: src/manager.c:86 msgid "" "A line send to your opponent's bowl will have this number of holes in it. " "The more holes the harder it will be to remove this line so you should " "choose a low value (e.g. 1 or 2) for long multiplayer games." msgstr "" "Anzahl von Loechern in einer Reihe, die zum Gegner geschickt wird. Je mehr " "Loecher, um so schwerer wird es die Reihe wieder abzubauen." #: src/manager.c:87 msgid "" "This option controls how the holes in the lines are created when more than " "one line is sent. If the option is on, the holes will appear randomly for " "each line. If the option is off, all the lines that are sent in one go, will " "have the holes in the same spot." msgstr "" "Diese Option bestimmt wie die Loecher verteilt sind, falls mehrere Reihen " "geschickt werden: Falls 'An', werden die Loecher in jeder Reihe zufaellig " "verteilt sein. Falls 'Aus' werden die Loecher uebereinander liegen und so " "Spalten bilden." #: src/manager.c:88 msgid "" "You'll have to complete more than one line to send any lines to your " "opponent. If this option is enabled all lines will be send else one will be " "substracted.##If disabled:#3 Line send -> 2 lines received##If enabled:#3 " "lines send -> 3 lines received" msgstr "" "Es muss mehr als eine Reihe vervollstaendigt werden, damit sie zum Gegner " "geschickt werden. Ist diese Option aktiv, werden alle Reihen geschickt, " "ansonsten eine abgezogen.##Deaktiviert:#3 Reihen abgebaut -> 2 gesendet." "##Aktiviert:#3 Reihen abgebaut -> 3 gesendet." #: src/manager.c:89 msgid "" "If this option is enabled your opponent will receive all four lines of your " "tetris ignoring the 'Send All' setting." msgstr "" "Falls aktiviert, wird ein Tetris (=4 Reihen) komplett geschickt, ungeachtet " "der 'Sende Alle Reihen'-Einstellung." #: src/manager.c:90 msgid "" "This is the delay in milliseconds the CPU waits before dropping a block." msgstr "" "Verzoegerung in Millisekunden bevor die CPU einen Block schneller fallen " "laesst." #: src/manager.c:91 msgid "" "The more aggressive the style is the more priority is put on completing " "multiple lines at the expense of a balanced bowl contents." msgstr "" "Je aggressiver der Stil, umso mehr Prioritaet wird auf die " "Vervollstaendigung multipler Reihen gelegt, auf Kosten eines ausgeglichenen " "Becherinhalts." #: src/manager.c:92 msgid "Some advanced options." msgstr "Einige erweiterte Einstellungen." #: src/manager.c:93 msgid "" "Test the CPU analyze algorithm in cpu.c and give an average score for a " "number of games." msgstr "" "Testet CPU-Analyse-Algorithmus in cpu.c und gibt eine mittlere Wertung aus." #: src/manager.c:94 msgid "" "If you turn visualization off the results will be computed faster. If you " "turn them on you can see a general game behaviour and judge the algorithm by " "this behaviour." msgstr "" #: src/manager.c:95 msgid "" "There are basically three different game types:##CLASSIC:#The classic tetris " "game. Starts with an empty bowl and goes as long as you make it.#FIGURES:" "#Each level a nice figure will be added to the ground of you bowl. From " "level 7-12 there will be randomly appearing single tiles and from level " "13-... there will be whole lines appearing at the bottom of your bowl. Fun!" "#TWO/THREE-PLAYER:#Either play against other humans or CPU. If you complete " "multiple lines they'll be send to your opponents according to the " "multiplayer settings you made.##And in DEMO you can see your CPU do the " "work. So relax! ;-)" msgstr "" "Es gibt drei verschiedene Spielarten:##KLASSISCH:#Das bekannte Spielprinzip. " "Beginnt mit einem leeren Becher und dauert solange, wie man Reihen abbauen " "kann.#FIGUREN:#Jede Ebene hat eine kleine Figur am Becherboden. In Ebene " "7-12 werden zufaellig kleine Stuecke erscheinen und von 13-20 ganze Linien " "den Inhalt hochschieben. Spassig!#ZWEI/DREI-SPIELER:#Entweder gegen andere " "menschliche Spieler oder den Rechner. Vollstaendige Reihen werden zu den " "Gegnern geschickt, entsprechend der Mehrspieler-Einstellungen.##Und in DEMO " "koennen Sie die CPU alleine spielen sehen. Sehr entspannend. ;-)" #: src/manager.c:101 msgid "" "If you turn this on the background will change every level else it's always " "the same." msgstr "" "Falls aktiv, wird sich der Hintergrund mit jeder neuen Ebene aendern, " "ansonsten bleibt er fuer das ganze Spiel gleich." #: src/manager.c:102 msgid "" "If you enable this option the keystate of either the 'Down' key or all the " "keys are cleared so you can't accidently move the next block." msgstr "" "Falls aktiviert, wird der Status von entweder der Runter- oder von allen " "Tasten bei Aufsetzen eines Blockes geloescht, damit man nicht aus Versehen " "den naechsten Block schon bewegt." #: src/manager.c:103 msgid "" "If this is enabled the preview in Two-Player is centered in the middle of " "the screen instead that one is drawn at the bottom and one at the top." msgstr "" "Zentriert die Block-Vorschau im Zweispielermodus. Falls deaktiviert,befindet " "sich eine Vorschau oben und eine unten." #: src/manager.c:104 msgid "" "This option is only useful when 'Graphics/Drop' is 'Smooth'#(In opposite to " "'Tile-By-Tile' the block is inserted as soon as it hits the ground giving no " "possibility to move the block below another one.)#If you set this option to " "'Async' you may move the block below others but on the cost of slight " "graphical errors." msgstr "" "Nur nuetzlich falls 'Grafik/Fall' auf 'Weich' steht.#(Anders als bei " "'stueckweise' wird der Block sofort bei Auftreffen eingefuegt, ohne die " "Moeglichkeit ihn noch zu bewegen.)#Fuer 'Async' kann der Block wie bei " "'stueckweise' bewegt werden, was aber kleinere grafische Fehler verursacht." #: src/manager.c:109 #, fuzzy, c-format msgid "" "In expert mode the most unsuitable piece of the current bag (a bag is a set " "of all 7 randomly sorted basic pieces) is dealt out next. This option only " "works for single player. There is a 50% score bonus in the end." msgstr "" "Im Expertenmodus wird der unpassendste Stein aus der aktuellen Tasche (eine " "Tasche enthaelt die 7 Basissteine in zufaelliger Reihenfolge)als naechstes " "ausgespielt. Diese Option funktioniert nur in den Einzelspielermodi. Es gibt " "einen 50%% Punktebonus am Ende." #: src/manager.c:141 src/manager.c:142 msgid "" msgstr "" #: src/manager.c:142 #, c-format msgid "You cannot delete '%s'!\n" msgstr "Sie koennen '%s' nicht loeschen!\n" #: src/manager.c:212 msgid "No Limit" msgstr "Ohne Limit" #: src/manager.c:212 msgid "50 FPS" msgstr "50 FPS" #: src/manager.c:212 msgid "100 FPS" msgstr "100 FPS" #: src/manager.c:212 msgid "200 FPS" msgstr "200 FPS" #: src/manager.c:213 msgid "Defensive" msgstr "Defensiv" #: src/manager.c:213 msgid "Normal" msgstr "Normal" #: src/manager.c:213 msgid "Aggressive" msgstr "Aggressiv" #: src/manager.c:213 msgid "Kamikaze" msgstr "Kamikaze" #: src/manager.c:214 src/manager.c:324 src/manager.c:334 src/manager.c:354 #: src/manager.c:356 src/manager.c:358 src/manager.c:367 src/manager.c:368 #: src/manager.c:369 src/manager.c:436 src/manager.c:440 src/manager.c:445 msgid "Off" msgstr "Aus" #: src/manager.c:214 msgid "Shadow" msgstr "Schatten" #: src/manager.c:214 msgid "Lines" msgstr "Linien" #: src/manager.c:215 msgid "None" msgstr "Keine" #: src/manager.c:215 src/value.c:44 msgid "Down" msgstr "Runter" #: src/manager.c:215 msgid "All" msgstr "Alle" #: src/manager.c:280 msgid "Menu" msgstr "Menue" #: src/manager.c:281 src/manager.c:303 src/manager.c:316 msgid "Graphics" msgstr "Grafik" #: src/manager.c:282 src/manager.c:297 msgid "New Game" msgstr "Neues Spiel" #: src/manager.c:283 src/manager.c:302 src/manager.c:315 msgid "Controls" msgstr "Kontrollen" #: src/manager.c:284 src/manager.c:411 msgid "Player1" msgstr "Spieler1" #: src/manager.c:285 src/manager.c:412 msgid "Player2" msgstr "Spieler2" #: src/manager.c:286 src/manager.c:413 msgid "Player3" msgstr "Spieler3" #: src/manager.c:287 src/manager.c:361 msgid "Multiplayer Options" msgstr "Mehrspieler-Optionen" #: src/manager.c:288 src/manager.c:310 msgid "Advanced Options" msgstr "Erweiterte Optionen" #: src/manager.c:290 src/manager.c:300 msgid "Options" msgstr "Optionen" #: src/manager.c:293 src/manager.c:305 src/manager.c:307 src/manager.c:317 #: src/manager.c:318 msgid "Audio" msgstr "Audio" #: src/manager.c:312 src/menu.c:171 msgid "Quit" msgstr "Beenden" #: src/manager.c:320 src/manager.c:331 src/manager.c:344 src/manager.c:363 #: src/manager.c:374 src/manager.c:419 src/manager.c:424 src/manager.c:429 #: src/manager.c:434 src/manager.c:448 src/menu.c:168 msgid "Back" msgstr "Zurueck" #: src/manager.c:324 msgid "Sound:" msgstr "Sound:" #: src/manager.c:324 src/manager.c:334 src/manager.c:354 src/manager.c:356 #: src/manager.c:358 src/manager.c:367 src/manager.c:368 src/manager.c:369 #: src/manager.c:436 src/manager.c:440 src/manager.c:445 msgid "On" msgstr "An" #: src/manager.c:327 msgid "Volume:" msgstr "Lautstaerke:" #: src/manager.c:334 msgid "Animations:" msgstr "Animationen:" #: src/manager.c:335 msgid "Move:" msgstr "Bewegung:" #: src/manager.c:335 src/manager.c:336 msgid "Tile By Tile" msgstr "Stueckweise" #: src/manager.c:335 src/manager.c:336 msgid "Smooth" msgstr "Weich" #: src/manager.c:336 src/manager.c:382 src/manager.c:388 src/manager.c:394 msgid "Drop:" msgstr "Fall:" #: src/manager.c:337 msgid "Change Background:" msgstr "Hintergrund aendern:" #: src/manager.c:337 msgid "Yes" msgstr "Ja" #: src/manager.c:337 msgid "No" msgstr "Nein" #: src/manager.c:339 msgid "Display:" msgstr "Anzeige:" #: src/manager.c:339 msgid "Window" msgstr "Fenster" #: src/manager.c:339 msgid "Fullscreen" msgstr "Vollbild" #: src/manager.c:342 msgid "Frame Rate:" msgstr "Frame-Rate:" #: src/manager.c:346 msgid "Start Game" msgstr "Starte Spiel" #: src/manager.c:348 msgid "1st Player:" msgstr "1. Spieler:" #: src/manager.c:349 msgid "2nd Player:" msgstr "2. Spieler:" #: src/manager.c:350 msgid "3rd Player:" msgstr "3. Spieler:" #: src/manager.c:352 msgid "Game:" msgstr "Spieltyp:" #: src/manager.c:353 msgid "Starting Level:" msgstr "Startebene:" #: src/manager.c:354 msgid "Preview:" msgstr "Vorschau:" #: src/manager.c:355 msgid "Help:" msgstr "Hilfe:" #: src/manager.c:356 msgid "Expert Mode:" msgstr "Experten-Modus" #: src/manager.c:358 msgid "Slow:" msgstr "Langsam:" #: src/manager.c:366 msgid "Holes:" msgstr "Loecher:" #: src/manager.c:367 msgid "Random Holes:" msgstr "Zufaellige Loecher:" #: src/manager.c:368 msgid "Send All Lines:" msgstr "Sende Alle Reihen:" #: src/manager.c:369 msgid "Always Send Tetris:" msgstr "Sende Immer Tetris:" #: src/manager.c:371 msgid "CPU Style:" msgstr "CPU Stil:" #: src/manager.c:372 msgid "CPU Drop Delay:" msgstr "CPU Verzoegerung:" #: src/manager.c:376 msgid "Pause Key:" msgstr "Pausetaste:" #: src/manager.c:377 src/manager.c:383 src/manager.c:389 msgid "Left:" msgstr "Links:" #: src/manager.c:378 src/manager.c:384 src/manager.c:390 msgid "Right:" msgstr "Rechts:" #: src/manager.c:379 src/manager.c:385 src/manager.c:391 msgid "Rotate Left:" msgstr "Rotiere Links:" #: src/manager.c:380 src/manager.c:386 src/manager.c:392 msgid "Rotate Right:" msgstr "Rotiere Rechts:" #: src/manager.c:381 src/manager.c:387 src/manager.c:393 msgid "Down:" msgstr "Runter:" #: src/manager.c:415 msgid "Horizontal Delay:" msgstr "Hori. Verzoegerung:" #: src/manager.c:416 msgid "Vertical Delay:" msgstr "Vert. Verzoegerung:" #: src/manager.c:436 msgid "Quick Help:" msgstr "Schnellhilfe:" #: src/manager.c:439 msgid "Clear Keystate:" msgstr "Status loeschen:" #: src/manager.c:440 msgid "Center Preview:" msgstr "Vorschau zentrieren:" #: src/manager.c:441 msgid "Collision Check:" msgstr "Kollisionstest:" #: src/manager.c:441 msgid "Sync" msgstr "Sync" #: src/manager.c:441 msgid "Async" msgstr "Async" #: src/manager.c:444 msgid "Test CPU Algorithm" msgstr "" #: src/manager.c:445 msgid "Visualization" msgstr "Visualisierung" #: src/tetris.c:126 msgid "y" msgstr "j" #: src/tetris.c:127 msgid "n" msgstr "n" #: src/tetris.c:385 msgid "End Game? y/n" msgstr "Spiel beenden? j/n" #: src/bowl.c:567 src/bowl.c:568 msgid "Game Over" msgstr "Spiel vorbei" #: src/bowl.c:1281 #, c-format msgid "%i Lvl: %i" msgstr "%i Ebn: %i" #: src/bowl.c:1548 msgid "Player:" msgstr "Spieler:" #: src/bowl.c:1552 msgid "Score:" msgstr "Punkte:" #: src/bowl.c:1554 msgid "Lines:" msgstr "Reihen:" #: src/chart.c:187 msgid "Name Level Score" msgstr "Name Ebene Punkte" #: src/chart.c:212 msgid "Level" msgstr "Ebene" #: src/main.c:66 msgid "Demo" msgstr "Demo" #: src/main.c:67 msgid "Classic" msgstr "Klassisch" #: src/main.c:68 msgid "Figures" msgstr "Figuren" #: src/main.c:69 msgid "Vs Human" msgstr "Gg. Mensch" #: src/main.c:70 msgid "Vs CPU" msgstr "Gg. CPU" #: src/main.c:71 msgid "Vs Human&Human" msgstr "Gg. Mensch&Mensch" #: src/main.c:72 msgid "Vs Human&CPU" msgstr "Gg. Mensch&CPU" #: src/main.c:73 msgid "Vs CPU&CPU" msgstr "Gg. CPU&CPU" #: src/value.c:40 msgid "Space" msgstr "Leertaste" #: src/value.c:41 msgid "Left" msgstr "Links" #: src/value.c:42 msgid "Right" msgstr "Rechts" #: src/value.c:43 msgid "Up" msgstr "Hoch" #: src/value.c:45 msgid "Right Shift" msgstr "Shift Rechts" #: src/value.c:46 msgid "Left Shift" msgstr "Shift Links" #: src/value.c:47 msgid "Right Ctrl" msgstr "Ctrl Rechts" #: src/value.c:48 msgid "Left Ctrl" msgstr "Ctrl Links" #: src/value.c:49 msgid "Right Alt" msgstr "Alt Rechts" #: src/value.c:50 msgid "Left Alt" msgstr "Alt Links" #: src/value.c:51 msgid "Insert" msgstr "Einfuegen" #: src/value.c:52 msgid "End" msgstr "Ende" #: src/value.c:53 msgid "PageUp" msgstr "BildHoch" #: src/value.c:54 msgid "PageDown" msgstr "BildRunter" #: src/value.c:55 msgid "Home" msgstr "Pos1" #~ msgid "" #~ "In expert mode the propabilities for the next blocks are uneven to give a " #~ "block that is most likely difficult to fit anywhere. The game becomes " #~ "really hard by this so all score is doubled in the end." #~ msgstr "" #~ "Im Experten-Modus sind die Chancen fuer die Bloecke unausgeglichen. Es " #~ "ist wahrscheinlich einen zu erhalten, der sich nur sehr schwer einbauen " #~ "laesst. Das Spiel wird extrem hart dadurch, weswegen die Punktzahl am " #~ "Ende verdoppelt wird." #~ msgid "" #~ "If ON all players will get exactly the same blocks. So there is no " #~ "disadvantage to any player due to random blocks. This does not work in " #~ "expert mode as the block selection depends on your actions there." #~ msgstr "" #~ "Falls 'An' werden alle Spieler die gleichen Bloecke bekommen, um " #~ "niemanden zu benachteiligen. Das klappt jedoch nicht fuer den Experten-" #~ "Modus, da dort die nachfolgenden Bloecke auf Ihren Aktionen beruhen." #~ msgid "Same Blocks For All:" #~ msgstr "Gleiche Bloecke:" #~ msgid "Two-Player" #~ msgstr "Zwei-Spieler" #~ msgid "Three-Player" #~ msgstr "Drei-Spieler" ltris-1.0.19/po/Makefile.in.in0000664000175000017500000003020512140770051012747 00000000000000# Makefile for PO directory in any package using GNU gettext. # Copyright (C) 1995-1997, 2000-2004 by Ulrich Drepper # # This file can be copied and used freely without restrictions. It can # be used in projects which are not available under the GNU General Public # License but which still want to provide support for the GNU gettext # functionality. # Please note that the actual code of GNU gettext is covered by the GNU # General Public License and is *not* in the public domain. # # Origin: gettext-0.14 PACKAGE = @PACKAGE@ VERSION = @VERSION@ SHELL = /bin/sh @SET_MAKE@ srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ prefix = @prefix@ exec_prefix = @exec_prefix@ datadir = @datadir@ localedir = $(datadir)/locale gettextsrcdir = $(datadir)/gettext/po INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ MKINSTALLDIRS = @MKINSTALLDIRS@ mkinstalldirs = $(SHELL) $(MKINSTALLDIRS) GMSGFMT = @GMSGFMT@ MSGFMT = @MSGFMT@ XGETTEXT = @XGETTEXT@ MSGMERGE = msgmerge MSGMERGE_UPDATE = @MSGMERGE@ --update MSGINIT = msginit MSGCONV = msgconv MSGFILTER = msgfilter POFILES = @POFILES@ GMOFILES = @GMOFILES@ UPDATEPOFILES = @UPDATEPOFILES@ DUMMYPOFILES = @DUMMYPOFILES@ DISTFILES.common = Makefile.in.in remove-potcdate.sin \ $(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3) DISTFILES = $(DISTFILES.common) Makevars POTFILES.in $(DOMAIN).pot stamp-po \ $(POFILES) $(GMOFILES) \ $(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3) POTFILES = \ CATALOGS = @CATALOGS@ # Makevars gets inserted here. (Don't remove this line!) .SUFFIXES: .SUFFIXES: .po .gmo .mo .sed .sin .nop .po-create .po-update .po.mo: @echo "$(MSGFMT) -c -o $@ $<"; \ $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@ .po.gmo: @lang=`echo $* | sed -e 's,.*/,,'`; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o $${lang}.gmo $${lang}.po"; \ cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo .sin.sed: sed -e '/^#/d' $< > t-$@ mv t-$@ $@ all: all-@USE_NLS@ all-yes: stamp-po all-no: # stamp-po is a timestamp denoting the last time at which the CATALOGS have # been loosely updated. Its purpose is that when a developer or translator # checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS, # "make" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent # invocations of "make" will do nothing. This timestamp would not be necessary # if updating the $(CATALOGS) would always touch them; however, the rule for # $(POFILES) has been designed to not touch files that don't need to be # changed. stamp-po: $(srcdir)/$(DOMAIN).pot test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES) @echo "touch stamp-po" @echo timestamp > stamp-poT @mv stamp-poT stamp-po # Note: Target 'all' must not depend on target '$(DOMAIN).pot-update', # otherwise packages like GCC can not be built if only parts of the source # have been downloaded. # This target rebuilds $(DOMAIN).pot; it is an expensive operation. # Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. $(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \ --files-from=$(srcdir)/POTFILES.in \ --copyright-holder='$(COPYRIGHT_HOLDER)' \ --msgid-bugs-address='$(MSGID_BUGS_ADDRESS)' test ! -f $(DOMAIN).po || { \ if test -f $(srcdir)/$(DOMAIN).pot; then \ sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ else \ rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ fi; \ else \ mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ fi; \ } # This rule has no dependencies: we don't need to update $(DOMAIN).pot at # every "make" invocation, only create it when it is missing. # Only "make $(DOMAIN).pot-update" or "make dist" will force an update. $(srcdir)/$(DOMAIN).pot: $(MAKE) $(DOMAIN).pot-update # This target rebuilds a PO file if $(DOMAIN).pot has changed. # Note that a PO file is not touched if it doesn't need to be changed. $(POFILES): $(srcdir)/$(DOMAIN).pot @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ if test -f "$(srcdir)/$${lang}.po"; then \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}$(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot"; \ cd $(srcdir) && $(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot; \ else \ $(MAKE) $${lang}.po-create; \ fi install: install-exec install-data install-exec: install-data: install-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ for file in $(DISTFILES.common) Makevars.template; do \ $(INSTALL_DATA) $(srcdir)/$$file \ $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ for file in Makevars; do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi install-data-no: all install-data-yes: all $(mkinstalldirs) $(DESTDIR)$(datadir) @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ $(mkinstalldirs) $(DESTDIR)$$dir; \ if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ if test -n "$$lc"; then \ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ for file in *; do \ if test -f $$file; then \ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ fi; \ done); \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ else \ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ :; \ else \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ fi; \ fi; \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ fi; \ done; \ done install-strip: install installdirs: installdirs-exec installdirs-data installdirs-exec: installdirs-data: installdirs-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ else \ : ; \ fi installdirs-data-no: installdirs-data-yes: $(mkinstalldirs) $(DESTDIR)$(datadir) @catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ dir=$(localedir)/$$lang/LC_MESSAGES; \ $(mkinstalldirs) $(DESTDIR)$$dir; \ for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ if test -n "$$lc"; then \ if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ for file in *; do \ if test -f $$file; then \ ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ fi; \ done); \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ else \ if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ :; \ else \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ fi; \ fi; \ fi; \ done; \ done # Define this as empty until I found a useful application. installcheck: uninstall: uninstall-exec uninstall-data uninstall-exec: uninstall-data: uninstall-data-@USE_NLS@ if test "$(PACKAGE)" = "gettext-tools"; then \ for file in $(DISTFILES.common) Makevars.template; do \ rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ done; \ else \ : ; \ fi uninstall-data-no: uninstall-data-yes: catalogs='$(CATALOGS)'; \ for cat in $$catalogs; do \ cat=`basename $$cat`; \ lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ done; \ done check: all info dvi ps pdf html tags TAGS ctags CTAGS ID: mostlyclean: rm -f remove-potcdate.sed rm -f stamp-poT rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po rm -fr *.o clean: mostlyclean distclean: clean rm -f Makefile Makefile.in POTFILES *.mo maintainer-clean: distclean @echo "This command is intended for maintainers to use;" @echo "it deletes files that may require special tools to rebuild." rm -f stamp-po $(GMOFILES) distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) dist distdir: $(MAKE) update-po @$(MAKE) dist2 # This is a separate target because 'update-po' must be executed before. dist2: $(DISTFILES) dists="$(DISTFILES)"; \ if test "$(PACKAGE)" = "gettext-tools"; then \ dists="$$dists Makevars.template"; \ fi; \ if test -f $(srcdir)/ChangeLog; then \ dists="$$dists ChangeLog"; \ fi; \ for i in 0 1 2 3 4 5 6 7 8 9; do \ if test -f $(srcdir)/ChangeLog.$$i; then \ dists="$$dists ChangeLog.$$i"; \ fi; \ done; \ if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \ for file in $$dists; do \ if test -f $$file; then \ cp -p $$file $(distdir); \ else \ cp -p $(srcdir)/$$file $(distdir); \ fi; \ done update-po: Makefile $(MAKE) $(DOMAIN).pot-update test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) $(MAKE) update-gmo # General rule for creating PO files. .nop.po-create: @lang=`echo $@ | sed -e 's/\.po-create$$//'`; \ echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \ exit 1 # General rule for updating PO files. .nop.po-update: @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; fi; \ tmpdir=`pwd`; \ echo "$$lang:"; \ test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ echo "$${cdcmd}$(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ cd $(srcdir); \ if $(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$tmpdir/$$lang.new.po; then \ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ exit 1; \ fi; \ fi; \ else \ echo "msgmerge for $$lang.po failed!" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ fi $(DUMMYPOFILES): update-gmo: Makefile $(GMOFILES) @: Makefile: Makefile.in.in $(top_builddir)/config.status @POMAKEFILEDEPS@ cd $(top_builddir) \ && CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \ $(SHELL) ./config.status force: # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: ltris-1.0.19/po/LINGUAS0000664000175000017500000000002212140770051011314 00000000000000de tr pt sv fr it ltris-1.0.19/po/POTFILES.in0000664000175000017500000000012412140770051012047 00000000000000src/manager.c src/tetris.c src/bowl.c src/menu.c src/chart.c src/main.c src/value.c ltris-1.0.19/po/fr.gmo0000664000175000017500000000467212233753110011421 00000000000000Þ•1¤C,8 9D LX ` lx œ¢²·ÊÒ Ûåî!ô $ , 7AGMSZ`t–™œ¤¬´¼ÄÉÐ× Þé ùš ´¿ ÇÓ Û çôû .6 G Q[ do"w𝠷 ÃÏÔÚá éõ " . 2 6 > F N V ^ f n v { Œ œ ¦ ® ¶ ' . !$%0/(*)", #+ &1- %i Lvl: %i100 FPS1st Player:200 FPS2nd Player:3rd Player:50 FPSAdvanced OptionsAnimations:AudioAudio Settings.BackChange Background:ClassicControlsDefensiveDisplay:Drop:Enable/disable these quick hints.End Game? y/nFiguresFullscreenGame OverGame:Help:LevelLines:Move:Multiplayer OptionsName Level ScoreNew GameNoOnOptionsPlayer1Player2Player3Player:QuitScore:SmoothSound:Start GameStarting Level:Tile By TileVolume:WindowYesProject-Id-Version: fr Report-Msgid-Bugs-To: lgames.sf.net/contact.php POT-Creation-Date: 2013-10-29 16:37+0100 PO-Revision-Date: 2008-03-30 22:49+0200 Last-Translator: Jose Jorge Language-Team: francais Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n > 1); X-Generator: KBabel 1.11.4 %i Lvl: %i100 IPS1er Joueur:200 IPS2nd Joueur:3eme Joueur:50 IPSOptions AvanceesAnimations:AudioReglages Audio.RevenirChanger le fond:ClassiqueControlesDefensifAffichage:Lacher:Activer / Desactiver ces conseils.Terminer le jeu? y/nFiguresPlein ecranJeu TermineJeu:Aide:NiveauLignes:Mouvements:Options MultijoueursNom Niveau PointsNouveau jeuNonOuiOptionsJoueur1Joueur2Joueur3Joueur:QuitterPoints:FluidesSon:Commencer le JeuNiveau Initial:Pas a PasVolume:FenetreOuiltris-1.0.19/po/insert-header.sin0000664000175000017500000000124012140770051013537 00000000000000# Sed script that inserts the file called HEADER before the header entry. # # At each occurrence of a line starting with "msgid ", we execute the following # commands. At the first occurrence, insert the file. At the following # occurrences, do nothing. The distinction between the first and the following # occurrences is achieved by looking at the hold space. /^msgid /{ x # Test if the hold space is empty. s/m/m/ ta # Yes it was empty. First occurrence. Read the file. r HEADER # Output the file's contents by reading the next line. But don't lose the # current line while doing this. g N bb :a # The hold space was nonempty. Following occurrences. Do nothing. x :b } ltris-1.0.19/po/stamp-po0000664000175000017500000000001212233753110011751 00000000000000timestamp ltris-1.0.19/po/en@quot.header0000664000175000017500000000226312140770051013065 00000000000000# All this catalog "translates" are quotation characters. # The msgids must be ASCII and therefore cannot contain real quotation # characters, only substitutes like grave accent (0x60), apostrophe (0x27) # and double quote (0x22). These substitutes look strange; see # http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html # # This catalog translates grave accent (0x60) and apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019). # It also translates pairs of apostrophe (0x27) to # left single quotation mark (U+2018) and right single quotation mark (U+2019) # and pairs of quotation mark (0x22) to # left double quotation mark (U+201C) and right double quotation mark (U+201D). # # When output to an UTF-8 terminal, the quotation characters appear perfectly. # When output to an ISO-8859-1 terminal, the single quotation marks are # transliterated to apostrophes (by iconv in glibc 2.2 or newer) or to # grave/acute accent (by libiconv), and the double quotation marks are # transliterated to 0x22. # When output to an ASCII terminal, the single quotation marks are # transliterated to apostrophes, and the double quotation marks are # transliterated to 0x22. # ltris-1.0.19/po/tr.po_full0000664000175000017500000004750412140770051012316 00000000000000# translation of ltris.po to Türkçe # Copyright (C) YEAR Michael Speck # This file is distributed under the same license as the PACKAGE package. # # Server Acim , 2006. msgid "" msgstr "" "Project-Id-Version: ltris\n" "Report-Msgid-Bugs-To: lgames.sf.net/contact.php\n" "POT-Creation-Date: 2008-03-29 12:39+0100\n" "PO-Revision-Date: 2006-02-05 15:08+0200\n" "Last-Translator: Server Acim \n" "Language-Team: Türkçe \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11\n" #: src/manager.c:65 msgid "Enable/disable these quick hints." msgstr "Bu hızlı ip uçlarını etkinleÅŸtir/etkisizleÅŸtir." #: src/manager.c:66 msgid "Set player controls and horizontal speed." msgstr "Oyuncu kontrollerini ve yatay hızı ayarla." #: src/manager.c:67 msgid "Here you may customize the graphical appearance of LTris." msgstr "LTris'in grafik görünümünü buradan özelleÅŸtirebilirsiniz." #: src/manager.c:68 msgid "Audio Settings." msgstr "Ses Ayarları" #: src/manager.c:69 msgid "Get back to nasty work." msgstr "Çalışmaya geri dön." #: src/manager.c:70 msgid "Setup and run a cool game!" msgstr "Ayarla ve harika bir oyun çalıştır." #: src/manager.c:71 msgid "If animations disturb you you may turn them off." msgstr "EÄŸer animasyonlar seni rahatsız ederse onları kapatabilirsin." #: src/manager.c:72 msgid "You may play LTris either in window of fullscreen mode." msgstr "LTris'i tam ekran modundaki pencerede de oynayabilirsin." #: src/manager.c:73 msgid "" "If you don't want LTris to consume all of your CPU limit the frame rate." msgstr "" "EÄŸer LTris'in CPU'nun tümünü harcamasını istemiyorsan çerçeve oranını " "sınırla." #: src/manager.c:74 msgid "" "Horizontally move block either tile-by-tile or smooth. This is just eye-" "candy and doesn't effect the moving speed at all." msgstr "" "Yatay olarak öbeÄŸi döşeyerek veya düzgün taşı. Bu sadece görsel bir unsurdur " "ve hareket hızını tam olarak etkilemez." #: src/manager.c:75 msgid "" "Drop block tile-by-tile or smooth.##NOTE: While tile-by-tile allows you to " "move a block below a tile multiple times you'll only be able to do so one " "time when choosing 'smooth'!#See 'Advanced Options/Collision Check' to " "improve this." msgstr "" "ÖbeÄŸi döşeyerek veya düzgün olarak bırak. ##DİKKAT: Döşeye döşeye gitmek " "sizin öbeÄŸi birden fazla defa aÅŸağıya taşımanıza izin verir eÄŸer düzgün'ü " "seçerseniz bu iÅŸlemi sadece bir kez yapabilirsiniz !#Bakınız Bunu " "iyileÅŸtirmek için GeliÅŸmiÅŸ Seçenekler / Çakışma Kontrolü." #: src/manager.c:76 msgid "" "The less delay you take the faster the block will horizontally move and the " "more sensitive the input is handled." msgstr "" "ÖbeÄŸi ne kadar yatay olarak hızlı hareket ettirirseniz daha az gecikme " "olacak ve tanıtılan giriÅŸ daha hassaslaÅŸacaktır." #: src/manager.c:77 msgid "" "Each control value needs a unique key for handling.##Left/Right: horizontal " "movement#Rotate Left/Right: block rotation#Down: faster Dropping#Drop: " "INSTANT drop" msgstr "" "Her kontrol deÄŸerinin tanıtılmak için bir anahtara ihtiyacı vardır. ##Sol/" "SaÄŸ: yatay hareket.#Döndür Sol/SaÄŸ: dönüşü engelle#AÅŸağı:daha hızlı " "bırakış#Bırak ANİDEN bırak" #: src/manager.c:78 msgid "Let's get it on!!!!" msgstr "Devam edelim!!!!!" #: src/manager.c:79 msgid "Human player names. If you play against CPU it will be named as CPU-x." msgstr "" "Canlı oyuncu isimleri. eÄŸer iÅŸlemciye karşı oynarsanız o CPU-x olarak " "adlandırılacaktır." #: src/manager.c:80 #, fuzzy, c-format msgid "" "This is your starting level which will be ignored for game 'Figures' (you'll " "always start at level 0 there).##Each starting level up adds you 1.5% score " "in the end!" msgstr "" "Bu sizin oyun dışı tutulacak olan baÅŸlangıç seviyenizdir.Burada daima 0 " "seviyesinde baÅŸlayacaksınız. ##Her baÅŸlangıç seviyesi oyun sonunda puanınıza " "yüzde 1.5 oranında eklenecektir." #: src/manager.c:81 #, fuzzy, c-format msgid "" "Enable/Disable block preview.##If disabled you'll gain 15% score in the end!" msgstr "Öbek önizlemesini EtkinleÅŸtir/EtkisizleÅŸtir." #: src/manager.c:82 msgid "" "Shows guiding lines or a shadow of the currently dropping block so you see " "where it'll hit the ground.##This option has no malus/bonus." msgstr "" "Rehber satırları veya ÅŸu anda düşen öbeÄŸi gösterir böylece nerede yere " "düştüğünü görürsün. $$Bu seçeneÄŸin bonusu yoktur." #: src/manager.c:83 msgid "Some multiplayer and CPU settings." msgstr "Bazı çoklu oyuncular ve iÅŸlemci ayarları." #: src/manager.c:84 msgid "" "A line send to your opponent's bowl will have this number of holes in it. " "The more holes the harder it will be to remove this line so you should " "choose a low value (e.g. 1 or 2) for long multiplayer games." msgstr "" "Rakibinizin bölgesine göndereceÄŸiniz bir hat içindeki deliklerin sayısını " "alacaktır. Delikler çoÄŸaldıkça zorluk derecesi artacak bu hattı çıkarmak " "zorunda kalacaktır, iÅŸte bu yüzden çoklu oyuncu seçilen oyunlarda 1 veya 2 " "gibi daha düşük bir deÄŸer seçmelisiniz." #: src/manager.c:85 msgid "" "This option controls how the holes in the lines are created when more than " "one line is sent. If the option is on, the holes will appear randomly for " "each line. If the option is off, all the lines that are sent in one go, will " "have the holes in the same spot." msgstr "" "Bu seçenek, birden fazla hat gönderildiÄŸinde hatlardaki deliklerin nasıl " "yaratılacağını kontrol edecektir. EÄŸer bu seçenek açıksa, her hat için " "delikler rastgele gözükecektir. EÄŸer bu seçenek kapalıysa, tek başına " "gönderilen tüm hatlar aynı lekedeki hatları alacaklardır." #: src/manager.c:86 msgid "" "You'll have to complete more than one line to send any lines to your " "opponent. If this option is enabled all lines will be send else one will be " "substracted.##If disabled:#3 Line send -> 2 lines received##If enabled:#3 " "lines send -> 3 lines received" msgstr "" "Rakibine herhangi bir hat göndermek istiyorsan birden fazla hattı " "tamamlamalısın. EÄŸer bu seçenek etkinleÅŸtirilmiÅŸ ise birisi geri çekilmiÅŸ " "olsa bile tüm hatlar gönderilmiÅŸ olacaktır.##eÄŸer etkinleÅŸtirilmiÅŸ ise: #3 " "Hat gönderildi -> 2 hat alındı##eÄŸer etkinleÅŸtirilmiÅŸ ise: #3 hatlar " "gönderildi -> 3 hat alındı" #: src/manager.c:87 msgid "" "If this option is enabled your opponent will receive all four lines of your " "tetris ignoring the 'Send All' setting." msgstr "" "EÄŸer bu seçenek etkinleÅŸtirilmiÅŸ ise rakibiniz tetris'in 'Hepsini Gönder' " "ayarını yok saydığı tüm dört hattı da alacaktır." #: src/manager.c:88 msgid "" "This is the delay in milliseconds the CPU waits before dropping a block." msgstr "" "İşlemcinin bir öbeÄŸi bırakmadan önce bekletmesinden kaynaklanan milisaniye " "oranındaki bir gecikmedir." #: src/manager.c:89 msgid "" "The more aggressive the style is the more priority is put on completing " "multiple lines at the expense of a balanced bowl contents." msgstr "" "Tarz ne kadar gerilirse, dengeli hat içeriklerinin saÄŸlıklı bir ÅŸekilde " "çoklu hatların tamamlanmasındaki öncelik de o kadar artar." #: src/manager.c:90 msgid "Some advanced options." msgstr "Bazı geliÅŸmiÅŸ seçenekler." #: src/manager.c:91 msgid "" "Test the CPU analyze algorithm in cpu.c and give an average score for a " "number of games." msgstr "" "cpu . c'deki İşlemci analiz çözüm yolunu test edin. ve oyun sayıları için " "aritmetik ortalama puanı verin." #: src/manager.c:92 msgid "" "If you turn visualization off the results will be computed faster. If you " "turn them on you can see a general game behaviour and judge the algorithm by " "this behaviour." msgstr "" "EÄŸer görünümü kapatırsanız sonuçlar daha hızlı hesaplanacaktır. EÄŸer onları " "açarsanız genel bir oyun davranışı görebilir ve çözüm yolunu bu davranışa " "göre yargılayabilirsiniz." #: src/manager.c:93 msgid "" "There are basically three different game types:##CLASSIC:#The classic tetris " "game. Starts with an empty bowl and goes as long as you make it.#FIGURES:" "#Each level a nice figure will be added to the ground of you bowl. From " "level 7-12 there will be randomly appearing single tiles and from level " "13-... there will be whole lines appearing at the bottom of your bowl. Fun!" "#TWO/THREE-PLAYER:#Either play against other humans or CPU. If you complete " "multiple lines they'll be send to your opponents according to the " "multiplayer settings you made.##And in DEMO you can see your CPU do the " "work. So relax! ;-)" msgstr "" "Temel olarak üç farklı oyun türü vardır:##KLASİK:#Klasik tetris oyunu. BoÅŸ " "bir kase ile baÅŸlar ve siz oyunu sürdürdükçe bu kase dolar.#ÅžEKİLLER:#Her " "seviye de güzel bir ÅŸekil kasenizin dibine eklenecektir. 7-12 arasındaki " "seviyelerden itibaren rastgele görünen tek döşemeler olarak ve seviye 13'ten " "sonra kasenizin dibinde gözüken daha yoÄŸun hatlar olacaktır. EÄŸlenmenize " "bakın! #İKİ/ÜÇ OYUNCULU:#İnsanlara karşı veya iÅŸlemciye karşı oynana oyun. " "Çoklu hatları tamamlarsanız, çoklu oyuncu ayarlarınıza baÄŸlı olarak, bu veri " "rakibinize gönderilecektir.##Ve DEMO'da iÅŸlemcinizin oynadığını " "göreceksiniz. Bu yüzden, rahat olun! -)" #: src/manager.c:99 msgid "" "If you turn this on the background will change every level else it's always " "the same." msgstr "" "EÄŸer bunu açarsanız arkaplanınız her seviyede deÄŸiÅŸecek, eÄŸer açmazsanız " "aynı kalacaktır." #: src/manager.c:100 msgid "" "If you enable this option the keystate of either the 'Down' key or all the " "keys are cleared so you can't accidently move the next block." msgstr "" "EÄŸer bu seçeneÄŸi etkinleÅŸtirirseniz ya 'AÅŸağı' tuÅŸunuz veya tüm tuÅŸ " "takımınız temizlenecek böylece kazara bir sonraki bloÄŸu oynatamayacaksınız." #: src/manager.c:101 msgid "" "If this is enabled the preview in Two-Player is centered in the middle of " "the screen instead that one is drawn at the bottom and one at the top." msgstr "" "EÄŸer bu etkinleÅŸtirilmiÅŸse İki-Oyuncu seçeneÄŸinde oyunculardan birinin " "altta, diÄŸerinin üstte gösterilmesi yerine, önizleme görünümü ekranın " "ortasında olacaktır." #: src/manager.c:102 msgid "" "This option is only useful when 'Graphics/Drop' is 'Smooth'#(In opposite to " "'Tile-By-Tile' the block is inserted as soon as it hits the ground giving no " "possibility to move the block below another one.)#If you set this option to " "'Async' you may move the block below others but on the cost of slight " "graphical errors." msgstr "" "Bu seçenek 'sadece Åžekiller/Bırak' seçeneÄŸi 'Düzgün'e ayarlanmışsa iÅŸe yarar#" "(Döşeye-Döşeye'nin tersine blok dibe baÅŸka bir yere kıpırdayamayacak ÅŸekilde " "yerleÅŸtirilmiÅŸtir.)#EÄŸer bu seçeneÄŸi 'EÅŸitsiz'e iÅŸaretlerseniz bazı küçük " "görsel hataları göze almak pahasına bloÄŸu aÅŸağıya hareket ettirebilirsiniz." #: src/manager.c:107 msgid "" "In expert mode the propabilities for the next blocks are uneven to give a " "block that is most likely difficult to fit anywhere. The game becomes really " "hard by this so all score is doubled in the end." msgstr "" "Uzman kipinde gelen bloklar için olasılıklar bir bloÄŸun uyan bir yere " "hareket etmesini imkansız hale getirecek kadar düzensizdir. Oyun bu ÅŸekilde " "gerçekten zorlaşır ve finalde sayı iki katına çıkar." #: src/manager.c:110 msgid "" "If ON all players will get exactly the same blocks. So there is no " "disadvantage to any player due to random blocks. This does not work in " "expert mode as the block selection depends on your actions there." msgstr "" "AÇIK seçeneÄŸinde tüm oyuncular tam olarak aynı öbekleri alacaklardır. " "Böylece herhangi bir oyuncunun rastgele bloklara rast gelmesinde bir yarar " "yitimi olmayacaktır. Blok seçiminin buradaki iÅŸlemlerinize baÄŸlı olması " "seçeneÄŸi uzman kipinde çalışmaz." #: src/manager.c:139 src/manager.c:140 msgid "" msgstr "" #: src/manager.c:140 #, c-format msgid "You cannot delete '%s'!\n" msgstr "Bunu silemezsiniz %s !\n" #: src/manager.c:209 msgid "No Limit" msgstr "Sınır yok" #: src/manager.c:209 msgid "50 FPS" msgstr "50 FPS" #: src/manager.c:209 msgid "100 FPS" msgstr "100 FPS" #: src/manager.c:209 msgid "200 FPS" msgstr "200 FPS" #: src/manager.c:210 msgid "Defensive" msgstr "Savunmalı" #: src/manager.c:210 msgid "Normal" msgstr "Normal" #: src/manager.c:210 msgid "Aggressive" msgstr "Gergin" #: src/manager.c:210 msgid "Kamikaze" msgstr "Kamikaze" #: src/manager.c:211 src/manager.c:322 src/manager.c:332 src/manager.c:352 #: src/manager.c:354 src/manager.c:356 src/manager.c:363 src/manager.c:366 #: src/manager.c:367 src/manager.c:368 src/manager.c:426 src/manager.c:430 #: src/manager.c:435 msgid "Off" msgstr "Kapalı" #: src/manager.c:211 msgid "Shadow" msgstr "Gölge" #: src/manager.c:211 msgid "Lines" msgstr "Hatlar" #: src/manager.c:212 msgid "None" msgstr "Hiçbiri" #: src/manager.c:212 src/value.c:44 msgid "Down" msgstr "AÅŸağı" #: src/manager.c:212 msgid "All" msgstr "Hepsi" #: src/manager.c:278 msgid "Menu" msgstr "Menü" #: src/manager.c:279 src/manager.c:301 src/manager.c:314 msgid "Graphics" msgstr "Çizgeleme" #: src/manager.c:280 src/manager.c:295 msgid "New Game" msgstr "Yeni Oyun" #: src/manager.c:281 src/manager.c:300 src/manager.c:313 msgid "Controls" msgstr "Denetimler" #: src/manager.c:282 src/manager.c:375 msgid "Player1" msgstr "Oyuncu1" #: src/manager.c:283 src/manager.c:376 msgid "Player2" msgstr "Oyuncu2" #: src/manager.c:284 src/manager.c:377 msgid "Player3" msgstr "Oyuncu3" #: src/manager.c:285 src/manager.c:359 msgid "Multiplayer Options" msgstr "Çok Oyunculu Seçenekler" #: src/manager.c:286 src/manager.c:308 msgid "Advanced Options" msgstr "GeliÅŸmiÅŸ Seçenekler" #: src/manager.c:288 src/manager.c:298 msgid "Options" msgstr "Seçenekler" #: src/manager.c:291 src/manager.c:303 src/manager.c:305 src/manager.c:315 #: src/manager.c:316 msgid "Audio" msgstr "Ses" #: src/manager.c:310 src/menu.c:171 msgid "Quit" msgstr "Çık" #: src/manager.c:318 src/manager.c:329 src/manager.c:342 src/manager.c:361 #: src/manager.c:373 src/manager.c:381 src/manager.c:414 src/manager.c:419 #: src/manager.c:424 src/manager.c:438 src/menu.c:168 msgid "Back" msgstr "Geri" #: src/manager.c:322 msgid "Sound:" msgstr "Ses:" #: src/manager.c:322 src/manager.c:332 src/manager.c:352 src/manager.c:354 #: src/manager.c:356 src/manager.c:363 src/manager.c:366 src/manager.c:367 #: src/manager.c:368 src/manager.c:426 src/manager.c:430 src/manager.c:435 msgid "On" msgstr "Açık" #: src/manager.c:325 msgid "Volume:" msgstr "Ses Düzeyi:" #: src/manager.c:332 msgid "Animations:" msgstr "Canlandırmalar:" #: src/manager.c:333 msgid "Move:" msgstr "Taşı:" #: src/manager.c:333 src/manager.c:334 msgid "Tile By Tile" msgstr "Döşeye-Döşeye" #: src/manager.c:333 src/manager.c:334 msgid "Smooth" msgstr "Düzgün" #: src/manager.c:334 src/manager.c:388 src/manager.c:394 src/manager.c:400 msgid "Drop:" msgstr "Bırak:" #: src/manager.c:335 msgid "Change Background:" msgstr "Artalanı DeÄŸiÅŸtir:" #: src/manager.c:335 msgid "Yes" msgstr "Evet" #: src/manager.c:335 msgid "No" msgstr "Hayır" #: src/manager.c:337 msgid "Display:" msgstr "Görüntüle:" #: src/manager.c:337 msgid "Window" msgstr "Pencere" #: src/manager.c:337 msgid "Fullscreen" msgstr "Tam Ekran" #: src/manager.c:340 msgid "Frame Rate:" msgstr "Çerçeve Oranı:" #: src/manager.c:344 msgid "Start Game" msgstr "Oyuna BaÅŸla" #: src/manager.c:346 msgid "1st Player:" msgstr "Birinci Oyuncu:" #: src/manager.c:347 msgid "2nd Player:" msgstr "İkinci Oyuncu:" #: src/manager.c:348 msgid "3rd Player:" msgstr "Üçüncü Oyuncu:" #: src/manager.c:350 msgid "Game:" msgstr "Oyun:" #: src/manager.c:351 msgid "Starting Level:" msgstr "BaÅŸlama Düzeyi:" #: src/manager.c:352 msgid "Preview:" msgstr "Önizleme:" #: src/manager.c:353 msgid "Help:" msgstr "Yardım:" #: src/manager.c:354 msgid "Expert Mode:" msgstr "Uzman Kipi:" #: src/manager.c:356 msgid "Slow:" msgstr "YavaÅŸ:" #: src/manager.c:363 msgid "Same Blocks For All:" msgstr "Herkes için Aynı Bloklar:" #: src/manager.c:365 msgid "Holes:" msgstr "Delikler:" #: src/manager.c:366 msgid "Random Holes:" msgstr "Rasgele Delikler:" #: src/manager.c:367 msgid "Send All Lines:" msgstr "Bütün Hatları Gönder:" #: src/manager.c:368 msgid "Always Send Tetris:" msgstr "Her zaman Tetris'i Gönder:" #: src/manager.c:370 msgid "CPU Style:" msgstr "İşlemci Tarzı:" #: src/manager.c:371 msgid "CPU Drop Delay:" msgstr "İşlemci Bırakma Gecikmesi:" #: src/manager.c:379 msgid "Horizontal Delay:" msgstr "Yatay Gecikme:" #: src/manager.c:383 src/manager.c:389 src/manager.c:395 msgid "Left:" msgstr "Sol:" #: src/manager.c:384 src/manager.c:390 src/manager.c:396 msgid "Right:" msgstr "SaÄŸ:" #: src/manager.c:385 src/manager.c:391 src/manager.c:397 msgid "Rotate Left:" msgstr "Sola Döndür:" #: src/manager.c:386 src/manager.c:392 src/manager.c:398 msgid "Rotate Right:" msgstr "SaÄŸa Döndür:" #: src/manager.c:387 src/manager.c:393 src/manager.c:399 msgid "Down:" msgstr "AÅŸağı:" #: src/manager.c:426 msgid "Quick Help:" msgstr "Hızlı Yardım:" #: src/manager.c:429 msgid "Clear Keystate:" msgstr "TuÅŸdurumunu Temizle:" #: src/manager.c:430 msgid "Center Preview:" msgstr "Ortada Önizle:" #: src/manager.c:431 msgid "Collision Check:" msgstr "Çarpışma Denetimi:" #: src/manager.c:431 msgid "Sync" msgstr "Senkronizasyon" #: src/manager.c:431 msgid "Async" msgstr "Asenkronizasyon" #: src/manager.c:434 msgid "Test CPU Algorithm" msgstr "İşlemci Algoritmasını Sına" #: src/manager.c:435 msgid "Visualization" msgstr "GörselleÅŸtirme" #: src/tetris.c:128 msgid "y" msgstr "" #: src/tetris.c:129 #, fuzzy msgid "n" msgstr "Açık" #: src/tetris.c:357 src/main.c:56 msgid "Demo" msgstr "Demo" #: src/tetris.c:358 src/main.c:57 msgid "Classic" msgstr "Klasik" #: src/tetris.c:359 src/main.c:58 msgid "Figures" msgstr "Åžekiller" #: src/tetris.c:360 src/tetris.c:361 msgid "Two-Player" msgstr "İki-Oyuncu" #: src/tetris.c:362 src/tetris.c:363 src/tetris.c:364 msgid "Three-Player" msgstr "Üç-Oyuncu" #: src/tetris.c:405 msgid "End Game? y/n" msgstr "Oyun Bitsin mi? e/h" #: src/bowl.c:523 src/bowl.c:524 msgid "Game Over" msgstr "Oyun Bitti" #: src/bowl.c:1231 #, c-format msgid "%i Lvl: %i" msgstr "%i Lvl: %i" #: src/bowl.c:1477 msgid "Player:" msgstr "Oyuncu:" #: src/bowl.c:1481 msgid "Score:" msgstr "Sonuç:" #: src/bowl.c:1483 msgid "Lines:" msgstr "Hatlar:" #: src/chart.c:186 msgid "Name Level Score" msgstr "İsim''''''''''''Seviye''''''''''''Sonuç" #: src/chart.c:211 msgid "Level" msgstr "Seviye" #: src/main.c:59 msgid "Vs Human" msgstr "Vs İnsan" #: src/main.c:60 msgid "Vs CPU" msgstr "Vs İşlemci" #: src/main.c:61 msgid "Vs Human&Human" msgstr "Vs İnsan'a karşı İ&nsan" #: src/main.c:62 msgid "Vs Human&CPU" msgstr "Vs İnsan'a karşı İşl&emci" #: src/main.c:63 msgid "Vs CPU&CPU" msgstr "Vs İşlemci'ye&karşı İşlemci" #: src/value.c:40 msgid "Space" msgstr "BoÅŸluk" #: src/value.c:41 msgid "Left" msgstr "Sol" #: src/value.c:42 msgid "Right" msgstr "SaÄŸ" #: src/value.c:43 msgid "Up" msgstr "Yukarı" #: src/value.c:45 msgid "Right Shift" msgstr "SaÄŸ Öteleme" #: src/value.c:46 msgid "Left Shift" msgstr "Sol Öteleme" #: src/value.c:47 msgid "Right Ctrl" msgstr "SaÄŸ Ctrl" #: src/value.c:48 msgid "Left Ctrl" msgstr "Sol Ctrl" #: src/value.c:49 msgid "Right Alt" msgstr "SaÄŸ Alt" #: src/value.c:50 msgid "Left Alt" msgstr "Sol Alt" #: src/value.c:51 msgid "Insert" msgstr "Ekle" #: src/value.c:52 msgid "End" msgstr "Son" #: src/value.c:53 msgid "PageUp" msgstr "Yukarı Sayfa" #: src/value.c:54 msgid "PageDown" msgstr "AÅŸağı Sayfa" #: src/value.c:55 msgid "Home" msgstr "BaÅŸlangıç" ltris-1.0.19/po/ltris.pot0000664000175000017500000003145412233753107012173 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Michael Speck # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: lgames.sf.net/contact.php\n" "POT-Creation-Date: 2013-10-29 16:37+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #: src/manager.c:65 msgid "Enable/disable these quick hints." msgstr "" #: src/manager.c:66 msgid "Set player controls and horizontal speed." msgstr "" #: src/manager.c:67 msgid "Here you may customize the graphical appearance of LTris." msgstr "" #: src/manager.c:68 msgid "Audio Settings." msgstr "" #: src/manager.c:69 msgid "Get back to nasty work." msgstr "" #: src/manager.c:70 msgid "Setup and run a cool game!" msgstr "" #: src/manager.c:71 msgid "If animations disturb you you may turn them off." msgstr "" #: src/manager.c:72 msgid "You may play LTris either in window of fullscreen mode." msgstr "" #: src/manager.c:73 msgid "" "If you don't want LTris to consume all of your CPU limit the frame rate." msgstr "" #: src/manager.c:74 msgid "" "Horizontally move block either tile-by-tile or smooth. This is just eye-" "candy and doesn't effect the moving speed at all." msgstr "" #: src/manager.c:75 msgid "" "Drop block tile-by-tile or smooth.##NOTE: While tile-by-tile allows you to " "move a block below a tile multiple times you'll only be able to do so one " "time when choosing 'smooth'!#See 'Advanced Options/Collision Check' to " "improve this." msgstr "" #: src/manager.c:76 msgid "" "The less delay you take the faster the block will horizontally move and the " "more sensitive the input is handled." msgstr "" #: src/manager.c:77 msgid "Delay for vertical movement when using Down key." msgstr "" #: src/manager.c:78 msgid "" "Left/Right: horizontal movement#Rotate Left/Right: block rotation#Down: " "faster Dropping#Drop: INSTANT drop" msgstr "" #: src/manager.c:79 msgid "Key used to pause and unpause a game." msgstr "" #: src/manager.c:80 msgid "Let's get it on!!!!" msgstr "" #: src/manager.c:81 msgid "Human player names. If you play against CPU it will be named as CPU-x." msgstr "" #: src/manager.c:82 #, c-format msgid "" "This is your starting level which will be ignored for game 'Figures' (you'll " "always start at level 0 there).##Each starting level up adds you 1.5% score " "in the end!" msgstr "" #: src/manager.c:83 #, c-format msgid "" "Enable/Disable block preview.##If disabled you'll gain 15% score in the end!" msgstr "" #: src/manager.c:84 msgid "" "Shows guiding lines or a shadow of the currently dropping block so you see " "where it'll hit the ground.##This option has no penalty/bonus." msgstr "" #: src/manager.c:85 msgid "Some multiplayer and CPU settings." msgstr "" #: src/manager.c:86 msgid "" "A line send to your opponent's bowl will have this number of holes in it. " "The more holes the harder it will be to remove this line so you should " "choose a low value (e.g. 1 or 2) for long multiplayer games." msgstr "" #: src/manager.c:87 msgid "" "This option controls how the holes in the lines are created when more than " "one line is sent. If the option is on, the holes will appear randomly for " "each line. If the option is off, all the lines that are sent in one go, will " "have the holes in the same spot." msgstr "" #: src/manager.c:88 msgid "" "You'll have to complete more than one line to send any lines to your " "opponent. If this option is enabled all lines will be send else one will be " "substracted.##If disabled:#3 Line send -> 2 lines received##If enabled:#3 " "lines send -> 3 lines received" msgstr "" #: src/manager.c:89 msgid "" "If this option is enabled your opponent will receive all four lines of your " "tetris ignoring the 'Send All' setting." msgstr "" #: src/manager.c:90 msgid "" "This is the delay in milliseconds the CPU waits before dropping a block." msgstr "" #: src/manager.c:91 msgid "" "The more aggressive the style is the more priority is put on completing " "multiple lines at the expense of a balanced bowl contents." msgstr "" #: src/manager.c:92 msgid "Some advanced options." msgstr "" #: src/manager.c:93 msgid "" "Test the CPU analyze algorithm in cpu.c and give an average score for a " "number of games." msgstr "" #: src/manager.c:94 msgid "" "If you turn visualization off the results will be computed faster. If you " "turn them on you can see a general game behaviour and judge the algorithm by " "this behaviour." msgstr "" #: src/manager.c:95 msgid "" "There are basically three different game types:##CLASSIC:#The classic tetris " "game. Starts with an empty bowl and goes as long as you make it.#FIGURES:" "#Each level a nice figure will be added to the ground of you bowl. From " "level 7-12 there will be randomly appearing single tiles and from level " "13-... there will be whole lines appearing at the bottom of your bowl. Fun!" "#TWO/THREE-PLAYER:#Either play against other humans or CPU. If you complete " "multiple lines they'll be send to your opponents according to the " "multiplayer settings you made.##And in DEMO you can see your CPU do the " "work. So relax! ;-)" msgstr "" #: src/manager.c:101 msgid "" "If you turn this on the background will change every level else it's always " "the same." msgstr "" #: src/manager.c:102 msgid "" "If you enable this option the keystate of either the 'Down' key or all the " "keys are cleared so you can't accidently move the next block." msgstr "" #: src/manager.c:103 msgid "" "If this is enabled the preview in Two-Player is centered in the middle of " "the screen instead that one is drawn at the bottom and one at the top." msgstr "" #: src/manager.c:104 msgid "" "This option is only useful when 'Graphics/Drop' is 'Smooth'#(In opposite to " "'Tile-By-Tile' the block is inserted as soon as it hits the ground giving no " "possibility to move the block below another one.)#If you set this option to " "'Async' you may move the block below others but on the cost of slight " "graphical errors." msgstr "" #: src/manager.c:109 #, c-format msgid "" "In expert mode the most unsuitable piece of the current bag (a bag is a set " "of all 7 randomly sorted basic pieces) is dealt out next. This option only " "works for single player. There is a 50% score bonus in the end." msgstr "" #: src/manager.c:141 src/manager.c:142 msgid "" msgstr "" #: src/manager.c:142 #, c-format msgid "You cannot delete '%s'!\n" msgstr "" #: src/manager.c:212 msgid "No Limit" msgstr "" #: src/manager.c:212 msgid "50 FPS" msgstr "" #: src/manager.c:212 msgid "100 FPS" msgstr "" #: src/manager.c:212 msgid "200 FPS" msgstr "" #: src/manager.c:213 msgid "Defensive" msgstr "" #: src/manager.c:213 msgid "Normal" msgstr "" #: src/manager.c:213 msgid "Aggressive" msgstr "" #: src/manager.c:213 msgid "Kamikaze" msgstr "" #: src/manager.c:214 src/manager.c:324 src/manager.c:334 src/manager.c:354 #: src/manager.c:356 src/manager.c:358 src/manager.c:367 src/manager.c:368 #: src/manager.c:369 src/manager.c:436 src/manager.c:440 src/manager.c:445 msgid "Off" msgstr "" #: src/manager.c:214 msgid "Shadow" msgstr "" #: src/manager.c:214 msgid "Lines" msgstr "" #: src/manager.c:215 msgid "None" msgstr "" #: src/manager.c:215 src/value.c:44 msgid "Down" msgstr "" #: src/manager.c:215 msgid "All" msgstr "" #: src/manager.c:280 msgid "Menu" msgstr "" #: src/manager.c:281 src/manager.c:303 src/manager.c:316 msgid "Graphics" msgstr "" #: src/manager.c:282 src/manager.c:297 msgid "New Game" msgstr "" #: src/manager.c:283 src/manager.c:302 src/manager.c:315 msgid "Controls" msgstr "" #: src/manager.c:284 src/manager.c:411 msgid "Player1" msgstr "" #: src/manager.c:285 src/manager.c:412 msgid "Player2" msgstr "" #: src/manager.c:286 src/manager.c:413 msgid "Player3" msgstr "" #: src/manager.c:287 src/manager.c:361 msgid "Multiplayer Options" msgstr "" #: src/manager.c:288 src/manager.c:310 msgid "Advanced Options" msgstr "" #: src/manager.c:290 src/manager.c:300 msgid "Options" msgstr "" #: src/manager.c:293 src/manager.c:305 src/manager.c:307 src/manager.c:317 #: src/manager.c:318 msgid "Audio" msgstr "" #: src/manager.c:312 src/menu.c:171 msgid "Quit" msgstr "" #: src/manager.c:320 src/manager.c:331 src/manager.c:344 src/manager.c:363 #: src/manager.c:374 src/manager.c:419 src/manager.c:424 src/manager.c:429 #: src/manager.c:434 src/manager.c:448 src/menu.c:168 msgid "Back" msgstr "" #: src/manager.c:324 msgid "Sound:" msgstr "" #: src/manager.c:324 src/manager.c:334 src/manager.c:354 src/manager.c:356 #: src/manager.c:358 src/manager.c:367 src/manager.c:368 src/manager.c:369 #: src/manager.c:436 src/manager.c:440 src/manager.c:445 msgid "On" msgstr "" #: src/manager.c:327 msgid "Volume:" msgstr "" #: src/manager.c:334 msgid "Animations:" msgstr "" #: src/manager.c:335 msgid "Move:" msgstr "" #: src/manager.c:335 src/manager.c:336 msgid "Tile By Tile" msgstr "" #: src/manager.c:335 src/manager.c:336 msgid "Smooth" msgstr "" #: src/manager.c:336 src/manager.c:382 src/manager.c:388 src/manager.c:394 msgid "Drop:" msgstr "" #: src/manager.c:337 msgid "Change Background:" msgstr "" #: src/manager.c:337 msgid "Yes" msgstr "" #: src/manager.c:337 msgid "No" msgstr "" #: src/manager.c:339 msgid "Display:" msgstr "" #: src/manager.c:339 msgid "Window" msgstr "" #: src/manager.c:339 msgid "Fullscreen" msgstr "" #: src/manager.c:342 msgid "Frame Rate:" msgstr "" #: src/manager.c:346 msgid "Start Game" msgstr "" #: src/manager.c:348 msgid "1st Player:" msgstr "" #: src/manager.c:349 msgid "2nd Player:" msgstr "" #: src/manager.c:350 msgid "3rd Player:" msgstr "" #: src/manager.c:352 msgid "Game:" msgstr "" #: src/manager.c:353 msgid "Starting Level:" msgstr "" #: src/manager.c:354 msgid "Preview:" msgstr "" #: src/manager.c:355 msgid "Help:" msgstr "" #: src/manager.c:356 msgid "Expert Mode:" msgstr "" #: src/manager.c:358 msgid "Slow:" msgstr "" #: src/manager.c:366 msgid "Holes:" msgstr "" #: src/manager.c:367 msgid "Random Holes:" msgstr "" #: src/manager.c:368 msgid "Send All Lines:" msgstr "" #: src/manager.c:369 msgid "Always Send Tetris:" msgstr "" #: src/manager.c:371 msgid "CPU Style:" msgstr "" #: src/manager.c:372 msgid "CPU Drop Delay:" msgstr "" #: src/manager.c:376 msgid "Pause Key:" msgstr "" #: src/manager.c:377 src/manager.c:383 src/manager.c:389 msgid "Left:" msgstr "" #: src/manager.c:378 src/manager.c:384 src/manager.c:390 msgid "Right:" msgstr "" #: src/manager.c:379 src/manager.c:385 src/manager.c:391 msgid "Rotate Left:" msgstr "" #: src/manager.c:380 src/manager.c:386 src/manager.c:392 msgid "Rotate Right:" msgstr "" #: src/manager.c:381 src/manager.c:387 src/manager.c:393 msgid "Down:" msgstr "" #: src/manager.c:415 msgid "Horizontal Delay:" msgstr "" #: src/manager.c:416 msgid "Vertical Delay:" msgstr "" #: src/manager.c:436 msgid "Quick Help:" msgstr "" #: src/manager.c:439 msgid "Clear Keystate:" msgstr "" #: src/manager.c:440 msgid "Center Preview:" msgstr "" #: src/manager.c:441 msgid "Collision Check:" msgstr "" #: src/manager.c:441 msgid "Sync" msgstr "" #: src/manager.c:441 msgid "Async" msgstr "" #: src/manager.c:444 msgid "Test CPU Algorithm" msgstr "" #: src/manager.c:445 msgid "Visualization" msgstr "" #: src/tetris.c:126 msgid "y" msgstr "" #: src/tetris.c:127 msgid "n" msgstr "" #: src/tetris.c:385 msgid "End Game? y/n" msgstr "" #: src/bowl.c:567 src/bowl.c:568 msgid "Game Over" msgstr "" #: src/bowl.c:1281 #, c-format msgid "%i Lvl: %i" msgstr "" #: src/bowl.c:1548 msgid "Player:" msgstr "" #: src/bowl.c:1552 msgid "Score:" msgstr "" #: src/bowl.c:1554 msgid "Lines:" msgstr "" #: src/chart.c:187 msgid "Name Level Score" msgstr "" #: src/chart.c:212 msgid "Level" msgstr "" #: src/main.c:66 msgid "Demo" msgstr "" #: src/main.c:67 msgid "Classic" msgstr "" #: src/main.c:68 msgid "Figures" msgstr "" #: src/main.c:69 msgid "Vs Human" msgstr "" #: src/main.c:70 msgid "Vs CPU" msgstr "" #: src/main.c:71 msgid "Vs Human&Human" msgstr "" #: src/main.c:72 msgid "Vs Human&CPU" msgstr "" #: src/main.c:73 msgid "Vs CPU&CPU" msgstr "" #: src/value.c:40 msgid "Space" msgstr "" #: src/value.c:41 msgid "Left" msgstr "" #: src/value.c:42 msgid "Right" msgstr "" #: src/value.c:43 msgid "Up" msgstr "" #: src/value.c:45 msgid "Right Shift" msgstr "" #: src/value.c:46 msgid "Left Shift" msgstr "" #: src/value.c:47 msgid "Right Ctrl" msgstr "" #: src/value.c:48 msgid "Left Ctrl" msgstr "" #: src/value.c:49 msgid "Right Alt" msgstr "" #: src/value.c:50 msgid "Left Alt" msgstr "" #: src/value.c:51 msgid "Insert" msgstr "" #: src/value.c:52 msgid "End" msgstr "" #: src/value.c:53 msgid "PageUp" msgstr "" #: src/value.c:54 msgid "PageDown" msgstr "" #: src/value.c:55 msgid "Home" msgstr "" ltris-1.0.19/po/Rules-quot0000664000175000017500000000337612140770051012311 00000000000000# Special Makefile rules for English message catalogs with quotation marks. DISTFILES.common.extra1 = quot.sed boldquot.sed en@quot.header en@boldquot.header insert-header.sin Rules-quot .SUFFIXES: .insert-header .po-update-en en@quot.po-create: $(MAKE) en@quot.po-update en@boldquot.po-create: $(MAKE) en@boldquot.po-update en@quot.po-update: en@quot.po-update-en en@boldquot.po-update: en@boldquot.po-update-en .insert-header.po-update-en: @lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \ if test "$(PACKAGE)" = "gettext"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \ tmpdir=`pwd`; \ echo "$$lang:"; \ ll=`echo $$lang | sed -e 's/@.*//'`; \ LC_ALL=C; export LC_ALL; \ cd $(srcdir); \ if $(MSGINIT) -i $(DOMAIN).pot --no-translator -l $$ll -o - 2>/dev/null | sed -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | $(MSGFILTER) sed -f `echo $$lang | sed -e 's/.*@//'`.sed 2>/dev/null > $$tmpdir/$$lang.new.po; then \ if cmp $$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ rm -f $$tmpdir/$$lang.new.po; \ else \ if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ :; \ else \ echo "creation of $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ exit 1; \ fi; \ fi; \ else \ echo "creation of $$lang.po failed!" 1>&2; \ rm -f $$tmpdir/$$lang.new.po; \ fi en@quot.insert-header: insert-header.sin sed -e '/^#/d' -e 's/HEADER/en@quot.header/g' $(srcdir)/insert-header.sin > en@quot.insert-header en@boldquot.insert-header: insert-header.sin sed -e '/^#/d' -e 's/HEADER/en@boldquot.header/g' $(srcdir)/insert-header.sin > en@boldquot.insert-header mostlyclean: mostlyclean-quot mostlyclean-quot: rm -f *.insert-header ltris-1.0.19/po/sv.gmo0000664000175000017500000003301112233753110011427 00000000000000Þ•‹t¿ÌÈ É Ô Ü è ð ü   Í ê û    * 0 6 F K [ f v ‰ ‘ ¡ ² » Å Ê Ó Ø éÞ ÈLÎ!= A O\ d p {…‹£¬9²ìóøy F„0ËüsHˆJUÓ¦)Ð×àå î ø #)05;Ohqt}‚‰˜¡¨°¸ÀÈ ÑÝ âð ö    +9@)Pz•œ¢©"Àãê ðû X#p|‚íZpHˤ¹<¼ ù  &1 :GV]a7zù²¬®° N Y a r z ‰ ™   ýµ ³! É!Ó!Ø! î!û!"""#" 3">"N"_"h"" “"ž"§"¬"´"¸" Á"Ì#LÔ#,!$N$R$ d$p$ x$†$–$¦$¬$Ì$Ó$0Û$ %%%‡2%Lº%1&’9&Ì&f\'ŸÃ'bc(¶Æ(})„)š) £) °)¾) Í)Ú)é)î)õ)ü)* *#* <*F* J*W*]*d*g*k*z*ƒ* Š* ”* ž*¨*±* À*Í*Õ*å* ì* ÷* + ++,+;+C+8V++¯+ ¶+À+!Å+1ç+, , *,6,F,K,[_,‹»,¥G-”í-Z‚0¸Ý0–1Y¯2 44 4(4/484 G4T4g4 ~4Œ44>©4è466nb‚`l9/Z '. kjUMV=W+#ŠL>Rvw%YO8P(^gEK<…sr3"mS$uˆ&„5?2z†h_€4ci,!IG 7‹6{qo\| TD}:  yaB@]‡de1[tCA‰*f;NJXxƒHp-Q)0F~%i Lvl: %i100 FPS1st Player:200 FPS2nd Player:3rd Player:50 FPSA line send to your opponent's bowl will have this number of holes in it. The more holes the harder it will be to remove this line so you should choose a low value (e.g. 1 or 2) for long multiplayer games.Advanced OptionsAggressiveAllAlways Send Tetris:Animations:AsyncAudioAudio Settings.BackCPU Drop Delay:CPU Style:Center Preview:Change Background:ClassicClear Keystate:Collision Check:ControlsDefensiveDemoDisplay:DownDown:Drop block tile-by-tile or smooth.##NOTE: While tile-by-tile allows you to move a block below a tile multiple times you'll only be able to do so one time when choosing 'smooth'!#See 'Advanced Options/Collision Check' to improve this.Drop:Enable/Disable block preview.##If disabled you'll gain 15% score in the end!Enable/disable these quick hints.EndEnd Game? y/nExpert Mode:FiguresFrame Rate:FullscreenGame OverGame:Get back to nasty work.GraphicsHelp:Here you may customize the graphical appearance of LTris.Holes:HomeHorizontal Delay:Horizontally move block either tile-by-tile or smooth. This is just eye-candy and doesn't effect the moving speed at all.Human player names. If you play against CPU it will be named as CPU-x.If animations disturb you you may turn them off.If this is enabled the preview in Two-Player is centered in the middle of the screen instead that one is drawn at the bottom and one at the top.If this option is enabled your opponent will receive all four lines of your tetris ignoring the 'Send All' setting.If you don't want LTris to consume all of your CPU limit the frame rate.If you enable this option the keystate of either the 'Down' key or all the keys are cleared so you can't accidently move the next block.If you turn this on the background will change every level else it's always the same.If you turn visualization off the results will be computed faster. If you turn them on you can see a general game behaviour and judge the algorithm by this behaviour.InsertKamikazeLeftLeft AltLeft CtrlLeft ShiftLeft:Let's get it on!!!!LevelLinesLines:MenuMove:Multiplayer OptionsName Level ScoreNew GameNoNo LimitNoneNormalOffOnOptionsPageDownPageUpPlayer1Player2Player3Player:Preview:Quick Help:QuitRandom Holes:RightRight AltRight CtrlRight ShiftRight:Rotate Left:Rotate Right:Score:Send All Lines:Set player controls and horizontal speed.Setup and run a cool game!ShadowSlow:SmoothSome advanced options.Some multiplayer and CPU settings.Sound:SpaceStart GameStarting Level:SyncTest CPU AlgorithmTest the CPU analyze algorithm in cpu.c and give an average score for a number of games.The less delay you take the faster the block will horizontally move and the more sensitive the input is handled.The more aggressive the style is the more priority is put on completing multiple lines at the expense of a balanced bowl contents.There are basically three different game types:##CLASSIC:#The classic tetris game. Starts with an empty bowl and goes as long as you make it.#FIGURES:#Each level a nice figure will be added to the ground of you bowl. From level 7-12 there will be randomly appearing single tiles and from level 13-... there will be whole lines appearing at the bottom of your bowl. Fun!#TWO/THREE-PLAYER:#Either play against other humans or CPU. If you complete multiple lines they'll be send to your opponents according to the multiplayer settings you made.##And in DEMO you can see your CPU do the work. So relax! ;-)This is the delay in milliseconds the CPU waits before dropping a block.This is your starting level which will be ignored for game 'Figures' (you'll always start at level 0 there).##Each starting level up adds you 1.5% score in the end!This option controls how the holes in the lines are created when more than one line is sent. If the option is on, the holes will appear randomly for each line. If the option is off, all the lines that are sent in one go, will have the holes in the same spot.This option is only useful when 'Graphics/Drop' is 'Smooth'#(In opposite to 'Tile-By-Tile' the block is inserted as soon as it hits the ground giving no possibility to move the block below another one.)#If you set this option to 'Async' you may move the block below others but on the cost of slight graphical errors.Tile By TileUpVisualizationVolume:Vs CPUVs CPU&CPUVs HumanVs Human&CPUVs Human&HumanWindowYesYou cannot delete '%s'! You may play LTris either in window of fullscreen mode.You'll have to complete more than one line to send any lines to your opponent. If this option is enabled all lines will be send else one will be substracted.##If disabled:#3 Line send -> 2 lines received##If enabled:#3 lines send -> 3 lines receivednyProject-Id-Version: LTris 1.0.12 (problem med Ã¥,ä och ö) Report-Msgid-Bugs-To: lgames.sf.net/contact.php POT-Creation-Date: 2013-10-29 16:37+0100 PO-Revision-Date: 2008-08-26 18:20+0100 Last-Translator: Niklas Grahn Language-Team: Language: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Poedit-Language: Swedish X-Poedit-Country: SWEDEN %i Lvl: %i100 FPSFoersta spelare:200 FPSAndra spelare:Tredje spelare:50 FPSEn rad som skickas till din motstaundares skaul kommer ha dessa antalet haul i sig. Ju fler haul, desto svaurare kommer det bli att fau bort denna rad, sau du boer vaelja ett laugt vaerde (alltsau 1 eller 2) foer laengre spelomgaungar i flerspelarlaege.Avancerade instaelln.AggressivAllaSkicka alltid Tetris:Animationer:AsyncLjudLjudinstaellningar.TillbakaCPU Drop Delay:Datorstil:Center Preview:Aendra bakgrund:KlassiskRensa tangentkontroll:Kollisionskontroll:KontrollerDefensivDemoSkaerm:NedPil ned:Slaepp block rad-foer-rad eller mjukt.##NOTERA: Funktionen rad-foer-rad tillauter dig att flytta ett block nedanfoer en rad flera gaunger men det kan bara goeras en gaung om du valt 'mjukt'!#Se Avancerade instaellningar/Kollisonskontroll foer att foerbaettra detta.Slaepp:Enable/Disable block preview.##If disabled you'll gain 15% score in the end!Aktivera/avaktivera dessa snabba ledtraudar.EndAvsluta spel? y/nExpertlaegeFigurerBildfrekvens:HelskaermslaegeSpelet aer slutSpel:Autergau till otrevligt arbete.GrafikHjaelp:Haer kan du skraeddarsy LTris grafiska utseende.Haul:HomeHorisontell foerdroejning:Flytta block horisontellt antingen rad-foer-rad eller mjukt. Det haer aer bara oegongodis och pauverkar inte transporthastigheten alls.Maenskliga spelarnamn. Om du spelar mot datorn kommer den namnges som CPU-x.Om animationerna stoer dig kan du staenga av dem.Om denna instaellning aktiveras kommer foerhandstitten i tvau-spelar-laeget att centreras i mitten av skaermen istaellet foer i botten och toppen.Om denna instaellning aer aktiverad kommer din motstaundare att fau alla dina fyra tetrisrader genom att ignorera instaellningen 'Skicka alla'.Om du inte vill att LTris ska kaeka upp all din dators processorkraft kan du begraensa bildfrekvensen.Om du aktiverar denna instaellning kommer tangentknappen foer antingen 'Ned' eller alla tangentknappar att rensas sau du inte oavsiktligt flyttar naesta block.Om du aktiverar den haer kommer bakgrunden aendras efter varje bana, om inte foerblir den likadan.Om du avaktiverar visualisering kommer resultaten att beraeknas snabbare. Om du aktiverar dem kommer du se ett allmaent speluppfoerande och kan dau bedoema algoritmen utifraun detta.InsertKamikaze (sjaelvmord)VaensterVaenster altVaenster ctrlVaenster shiftPil vaensterNu koer vi!!!!BanaLinjerRader:MenyFlytta:MultiplayerinstaellningarNamn Bana PoaengNytt spelNejBegraensa ejIngenNormalAvPauInstaellningarPageDownPageUpSpelare 1Spelare 2Spelare 3Spelare:Foerhandstitt:Snabbhjaelp:AvslutaSlumpvisa haul:HoegerHoeger altHoeger ctrlHoeger shiftPil hoegerRotera vaenster:Rotera hoeger:Poaeng:Skicka alla rader:Konfigurera spelarkontroller och horisontella hastighet.Ordna och spela ett coolt spel!SkuggaLaungsam:MjukNaugra avancerade instaellningar.Naugra flerspelarlaeges- och datorinstaellningar.Ljud:MellanslagStarta spelInledande bana:SyncTesta datoralgoritmTesta datoralgoritmen i cpu.c och ge ett genomsnittligt betyg foer ett antal spelomgaungar.Ju mindre foerdroejning du anvaender, desto snabbare kommer blocket horisontellt att roera sig och the more sensitive the input is handled.Ju aggressivare stilen aer, desto hoegre prioriteras foermaugan att kunna avlaegsna flertalet rader. Detta sker dock till bekostnad av ett balanserat skaulinnehaull.Det finns i grund och botten tre olika speltyper:##Klassisk:#Det klassiska tetrisspelet. Startar med en tom skaul och fortsaetter sau laenge du klarar av det.#FIGURER:#Efter varje bana placeras en laecker figur i botten pau din skaul. Fraun och med bana 7-12 kommer slumpvisa enskilda rader att uppenbara sig och efter bana 13-...kommer hela rader att visa sig i botten av din skaul. Kul!#TVAU/TRE SPELARE:#Spela antingen mot andra maenniskor eller mot datorn. Ifall du klarar att avlaegsna flertalet rader kommer de skickas oever till dina motstaundare enligt de flerspelarupplaegg du har skapat.##Och i DEMO kan du se datorn goera jobbet. Sau slappna av! ;-)Detta aer foerdroejningen i millisekunder dau datorn vaentar innan den slaepper ett block.Detta aer din inledande bana vilken kommer att ignoreras i speltypen 'Figurer' (daer kommer du alltid fau starta pau bana noll).##Each starting level up adds you 1.5% score in the end!Denna instaellning kontrollerar hur haulen i raderna skapas dau fler aen en rad skickas. Om instaellningen anvaends kommer haulen slumpvis uppenbara sig foer varje rad. Om instaellningen aer avaktiverad kommer alla raderna som skickas pau en gaung att ha haulen pau samma staelle.Denna instaellning aer endast anvaendbar naer 'Grafik/Slaepp' aer 'Mjukt'#(i motsats till 'Rad-foer-rad' laeggs blocken in sau fort som det traeffar marken vilket hindrar moejligheten att flytta ett block nedanfoer ett annat.)#Om denna instaellning staells in till 'Async' kan du flytta ett block nedanfoer andra men till priset av grafiska fel.Rad-foer-radUppVisualiseringVolym:Vs datorVs dator&datorVs MaenniskaVs Maenniska&datorVs Maenniska&MaenniskaFoensterlaegeJaDu kan inte radera '%s'! Du kan spela LTris i antingen foenster- eller helskaermslaege.Du mauste tillintetgoera mer aen en rad foer att kunna skicka oever rader till din motstaundare. Om denna instaellning aer aktiverad kommer alla rader utom en att skickas.##Om avaktiverad:#tre rader skickas -> tvau rader mottages##Om aktiverad:#tre rader skickas -> tre rader mottagesnyltris-1.0.19/po/pt.gmo0000664000175000017500000003161512233753110011432 00000000000000Þ•‰d¿¬¨ © ´ ¼ È Ð Ü è ï Íü Ê Û æ ê þ    & + ; F V i q  ’ › ¥ ª ³ ¸ é¾ ¨L®!û ! /< D P [ekƒŒ9’ÌÓØyêFd0«ÜsmHáˆ*U³¦ °·ÀÅ Î Øãéý /HQT]bimpxˆ˜ ¨ ±½ ÂÐ Ö à ë÷ þ  )0Zu‰| "*MT ZeuzXpæ‚WZÚH5~< ¾Ë ÎÜä ëö ÿ "&7?ùw q   % 2 : G T [ Þh G! X!b!g! v!!‡! !›!¢!±!À!Ó!æ!ï!þ!" " ""/"6"="ùE"?#]G##¥#É#Í# â#ï# ÷# $ $$!$;$D$2K$~$‡$Ž$¡$K#%.o%ƒž%ƒ"&\¦&b'Mf'´´'i(q(w( €( (›( ª(´(Å(Ë(Ò(Ú(ß(æ(ý( ) ) $)/)6)=)A)E)L)\)l)u)~)‡) ) ›)©)®)Â) Ê) Ö) ã)ñ)ú) * *$*;9*!u*—*‰ž*(+/+5+%O+u+z+++¡+¦+kÀ+c,,v,E-IM/é—/0  1®1 ´1Á1 È1Õ1å1ö1 22#2'29C2}2ob‚`m9/Z '. lkUMV=W+#L>Rwx%YO8P(^gEK<…ts3"nS$vˆ&„5?2z†h_€4ci,!IG 76{rp\| TD}:  aBj@]‡de1[uCA‰*f;NJXyƒHq-Q)0F~%i Lvl: %i100 FPS1st Player:200 FPS2nd Player:3rd Player:50 FPSA line send to your opponent's bowl will have this number of holes in it. The more holes the harder it will be to remove this line so you should choose a low value (e.g. 1 or 2) for long multiplayer games.Advanced OptionsAggressiveAllAlways Send Tetris:Animations:AsyncAudioAudio Settings.BackCPU Drop Delay:CPU Style:Center Preview:Change Background:ClassicClear Keystate:Collision Check:ControlsDefensiveDemoDisplay:DownDown:Drop block tile-by-tile or smooth.##NOTE: While tile-by-tile allows you to move a block below a tile multiple times you'll only be able to do so one time when choosing 'smooth'!#See 'Advanced Options/Collision Check' to improve this.Drop:Enable/Disable block preview.##If disabled you'll gain 15% score in the end!Enable/disable these quick hints.EndEnd Game? y/nExpert Mode:FiguresFrame Rate:FullscreenGame OverGame:Get back to nasty work.GraphicsHelp:Here you may customize the graphical appearance of LTris.Holes:HomeHorizontal Delay:Horizontally move block either tile-by-tile or smooth. This is just eye-candy and doesn't effect the moving speed at all.Human player names. If you play against CPU it will be named as CPU-x.If animations disturb you you may turn them off.If this is enabled the preview in Two-Player is centered in the middle of the screen instead that one is drawn at the bottom and one at the top.If this option is enabled your opponent will receive all four lines of your tetris ignoring the 'Send All' setting.If you don't want LTris to consume all of your CPU limit the frame rate.If you enable this option the keystate of either the 'Down' key or all the keys are cleared so you can't accidently move the next block.If you turn this on the background will change every level else it's always the same.If you turn visualization off the results will be computed faster. If you turn them on you can see a general game behaviour and judge the algorithm by this behaviour.InsertKamikazeLeftLeft AltLeft CtrlLeft ShiftLeft:Let's get it on!!!!LevelLinesLines:MenuMove:Multiplayer OptionsName Level ScoreNew GameNoNo LimitNoneNormalOffOnOptionsPageDownPageUpPlayer1Player2Player3Player:Preview:Quick Help:QuitRandom Holes:RightRight AltRight CtrlRight ShiftRight:Rotate Left:Rotate Right:Score:Send All Lines:Set player controls and horizontal speed.Setup and run a cool game!ShadowShows guiding lines or a shadow of the currently dropping block so you see where it'll hit the ground.##This option has no penalty/bonus.Slow:SmoothSome advanced options.Some multiplayer and CPU settings.Sound:SpaceStart GameStarting Level:SyncTest CPU AlgorithmTest the CPU analyze algorithm in cpu.c and give an average score for a number of games.The less delay you take the faster the block will horizontally move and the more sensitive the input is handled.The more aggressive the style is the more priority is put on completing multiple lines at the expense of a balanced bowl contents.There are basically three different game types:##CLASSIC:#The classic tetris game. Starts with an empty bowl and goes as long as you make it.#FIGURES:#Each level a nice figure will be added to the ground of you bowl. From level 7-12 there will be randomly appearing single tiles and from level 13-... there will be whole lines appearing at the bottom of your bowl. Fun!#TWO/THREE-PLAYER:#Either play against other humans or CPU. If you complete multiple lines they'll be send to your opponents according to the multiplayer settings you made.##And in DEMO you can see your CPU do the work. So relax! ;-)This is the delay in milliseconds the CPU waits before dropping a block.This option controls how the holes in the lines are created when more than one line is sent. If the option is on, the holes will appear randomly for each line. If the option is off, all the lines that are sent in one go, will have the holes in the same spot.This option is only useful when 'Graphics/Drop' is 'Smooth'#(In opposite to 'Tile-By-Tile' the block is inserted as soon as it hits the ground giving no possibility to move the block below another one.)#If you set this option to 'Async' you may move the block below others but on the cost of slight graphical errors.Tile By TileUpVisualizationVolume:Vs CPUVs CPU&CPUVs HumanVs Human&CPUVs Human&HumanWindowYesYou cannot delete '%s'! You may play LTris either in window of fullscreen mode.You'll have to complete more than one line to send any lines to your opponent. If this option is enabled all lines will be send else one will be substracted.##If disabled:#3 Line send -> 2 lines received##If enabled:#3 lines send -> 3 lines receivedProject-Id-Version: ltris_pt_prod Report-Msgid-Bugs-To: lgames.sf.net/contact.php POT-Creation-Date: 2013-10-29 16:37+0100 PO-Revision-Date: 2008-03-30 22:19+0200 Last-Translator: Jose Jorge Language-Team: portugues Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); X-Generator: KBabel 1.11.4 %i Nvl: %i100 IPS1ro Jogador:200 IPS2do Jogador:3ro Jogador:50 IPSA linha enviada para os seus adversarios vai ter este numero de buracos. Mais buracos ha, mais dificil e de tirar a linha, portanto e aconselhado de escolher um valor baixo (1 ou 2) para jogos compridos em multi-jogadores.Opcoes AvancadasAgressivoTudoEnviar Tetris:Animacoes:AsincAudioOpcoes Audio.VoltarAtraso do CPU:Estilo de CPU:Centrar Antevisao:Modificar o Fundo:ClassicoLimpar Teclas:Testar Colisoes:ControloDefensivoDemonstracaoVideo:DescerDescer:Largar o bloco passo-a-passo ou suavemente.##NOTA: Enquanto que passo-a-passo permite-lhe de move um bloco debaixode outro varias vezes, so vai poder fazer isso uma ves se escolher 'suave'!#Veja 'Opcoes Avancadas/Testar Colisoes' para melhorar isto.Largar:Activar/Desactivar a antevisao do bloco.##Se for desactivada vai obter mais 15% score no fim!Activar/desactivar estes conselhos.FimTerminar o Jogo? y/nModo Perito:FigurasVelocidade:Todo o EcraFim do JogoJogo:Voltar ao trabalho chato.GraficosAjuda:Aqui pode configurar a aparencia grafica do LTris.Buracos:InicioAtraso Horizontal:Move horizontalmente o bloco seja passo a passo ou suavemente. Isto e so para decorar e nao muda nada da velocidade de movimento.Nome dos jogadores humanos. Se jogar contra o computador o nome sera CPU-x.Se as animacoes o perturbam pode desligar-las.Se isto for activado a previsualisacao em modo 2 Jogadores e centrada no meio do ecra no inves de ser uma em baixo e outra em cima.Se isto for activado os seus adversarios vao receber todas as quatro linhas dos seus tetris sem ter em conta a opcao 'Enviar Todos'Se nao quizer que LTris gaste todo o seu processador limite o numero de imagens por segundo.Se isto for activado o estado das teclas e apagado para evitar to mexa por erro no bloco seguinte.Se isto for activado o fundo vai mudar a cada nivel, senao fica sempre igual.Se desligar a visualizacao os resultados vao ser calculados mais depressa. Se a ligar vai ver o comportamento geral do jogo e poder avaliar o algoritmo seguinte esse comportamento.InserirDoidoEsquerdaAlt EsquerdaCtrl EsquerdaShift EsquerdaEsquerda:Vamos a isto!!!!NivelLinhasLinhas:MenuMover:Opcoes multi-jogadoresNome Nivel PontosNovo JogoNaoSem LimiteNenhumNormalNaoSimOpcoesPagina SeguintePagina AnteriorJogador1Jogador2Jogador3Jogador:Antevisao:Ajuda Rapida:SairBuracos Aleatorios:DireitaAlt DireitaCtrl DireitaShift DireitaDireita:Rodar Esquerda:Rodar Direita:Pontuacao:Enviar Todas Linhas:Definir o controlo dos jogadores e a velocidade horizontal.Configurar e iniciar um bom jogo!SombraMostra linhas de guia ou uma sombra do bloco que esta caindo para que para ver onde ele vai tocar o chao.#Esta opcao nao tem malus/bonus.Lento:SuaveAlgumas opcoes avancadas.Algumas opcoes multi-jogadores e CPU.Som:EspacoIniciar o JogoNivel de Inicio:SincTestar o Algoritmo do CPUTestar o algoritmo de analise do computador em cpu.c e dar o resultado medio para um certo numero de jogos.Menos tempo mete mais depressa o bloco vai mover horizontalmente e mais sensivel o teclado vai ser.O mais agressivo o estilo for, mais prioridade e metida em completar linhas multiplas no lugar de um jogo equilibrado.Ha 3 tipos de jogos:##CLASSICO:#O jogo tetris classico. Comeca com um chao vazio e continua enquanto que voce aguentar.#FIGURAS:#Em cada nivel uma linda figura vai ser metida no chao. Nos niveis 7-12 vao aparecer aleotoriamente pecas e a partir do nivel 13-... vao aparecer aleatoriamente linhas inteiras no chao. Giro!#2/3 JOGADORES:#Joga contra outros jogadores ou CPU. Se completar linhas multiplas vao ser enviadas para os seus adversarios seguinte a regras de multi-jogadores que voce escolher.##E em DEMONSTRACAO vai poder ver o seu CPU fazer o trabalho. Entao aproveite! ;-)Este e em milisegundos o tempo que o CPU espera antes de largar um bloco.Esta opcao controla como os buracos nas linhas sao criados quando mais de uma linha e enviada. Se activada, os buracos aparecem aleatoriamente em cada linha. Senao, todas as linhas enviadas de uma ves terao os buracos no mesmo sitio.Esta opcao so faz sentido se 'Graficos/Mover' esta em 'Suave'#(Na contrario do Passo-a-Passo os blocos sao inseridos mal tocam no chao, ficando impossivel mover o bloco debaixo doutro.)#Se voce escolher 'Asinc' vai poder mover o bloco debaixo de outro, ao preco de alguns erros visuais.Passo a PassoSubirVisualizacaoNivel:Contra o CPUContra dois CPUContra 1 JogadorContra Jogador&CPUContra 2 JogadoresJanelaSimVoce nao pode apagar '%s'! Voce pode jogar LTris seja numa janela ou em todo o ecra.Voce deve completar mais de uma linha para enviar todas as linhas as seus adversarios. Se isto for activado todas as linhas serao enviadas menos uma.##Se for desactivado:#3 Linhas enviadas -> 2 linhas recebidas##Se for desactivado:#3 Linhas enviadas -> 3 linhas recebidasltris-1.0.19/po/tr.gmo0000664000175000017500000003220712233753110011432 00000000000000Þ•ˆ\µœp q | „  ˜ ¤ ° · ÍÄ ’ £ ® ² Æ Ò Ø Þ î ó    1 9 I Z c m r { € é† p!v˜ œ ª· ¿ Ë Öàæþ9 GNSyeFß0&WsèH\ˆ¥U.¦„+2;@ I S^dx~„‹–ªÃÌÏØÝäèëóü # ,8 =K Q [ fr y †”›)«Õð‰÷‡Ž"¥ÈÏ ÕàðõXpa‚ÒZUH°ù<ü 9F IW_ fq z‡–¡7ºùòzì grzŠ’¡° ·ÃÒ æ í ó !!/! 3!A!F!b!r!!•!œ!±! Å! Ð!Û! à!ë!ò!ú!#3#L#P# d#p#y# ‰# “#ž#¤# ¹#Ã#9Ì# $ $$x*$^£$?%¤B%ç%Ti&•¾&_T'º´'o(t(}((‰( ’(ž(£(µ(¼(Ã(Ë(Ð(×('ï( )!) ()4)<)C)K) Q) \) i)w))‡)) —)¡)²)·)É)Í)Õ) Þ)ê) ï) ü) **,'*%T*z*z€*û*+ ++$+P+U+ \+h+x+‡+l¥+|,‡,‚-gš/071 T2b2j2 y2 …22­2¶2Ñ2ê2ò2÷283>H3]/lˆ€I† (5mVKCarEX9:fƒ ?2jO&w"!FxzP {83bvT> …BN@AuZ\ky)L#- 1`HY;‚+Q%St60,o~g_JG4‡.ihdc^ e|R*U}<'nWMs=Dpq$7„[%i Lvl: %i100 FPS1st Player:200 FPS2nd Player:3rd Player:50 FPSA line send to your opponent's bowl will have this number of holes in it. The more holes the harder it will be to remove this line so you should choose a low value (e.g. 1 or 2) for long multiplayer games.Advanced OptionsAggressiveAllAlways Send Tetris:Animations:AsyncAudioAudio Settings.BackCPU Drop Delay:CPU Style:Center Preview:Change Background:ClassicClear Keystate:Collision Check:ControlsDefensiveDemoDisplay:DownDown:Drop block tile-by-tile or smooth.##NOTE: While tile-by-tile allows you to move a block below a tile multiple times you'll only be able to do so one time when choosing 'smooth'!#See 'Advanced Options/Collision Check' to improve this.Drop:Enable/disable these quick hints.EndEnd Game? y/nExpert Mode:FiguresFrame Rate:FullscreenGame OverGame:Get back to nasty work.GraphicsHelp:Here you may customize the graphical appearance of LTris.Holes:HomeHorizontal Delay:Horizontally move block either tile-by-tile or smooth. This is just eye-candy and doesn't effect the moving speed at all.Human player names. If you play against CPU it will be named as CPU-x.If animations disturb you you may turn them off.If this is enabled the preview in Two-Player is centered in the middle of the screen instead that one is drawn at the bottom and one at the top.If this option is enabled your opponent will receive all four lines of your tetris ignoring the 'Send All' setting.If you don't want LTris to consume all of your CPU limit the frame rate.If you enable this option the keystate of either the 'Down' key or all the keys are cleared so you can't accidently move the next block.If you turn this on the background will change every level else it's always the same.If you turn visualization off the results will be computed faster. If you turn them on you can see a general game behaviour and judge the algorithm by this behaviour.InsertKamikazeLeftLeft AltLeft CtrlLeft ShiftLeft:Let's get it on!!!!LevelLinesLines:MenuMove:Multiplayer OptionsName Level ScoreNew GameNoNo LimitNoneNormalOffOnOptionsPageDownPageUpPlayer1Player2Player3Player:Preview:Quick Help:QuitRandom Holes:RightRight AltRight CtrlRight ShiftRight:Rotate Left:Rotate Right:Score:Send All Lines:Set player controls and horizontal speed.Setup and run a cool game!ShadowShows guiding lines or a shadow of the currently dropping block so you see where it'll hit the ground.##This option has no penalty/bonus.Slow:SmoothSome advanced options.Some multiplayer and CPU settings.Sound:SpaceStart GameStarting Level:SyncTest CPU AlgorithmTest the CPU analyze algorithm in cpu.c and give an average score for a number of games.The less delay you take the faster the block will horizontally move and the more sensitive the input is handled.The more aggressive the style is the more priority is put on completing multiple lines at the expense of a balanced bowl contents.There are basically three different game types:##CLASSIC:#The classic tetris game. Starts with an empty bowl and goes as long as you make it.#FIGURES:#Each level a nice figure will be added to the ground of you bowl. From level 7-12 there will be randomly appearing single tiles and from level 13-... there will be whole lines appearing at the bottom of your bowl. Fun!#TWO/THREE-PLAYER:#Either play against other humans or CPU. If you complete multiple lines they'll be send to your opponents according to the multiplayer settings you made.##And in DEMO you can see your CPU do the work. So relax! ;-)This is the delay in milliseconds the CPU waits before dropping a block.This option controls how the holes in the lines are created when more than one line is sent. If the option is on, the holes will appear randomly for each line. If the option is off, all the lines that are sent in one go, will have the holes in the same spot.This option is only useful when 'Graphics/Drop' is 'Smooth'#(In opposite to 'Tile-By-Tile' the block is inserted as soon as it hits the ground giving no possibility to move the block below another one.)#If you set this option to 'Async' you may move the block below others but on the cost of slight graphical errors.Tile By TileUpVisualizationVolume:Vs CPUVs CPU&CPUVs HumanVs Human&CPUVs Human&HumanWindowYesYou cannot delete '%s'! You may play LTris either in window of fullscreen mode.You'll have to complete more than one line to send any lines to your opponent. If this option is enabled all lines will be send else one will be substracted.##If disabled:#3 Line send -> 2 lines received##If enabled:#3 lines send -> 3 lines receivedProject-Id-Version: ltris Report-Msgid-Bugs-To: lgames.sf.net/contact.php POT-Creation-Date: 2013-10-29 16:37+0100 PO-Revision-Date: 2006-02-05 15:08+0200 Last-Translator: Server Acim Language-Team: Turkce Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: KBabel 1.11 %i Lvl: %i100 FPSBirinci Oyuncu:200 FPSIkinci Oyuncu:Ucuncu Oyuncu:50 FPSRakibinizin bolgesine gondereceginiz bir hat icindeki deliklerin sayısını alacaktır. Delikler cogaldıkca zorluk derecesi artacak bu hattı cıkarmak zorunda kalacaktır, iste bu yuzden coklu oyuncu secilen oyunlarda 1 veya 2 gibi daha dusuk bir deger secmelisiniz.Gelismis SeceneklerGerginHepsiHer zaman Tetris'i Gonder:Canlandırmalar:AsenkronizasyonSesSes AyarlarıGeriIslemci Bırakma Gecikmesi:Islemci Tarzı:Ortada Onizle:Artalanı Degistir:KlasikTusdurumunu Temizle:Carpısma Denetimi:DenetimlerSavunmalıDemoGoruntule:AsagıAsagı:Obegi doseyerek veya duzgun olarak bırak. ##DIKKAT: Doseye doseye gitmek sizin obegi birden fazla defa asagıya tasımanıza izin verir eger duzgun'u secerseniz bu islemi sadece bir kez yapabilirsiniz !#Bakınız Bunu iyilestirmek icin Gelismis Secenekler / Cakısma Kontrolu.Bırak:Bu hızlı ip uclarını etkinlestir/etkisizlestir.SonOyun Bitsin mi? e/hUzman Kipi:SekillerCerceve Oranı:Tam EkranOyun BittiOyun:Calısmaya geri don.CizgelemeYardım:LTris'in grafik gorunumunu buradan ozellestirebilirsiniz.Delikler:BaslangıcYatay Gecikme:Yatay olarak obegi doseyerek veya duzgun tası. Bu sadece gorsel bir unsurdur ve hareket hızını tam olarak etkilemez.Canlı oyuncu isimleri. eger islemciye karsı oynarsanız o CPU-x olarak adlandırılacaktır.Eger animasyonlar seni rahatsız ederse onları kapatabilirsin.Eger bu etkinlestirilmisse Iki-Oyuncu seceneginde oyunculardan birinin altta, digerinin ustte gosterilmesi yerine, onizleme gorunumu ekranın ortasında olacaktır.Eger bu secenek etkinlestirilmis ise rakibiniz tetris'in 'Hepsini Gonder' ayarını yok saydıgı tum dort hattı da alacaktır.Eger LTris'in CPU'nun tumunu harcamasını istemiyorsan cerceve oranını sınırla.Eger bu secenegi etkinlestirirseniz ya 'Asagı' tusunuz veya tum tus takımınız temizlenecek boylece kazara bir sonraki blogu oynatamayacaksınız.Eger bunu acarsanız arkaplanınız her seviyede degisecek, eger acmazsanız aynı kalacaktır.Eger gorunumu kapatırsanız sonuclar daha hızlı hesaplanacaktır. Eger onları acarsanız genel bir oyun davranısı gorebilir ve cozum yolunu bu davranısa gore yargılayabilirsiniz.EkleKamikazeSolSol AltSol CtrlSol OtelemeSol:Devam edelim!!!!!SeviyeHatlarHatlar:MenuTası:Cok Oyunculu SeceneklerIsim''''''''''''Seviye''''''''''''SonucYeni OyunHayırSınır yokHicbiriNormalKapalıAcıkSeceneklerAsagı SayfaYukarı SayfaOyuncu1Oyuncu2Oyuncu3Oyuncu:Onizleme:Hızlı Yardım:CıkRasgele Delikler:SagSag AltSag CtrlSag OtelemeSag:Sola Dondur:Saga Dondur:Sonuc:Butun Hatları Gonder:Oyuncu kontrollerini ve yatay hızı ayarla.Ayarla ve harika bir oyun calıstır.GolgeRehber satırları veya su anda dusen obegi gosterir boylece nerede yere dustugunu gorursun. $$Bu secenegin bonusu yoktur.Yavas:DuzgunBazı gelismis secenekler.Bazı coklu oyuncular ve islemci ayarları.Ses:BoslukOyuna BaslaBaslama Duzeyi:SenkronizasyonIslemci Algoritmasını Sınacpu . c'deki Islemci analiz cozum yolunu test edin. ve oyun sayıları icin aritmetik ortalama puanı verin.Obegi ne kadar yatay olarak hızlı hareket ettirirseniz daha az gecikme olacak ve tanıtılan giris daha hassaslasacaktır.Tarz ne kadar gerilirse, dengeli hat iceriklerinin saglıklı bir sekilde coklu hatların tamamlanmasındaki oncelik de o kadar artar.Temel olarak uc farklı oyun turu vardır:##KLASIK:#Klasik tetris oyunu. Bos bir kase ile baslar ve siz oyunu surdurdukce bu kase dolar.#SEKILLER:#Her seviye de guzel bir sekil kasenizin dibine eklenecektir. 7-12 arasındaki seviyelerden itibaren rastgele gorunen tek dosemeler olarak ve seviye 13'ten sonra kasenizin dibinde gozuken daha yogun hatlar olacaktır. Eglenmenize bakın! #IKI/UC OYUNCULU:#Insanlara karsı veya islemciye karsı oynana oyun. Coklu hatları tamamlarsanız, coklu oyuncu ayarlarınıza baglı olarak, bu veri rakibinize gonderilecektir.##Ve DEMO'da islemcinizin oynadıgını goreceksiniz. Bu yuzden, rahat olun! -)Islemcinin bir obegi bırakmadan once bekletmesinden kaynaklanan milisaniye oranındaki bir gecikmedir.Bu secenek, birden fazla hat gonderildiginde hatlardaki deliklerin nasıl yaratılacagını kontrol edecektir. Eger bu secenek acıksa, her hat icin delikler rastgele gozukecektir. Eger bu secenek kapalıysa, tek basına gonderilen tum hatlar aynı lekedeki hatları alacaklardır.Bu secenek 'sadece Sekiller/Bırak' secenegi 'Duzgun'e ayarlanmıssa ise yarar#(Doseye-Doseye'nin tersine blok dibe baska bir yere kıpırdayamayacak sekilde yerlestirilmistir.)#Eger bu secenegi 'Esitsiz'e isaretlerseniz bazı kucuk gorsel hataları goze almak pahasına blogu asagıya hareket ettirebilirsiniz.Doseye-DoseyeYukarıGorsellestirmeSes Duzeyi:Vs IslemciVs Islemci'ye&karsı IslemciVs InsanVs Insan'a karsı Isl&emciVs Insan'a karsı I&nsanPencereEvetBunu silemezsiniz %s ! LTris'i tam ekran modundaki pencerede de oynayabilirsin.Rakibine herhangi bir hat gondermek istiyorsan birden fazla hattı tamamlamalısın. Eger bu secenek etkinlestirilmis ise birisi geri cekilmis olsa bile tum hatlar gonderilmis olacaktır.##eger etkinlestirilmis ise: #3 Hat gonderildi -> 2 hat alındı##eger etkinlestirilmis ise: #3 hatlar gonderildi -> 3 hat alındıltris-1.0.19/po/sv.po0000664000175000017500000004751712233753110011303 00000000000000# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Michael Speck # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: LTris 1.0.12 (problem med Ã¥,ä och ö)\n" "Report-Msgid-Bugs-To: lgames.sf.net/contact.php\n" "POT-Creation-Date: 2013-10-29 16:37+0100\n" "PO-Revision-Date: 2008-08-26 18:20+0100\n" "Last-Translator: Niklas Grahn \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Swedish\n" "X-Poedit-Country: SWEDEN\n" #: src/manager.c:65 msgid "Enable/disable these quick hints." msgstr "Aktivera/avaktivera dessa snabba ledtraudar." #: src/manager.c:66 msgid "Set player controls and horizontal speed." msgstr "Konfigurera spelarkontroller och horisontella hastighet." #: src/manager.c:67 msgid "Here you may customize the graphical appearance of LTris." msgstr "Haer kan du skraeddarsy LTris grafiska utseende." #: src/manager.c:68 msgid "Audio Settings." msgstr "Ljudinstaellningar." #: src/manager.c:69 msgid "Get back to nasty work." msgstr "Autergau till otrevligt arbete." #: src/manager.c:70 msgid "Setup and run a cool game!" msgstr "Ordna och spela ett coolt spel!" #: src/manager.c:71 msgid "If animations disturb you you may turn them off." msgstr "Om animationerna stoer dig kan du staenga av dem." #: src/manager.c:72 msgid "You may play LTris either in window of fullscreen mode." msgstr "Du kan spela LTris i antingen foenster- eller helskaermslaege." #: src/manager.c:73 msgid "" "If you don't want LTris to consume all of your CPU limit the frame rate." msgstr "" "Om du inte vill att LTris ska kaeka upp all din dators processorkraft kan du " "begraensa bildfrekvensen." #: src/manager.c:74 msgid "" "Horizontally move block either tile-by-tile or smooth. This is just eye-" "candy and doesn't effect the moving speed at all." msgstr "" "Flytta block horisontellt antingen rad-foer-rad eller mjukt. Det haer aer " "bara oegongodis och pauverkar inte transporthastigheten alls." #: src/manager.c:75 msgid "" "Drop block tile-by-tile or smooth.##NOTE: While tile-by-tile allows you to " "move a block below a tile multiple times you'll only be able to do so one " "time when choosing 'smooth'!#See 'Advanced Options/Collision Check' to " "improve this." msgstr "" "Slaepp block rad-foer-rad eller mjukt.##NOTERA: Funktionen rad-foer-rad " "tillauter dig att flytta ett block nedanfoer en rad flera gaunger men det " "kan bara goeras en gaung om du valt 'mjukt'!#Se Avancerade instaellningar/" "Kollisonskontroll foer att foerbaettra detta." #: src/manager.c:76 msgid "" "The less delay you take the faster the block will horizontally move and the " "more sensitive the input is handled." msgstr "" "Ju mindre foerdroejning du anvaender, desto snabbare kommer blocket " "horisontellt att roera sig och the more sensitive the input is handled." #: src/manager.c:77 msgid "Delay for vertical movement when using Down key." msgstr "" #: src/manager.c:78 #, fuzzy msgid "" "Left/Right: horizontal movement#Rotate Left/Right: block rotation#Down: " "faster Dropping#Drop: INSTANT drop" msgstr "" "Varje kontrollvaerde behoever en unik tangentknapp foer att kunna fungera." "##Vaenster/hoeger: horisontell foerflyttning#Rotera vaenster/hoeger: " "blockrotation#Ned: kvickare slaepp#Slaepp: OMEDELBART slaepp" #: src/manager.c:79 msgid "Key used to pause and unpause a game." msgstr "" #: src/manager.c:80 msgid "Let's get it on!!!!" msgstr "Nu koer vi!!!!" #: src/manager.c:81 msgid "Human player names. If you play against CPU it will be named as CPU-x." msgstr "" "Maenskliga spelarnamn. Om du spelar mot datorn kommer den namnges som CPU-x." #: src/manager.c:82 #, c-format msgid "" "This is your starting level which will be ignored for game 'Figures' (you'll " "always start at level 0 there).##Each starting level up adds you 1.5% score " "in the end!" msgstr "" "Detta aer din inledande bana vilken kommer att ignoreras i speltypen " "'Figurer' (daer kommer du alltid fau starta pau bana noll).##Each starting " "level up adds you 1.5% score in the end!" #: src/manager.c:83 #, c-format msgid "" "Enable/Disable block preview.##If disabled you'll gain 15% score in the end!" msgstr "" "Enable/Disable block preview.##If disabled you'll gain 15% score in the end!" #: src/manager.c:84 #, fuzzy msgid "" "Shows guiding lines or a shadow of the currently dropping block so you see " "where it'll hit the ground.##This option has no penalty/bonus." msgstr "" "Visar vaegledande linjer eller en skugga av det aktuella fallande blocket " "sau att du kan se var det kommer traeffa marken.##Denna instaellning har " "ingen malus/bonus." #: src/manager.c:85 msgid "Some multiplayer and CPU settings." msgstr "Naugra flerspelarlaeges- och datorinstaellningar." #: src/manager.c:86 msgid "" "A line send to your opponent's bowl will have this number of holes in it. " "The more holes the harder it will be to remove this line so you should " "choose a low value (e.g. 1 or 2) for long multiplayer games." msgstr "" "En rad som skickas till din motstaundares skaul kommer ha dessa antalet haul " "i sig. Ju fler haul, desto svaurare kommer det bli att fau bort denna rad, " "sau du boer vaelja ett laugt vaerde (alltsau 1 eller 2) foer laengre " "spelomgaungar i flerspelarlaege." #: src/manager.c:87 msgid "" "This option controls how the holes in the lines are created when more than " "one line is sent. If the option is on, the holes will appear randomly for " "each line. If the option is off, all the lines that are sent in one go, will " "have the holes in the same spot." msgstr "" "Denna instaellning kontrollerar hur haulen i raderna skapas dau fler aen en " "rad skickas. Om instaellningen anvaends kommer haulen slumpvis uppenbara sig " "foer varje rad. Om instaellningen aer avaktiverad kommer alla raderna som " "skickas pau en gaung att ha haulen pau samma staelle." #: src/manager.c:88 msgid "" "You'll have to complete more than one line to send any lines to your " "opponent. If this option is enabled all lines will be send else one will be " "substracted.##If disabled:#3 Line send -> 2 lines received##If enabled:#3 " "lines send -> 3 lines received" msgstr "" "Du mauste tillintetgoera mer aen en rad foer att kunna skicka oever rader " "till din motstaundare. Om denna instaellning aer aktiverad kommer alla rader " "utom en att skickas.##Om avaktiverad:#tre rader skickas -> tvau rader " "mottages##Om aktiverad:#tre rader skickas -> tre rader mottages" #: src/manager.c:89 msgid "" "If this option is enabled your opponent will receive all four lines of your " "tetris ignoring the 'Send All' setting." msgstr "" "Om denna instaellning aer aktiverad kommer din motstaundare att fau alla " "dina fyra tetrisrader genom att ignorera instaellningen 'Skicka alla'." #: src/manager.c:90 msgid "" "This is the delay in milliseconds the CPU waits before dropping a block." msgstr "" "Detta aer foerdroejningen i millisekunder dau datorn vaentar innan den " "slaepper ett block." #: src/manager.c:91 msgid "" "The more aggressive the style is the more priority is put on completing " "multiple lines at the expense of a balanced bowl contents." msgstr "" "Ju aggressivare stilen aer, desto hoegre prioriteras foermaugan att kunna " "avlaegsna flertalet rader. Detta sker dock till bekostnad av ett balanserat " "skaulinnehaull." #: src/manager.c:92 msgid "Some advanced options." msgstr "Naugra avancerade instaellningar." #: src/manager.c:93 msgid "" "Test the CPU analyze algorithm in cpu.c and give an average score for a " "number of games." msgstr "" "Testa datoralgoritmen i cpu.c och ge ett genomsnittligt betyg foer ett antal " "spelomgaungar." #: src/manager.c:94 msgid "" "If you turn visualization off the results will be computed faster. If you " "turn them on you can see a general game behaviour and judge the algorithm by " "this behaviour." msgstr "" "Om du avaktiverar visualisering kommer resultaten att beraeknas snabbare. Om " "du aktiverar dem kommer du se ett allmaent speluppfoerande och kan dau " "bedoema algoritmen utifraun detta." #: src/manager.c:95 msgid "" "There are basically three different game types:##CLASSIC:#The classic tetris " "game. Starts with an empty bowl and goes as long as you make it.#FIGURES:" "#Each level a nice figure will be added to the ground of you bowl. From " "level 7-12 there will be randomly appearing single tiles and from level " "13-... there will be whole lines appearing at the bottom of your bowl. Fun!" "#TWO/THREE-PLAYER:#Either play against other humans or CPU. If you complete " "multiple lines they'll be send to your opponents according to the " "multiplayer settings you made.##And in DEMO you can see your CPU do the " "work. So relax! ;-)" msgstr "" "Det finns i grund och botten tre olika speltyper:##Klassisk:#Det klassiska " "tetrisspelet. Startar med en tom skaul och fortsaetter sau laenge du klarar " "av det.#FIGURER:#Efter varje bana placeras en laecker figur i botten pau din " "skaul. Fraun och med bana 7-12 kommer slumpvisa enskilda rader att uppenbara " "sig och efter bana 13-...kommer hela rader att visa sig i botten av din " "skaul. Kul!#TVAU/TRE SPELARE:#Spela antingen mot andra maenniskor eller mot " "datorn. Ifall du klarar att avlaegsna flertalet rader kommer de skickas " "oever till dina motstaundare enligt de flerspelarupplaegg du har skapat." "##Och i DEMO kan du se datorn goera jobbet. Sau slappna av! ;-)" #: src/manager.c:101 msgid "" "If you turn this on the background will change every level else it's always " "the same." msgstr "" "Om du aktiverar den haer kommer bakgrunden aendras efter varje bana, om inte " "foerblir den likadan." #: src/manager.c:102 msgid "" "If you enable this option the keystate of either the 'Down' key or all the " "keys are cleared so you can't accidently move the next block." msgstr "" "Om du aktiverar denna instaellning kommer tangentknappen foer antingen 'Ned' " "eller alla tangentknappar att rensas sau du inte oavsiktligt flyttar naesta " "block." #: src/manager.c:103 msgid "" "If this is enabled the preview in Two-Player is centered in the middle of " "the screen instead that one is drawn at the bottom and one at the top." msgstr "" "Om denna instaellning aktiveras kommer foerhandstitten i tvau-spelar-laeget " "att centreras i mitten av skaermen istaellet foer i botten och toppen." #: src/manager.c:104 msgid "" "This option is only useful when 'Graphics/Drop' is 'Smooth'#(In opposite to " "'Tile-By-Tile' the block is inserted as soon as it hits the ground giving no " "possibility to move the block below another one.)#If you set this option to " "'Async' you may move the block below others but on the cost of slight " "graphical errors." msgstr "" "Denna instaellning aer endast anvaendbar naer 'Grafik/Slaepp' aer 'Mjukt'#(i " "motsats till 'Rad-foer-rad' laeggs blocken in sau fort som det traeffar " "marken vilket hindrar moejligheten att flytta ett block nedanfoer ett annat.)" "#Om denna instaellning staells in till 'Async' kan du flytta ett block " "nedanfoer andra men till priset av grafiska fel." #: src/manager.c:109 #, c-format msgid "" "In expert mode the most unsuitable piece of the current bag (a bag is a set " "of all 7 randomly sorted basic pieces) is dealt out next. This option only " "works for single player. There is a 50% score bonus in the end." msgstr "" #: src/manager.c:141 src/manager.c:142 msgid "" msgstr "" #: src/manager.c:142 #, c-format msgid "You cannot delete '%s'!\n" msgstr "Du kan inte radera '%s'!\n" #: src/manager.c:212 msgid "No Limit" msgstr "Begraensa ej" #: src/manager.c:212 msgid "50 FPS" msgstr "50 FPS" #: src/manager.c:212 msgid "100 FPS" msgstr "100 FPS" #: src/manager.c:212 msgid "200 FPS" msgstr "200 FPS" #: src/manager.c:213 msgid "Defensive" msgstr "Defensiv" #: src/manager.c:213 msgid "Normal" msgstr "Normal" #: src/manager.c:213 msgid "Aggressive" msgstr "Aggressiv" #: src/manager.c:213 msgid "Kamikaze" msgstr "Kamikaze (sjaelvmord)" #: src/manager.c:214 src/manager.c:324 src/manager.c:334 src/manager.c:354 #: src/manager.c:356 src/manager.c:358 src/manager.c:367 src/manager.c:368 #: src/manager.c:369 src/manager.c:436 src/manager.c:440 src/manager.c:445 msgid "Off" msgstr "Av" #: src/manager.c:214 msgid "Shadow" msgstr "Skugga" #: src/manager.c:214 msgid "Lines" msgstr "Linjer" #: src/manager.c:215 msgid "None" msgstr "Ingen" #: src/manager.c:215 src/value.c:44 msgid "Down" msgstr "Ned" #: src/manager.c:215 msgid "All" msgstr "Alla" #: src/manager.c:280 msgid "Menu" msgstr "Meny" #: src/manager.c:281 src/manager.c:303 src/manager.c:316 msgid "Graphics" msgstr "Grafik" #: src/manager.c:282 src/manager.c:297 msgid "New Game" msgstr "Nytt spel" #: src/manager.c:283 src/manager.c:302 src/manager.c:315 msgid "Controls" msgstr "Kontroller" #: src/manager.c:284 src/manager.c:411 msgid "Player1" msgstr "Spelare 1" #: src/manager.c:285 src/manager.c:412 msgid "Player2" msgstr "Spelare 2" #: src/manager.c:286 src/manager.c:413 msgid "Player3" msgstr "Spelare 3" #: src/manager.c:287 src/manager.c:361 msgid "Multiplayer Options" msgstr "Multiplayerinstaellningar" #: src/manager.c:288 src/manager.c:310 msgid "Advanced Options" msgstr "Avancerade instaelln." #: src/manager.c:290 src/manager.c:300 msgid "Options" msgstr "Instaellningar" #: src/manager.c:293 src/manager.c:305 src/manager.c:307 src/manager.c:317 #: src/manager.c:318 msgid "Audio" msgstr "Ljud" #: src/manager.c:312 src/menu.c:171 msgid "Quit" msgstr "Avsluta" #: src/manager.c:320 src/manager.c:331 src/manager.c:344 src/manager.c:363 #: src/manager.c:374 src/manager.c:419 src/manager.c:424 src/manager.c:429 #: src/manager.c:434 src/manager.c:448 src/menu.c:168 msgid "Back" msgstr "Tillbaka" #: src/manager.c:324 msgid "Sound:" msgstr "Ljud:" #: src/manager.c:324 src/manager.c:334 src/manager.c:354 src/manager.c:356 #: src/manager.c:358 src/manager.c:367 src/manager.c:368 src/manager.c:369 #: src/manager.c:436 src/manager.c:440 src/manager.c:445 msgid "On" msgstr "Pau" #: src/manager.c:327 msgid "Volume:" msgstr "Volym:" #: src/manager.c:334 msgid "Animations:" msgstr "Animationer:" #: src/manager.c:335 msgid "Move:" msgstr "Flytta:" #: src/manager.c:335 src/manager.c:336 msgid "Tile By Tile" msgstr "Rad-foer-rad" #: src/manager.c:335 src/manager.c:336 msgid "Smooth" msgstr "Mjuk" #: src/manager.c:336 src/manager.c:382 src/manager.c:388 src/manager.c:394 msgid "Drop:" msgstr "Slaepp:" #: src/manager.c:337 msgid "Change Background:" msgstr "Aendra bakgrund:" #: src/manager.c:337 msgid "Yes" msgstr "Ja" #: src/manager.c:337 msgid "No" msgstr "Nej" #: src/manager.c:339 msgid "Display:" msgstr "Skaerm:" #: src/manager.c:339 msgid "Window" msgstr "Foensterlaege" #: src/manager.c:339 msgid "Fullscreen" msgstr "Helskaermslaege" #: src/manager.c:342 msgid "Frame Rate:" msgstr "Bildfrekvens:" #: src/manager.c:346 msgid "Start Game" msgstr "Starta spel" #: src/manager.c:348 msgid "1st Player:" msgstr "Foersta spelare:" #: src/manager.c:349 msgid "2nd Player:" msgstr "Andra spelare:" #: src/manager.c:350 msgid "3rd Player:" msgstr "Tredje spelare:" #: src/manager.c:352 msgid "Game:" msgstr "Spel:" #: src/manager.c:353 msgid "Starting Level:" msgstr "Inledande bana:" #: src/manager.c:354 msgid "Preview:" msgstr "Foerhandstitt:" #: src/manager.c:355 msgid "Help:" msgstr "Hjaelp:" #: src/manager.c:356 msgid "Expert Mode:" msgstr "Expertlaege" #: src/manager.c:358 msgid "Slow:" msgstr "Laungsam:" #: src/manager.c:366 msgid "Holes:" msgstr "Haul:" #: src/manager.c:367 msgid "Random Holes:" msgstr "Slumpvisa haul:" #: src/manager.c:368 msgid "Send All Lines:" msgstr "Skicka alla rader:" #: src/manager.c:369 msgid "Always Send Tetris:" msgstr "Skicka alltid Tetris:" #: src/manager.c:371 msgid "CPU Style:" msgstr "Datorstil:" #: src/manager.c:372 msgid "CPU Drop Delay:" msgstr "CPU Drop Delay:" #: src/manager.c:376 msgid "Pause Key:" msgstr "" #: src/manager.c:377 src/manager.c:383 src/manager.c:389 msgid "Left:" msgstr "Pil vaenster" #: src/manager.c:378 src/manager.c:384 src/manager.c:390 msgid "Right:" msgstr "Pil hoeger" #: src/manager.c:379 src/manager.c:385 src/manager.c:391 msgid "Rotate Left:" msgstr "Rotera vaenster:" #: src/manager.c:380 src/manager.c:386 src/manager.c:392 msgid "Rotate Right:" msgstr "Rotera hoeger:" #: src/manager.c:381 src/manager.c:387 src/manager.c:393 msgid "Down:" msgstr "Pil ned:" #: src/manager.c:415 msgid "Horizontal Delay:" msgstr "Horisontell foerdroejning:" #: src/manager.c:416 #, fuzzy msgid "Vertical Delay:" msgstr "Horisontell foerdroejning:" #: src/manager.c:436 msgid "Quick Help:" msgstr "Snabbhjaelp:" #: src/manager.c:439 msgid "Clear Keystate:" msgstr "Rensa tangentkontroll:" #: src/manager.c:440 msgid "Center Preview:" msgstr "Center Preview:" #: src/manager.c:441 msgid "Collision Check:" msgstr "Kollisionskontroll:" #: src/manager.c:441 msgid "Sync" msgstr "Sync" #: src/manager.c:441 msgid "Async" msgstr "Async" #: src/manager.c:444 msgid "Test CPU Algorithm" msgstr "Testa datoralgoritm" #: src/manager.c:445 msgid "Visualization" msgstr "Visualisering" #: src/tetris.c:126 msgid "y" msgstr "y" #: src/tetris.c:127 msgid "n" msgstr "n" #: src/tetris.c:385 msgid "End Game? y/n" msgstr "Avsluta spel? y/n" #: src/bowl.c:567 src/bowl.c:568 msgid "Game Over" msgstr "Spelet aer slut" #: src/bowl.c:1281 #, c-format msgid "%i Lvl: %i" msgstr "%i Lvl: %i" #: src/bowl.c:1548 msgid "Player:" msgstr "Spelare:" #: src/bowl.c:1552 msgid "Score:" msgstr "Poaeng:" #: src/bowl.c:1554 msgid "Lines:" msgstr "Rader:" #: src/chart.c:187 msgid "Name Level Score" msgstr "Namn Bana Poaeng" #: src/chart.c:212 msgid "Level" msgstr "Bana" #: src/main.c:66 msgid "Demo" msgstr "Demo" #: src/main.c:67 msgid "Classic" msgstr "Klassisk" #: src/main.c:68 msgid "Figures" msgstr "Figurer" #: src/main.c:69 msgid "Vs Human" msgstr "Vs Maenniska" #: src/main.c:70 msgid "Vs CPU" msgstr "Vs dator" #: src/main.c:71 msgid "Vs Human&Human" msgstr "Vs Maenniska&Maenniska" #: src/main.c:72 msgid "Vs Human&CPU" msgstr "Vs Maenniska&dator" #: src/main.c:73 msgid "Vs CPU&CPU" msgstr "Vs dator&dator" #: src/value.c:40 msgid "Space" msgstr "Mellanslag" #: src/value.c:41 msgid "Left" msgstr "Vaenster" #: src/value.c:42 msgid "Right" msgstr "Hoeger" #: src/value.c:43 msgid "Up" msgstr "Upp" #: src/value.c:45 msgid "Right Shift" msgstr "Hoeger shift" #: src/value.c:46 msgid "Left Shift" msgstr "Vaenster shift" #: src/value.c:47 msgid "Right Ctrl" msgstr "Hoeger ctrl" #: src/value.c:48 msgid "Left Ctrl" msgstr "Vaenster ctrl" #: src/value.c:49 msgid "Right Alt" msgstr "Hoeger alt" #: src/value.c:50 msgid "Left Alt" msgstr "Vaenster alt" #: src/value.c:51 msgid "Insert" msgstr "Insert" #: src/value.c:52 msgid "End" msgstr "End" #: src/value.c:53 msgid "PageUp" msgstr "PageUp" #: src/value.c:54 msgid "PageDown" msgstr "PageDown" #: src/value.c:55 msgid "Home" msgstr "Home" #~ msgid "" #~ "In expert mode the propabilities for the next blocks are uneven to give a " #~ "block that is most likely difficult to fit anywhere. The game becomes " #~ "really hard by this so all score is doubled in the end." #~ msgstr "" #~ "In expert mode the propabilities for the next blocks are uneven to give a " #~ "block that is most likely difficult to fit anywhere. The game becomes " #~ "really hard by this so all score is doubled in the end." #~ msgid "" #~ "If ON all players will get exactly the same blocks. So there is no " #~ "disadvantage to any player due to random blocks. This does not work in " #~ "expert mode as the block selection depends on your actions there." #~ msgstr "" #~ "Om denna aktiveras kommer alla spelare fau exakt likadana block. Pau " #~ "grund av slumpvisa block spelar alla pau lika villkor. Detta fungerar " #~ "inte i expertlaege eftersom blockurvalet beror vad du goer daer." #~ msgid "Same Blocks For All:" #~ msgstr "Samma block foer alla:" #~ msgid "Two-Player" #~ msgstr "Tvau spelare" #~ msgid "Three-Player" #~ msgstr "Tre spelare" ltris-1.0.19/po/fr.po0000664000175000017500000003303712233753110011252 00000000000000# translation of fr.po to francais # Portuguese translations for ltris package. # Copyright (C) 2008 Michael Speck # This file is distributed under the same license as the ltris package. # # jose , 2008. # Jose Jorge , 2008. # Jose Jorge , 2008. msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: lgames.sf.net/contact.php\n" "POT-Creation-Date: 2013-10-29 16:37+0100\n" "PO-Revision-Date: 2008-03-30 22:49+0200\n" "Last-Translator: Jose Jorge \n" "Language-Team: francais \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: KBabel 1.11.4\n" #: src/manager.c:65 msgid "Enable/disable these quick hints." msgstr "Activer / Desactiver ces conseils." #: src/manager.c:66 msgid "Set player controls and horizontal speed." msgstr "" #: src/manager.c:67 msgid "Here you may customize the graphical appearance of LTris." msgstr "" #: src/manager.c:68 msgid "Audio Settings." msgstr "Reglages Audio." #: src/manager.c:69 msgid "Get back to nasty work." msgstr "" #: src/manager.c:70 msgid "Setup and run a cool game!" msgstr "" #: src/manager.c:71 msgid "If animations disturb you you may turn them off." msgstr "" #: src/manager.c:72 msgid "You may play LTris either in window of fullscreen mode." msgstr "" #: src/manager.c:73 msgid "" "If you don't want LTris to consume all of your CPU limit the frame rate." msgstr "" #: src/manager.c:74 msgid "" "Horizontally move block either tile-by-tile or smooth. This is just eye-" "candy and doesn't effect the moving speed at all." msgstr "" #: src/manager.c:75 msgid "" "Drop block tile-by-tile or smooth.##NOTE: While tile-by-tile allows you to " "move a block below a tile multiple times you'll only be able to do so one " "time when choosing 'smooth'!#See 'Advanced Options/Collision Check' to " "improve this." msgstr "" #: src/manager.c:76 msgid "" "The less delay you take the faster the block will horizontally move and the " "more sensitive the input is handled." msgstr "" #: src/manager.c:77 msgid "Delay for vertical movement when using Down key." msgstr "" #: src/manager.c:78 msgid "" "Left/Right: horizontal movement#Rotate Left/Right: block rotation#Down: " "faster Dropping#Drop: INSTANT drop" msgstr "" #: src/manager.c:79 msgid "Key used to pause and unpause a game." msgstr "" #: src/manager.c:80 msgid "Let's get it on!!!!" msgstr "" #: src/manager.c:81 msgid "Human player names. If you play against CPU it will be named as CPU-x." msgstr "" #: src/manager.c:82 #, c-format msgid "" "This is your starting level which will be ignored for game 'Figures' (you'll " "always start at level 0 there).##Each starting level up adds you 1.5% score " "in the end!" msgstr "" #: src/manager.c:83 #, c-format msgid "" "Enable/Disable block preview.##If disabled you'll gain 15% score in the end!" msgstr "" #: src/manager.c:84 msgid "" "Shows guiding lines or a shadow of the currently dropping block so you see " "where it'll hit the ground.##This option has no penalty/bonus." msgstr "" #: src/manager.c:85 msgid "Some multiplayer and CPU settings." msgstr "" #: src/manager.c:86 msgid "" "A line send to your opponent's bowl will have this number of holes in it. " "The more holes the harder it will be to remove this line so you should " "choose a low value (e.g. 1 or 2) for long multiplayer games." msgstr "" #: src/manager.c:87 msgid "" "This option controls how the holes in the lines are created when more than " "one line is sent. If the option is on, the holes will appear randomly for " "each line. If the option is off, all the lines that are sent in one go, will " "have the holes in the same spot." msgstr "" #: src/manager.c:88 msgid "" "You'll have to complete more than one line to send any lines to your " "opponent. If this option is enabled all lines will be send else one will be " "substracted.##If disabled:#3 Line send -> 2 lines received##If enabled:#3 " "lines send -> 3 lines received" msgstr "" #: src/manager.c:89 msgid "" "If this option is enabled your opponent will receive all four lines of your " "tetris ignoring the 'Send All' setting." msgstr "" #: src/manager.c:90 msgid "" "This is the delay in milliseconds the CPU waits before dropping a block." msgstr "" #: src/manager.c:91 msgid "" "The more aggressive the style is the more priority is put on completing " "multiple lines at the expense of a balanced bowl contents." msgstr "" #: src/manager.c:92 msgid "Some advanced options." msgstr "" #: src/manager.c:93 msgid "" "Test the CPU analyze algorithm in cpu.c and give an average score for a " "number of games." msgstr "" #: src/manager.c:94 msgid "" "If you turn visualization off the results will be computed faster. If you " "turn them on you can see a general game behaviour and judge the algorithm by " "this behaviour." msgstr "" #: src/manager.c:95 msgid "" "There are basically three different game types:##CLASSIC:#The classic tetris " "game. Starts with an empty bowl and goes as long as you make it.#FIGURES:" "#Each level a nice figure will be added to the ground of you bowl. From " "level 7-12 there will be randomly appearing single tiles and from level " "13-... there will be whole lines appearing at the bottom of your bowl. Fun!" "#TWO/THREE-PLAYER:#Either play against other humans or CPU. If you complete " "multiple lines they'll be send to your opponents according to the " "multiplayer settings you made.##And in DEMO you can see your CPU do the " "work. So relax! ;-)" msgstr "" #: src/manager.c:101 msgid "" "If you turn this on the background will change every level else it's always " "the same." msgstr "" #: src/manager.c:102 msgid "" "If you enable this option the keystate of either the 'Down' key or all the " "keys are cleared so you can't accidently move the next block." msgstr "" #: src/manager.c:103 msgid "" "If this is enabled the preview in Two-Player is centered in the middle of " "the screen instead that one is drawn at the bottom and one at the top." msgstr "" #: src/manager.c:104 msgid "" "This option is only useful when 'Graphics/Drop' is 'Smooth'#(In opposite to " "'Tile-By-Tile' the block is inserted as soon as it hits the ground giving no " "possibility to move the block below another one.)#If you set this option to " "'Async' you may move the block below others but on the cost of slight " "graphical errors." msgstr "" #: src/manager.c:109 #, c-format msgid "" "In expert mode the most unsuitable piece of the current bag (a bag is a set " "of all 7 randomly sorted basic pieces) is dealt out next. This option only " "works for single player. There is a 50% score bonus in the end." msgstr "" #: src/manager.c:141 src/manager.c:142 msgid "" msgstr "" #: src/manager.c:142 #, c-format msgid "You cannot delete '%s'!\n" msgstr "" #: src/manager.c:212 msgid "No Limit" msgstr "" #: src/manager.c:212 msgid "50 FPS" msgstr "50 IPS" #: src/manager.c:212 msgid "100 FPS" msgstr "100 IPS" #: src/manager.c:212 msgid "200 FPS" msgstr "200 IPS" #: src/manager.c:213 msgid "Defensive" msgstr "Defensif" #: src/manager.c:213 msgid "Normal" msgstr "" #: src/manager.c:213 msgid "Aggressive" msgstr "" #: src/manager.c:213 msgid "Kamikaze" msgstr "" #: src/manager.c:214 src/manager.c:324 src/manager.c:334 src/manager.c:354 #: src/manager.c:356 src/manager.c:358 src/manager.c:367 src/manager.c:368 #: src/manager.c:369 src/manager.c:436 src/manager.c:440 src/manager.c:445 msgid "Off" msgstr "" #: src/manager.c:214 msgid "Shadow" msgstr "" #: src/manager.c:214 msgid "Lines" msgstr "" #: src/manager.c:215 msgid "None" msgstr "" #: src/manager.c:215 src/value.c:44 msgid "Down" msgstr "" #: src/manager.c:215 msgid "All" msgstr "" #: src/manager.c:280 msgid "Menu" msgstr "" #: src/manager.c:281 src/manager.c:303 src/manager.c:316 msgid "Graphics" msgstr "" #: src/manager.c:282 src/manager.c:297 msgid "New Game" msgstr "Nouveau jeu" #: src/manager.c:283 src/manager.c:302 src/manager.c:315 msgid "Controls" msgstr "Controles" #: src/manager.c:284 src/manager.c:411 msgid "Player1" msgstr "Joueur1" #: src/manager.c:285 src/manager.c:412 msgid "Player2" msgstr "Joueur2" #: src/manager.c:286 src/manager.c:413 msgid "Player3" msgstr "Joueur3" #: src/manager.c:287 src/manager.c:361 msgid "Multiplayer Options" msgstr "Options Multijoueurs" #: src/manager.c:288 src/manager.c:310 msgid "Advanced Options" msgstr "Options Avancees" #: src/manager.c:290 src/manager.c:300 msgid "Options" msgstr "Options" #: src/manager.c:293 src/manager.c:305 src/manager.c:307 src/manager.c:317 #: src/manager.c:318 msgid "Audio" msgstr "Audio" #: src/manager.c:312 src/menu.c:171 msgid "Quit" msgstr "Quitter" #: src/manager.c:320 src/manager.c:331 src/manager.c:344 src/manager.c:363 #: src/manager.c:374 src/manager.c:419 src/manager.c:424 src/manager.c:429 #: src/manager.c:434 src/manager.c:448 src/menu.c:168 msgid "Back" msgstr "Revenir" #: src/manager.c:324 msgid "Sound:" msgstr "Son:" #: src/manager.c:324 src/manager.c:334 src/manager.c:354 src/manager.c:356 #: src/manager.c:358 src/manager.c:367 src/manager.c:368 src/manager.c:369 #: src/manager.c:436 src/manager.c:440 src/manager.c:445 msgid "On" msgstr "Oui" #: src/manager.c:327 msgid "Volume:" msgstr "Volume:" #: src/manager.c:334 msgid "Animations:" msgstr "Animations:" #: src/manager.c:335 msgid "Move:" msgstr "Mouvements:" #: src/manager.c:335 src/manager.c:336 msgid "Tile By Tile" msgstr "Pas a Pas" #: src/manager.c:335 src/manager.c:336 msgid "Smooth" msgstr "Fluides" #: src/manager.c:336 src/manager.c:382 src/manager.c:388 src/manager.c:394 msgid "Drop:" msgstr "Lacher:" #: src/manager.c:337 msgid "Change Background:" msgstr "Changer le fond:" #: src/manager.c:337 msgid "Yes" msgstr "Oui" #: src/manager.c:337 msgid "No" msgstr "Non" #: src/manager.c:339 msgid "Display:" msgstr "Affichage:" #: src/manager.c:339 msgid "Window" msgstr "Fenetre" #: src/manager.c:339 msgid "Fullscreen" msgstr "Plein ecran" #: src/manager.c:342 msgid "Frame Rate:" msgstr "" #: src/manager.c:346 msgid "Start Game" msgstr "Commencer le Jeu" #: src/manager.c:348 msgid "1st Player:" msgstr "1er Joueur:" #: src/manager.c:349 msgid "2nd Player:" msgstr "2nd Joueur:" #: src/manager.c:350 msgid "3rd Player:" msgstr "3eme Joueur:" #: src/manager.c:352 msgid "Game:" msgstr "Jeu:" #: src/manager.c:353 msgid "Starting Level:" msgstr "Niveau Initial:" #: src/manager.c:354 msgid "Preview:" msgstr "" #: src/manager.c:355 msgid "Help:" msgstr "Aide:" #: src/manager.c:356 msgid "Expert Mode:" msgstr "" #: src/manager.c:358 msgid "Slow:" msgstr "" #: src/manager.c:366 msgid "Holes:" msgstr "" #: src/manager.c:367 msgid "Random Holes:" msgstr "" #: src/manager.c:368 msgid "Send All Lines:" msgstr "" #: src/manager.c:369 msgid "Always Send Tetris:" msgstr "" #: src/manager.c:371 msgid "CPU Style:" msgstr "" #: src/manager.c:372 msgid "CPU Drop Delay:" msgstr "" #: src/manager.c:376 msgid "Pause Key:" msgstr "" #: src/manager.c:377 src/manager.c:383 src/manager.c:389 msgid "Left:" msgstr "" #: src/manager.c:378 src/manager.c:384 src/manager.c:390 msgid "Right:" msgstr "" #: src/manager.c:379 src/manager.c:385 src/manager.c:391 msgid "Rotate Left:" msgstr "" #: src/manager.c:380 src/manager.c:386 src/manager.c:392 msgid "Rotate Right:" msgstr "" #: src/manager.c:381 src/manager.c:387 src/manager.c:393 msgid "Down:" msgstr "" #: src/manager.c:415 msgid "Horizontal Delay:" msgstr "" #: src/manager.c:416 msgid "Vertical Delay:" msgstr "" #: src/manager.c:436 msgid "Quick Help:" msgstr "" #: src/manager.c:439 msgid "Clear Keystate:" msgstr "" #: src/manager.c:440 msgid "Center Preview:" msgstr "" #: src/manager.c:441 msgid "Collision Check:" msgstr "" #: src/manager.c:441 msgid "Sync" msgstr "" #: src/manager.c:441 msgid "Async" msgstr "" #: src/manager.c:444 msgid "Test CPU Algorithm" msgstr "" #: src/manager.c:445 msgid "Visualization" msgstr "" #: src/tetris.c:126 msgid "y" msgstr "" #: src/tetris.c:127 msgid "n" msgstr "" #: src/tetris.c:385 msgid "End Game? y/n" msgstr "Terminer le jeu? y/n" #: src/bowl.c:567 src/bowl.c:568 msgid "Game Over" msgstr "Jeu Termine" #: src/bowl.c:1281 #, c-format msgid "%i Lvl: %i" msgstr "%i Lvl: %i" #: src/bowl.c:1548 msgid "Player:" msgstr "Joueur:" #: src/bowl.c:1552 msgid "Score:" msgstr "Points:" #: src/bowl.c:1554 msgid "Lines:" msgstr "Lignes:" #: src/chart.c:187 msgid "Name Level Score" msgstr "Nom Niveau Points" #: src/chart.c:212 msgid "Level" msgstr "Niveau" #: src/main.c:66 msgid "Demo" msgstr "" #: src/main.c:67 msgid "Classic" msgstr "Classique" #: src/main.c:68 msgid "Figures" msgstr "Figures" #: src/main.c:69 msgid "Vs Human" msgstr "" #: src/main.c:70 msgid "Vs CPU" msgstr "" #: src/main.c:71 msgid "Vs Human&Human" msgstr "" #: src/main.c:72 msgid "Vs Human&CPU" msgstr "" #: src/main.c:73 msgid "Vs CPU&CPU" msgstr "" #: src/value.c:40 msgid "Space" msgstr "" #: src/value.c:41 msgid "Left" msgstr "" #: src/value.c:42 msgid "Right" msgstr "" #: src/value.c:43 msgid "Up" msgstr "" #: src/value.c:45 msgid "Right Shift" msgstr "" #: src/value.c:46 msgid "Left Shift" msgstr "" #: src/value.c:47 msgid "Right Ctrl" msgstr "" #: src/value.c:48 msgid "Left Ctrl" msgstr "" #: src/value.c:49 msgid "Right Alt" msgstr "" #: src/value.c:50 msgid "Left Alt" msgstr "" #: src/value.c:51 msgid "Insert" msgstr "" #: src/value.c:52 msgid "End" msgstr "" #: src/value.c:53 msgid "PageUp" msgstr "" #: src/value.c:54 msgid "PageDown" msgstr "" #: src/value.c:55 msgid "Home" msgstr "" #~ msgid "Two-Player" #~ msgstr "2 Joueurs" #~ msgid "Three-Player" #~ msgstr "3 Joueurs" ltris-1.0.19/po/it.gmo0000664000175000017500000003176412233753110011430 00000000000000Þ•Šl¿¼¸ ¹ Ä Ì Ø à ì ø ÿ Í Ú ë ö ú    & 6 ; K V f y  ‘ ¢ « µ º à È éÎ ¸!¾à ä òÿ   (.FO9U–›y­F'0nŸs0H¤ˆíUv¦Ìszƒˆ ‘ ›¦¬ÀÆÌÓØÞò  %,03;DKS[ck t€ …“ ™ £ ®º Á ÎÜã)ó8‰?ÉÏÖ"í (8=XPp©‚ZHøA<D Ž ‘Ÿ§ ®¹ ÂÏÞåé7ù:46{8 ´¿ ÇÔ Üêù ê ö !!! -!9!?!E![!d! v!!“!¢!«!½! Ï! Ù!ã!è!ñ!ö!ýü!ú"'#*#.#>#Q# X#d# s#}#„#ž#¦#3­#á#è#í#Ž$L‘$1Þ$%’%D &—e&\ý&¾Z'( ()( 2( ?(M( \(f(x(€(†((’(™(°( Ë(Ù( Ü(ê(ò(ú(þ() )) ) ") -) 8) C) N) \)f)u) |) ‡) “) )¨)º)Ê)Ñ)?ç)!'*I*ƒO*Ó*Ú*á*+ú*&+-+ 4+A+T+Y+dl+yÑ+‰K,yÕ,[O/«/J¼0222+232 :2E2 N2[2j2s2v2C‘2Õ2ð3ò3na_l8.Y &- kjTLU<V*W‰K~=Qvw$XN7O']fDJ;„sr2"mR#u‡%ƒ4>1y…g^3bh+!HF 6Š5zqo[{ SC|9  `Ai?\†cd0ZtB@ˆ)e€:MIx‚Gp,P(/E}%i Lvl: %i100 FPS1st Player:200 FPS2nd Player:3rd Player:50 FPSA line send to your opponent's bowl will have this number of holes in it. The more holes the harder it will be to remove this line so you should choose a low value (e.g. 1 or 2) for long multiplayer games.Advanced OptionsAggressiveAllAlways Send Tetris:Animations:AsyncAudioAudio Settings.BackCPU Drop Delay:CPU Style:Center Preview:Change Background:ClassicClear Keystate:Collision Check:ControlsDefensiveDemoDisplay:DownDown:Drop block tile-by-tile or smooth.##NOTE: While tile-by-tile allows you to move a block below a tile multiple times you'll only be able to do so one time when choosing 'smooth'!#See 'Advanced Options/Collision Check' to improve this.Drop:Enable/disable these quick hints.EndEnd Game? y/nExpert Mode:FiguresFrame Rate:FullscreenGame OverGame:Get back to nasty work.GraphicsHelp:Here you may customize the graphical appearance of LTris.Holes:HomeHorizontal Delay:Horizontally move block either tile-by-tile or smooth. This is just eye-candy and doesn't effect the moving speed at all.Human player names. If you play against CPU it will be named as CPU-x.If animations disturb you you may turn them off.If this is enabled the preview in Two-Player is centered in the middle of the screen instead that one is drawn at the bottom and one at the top.If this option is enabled your opponent will receive all four lines of your tetris ignoring the 'Send All' setting.If you don't want LTris to consume all of your CPU limit the frame rate.If you enable this option the keystate of either the 'Down' key or all the keys are cleared so you can't accidently move the next block.If you turn this on the background will change every level else it's always the same.If you turn visualization off the results will be computed faster. If you turn them on you can see a general game behaviour and judge the algorithm by this behaviour.InsertKamikazeLeftLeft AltLeft CtrlLeft ShiftLeft:Let's get it on!!!!LevelLinesLines:MenuMove:Multiplayer OptionsName Level ScoreNew GameNoNo LimitNoneNormalOffOnOptionsPageDownPageUpPlayer1Player2Player3Player:Preview:Quick Help:QuitRandom Holes:RightRight AltRight CtrlRight ShiftRight:Rotate Left:Rotate Right:Score:Send All Lines:Set player controls and horizontal speed.Setup and run a cool game!ShadowShows guiding lines or a shadow of the currently dropping block so you see where it'll hit the ground.##This option has no penalty/bonus.Slow:SmoothSome advanced options.Some multiplayer and CPU settings.Sound:SpaceStart GameStarting Level:SyncTest CPU AlgorithmTest the CPU analyze algorithm in cpu.c and give an average score for a number of games.The less delay you take the faster the block will horizontally move and the more sensitive the input is handled.The more aggressive the style is the more priority is put on completing multiple lines at the expense of a balanced bowl contents.There are basically three different game types:##CLASSIC:#The classic tetris game. Starts with an empty bowl and goes as long as you make it.#FIGURES:#Each level a nice figure will be added to the ground of you bowl. From level 7-12 there will be randomly appearing single tiles and from level 13-... there will be whole lines appearing at the bottom of your bowl. Fun!#TWO/THREE-PLAYER:#Either play against other humans or CPU. If you complete multiple lines they'll be send to your opponents according to the multiplayer settings you made.##And in DEMO you can see your CPU do the work. So relax! ;-)This is the delay in milliseconds the CPU waits before dropping a block.This option controls how the holes in the lines are created when more than one line is sent. If the option is on, the holes will appear randomly for each line. If the option is off, all the lines that are sent in one go, will have the holes in the same spot.This option is only useful when 'Graphics/Drop' is 'Smooth'#(In opposite to 'Tile-By-Tile' the block is inserted as soon as it hits the ground giving no possibility to move the block below another one.)#If you set this option to 'Async' you may move the block below others but on the cost of slight graphical errors.Tile By TileUpVisualizationVolume:Vs CPUVs CPU&CPUVs HumanVs Human&CPUVs Human&HumanWindowYesYou cannot delete '%s'! You may play LTris either in window of fullscreen mode.You'll have to complete more than one line to send any lines to your opponent. If this option is enabled all lines will be send else one will be substracted.##If disabled:#3 Line send -> 2 lines received##If enabled:#3 lines send -> 3 lines receivednyProject-Id-Version: ltris 1.0.14 Report-Msgid-Bugs-To: lgames.sf.net/contact.php POT-Creation-Date: 2013-10-29 16:37+0100 PO-Revision-Date: 2010-04-12 00:10+0100 Last-Translator: Desty Nova Language-Team: Italian Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); %i Lvl: %i100 FPSI Giocatore:200 FPSII Giocatore:III Giocatore:50 FPSUna linea inviata al recipiente del tuo avversario avra' questo numero di buchi. Piu' buchi ci sono e piu' sara' difficile rimuovere questa linea, cosi' dovresti scegliere un valore basso (es. 1 o 2) per partite multigiocatore lunghe.Opzioni AvanzateAggressivoTuttoInvia Sempre Tetris:Animazioni:AsyncAudioConfigurazioni Audio.IndietroRitardo Drop CPU:Stile CPU:Anteprima Centro:Cambia Sfondo:ClassicoPulisci Keystate:Check Collisione:ControlliDifensivoDemoDisplay:Giu'Giu':Caduta blocco pezzo-per-pezzo o liscio.#NOTA: Mentre pezzo-per-pezzo ti permette di muovere un blocco sotto un pezzo molte volte, sarai in grado di farlo solo una volta scegliendo 'liscio'!#Vedi 'Opzioni Avanzate/Check Collisione' per migliorare questo.Caduta:Abilita/disabilita questi suggerimenti.EndFine Gioco? s/nModalita' Esperto:FigureFrame Rate:Schermo interoGame OverGioco:Torna allo sporco lavoro.GraficaAiuto:Qui puoi personalizzare l'aspetto grafico di LTris.Buchi:HomeRitardo Orizzontale:Muove orizzontalmente il blocco pezzo-per-pezzo o liscio. Questo e' solo un abbellimento e non influisce affatto sulla velocita' di movimento.Nomi dei giocatori umani. se giochi contro la CPU sara' nominata come CPU-x.Se le animazioni ti disturbano puoi disattivarle.Se e' abilitato l'anteprima in Due-Giocatori e' centrata in mezzo allo schermo invece che una disegnata sul fondo ed una in cima.Se questa opzione e' abilitata il tuo avversario ricevera' tutte e quattro le linee del tuo tetris ignorando la configurazione 'Invia Tutte'.Se non vuoi che LTris consumi tutta la tua CPU limita il frame rate.Se abiliti questa opzione il keystate del tasto 'Giu'' o di tutti i tasti viene ripulito cosi' che non puoi muovere accidentalmente il prossimo blocco.Se abiliti questo, lo sfondo cambiera' ad ogni livello altrimenti restera' sempre lo stesso.Se spengi la visualizzazione i risultati verranno calcolati piu' velocemente. Se la accendi potrai vedere il comportamento generale del gioco e giudicare l'algoritmo da questo comportamento.InsertKamikazeSinistraAlt SinistroCtrl SinistroShift SinistroSinistra:Andiamo avanti!!!LivelloLineeLinee:MenuMuovi:Opzioni MultigiocatoreNome Livello PuntiNuova PartitaNoNessun LimiteNessunoNormaleOffOnOpzioniPagGiùPagSuGiocatore1Giocatore2Giocatore3Giocatore:Anteprima:Aiuto Rapido:AbbandonaBuchi Casuali:DestraAlt DestroCtrl DestroShift DestroDestra:Ruota a Sinistra:Ruota a Destra:Punti:Invia Tutte Le Linee:Configura i controlli del giocatore e la velocita' orizzontale.Configura ed avvia un gioco figo!OmbraMostra linee guida o un'ombra del blocco che sta cadendo cosi' puoi vedere dove atterrera'.##Questa opzione non ha penalita'/bonus.Lento:LiscioAlcune opzioni avanzate.Alcune configurazioni multigiocatore e CPU.Suono:SpazioInizio GiocoLivello Di Inizio:SyncTest Algoritmo CPUEsamina l'algoritmo di analisi della CPU in cpu.c e da' un punteggio medio per un numero di partite.Meno ritardo prendi piu' velocemente il blocco si muovera' orizzontalmente e piu' sensibile e' la gestione dell'ingresso.Piu' lo stile e' aggressivo piu' priorita' e' data al completamento di linee multiple al costo di un contenuto del recipiente bilanciato.Ci sono di base tre tipi di gioco diversi:##CLASSICO:#Il classico tetris. Inizia con un recipiente vuoto e continua finche' ce la fai.#FIGURE:#Ad ogni livello una figura carina sara' aggiunta al fondo del tuo recipiente. Dal livello 7-12 ci saranno singoli pezzi che appaiono a caso e dal livello 13-... ci saranno intere linee che appaiono sul fondo del tuo recipiente. Divertente!#DUE/TRE-GIOCATORI:#Gioca sia contro altri umani che la CPU. Se completi linee multiple saranno inviate ai tuoi avversari secondo le configurazioni multigiocatore che hai scelto.## E in DEMO puoi vedere la tua CPU fare il lavoro. Quindi rilassati! ;-)Questo e' il ritardo in millisencondi che la CPU aspetta prima di lasciar cadere un blocco.Questa opzione controlla come i buchi nelle linee vengono creati quando piu' di una linea e' inviata. Se l'opzione e' accesa, i buchi appariranno casualmente per ogni linea. Se l'opzione e' spenta, tutte le linee che sono inviate insieme, avranno i buchi nel solito punto.Questa opzione e' utile solamente quando 'Grafica/Caduta' e' 'Liscio'#(opposto a 'Pezzo-Per-Pezzo' il blocco e' inserito appena colpisce il terreno togliendo la possibilita' di muovere il blocco sotto un'altro.)#Se configuri questa opzione a 'Async' puoi muovere il blocco sotto altri blocchi ma al costo di errori grafici minori.Pezzo Per Pezzo:SuVisualizzazioneVolume:Vs CPUVs CPU&CPUVs UmanoVs Umano&CPUVs Umano&UmanoFinestraSiNon puoi cancellare '%s'! Puoi giocare LTris sia in finestra che in modalita' schermo intero.Dovrai completare piu' di una linea per inviare qualsiasi linea al tuo avversario. Se questa opzione e' abilitata tutte le linee saranno inviate altrimenti una sara' sottratta.##Se disabilitata:#3 linee inviate -> 2 linee ricevute##Se abilitata:#3 linee inviate -> 3 linee ricevute.nsltris-1.0.19/po/de.gmo0000664000175000017500000003171412233753110011377 00000000000000Þ•„¿ìè é ô ü    ( / Í<   & * > J P V f k { † – © ± Á Ò Û 0å $)é/!A E S` h t ‰§°9¶ð÷üyFˆ0Ïs‘HˆNU×-4%=ch q {j†ñ÷ #)=V_bkpw{~† –¡©±¹Á ÊÖ Ûé ï ù   $29)Isމ•%,"Cfm s~ŽX“pì‚]ZàH;„<‡ ÄÑÔ äòú   "18<7Uù‡‰p‹ ü   # / ; B †N Õ é ó ø !!!%!9!A! S!]!r! ‡!‘!¢! ²!½!JÆ!"""&"."?#E#d#i#|#‹# “#Ÿ# ¨# µ# ¿#à#ç#6î#%$.$3$©G$Lñ$F>%t…%pú%Zk&µÆ&v|' ó'ý'*(1( 7( A( L(}X(Ö( Ý(ë(ñ(ø() ))%) ?)K) P)[)a)h)l)o) x)ƒ) Œ)˜)¡)ª)³) ¼) Æ)Ô)Ü)ð) ÷) * **#*2*B*J*9]*—*µ*•¾*T+]+ c+*„+¯+ ¶+ À+ Í+Ù+KÞ+Z*,•…,L-Ph/í¹/§0 Ç1Ó1Ø1ì1 û12 2 2'262H2P2!S2Ju2À2È3Ê3qd„bo9/\ '.!nmVNX<Y+ZŒM=Sxy%[P8>(`iFLa‡QŠu3#pT$w&†5?2{ˆjO‚4ekW, "JH 7|tr^} UE~:  CcBl@_‰fg1]vDA‹*hƒ;6Kz…Is-R)0G€%i Lvl: %i100 FPS1st Player:200 FPS2nd Player:3rd Player:50 FPSA line send to your opponent's bowl will have this number of holes in it. The more holes the harder it will be to remove this line so you should choose a low value (e.g. 1 or 2) for long multiplayer games.Advanced OptionsAggressiveAllAlways Send Tetris:Animations:AsyncAudioAudio Settings.BackCPU Drop Delay:CPU Style:Center Preview:Change Background:ClassicClear Keystate:Collision Check:ControlsDefensiveDelay for vertical movement when using Down key.DemoDisplay:DownDown:Drop block tile-by-tile or smooth.##NOTE: While tile-by-tile allows you to move a block below a tile multiple times you'll only be able to do so one time when choosing 'smooth'!#See 'Advanced Options/Collision Check' to improve this.Drop:Enable/disable these quick hints.EndEnd Game? y/nExpert Mode:FiguresFrame Rate:FullscreenGame OverGame:Get back to nasty work.GraphicsHelp:Here you may customize the graphical appearance of LTris.Holes:HomeHorizontal Delay:Horizontally move block either tile-by-tile or smooth. This is just eye-candy and doesn't effect the moving speed at all.Human player names. If you play against CPU it will be named as CPU-x.If animations disturb you you may turn them off.If this is enabled the preview in Two-Player is centered in the middle of the screen instead that one is drawn at the bottom and one at the top.If this option is enabled your opponent will receive all four lines of your tetris ignoring the 'Send All' setting.If you don't want LTris to consume all of your CPU limit the frame rate.If you enable this option the keystate of either the 'Down' key or all the keys are cleared so you can't accidently move the next block.If you turn this on the background will change every level else it's always the same.InsertKamikazeKey used to pause and unpause a game.LeftLeft AltLeft CtrlLeft ShiftLeft/Right: horizontal movement#Rotate Left/Right: block rotation#Down: faster Dropping#Drop: INSTANT dropLeft:Let's get it on!!!!LevelLinesLines:MenuMove:Multiplayer OptionsName Level ScoreNew GameNoNo LimitNoneNormalOffOnOptionsPageDownPageUpPause Key:Player1Player2Player3Player:Preview:Quick Help:QuitRandom Holes:RightRight AltRight CtrlRight ShiftRight:Rotate Left:Rotate Right:Score:Send All Lines:Set player controls and horizontal speed.Setup and run a cool game!ShadowShows guiding lines or a shadow of the currently dropping block so you see where it'll hit the ground.##This option has no penalty/bonus.Slow:SmoothSome advanced options.Some multiplayer and CPU settings.Sound:SpaceStart GameStarting Level:SyncTest the CPU analyze algorithm in cpu.c and give an average score for a number of games.The less delay you take the faster the block will horizontally move and the more sensitive the input is handled.The more aggressive the style is the more priority is put on completing multiple lines at the expense of a balanced bowl contents.There are basically three different game types:##CLASSIC:#The classic tetris game. Starts with an empty bowl and goes as long as you make it.#FIGURES:#Each level a nice figure will be added to the ground of you bowl. From level 7-12 there will be randomly appearing single tiles and from level 13-... there will be whole lines appearing at the bottom of your bowl. Fun!#TWO/THREE-PLAYER:#Either play against other humans or CPU. If you complete multiple lines they'll be send to your opponents according to the multiplayer settings you made.##And in DEMO you can see your CPU do the work. So relax! ;-)This is the delay in milliseconds the CPU waits before dropping a block.This option controls how the holes in the lines are created when more than one line is sent. If the option is on, the holes will appear randomly for each line. If the option is off, all the lines that are sent in one go, will have the holes in the same spot.This option is only useful when 'Graphics/Drop' is 'Smooth'#(In opposite to 'Tile-By-Tile' the block is inserted as soon as it hits the ground giving no possibility to move the block below another one.)#If you set this option to 'Async' you may move the block below others but on the cost of slight graphical errors.Tile By TileUpVertical Delay:VisualizationVolume:Vs CPUVs CPU&CPUVs HumanVs Human&CPUVs Human&HumanWindowYesYou cannot delete '%s'! You may play LTris either in window of fullscreen mode.You'll have to complete more than one line to send any lines to your opponent. If this option is enabled all lines will be send else one will be substracted.##If disabled:#3 Line send -> 2 lines received##If enabled:#3 lines send -> 3 lines receivednyProject-Id-Version: de Report-Msgid-Bugs-To: lgames.sf.net/contact.php POT-Creation-Date: 2013-10-29 16:37+0100 PO-Revision-Date: 2005-10-05 22:46+0200 Last-Translator: Language-Team: Language: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Plural-Forms: nplurals=2; plural=(n != 1); X-Generator: KBabel 1.9.1 %i Ebn: %i100 FPS1. Spieler:200 FPS2. Spieler:3. Spieler:50 FPSAnzahl von Loechern in einer Reihe, die zum Gegner geschickt wird. Je mehr Loecher, um so schwerer wird es die Reihe wieder abzubauen.Erweiterte OptionenAggressivAlleSende Immer Tetris:Animationen:AsyncAudioAudio-EinstellungenZurueckCPU Verzoegerung:CPU Stil:Vorschau zentrieren:Hintergrund aendern:KlassischStatus loeschen:Kollisionstest:KontrollenDefensivVerzoegerung fuer vertikale Bewegung wenn die Runter-Taste verwendet wird.DemoAnzeige:RunterRunter:Bloecke fallen entweder weich oder stueckweise.##ACHTUNG: Stueckweiser Fall erlaubt, einen Block mehrere Stuecke unter einen anderen zu schieben, bevor er aufsetzt. Bei weichem Fall geht das nicht, es sei denn 'Erweiterte Optionen/Kollisionstest' ist entsprechend gesetzt.Fall:Hinweisblasen (de-)aktivieren.EndeSpiel beenden? j/nExperten-ModusFigurenFrame-Rate:VollbildSpiel vorbeiSpieltyp:Zurueck zur unangenehmen Arbeit.GrafikHilfe:Hier koennen Sie die grafischen Einstellungen aendern.Loecher:Pos1Hori. Verzoegerung:Die horizontale Bewegung eines Blocks ist entweder weich oder stueckweise. Das ist lediglich eine grafische Einstellung, die keinen Einfluss auf die Geschwindigkeit hat.Namen der menschlichen Spieler. Die computergesteuerten heissen immer CPU-x.Sollten Sie die Animationen stoeren, koennen Sie sie hier ausschalten.Zentriert die Block-Vorschau im Zweispielermodus. Falls deaktiviert,befindet sich eine Vorschau oben und eine unten.Falls aktiviert, wird ein Tetris (=4 Reihen) komplett geschickt, ungeachtet der 'Sende Alle Reihen'-Einstellung.Um zu verhindern das LTris die ganze CPU belastet, sollten Sie die Framerate beschraenken.Falls aktiviert, wird der Status von entweder der Runter- oder von allen Tasten bei Aufsetzen eines Blockes geloescht, damit man nicht aus Versehen den naechsten Block schon bewegt.Falls aktiv, wird sich der Hintergrund mit jeder neuen Ebene aendern, ansonsten bleibt er fuer das ganze Spiel gleich.EinfuegenKamikazeTaste zum Pausieren/Fortsetzen des Spiels.LinksAlt LinksCtrl LinksShift LinksLinks/Rechts: horizontale Bewegung#Rotiere Links/Rechts: Block Rotation#Runter: schnelleres Fallen#Fall: SOFORTIGES AufsetzenLinks:Los geht's!!!EbeneLinienReihen:MenueBewegung:Mehrspieler-OptionenName Ebene PunkteNeues SpielNeinOhne LimitKeineNormalAusAnOptionenBildRunterBildHochPausetaste:Spieler1Spieler2Spieler3Spieler:Vorschau:Schnellhilfe:BeendenZufaellige Loecher:RechtsAlt RechtsCtrl RechtsShift RechtsRechts:Rotiere Links:Rotiere Rechts:Punkte:Sende Alle Reihen:Spielerkontrollen und horizontale Geschwindigkeit setzen.Spiel einstellen und starten!SchattenZeige Fuehrungslinien oder einen Schatten des fallenden Blocks, so dass sichtbar wird, wo er auftreffen wird. Diese Option hat keine Strafen/Bonusse.Langsam:WeichEinige erweiterte Einstellungen.Einige Mehrspieler- und CPU-Einstellungen.Sound:LeertasteStarte SpielStartebene:SyncTestet CPU-Analyse-Algorithmus in cpu.c und gibt eine mittlere Wertung aus.Je geringer die Verzoegerung ist, desto sensitiver aber auch schneller reagiert der Block.Je aggressiver der Stil, umso mehr Prioritaet wird auf die Vervollstaendigung multipler Reihen gelegt, auf Kosten eines ausgeglichenen Becherinhalts.Es gibt drei verschiedene Spielarten:##KLASSISCH:#Das bekannte Spielprinzip. Beginnt mit einem leeren Becher und dauert solange, wie man Reihen abbauen kann.#FIGUREN:#Jede Ebene hat eine kleine Figur am Becherboden. In Ebene 7-12 werden zufaellig kleine Stuecke erscheinen und von 13-20 ganze Linien den Inhalt hochschieben. Spassig!#ZWEI/DREI-SPIELER:#Entweder gegen andere menschliche Spieler oder den Rechner. Vollstaendige Reihen werden zu den Gegnern geschickt, entsprechend der Mehrspieler-Einstellungen.##Und in DEMO koennen Sie die CPU alleine spielen sehen. Sehr entspannend. ;-)Verzoegerung in Millisekunden bevor die CPU einen Block schneller fallen laesst.Diese Option bestimmt wie die Loecher verteilt sind, falls mehrere Reihen geschickt werden: Falls 'An', werden die Loecher in jeder Reihe zufaellig verteilt sein. Falls 'Aus' werden die Loecher uebereinander liegen und so Spalten bilden.Nur nuetzlich falls 'Grafik/Fall' auf 'Weich' steht.#(Anders als bei 'stueckweise' wird der Block sofort bei Auftreffen eingefuegt, ohne die Moeglichkeit ihn noch zu bewegen.)#Fuer 'Async' kann der Block wie bei 'stueckweise' bewegt werden, was aber kleinere grafische Fehler verursacht.StueckweiseHochVert. Verzoegerung:VisualisierungLautstaerke:Gg. CPUGg. CPU&CPUGg. MenschGg. Mensch&CPUGg. Mensch&MenschFensterJaSie koennen '%s' nicht loeschen! Sie koennen LTris entweder in einem Fenster oder im Vollbildmodus spielen.Es muss mehr als eine Reihe vervollstaendigt werden, damit sie zum Gegner geschickt werden. Ist diese Option aktiv, werden alle Reihen geschickt, ansonsten eine abgezogen.##Deaktiviert:#3 Reihen abgebaut -> 2 gesendet.##Aktiviert:#3 Reihen abgebaut -> 3 gesendet.njltris-1.0.19/po/remove-potcdate.sin0000664000175000017500000000066012140770051014110 00000000000000# Sed script that remove the POT-Creation-Date line in the header entry # from a POT file. # # The distinction between the first and the following occurrences of the # pattern is achieved by looking at the hold space. /^"POT-Creation-Date: .*"$/{ x # Test if the hold space is empty. s/P/P/ ta # Yes it was empty. First occurrence. Remove the line. g d bb :a # The hold space was nonempty. Following occurrences. Do nothing. x :b } ltris-1.0.19/po/pt.po0000664000175000017500000004653312233753110011273 00000000000000# translation of ltris_pt_prod.po to portugues # Portuguese translations for ltris package. # Copyright (C) 2008 Michael Speck # This file is distributed under the same license as the ltris package. # # jose , 2008. # Jose Jorge , 2008. msgid "" msgstr "" "Project-Id-Version: ltris_pt_prod\n" "Report-Msgid-Bugs-To: lgames.sf.net/contact.php\n" "POT-Creation-Date: 2013-10-29 16:37+0100\n" "PO-Revision-Date: 2008-03-30 22:19+0200\n" "Last-Translator: Jose Jorge \n" "Language-Team: portugues \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: KBabel 1.11.4\n" #: src/manager.c:65 msgid "Enable/disable these quick hints." msgstr "Activar/desactivar estes conselhos." #: src/manager.c:66 msgid "Set player controls and horizontal speed." msgstr "Definir o controlo dos jogadores e a velocidade horizontal." #: src/manager.c:67 msgid "Here you may customize the graphical appearance of LTris." msgstr "Aqui pode configurar a aparencia grafica do LTris." #: src/manager.c:68 msgid "Audio Settings." msgstr "Opcoes Audio." #: src/manager.c:69 msgid "Get back to nasty work." msgstr "Voltar ao trabalho chato." #: src/manager.c:70 msgid "Setup and run a cool game!" msgstr "Configurar e iniciar um bom jogo!" #: src/manager.c:71 msgid "If animations disturb you you may turn them off." msgstr "Se as animacoes o perturbam pode desligar-las." #: src/manager.c:72 msgid "You may play LTris either in window of fullscreen mode." msgstr "Voce pode jogar LTris seja numa janela ou em todo o ecra." #: src/manager.c:73 msgid "" "If you don't want LTris to consume all of your CPU limit the frame rate." msgstr "" "Se nao quizer que LTris gaste todo o seu processador limite o numero de " "imagens por segundo." #: src/manager.c:74 msgid "" "Horizontally move block either tile-by-tile or smooth. This is just eye-" "candy and doesn't effect the moving speed at all." msgstr "" "Move horizontalmente o bloco seja passo a passo ou suavemente. Isto e so " "para decorar e nao muda nada da velocidade de movimento." #: src/manager.c:75 msgid "" "Drop block tile-by-tile or smooth.##NOTE: While tile-by-tile allows you to " "move a block below a tile multiple times you'll only be able to do so one " "time when choosing 'smooth'!#See 'Advanced Options/Collision Check' to " "improve this." msgstr "" "Largar o bloco passo-a-passo ou suavemente.##NOTA: Enquanto que passo-a-" "passo permite-lhe de move um bloco debaixode outro varias vezes, so vai " "poder fazer isso uma ves se escolher 'suave'!#Veja 'Opcoes Avancadas/Testar " "Colisoes' para melhorar isto." #: src/manager.c:76 msgid "" "The less delay you take the faster the block will horizontally move and the " "more sensitive the input is handled." msgstr "" "Menos tempo mete mais depressa o bloco vai mover horizontalmente e mais " "sensivel o teclado vai ser." #: src/manager.c:77 msgid "Delay for vertical movement when using Down key." msgstr "" #: src/manager.c:78 #, fuzzy msgid "" "Left/Right: horizontal movement#Rotate Left/Right: block rotation#Down: " "faster Dropping#Drop: INSTANT drop" msgstr "" "Cada valor de controlo indica uma tecla unica para agir.##Esquerda/Direita: " "movimentos horizontais#Rotacao Esquerda/Direita: Rodar os blocos#Descer: " "Descer mais depressa#Largar: Cair INSTANTANEAMENTE" #: src/manager.c:79 msgid "Key used to pause and unpause a game." msgstr "" #: src/manager.c:80 msgid "Let's get it on!!!!" msgstr "Vamos a isto!!!!" #: src/manager.c:81 msgid "Human player names. If you play against CPU it will be named as CPU-x." msgstr "" "Nome dos jogadores humanos. Se jogar contra o computador o nome sera CPU-x." #: src/manager.c:82 #, fuzzy, c-format msgid "" "This is your starting level which will be ignored for game 'Figures' (you'll " "always start at level 0 there).##Each starting level up adds you 1.5% score " "in the end!" msgstr "" "Este e o nivel de inicio que sera ignorado no modo 'Figuras' (onde arranca " "sempre em nivel 0).##Cada nivel superior de inicio ajunta 1.5% a pontuacao " "final!" #: src/manager.c:83 #, c-format msgid "" "Enable/Disable block preview.##If disabled you'll gain 15% score in the end!" msgstr "" "Activar/Desactivar a antevisao do bloco.##Se for desactivada vai obter mais " "15% score no fim!" #: src/manager.c:84 msgid "" "Shows guiding lines or a shadow of the currently dropping block so you see " "where it'll hit the ground.##This option has no penalty/bonus." msgstr "" "Mostra linhas de guia ou uma sombra do bloco que esta caindo para que para " "ver onde ele vai tocar o chao.#Esta opcao nao tem malus/bonus." #: src/manager.c:85 msgid "Some multiplayer and CPU settings." msgstr "Algumas opcoes multi-jogadores e CPU." #: src/manager.c:86 msgid "" "A line send to your opponent's bowl will have this number of holes in it. " "The more holes the harder it will be to remove this line so you should " "choose a low value (e.g. 1 or 2) for long multiplayer games." msgstr "" "A linha enviada para os seus adversarios vai ter este numero de buracos. " "Mais buracos ha, mais dificil e de tirar a linha, portanto e aconselhado de " "escolher um valor baixo (1 ou 2) para jogos compridos em multi-jogadores." #: src/manager.c:87 msgid "" "This option controls how the holes in the lines are created when more than " "one line is sent. If the option is on, the holes will appear randomly for " "each line. If the option is off, all the lines that are sent in one go, will " "have the holes in the same spot." msgstr "" "Esta opcao controla como os buracos nas linhas sao criados quando mais de " "uma linha e enviada. Se activada, os buracos aparecem aleatoriamente em cada " "linha. Senao, todas as linhas enviadas de uma ves terao os buracos no mesmo " "sitio." #: src/manager.c:88 msgid "" "You'll have to complete more than one line to send any lines to your " "opponent. If this option is enabled all lines will be send else one will be " "substracted.##If disabled:#3 Line send -> 2 lines received##If enabled:#3 " "lines send -> 3 lines received" msgstr "" "Voce deve completar mais de uma linha para enviar todas as linhas as seus " "adversarios. Se isto for activado todas as linhas serao enviadas menos uma." "##Se for desactivado:#3 Linhas enviadas -> 2 linhas recebidas##Se for " "desactivado:#3 Linhas enviadas -> 3 linhas recebidas" #: src/manager.c:89 msgid "" "If this option is enabled your opponent will receive all four lines of your " "tetris ignoring the 'Send All' setting." msgstr "" "Se isto for activado os seus adversarios vao receber todas as quatro linhas " "dos seus tetris sem ter em conta a opcao 'Enviar Todos'" #: src/manager.c:90 msgid "" "This is the delay in milliseconds the CPU waits before dropping a block." msgstr "" "Este e em milisegundos o tempo que o CPU espera antes de largar um bloco." #: src/manager.c:91 msgid "" "The more aggressive the style is the more priority is put on completing " "multiple lines at the expense of a balanced bowl contents." msgstr "" "O mais agressivo o estilo for, mais prioridade e metida em completar linhas " "multiplas no lugar de um jogo equilibrado." #: src/manager.c:92 msgid "Some advanced options." msgstr "Algumas opcoes avancadas." #: src/manager.c:93 msgid "" "Test the CPU analyze algorithm in cpu.c and give an average score for a " "number of games." msgstr "" "Testar o algoritmo de analise do computador em cpu.c e dar o resultado medio " "para um certo numero de jogos." #: src/manager.c:94 msgid "" "If you turn visualization off the results will be computed faster. If you " "turn them on you can see a general game behaviour and judge the algorithm by " "this behaviour." msgstr "" "Se desligar a visualizacao os resultados vao ser calculados mais depressa. " "Se a ligar vai ver o comportamento geral do jogo e poder avaliar o algoritmo " "seguinte esse comportamento." #: src/manager.c:95 msgid "" "There are basically three different game types:##CLASSIC:#The classic tetris " "game. Starts with an empty bowl and goes as long as you make it.#FIGURES:" "#Each level a nice figure will be added to the ground of you bowl. From " "level 7-12 there will be randomly appearing single tiles and from level " "13-... there will be whole lines appearing at the bottom of your bowl. Fun!" "#TWO/THREE-PLAYER:#Either play against other humans or CPU. If you complete " "multiple lines they'll be send to your opponents according to the " "multiplayer settings you made.##And in DEMO you can see your CPU do the " "work. So relax! ;-)" msgstr "" "Ha 3 tipos de jogos:##CLASSICO:#O jogo tetris classico. Comeca com um chao " "vazio e continua enquanto que voce aguentar.#FIGURAS:#Em cada nivel uma " "linda figura vai ser metida no chao. Nos niveis 7-12 vao aparecer " "aleotoriamente pecas e a partir do nivel 13-... vao aparecer aleatoriamente " "linhas inteiras no chao. Giro!#2/3 JOGADORES:#Joga contra outros jogadores " "ou CPU. Se completar linhas multiplas vao ser enviadas para os seus " "adversarios seguinte a regras de multi-jogadores que voce escolher.##E em " "DEMONSTRACAO vai poder ver o seu CPU fazer o trabalho. Entao aproveite! ;-)" #: src/manager.c:101 msgid "" "If you turn this on the background will change every level else it's always " "the same." msgstr "" "Se isto for activado o fundo vai mudar a cada nivel, senao fica sempre igual." #: src/manager.c:102 msgid "" "If you enable this option the keystate of either the 'Down' key or all the " "keys are cleared so you can't accidently move the next block." msgstr "" "Se isto for activado o estado das teclas e apagado para evitar to mexa por " "erro no bloco seguinte." #: src/manager.c:103 msgid "" "If this is enabled the preview in Two-Player is centered in the middle of " "the screen instead that one is drawn at the bottom and one at the top." msgstr "" "Se isto for activado a previsualisacao em modo 2 Jogadores e centrada no " "meio do ecra no inves de ser uma em baixo e outra em cima." #: src/manager.c:104 msgid "" "This option is only useful when 'Graphics/Drop' is 'Smooth'#(In opposite to " "'Tile-By-Tile' the block is inserted as soon as it hits the ground giving no " "possibility to move the block below another one.)#If you set this option to " "'Async' you may move the block below others but on the cost of slight " "graphical errors." msgstr "" "Esta opcao so faz sentido se 'Graficos/Mover' esta em 'Suave'#(Na contrario " "do Passo-a-Passo os blocos sao inseridos mal tocam no chao, ficando " "impossivel mover o bloco debaixo doutro.)#Se voce escolher 'Asinc' vai poder " "mover o bloco debaixo de outro, ao preco de alguns erros visuais." #: src/manager.c:109 #, c-format msgid "" "In expert mode the most unsuitable piece of the current bag (a bag is a set " "of all 7 randomly sorted basic pieces) is dealt out next. This option only " "works for single player. There is a 50% score bonus in the end." msgstr "" #: src/manager.c:141 src/manager.c:142 msgid "" msgstr "" #: src/manager.c:142 #, c-format msgid "You cannot delete '%s'!\n" msgstr "Voce nao pode apagar '%s'!\n" #: src/manager.c:212 msgid "No Limit" msgstr "Sem Limite" #: src/manager.c:212 msgid "50 FPS" msgstr "50 IPS" #: src/manager.c:212 msgid "100 FPS" msgstr "100 IPS" #: src/manager.c:212 msgid "200 FPS" msgstr "200 IPS" #: src/manager.c:213 msgid "Defensive" msgstr "Defensivo" #: src/manager.c:213 msgid "Normal" msgstr "Normal" #: src/manager.c:213 msgid "Aggressive" msgstr "Agressivo" #: src/manager.c:213 msgid "Kamikaze" msgstr "Doido" #: src/manager.c:214 src/manager.c:324 src/manager.c:334 src/manager.c:354 #: src/manager.c:356 src/manager.c:358 src/manager.c:367 src/manager.c:368 #: src/manager.c:369 src/manager.c:436 src/manager.c:440 src/manager.c:445 msgid "Off" msgstr "Nao" #: src/manager.c:214 msgid "Shadow" msgstr "Sombra" #: src/manager.c:214 msgid "Lines" msgstr "Linhas" #: src/manager.c:215 msgid "None" msgstr "Nenhum" #: src/manager.c:215 src/value.c:44 msgid "Down" msgstr "Descer" #: src/manager.c:215 msgid "All" msgstr "Tudo" #: src/manager.c:280 msgid "Menu" msgstr "Menu" #: src/manager.c:281 src/manager.c:303 src/manager.c:316 msgid "Graphics" msgstr "Graficos" #: src/manager.c:282 src/manager.c:297 msgid "New Game" msgstr "Novo Jogo" #: src/manager.c:283 src/manager.c:302 src/manager.c:315 msgid "Controls" msgstr "Controlo" #: src/manager.c:284 src/manager.c:411 msgid "Player1" msgstr "Jogador1" #: src/manager.c:285 src/manager.c:412 msgid "Player2" msgstr "Jogador2" #: src/manager.c:286 src/manager.c:413 msgid "Player3" msgstr "Jogador3" #: src/manager.c:287 src/manager.c:361 msgid "Multiplayer Options" msgstr "Opcoes multi-jogadores" #: src/manager.c:288 src/manager.c:310 msgid "Advanced Options" msgstr "Opcoes Avancadas" #: src/manager.c:290 src/manager.c:300 msgid "Options" msgstr "Opcoes" #: src/manager.c:293 src/manager.c:305 src/manager.c:307 src/manager.c:317 #: src/manager.c:318 msgid "Audio" msgstr "Audio" #: src/manager.c:312 src/menu.c:171 msgid "Quit" msgstr "Sair" #: src/manager.c:320 src/manager.c:331 src/manager.c:344 src/manager.c:363 #: src/manager.c:374 src/manager.c:419 src/manager.c:424 src/manager.c:429 #: src/manager.c:434 src/manager.c:448 src/menu.c:168 msgid "Back" msgstr "Voltar" #: src/manager.c:324 msgid "Sound:" msgstr "Som:" #: src/manager.c:324 src/manager.c:334 src/manager.c:354 src/manager.c:356 #: src/manager.c:358 src/manager.c:367 src/manager.c:368 src/manager.c:369 #: src/manager.c:436 src/manager.c:440 src/manager.c:445 msgid "On" msgstr "Sim" #: src/manager.c:327 msgid "Volume:" msgstr "Nivel:" #: src/manager.c:334 msgid "Animations:" msgstr "Animacoes:" #: src/manager.c:335 msgid "Move:" msgstr "Mover:" #: src/manager.c:335 src/manager.c:336 msgid "Tile By Tile" msgstr "Passo a Passo" #: src/manager.c:335 src/manager.c:336 msgid "Smooth" msgstr "Suave" #: src/manager.c:336 src/manager.c:382 src/manager.c:388 src/manager.c:394 msgid "Drop:" msgstr "Largar:" #: src/manager.c:337 msgid "Change Background:" msgstr "Modificar o Fundo:" #: src/manager.c:337 msgid "Yes" msgstr "Sim" #: src/manager.c:337 msgid "No" msgstr "Nao" #: src/manager.c:339 msgid "Display:" msgstr "Video:" #: src/manager.c:339 msgid "Window" msgstr "Janela" #: src/manager.c:339 msgid "Fullscreen" msgstr "Todo o Ecra" #: src/manager.c:342 msgid "Frame Rate:" msgstr "Velocidade:" #: src/manager.c:346 msgid "Start Game" msgstr "Iniciar o Jogo" #: src/manager.c:348 msgid "1st Player:" msgstr "1ro Jogador:" #: src/manager.c:349 msgid "2nd Player:" msgstr "2do Jogador:" #: src/manager.c:350 msgid "3rd Player:" msgstr "3ro Jogador:" #: src/manager.c:352 msgid "Game:" msgstr "Jogo:" #: src/manager.c:353 msgid "Starting Level:" msgstr "Nivel de Inicio:" #: src/manager.c:354 msgid "Preview:" msgstr "Antevisao:" #: src/manager.c:355 msgid "Help:" msgstr "Ajuda:" #: src/manager.c:356 msgid "Expert Mode:" msgstr "Modo Perito:" #: src/manager.c:358 msgid "Slow:" msgstr "Lento:" #: src/manager.c:366 msgid "Holes:" msgstr "Buracos:" #: src/manager.c:367 msgid "Random Holes:" msgstr "Buracos Aleatorios:" #: src/manager.c:368 msgid "Send All Lines:" msgstr "Enviar Todas Linhas:" #: src/manager.c:369 msgid "Always Send Tetris:" msgstr "Enviar Tetris:" #: src/manager.c:371 msgid "CPU Style:" msgstr "Estilo de CPU:" #: src/manager.c:372 msgid "CPU Drop Delay:" msgstr "Atraso do CPU:" #: src/manager.c:376 msgid "Pause Key:" msgstr "" #: src/manager.c:377 src/manager.c:383 src/manager.c:389 msgid "Left:" msgstr "Esquerda:" #: src/manager.c:378 src/manager.c:384 src/manager.c:390 msgid "Right:" msgstr "Direita:" #: src/manager.c:379 src/manager.c:385 src/manager.c:391 msgid "Rotate Left:" msgstr "Rodar Esquerda:" #: src/manager.c:380 src/manager.c:386 src/manager.c:392 msgid "Rotate Right:" msgstr "Rodar Direita:" #: src/manager.c:381 src/manager.c:387 src/manager.c:393 msgid "Down:" msgstr "Descer:" #: src/manager.c:415 msgid "Horizontal Delay:" msgstr "Atraso Horizontal:" #: src/manager.c:416 #, fuzzy msgid "Vertical Delay:" msgstr "Atraso Horizontal:" #: src/manager.c:436 msgid "Quick Help:" msgstr "Ajuda Rapida:" #: src/manager.c:439 msgid "Clear Keystate:" msgstr "Limpar Teclas:" #: src/manager.c:440 msgid "Center Preview:" msgstr "Centrar Antevisao:" #: src/manager.c:441 msgid "Collision Check:" msgstr "Testar Colisoes:" #: src/manager.c:441 msgid "Sync" msgstr "Sinc" #: src/manager.c:441 msgid "Async" msgstr "Asinc" #: src/manager.c:444 msgid "Test CPU Algorithm" msgstr "Testar o Algoritmo do CPU" #: src/manager.c:445 msgid "Visualization" msgstr "Visualizacao" #: src/tetris.c:126 msgid "y" msgstr "" #: src/tetris.c:127 #, fuzzy msgid "n" msgstr "Sim" #: src/tetris.c:385 msgid "End Game? y/n" msgstr "Terminar o Jogo? y/n" #: src/bowl.c:567 src/bowl.c:568 msgid "Game Over" msgstr "Fim do Jogo" #: src/bowl.c:1281 #, c-format msgid "%i Lvl: %i" msgstr "%i Nvl: %i" #: src/bowl.c:1548 msgid "Player:" msgstr "Jogador:" #: src/bowl.c:1552 msgid "Score:" msgstr "Pontuacao:" #: src/bowl.c:1554 msgid "Lines:" msgstr "Linhas:" #: src/chart.c:187 msgid "Name Level Score" msgstr "Nome Nivel Pontos" #: src/chart.c:212 msgid "Level" msgstr "Nivel" #: src/main.c:66 msgid "Demo" msgstr "Demonstracao" #: src/main.c:67 msgid "Classic" msgstr "Classico" #: src/main.c:68 msgid "Figures" msgstr "Figuras" #: src/main.c:69 msgid "Vs Human" msgstr "Contra 1 Jogador" #: src/main.c:70 msgid "Vs CPU" msgstr "Contra o CPU" #: src/main.c:71 msgid "Vs Human&Human" msgstr "Contra 2 Jogadores" #: src/main.c:72 msgid "Vs Human&CPU" msgstr "Contra Jogador&CPU" #: src/main.c:73 msgid "Vs CPU&CPU" msgstr "Contra dois CPU" #: src/value.c:40 msgid "Space" msgstr "Espaco" #: src/value.c:41 msgid "Left" msgstr "Esquerda" #: src/value.c:42 msgid "Right" msgstr "Direita" #: src/value.c:43 msgid "Up" msgstr "Subir" #: src/value.c:45 msgid "Right Shift" msgstr "Shift Direita" #: src/value.c:46 msgid "Left Shift" msgstr "Shift Esquerda" #: src/value.c:47 msgid "Right Ctrl" msgstr "Ctrl Direita" #: src/value.c:48 msgid "Left Ctrl" msgstr "Ctrl Esquerda" #: src/value.c:49 msgid "Right Alt" msgstr "Alt Direita" #: src/value.c:50 msgid "Left Alt" msgstr "Alt Esquerda" #: src/value.c:51 msgid "Insert" msgstr "Inserir" #: src/value.c:52 msgid "End" msgstr "Fim" #: src/value.c:53 msgid "PageUp" msgstr "Pagina Anterior" #: src/value.c:54 msgid "PageDown" msgstr "Pagina Seguinte" #: src/value.c:55 msgid "Home" msgstr "Inicio" #~ msgid "" #~ "In expert mode the propabilities for the next blocks are uneven to give a " #~ "block that is most likely difficult to fit anywhere. The game becomes " #~ "really hard by this so all score is doubled in the end." #~ msgstr "" #~ "Em modo perito a probabilidade de obter um bloco que nao cabe bem e " #~ "superior. O jogo fica muito mais dificil por isso todas as pontuacoes sao " #~ "dobradas no fim." #~ msgid "" #~ "If ON all players will get exactly the same blocks. So there is no " #~ "disadvantage to any player due to random blocks. This does not work in " #~ "expert mode as the block selection depends on your actions there." #~ msgstr "" #~ "Se ACTIVADO todos os jogadores vao obter exactamente os mesmos blocos. " #~ "Assim nao havera desvantagem para algum jogador devido aos blocos " #~ "aleatorios. Isto nao funciona em modo perito pois neste mode a seleccao " #~ "dos blocos depende das suas accoes." #~ msgid "Same Blocks For All:" #~ msgstr "Blocos Iguais:" #~ msgid "Two-Player" #~ msgstr "Dois Jogadores" #~ msgid "Three-Player" #~ msgstr "Tres Jogadores" ltris-1.0.19/NEWS0000664000175000017500000000000012140770051010344 00000000000000ltris-1.0.19/m4/0000775000175000017500000000000012233753107010265 500000000000000ltris-1.0.19/m4/codeset.m40000664000175000017500000000157612140770045012103 00000000000000# codeset.m4 serial AM1 (gettext-0.10.40) dnl Copyright (C) 2000-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. AC_DEFUN([AM_LANGINFO_CODESET], [ AC_CACHE_CHECK([for nl_langinfo and CODESET], am_cv_langinfo_codeset, [AC_TRY_LINK([#include ], [char* cs = nl_langinfo(CODESET);], am_cv_langinfo_codeset=yes, am_cv_langinfo_codeset=no) ]) if test $am_cv_langinfo_codeset = yes; then AC_DEFINE(HAVE_LANGINFO_CODESET, 1, [Define if you have and nl_langinfo(CODESET).]) fi ]) ltris-1.0.19/m4/longdouble.m40000664000175000017500000000230012140770045012571 00000000000000# longdouble.m4 serial 1 (gettext-0.12) dnl Copyright (C) 2002-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. dnl Test whether the compiler supports the 'long double' type. dnl Prerequisite: AC_PROG_CC AC_DEFUN([gt_TYPE_LONGDOUBLE], [ AC_CACHE_CHECK([for long double], gt_cv_c_long_double, [if test "$GCC" = yes; then gt_cv_c_long_double=yes else AC_TRY_COMPILE([ /* The Stardent Vistra knows sizeof(long double), but does not support it. */ long double foo = 0.0; /* On Ultrix 4.3 cc, long double is 4 and double is 8. */ int array [2*(sizeof(long double) >= sizeof(double)) - 1]; ], , gt_cv_c_long_double=yes, gt_cv_c_long_double=no) fi]) if test $gt_cv_c_long_double = yes; then AC_DEFINE(HAVE_LONG_DOUBLE, 1, [Define if you have the 'long double' type.]) fi ]) ltris-1.0.19/m4/inttypes-pri.m40000664000175000017500000000222712140770045013116 00000000000000# inttypes-pri.m4 serial 1 (gettext-0.11.4) dnl Copyright (C) 1997-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. # Define PRI_MACROS_BROKEN if exists and defines the PRI* # macros to non-string values. This is the case on AIX 4.3.3. AC_DEFUN([gt_INTTYPES_PRI], [ AC_REQUIRE([gt_HEADER_INTTYPES_H]) if test $gt_cv_header_inttypes_h = yes; then AC_CACHE_CHECK([whether the inttypes.h PRIxNN macros are broken], gt_cv_inttypes_pri_broken, [ AC_TRY_COMPILE([#include #ifdef PRId32 char *p = PRId32; #endif ], [], gt_cv_inttypes_pri_broken=no, gt_cv_inttypes_pri_broken=yes) ]) fi if test "$gt_cv_inttypes_pri_broken" = yes; then AC_DEFINE_UNQUOTED(PRI_MACROS_BROKEN, 1, [Define if exists and defines unusable PRI* macros.]) fi ]) ltris-1.0.19/m4/progtest.m40000664000175000017500000000563412140770045012323 00000000000000# progtest.m4 serial 3 (gettext-0.12) dnl Copyright (C) 1996-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1996. # Search path for a program which passes the given test. dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) AC_DEFUN([AM_PATH_PROG_WITH_TEST], [ # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then echo "#! /bin/sh" >conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi # Find out how to test for executable files. Don't use a zero-byte file, # as systems may use methods other than mode bits to determine executability. cat >conf$$.file <<_ASEOF #! /bin/sh exit 0 _ASEOF chmod +x conf$$.file if test -x conf$$.file >/dev/null 2>&1; then ac_executable_p="test -x" else ac_executable_p="test -f" fi rm -f conf$$.file # Extract the first word of "$2", so it can be a program name with args. set dummy $2; ac_word=[$]2 AC_MSG_CHECKING([for $ac_word]) AC_CACHE_VAL(ac_cv_path_$1, [case "[$]$1" in [[\\/]]* | ?:[[\\/]]*) ac_cv_path_$1="[$]$1" # Let the user override the test with a path. ;; *) ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in ifelse([$5], , $PATH, [$5]); do IFS="$ac_save_IFS" test -z "$ac_dir" && ac_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then if [$3]; then ac_cv_path_$1="$ac_dir/$ac_word$ac_exec_ext" break 2 fi fi done done IFS="$ac_save_IFS" dnl If no 4th arg is given, leave the cache variable unset, dnl so AC_PATH_PROGS will keep looking. ifelse([$4], , , [ test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4" ])dnl ;; esac])dnl $1="$ac_cv_path_$1" if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then AC_MSG_RESULT([$]$1) else AC_MSG_RESULT(no) fi AC_SUBST($1)dnl ]) ltris-1.0.19/m4/printf-posix.m40000664000175000017500000000310612140770045013106 00000000000000# printf-posix.m4 serial 2 (gettext-0.13.1) dnl Copyright (C) 2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. dnl Test whether the printf() function supports POSIX/XSI format strings with dnl positions. AC_DEFUN([gt_PRINTF_POSIX], [ AC_REQUIRE([AC_PROG_CC]) AC_CACHE_CHECK([whether printf() supports POSIX/XSI format strings], gt_cv_func_printf_posix, [ AC_TRY_RUN([ #include #include /* The string "%2$d %1$d", with dollar characters protected from the shell's dollar expansion (possibly an autoconf bug). */ static char format[] = { '%', '2', '$', 'd', ' ', '%', '1', '$', 'd', '\0' }; static char buf[100]; int main () { sprintf (buf, format, 33, 55); return (strcmp (buf, "55 33") != 0); }], gt_cv_func_printf_posix=yes, gt_cv_func_printf_posix=no, [ AC_EGREP_CPP(notposix, [ #if defined __NetBSD__ || defined _MSC_VER || defined __MINGW32__ || defined __CYGWIN__ notposix #endif ], gt_cv_func_printf_posix="guessing no", gt_cv_func_printf_posix="guessing yes") ]) ]) case $gt_cv_func_printf_posix in *yes) AC_DEFINE(HAVE_POSIX_PRINTF, 1, [Define if your printf() function supports format strings with positions.]) ;; esac ]) ltris-1.0.19/m4/isc-posix.m40000664000175000017500000000213312140770045012361 00000000000000# isc-posix.m4 serial 2 (gettext-0.11.2) dnl Copyright (C) 1995-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. # This file is not needed with autoconf-2.53 and newer. Remove it in 2005. # This test replaces the one in autoconf. # Currently this macro should have the same name as the autoconf macro # because gettext's gettext.m4 (distributed in the automake package) # still uses it. Otherwise, the use in gettext.m4 makes autoheader # give these diagnostics: # configure.in:556: AC_TRY_COMPILE was called before AC_ISC_POSIX # configure.in:556: AC_TRY_RUN was called before AC_ISC_POSIX undefine([AC_ISC_POSIX]) AC_DEFUN([AC_ISC_POSIX], [ dnl This test replaces the obsolescent AC_ISC_POSIX kludge. AC_CHECK_LIB(cposix, strerror, [LIBS="$LIBS -lcposix"]) ] ) ltris-1.0.19/m4/intmax.m40000664000175000017500000000217212140770045011746 00000000000000# intmax.m4 serial 1 (gettext-0.12) dnl Copyright (C) 2002-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. dnl Test whether the system has the 'intmax_t' type, but don't attempt to dnl find a replacement if it is lacking. AC_DEFUN([gt_TYPE_INTMAX_T], [ AC_REQUIRE([jm_AC_HEADER_INTTYPES_H]) AC_REQUIRE([jm_AC_HEADER_STDINT_H]) AC_CACHE_CHECK(for intmax_t, gt_cv_c_intmax_t, [AC_TRY_COMPILE([ #include #include #if HAVE_STDINT_H_WITH_UINTMAX #include #endif #if HAVE_INTTYPES_H_WITH_UINTMAX #include #endif ], [intmax_t x = -1;], gt_cv_c_intmax_t=yes, gt_cv_c_intmax_t=no)]) if test $gt_cv_c_intmax_t = yes; then AC_DEFINE(HAVE_INTMAX_T, 1, [Define if you have the 'intmax_t' type in or .]) fi ]) ltris-1.0.19/m4/xsize.m40000664000175000017500000000103112140770045011601 00000000000000# xsize.m4 serial 2 dnl Copyright (C) 2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. AC_DEFUN([gl_XSIZE], [ dnl Prerequisites of lib/xsize.h. AC_REQUIRE([gl_SIZE_MAX]) AC_CHECK_HEADERS(stdint.h) ]) ltris-1.0.19/m4/wint_t.m40000664000175000017500000000153112140770045011750 00000000000000# wint_t.m4 serial 1 (gettext-0.12) dnl Copyright (C) 2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. dnl Test whether has the 'wint_t' type. dnl Prerequisite: AC_PROG_CC AC_DEFUN([gt_TYPE_WINT_T], [ AC_CACHE_CHECK([for wint_t], gt_cv_c_wint_t, [AC_TRY_COMPILE([#include wint_t foo = (wchar_t)'\0';], , gt_cv_c_wint_t=yes, gt_cv_c_wint_t=no)]) if test $gt_cv_c_wint_t = yes; then AC_DEFINE(HAVE_WINT_T, 1, [Define if you have the 'wint_t' type.]) fi ]) ltris-1.0.19/m4/iconv.m40000664000175000017500000000665312140770045011574 00000000000000# iconv.m4 serial AM4 (gettext-0.11.3) dnl Copyright (C) 2000-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. AC_DEFUN([AM_ICONV_LINKFLAGS_BODY], [ dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV dnl accordingly. AC_LIB_LINKFLAGS_BODY([iconv]) ]) AC_DEFUN([AM_ICONV_LINK], [ dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and dnl those with the standalone portable GNU libiconv installed). dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV dnl accordingly. AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) dnl Add $INCICONV to CPPFLAGS before performing the following checks, dnl because if the user has installed libiconv and not disabled its use dnl via --without-libiconv-prefix, he wants to use it. The first dnl AC_TRY_LINK will then fail, the second AC_TRY_LINK will succeed. am_save_CPPFLAGS="$CPPFLAGS" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCICONV]) AC_CACHE_CHECK(for iconv, am_cv_func_iconv, [ am_cv_func_iconv="no, consider installing GNU libiconv" am_cv_lib_iconv=no AC_TRY_LINK([#include #include ], [iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd);], am_cv_func_iconv=yes) if test "$am_cv_func_iconv" != yes; then am_save_LIBS="$LIBS" LIBS="$LIBS $LIBICONV" AC_TRY_LINK([#include #include ], [iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd);], am_cv_lib_iconv=yes am_cv_func_iconv=yes) LIBS="$am_save_LIBS" fi ]) if test "$am_cv_func_iconv" = yes; then AC_DEFINE(HAVE_ICONV, 1, [Define if you have the iconv() function.]) fi if test "$am_cv_lib_iconv" = yes; then AC_MSG_CHECKING([how to link with libiconv]) AC_MSG_RESULT([$LIBICONV]) else dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV dnl either. CPPFLAGS="$am_save_CPPFLAGS" LIBICONV= LTLIBICONV= fi AC_SUBST(LIBICONV) AC_SUBST(LTLIBICONV) ]) AC_DEFUN([AM_ICONV], [ AM_ICONV_LINK if test "$am_cv_func_iconv" = yes; then AC_MSG_CHECKING([for iconv declaration]) AC_CACHE_VAL(am_cv_proto_iconv, [ AC_TRY_COMPILE([ #include #include extern #ifdef __cplusplus "C" #endif #if defined(__STDC__) || defined(__cplusplus) size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); #else size_t iconv(); #endif ], [], am_cv_proto_iconv_arg1="", am_cv_proto_iconv_arg1="const") am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"]) am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'` AC_MSG_RESULT([$]{ac_t:- }[$]am_cv_proto_iconv) AC_DEFINE_UNQUOTED(ICONV_CONST, $am_cv_proto_iconv_arg1, [Define as const if the declaration of iconv() needs const.]) fi ]) ltris-1.0.19/m4/uintmax_t.m40000664000175000017500000000235012140770045012454 00000000000000# uintmax_t.m4 serial 7 (gettext-0.12) dnl Copyright (C) 1997-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Paul Eggert. AC_PREREQ(2.13) # Define uintmax_t to 'unsigned long' or 'unsigned long long' # if it is not already defined in or . AC_DEFUN([jm_AC_TYPE_UINTMAX_T], [ AC_REQUIRE([jm_AC_HEADER_INTTYPES_H]) AC_REQUIRE([jm_AC_HEADER_STDINT_H]) if test $jm_ac_cv_header_inttypes_h = no && test $jm_ac_cv_header_stdint_h = no; then AC_REQUIRE([jm_AC_TYPE_UNSIGNED_LONG_LONG]) test $ac_cv_type_unsigned_long_long = yes \ && ac_type='unsigned long long' \ || ac_type='unsigned long' AC_DEFINE_UNQUOTED(uintmax_t, $ac_type, [Define to unsigned long or unsigned long long if and don't define.]) else AC_DEFINE(HAVE_UINTMAX_T, 1, [Define if you have the 'uintmax_t' type in or .]) fi ]) ltris-1.0.19/m4/lcmessage.m40000664000175000017500000000261612140770045012414 00000000000000# lcmessage.m4 serial 3 (gettext-0.11.3) dnl Copyright (C) 1995-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995. # Check whether LC_MESSAGES is available in . AC_DEFUN([AM_LC_MESSAGES], [ AC_CACHE_CHECK([for LC_MESSAGES], am_cv_val_LC_MESSAGES, [AC_TRY_LINK([#include ], [return LC_MESSAGES], am_cv_val_LC_MESSAGES=yes, am_cv_val_LC_MESSAGES=no)]) if test $am_cv_val_LC_MESSAGES = yes; then AC_DEFINE(HAVE_LC_MESSAGES, 1, [Define if your file defines LC_MESSAGES.]) fi ]) ltris-1.0.19/m4/Makefile.in0000664000175000017500000002620212233753072012255 00000000000000# Makefile.in generated by automake 1.11.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = m4 DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \ $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc21.m4 \ $(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/intdiv0.m4 \ $(top_srcdir)/m4/intmax.m4 $(top_srcdir)/m4/inttypes-pri.m4 \ $(top_srcdir)/m4/inttypes.m4 $(top_srcdir)/m4/inttypes_h.m4 \ $(top_srcdir)/m4/isc-posix.m4 $(top_srcdir)/m4/lcmessage.m4 \ $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/longdouble.m4 \ $(top_srcdir)/m4/longlong.m4 $(top_srcdir)/m4/nls.m4 \ $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/printf-posix.m4 \ $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/signed.m4 \ $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \ $(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/ulonglong.m4 \ $(top_srcdir)/m4/wchar_t.m4 $(top_srcdir)/m4/wint_t.m4 \ $(top_srcdir)/m4/xsize.m4 $(top_srcdir)/acinclude.m4 \ $(top_srcdir)/configure.in am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ ALLOCA = @ALLOCA@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ DATADIRNAME = @DATADIRNAME@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ GENCAT = @GENCAT@ GLIBC21 = @GLIBC21@ GMSGFMT = @GMSGFMT@ GREP = @GREP@ HAVE_ASPRINTF = @HAVE_ASPRINTF@ HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@ HAVE_SNPRINTF = @HAVE_SNPRINTF@ HAVE_WPRINTF = @HAVE_WPRINTF@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ INSTOBJEXT = @INSTOBJEXT@ INTLBISON = @INTLBISON@ INTLLIBS = @INTLLIBS@ INTLOBJS = @INTLOBJS@ INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@ LDFLAGS = @LDFLAGS@ LIBICONV = @LIBICONV@ LIBINTL = @LIBINTL@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBICONV = @LTLIBICONV@ LTLIBINTL = @LTLIBINTL@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ MKINSTALLDIRS = @MKINSTALLDIRS@ MSGFMT = @MSGFMT@ MSGMERGE = @MSGMERGE@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ POSUB = @POSUB@ RANLIB = @RANLIB@ SDL_CFLAGS = @SDL_CFLAGS@ SDL_CONFIG = @SDL_CONFIG@ SDL_LIBS = @SDL_LIBS@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ USE_NLS = @USE_NLS@ VERSION = @VERSION@ XGETTEXT = @XGETTEXT@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ buf_flag = @buf_flag@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ dis_flag = @dis_flag@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ hi_dir = @hi_dir@ hi_inst_flag = @hi_inst_flag@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ inst_dir = @inst_dir@ inst_flag = @inst_flag@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ locdir_flag = @locdir_flag@ mandir = @mandir@ mixer_flag = @mixer_flag@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sound_flag = @sound_flag@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ EXTRA_DIST = codeset.m4 gettext.m4 glibc21.m4 iconv.m4 intdiv0.m4 intmax.m4 inttypes.m4 inttypes_h.m4 inttypes-pri.m4 isc-posix.m4 lcmessage.m4 lib-ld.m4 lib-link.m4 lib-prefix.m4 longdouble.m4 longlong.m4 nls.m4 po.m4 printf-posix.m4 progtest.m4 signed.m4 size_max.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4 wchar_t.m4 wint_t.m4 xsize.m4 all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign m4/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign m4/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): tags: TAGS TAGS: ctags: CTAGS CTAGS: distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic distclean \ distclean-generic distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: ltris-1.0.19/m4/po.m40000664000175000017500000004265212140770045011073 00000000000000# po.m4 serial 3 (gettext-0.14) dnl Copyright (C) 1995-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2003. dnl Checks for all prerequisites of the po subdirectory. AC_DEFUN([AM_PO_SUBDIRS], [ AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl AC_REQUIRE([AM_MKINSTALLDIRS])dnl AC_REQUIRE([AM_NLS])dnl dnl Perform the following tests also if --disable-nls has been given, dnl because they are needed for "make dist" to work. dnl Search for GNU msgfmt in the PATH. dnl The first test excludes Solaris msgfmt and early GNU msgfmt versions. dnl The second test excludes FreeBSD msgfmt. AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt, [$ac_dir/$ac_word --statistics /dev/null >/dev/null 2>&1 && (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], :) AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT) dnl Search for GNU xgettext 0.12 or newer in the PATH. dnl The first test excludes Solaris xgettext and early GNU xgettext versions. dnl The second test excludes FreeBSD xgettext. AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext, [$ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >/dev/null 2>&1 && (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)], :) dnl Remove leftover from FreeBSD xgettext call. rm -f messages.po dnl Search for GNU msgmerge 0.11 or newer in the PATH. AM_PATH_PROG_WITH_TEST(MSGMERGE, msgmerge, [$ac_dir/$ac_word --update -q /dev/null /dev/null >/dev/null 2>&1], :) dnl This could go away some day; the PATH_PROG_WITH_TEST already does it. dnl Test whether we really found GNU msgfmt. if test "$GMSGFMT" != ":"; then dnl If it is no GNU msgfmt we define it as : so that the dnl Makefiles still can work. if $GMSGFMT --statistics /dev/null >/dev/null 2>&1 && (if $GMSGFMT --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then : ; else GMSGFMT=`echo "$GMSGFMT" | sed -e 's,^.*/,,'` AC_MSG_RESULT( [found $GMSGFMT program is not GNU msgfmt; ignore it]) GMSGFMT=":" fi fi dnl This could go away some day; the PATH_PROG_WITH_TEST already does it. dnl Test whether we really found GNU xgettext. if test "$XGETTEXT" != ":"; then dnl If it is no GNU xgettext we define it as : so that the dnl Makefiles still can work. if $XGETTEXT --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >/dev/null 2>&1 && (if $XGETTEXT --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then : ; else AC_MSG_RESULT( [found xgettext program is not GNU xgettext; ignore it]) XGETTEXT=":" fi dnl Remove leftover from FreeBSD xgettext call. rm -f messages.po fi AC_OUTPUT_COMMANDS([ for ac_file in $CONFIG_FILES; do # Support "outfile[:infile[:infile...]]" case "$ac_file" in *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;; esac # PO directories have a Makefile.in generated from Makefile.in.in. case "$ac_file" in */Makefile.in) # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then rm -f "$ac_dir/POTFILES" test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES" cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ ]*\$/d" -e "s,.*, $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES" POMAKEFILEDEPS="POTFILES.in" # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend # on $ac_dir but don't depend on user-specified configuration # parameters. if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then # The LINGUAS file contains the set of available languages. if test -n "$OBSOLETE_ALL_LINGUAS"; then test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete" fi ALL_LINGUAS_=`sed -e "/^#/d" "$ac_given_srcdir/$ac_dir/LINGUAS"` # Hide the ALL_LINGUAS assigment from automake. eval 'ALL_LINGUAS''=$ALL_LINGUAS_' POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS" else # The set of available languages was given in configure.in. eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS' fi # Compute POFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po) # Compute UPDATEPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update) # Compute DUMMYPOFILES # as $(foreach lang, $(ALL_LINGUAS), $(lang).nop) # Compute GMOFILES # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo) case "$ac_given_srcdir" in .) srcdirpre= ;; *) srcdirpre='$(srcdir)/' ;; esac POFILES= UPDATEPOFILES= DUMMYPOFILES= GMOFILES= for lang in $ALL_LINGUAS; do POFILES="$POFILES $srcdirpre$lang.po" UPDATEPOFILES="$UPDATEPOFILES $lang.po-update" DUMMYPOFILES="$DUMMYPOFILES $lang.nop" GMOFILES="$GMOFILES $srcdirpre$lang.gmo" done # CATALOGS depends on both $ac_dir and the user's LINGUAS # environment variable. INST_LINGUAS= if test -n "$ALL_LINGUAS"; then for presentlang in $ALL_LINGUAS; do useit=no if test "%UNSET%" != "$LINGUAS"; then desiredlanguages="$LINGUAS" else desiredlanguages="$ALL_LINGUAS" fi for desiredlang in $desiredlanguages; do # Use the presentlang catalog if desiredlang is # a. equal to presentlang, or # b. a variant of presentlang (because in this case, # presentlang can be used as a fallback for messages # which are not translated in the desiredlang catalog). case "$desiredlang" in "$presentlang"*) useit=yes;; esac done if test $useit = yes; then INST_LINGUAS="$INST_LINGUAS $presentlang" fi done fi CATALOGS= if test -n "$INST_LINGUAS"; then for lang in $INST_LINGUAS; do CATALOGS="$CATALOGS $lang.gmo" done fi test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile" sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile" for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do if test -f "$f"; then case "$f" in *.orig | *.bak | *~) ;; *) cat "$f" >> "$ac_dir/Makefile" ;; esac fi done fi ;; esac done], [# Capture the value of obsolete ALL_LINGUAS because we need it to compute # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it # from automake. eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"' # Capture the value of LINGUAS because we need it to compute CATALOGS. LINGUAS="${LINGUAS-%UNSET%}" ]) ]) dnl Postprocesses a Makefile in a directory containing PO files. AC_DEFUN([AM_POSTPROCESS_PO_MAKEFILE], [ # When this code is run, in config.status, two variables have already been # set: # - OBSOLETE_ALL_LINGUAS is the value of LINGUAS set in configure.in, # - LINGUAS is the value of the environment variable LINGUAS at configure # time. changequote(,)dnl # Adjust a relative srcdir. ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'` ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`" ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'` # In autoconf-2.13 it is called $ac_given_srcdir. # In autoconf-2.50 it is called $srcdir. test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir" case "$ac_given_srcdir" in .) top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;; /*) top_srcdir="$ac_given_srcdir" ;; *) top_srcdir="$ac_dots$ac_given_srcdir" ;; esac # Find a way to echo strings without interpreting backslash. if test "X`(echo '\t') 2>/dev/null`" = 'X\t'; then gt_echo='echo' else if test "X`(printf '%s\n' '\t') 2>/dev/null`" = 'X\t'; then gt_echo='printf %s\n' else echo_func () { cat < "$ac_file.tmp" if grep -l '@TCLCATALOGS@' "$ac_file" > /dev/null; then # Add dependencies that cannot be formulated as a simple suffix rule. for lang in $ALL_LINGUAS; do frobbedlang=`echo $lang | sed -e 's/\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'` cat >> "$ac_file.tmp" < /dev/null; then # Add dependencies that cannot be formulated as a simple suffix rule. for lang in $ALL_LINGUAS; do frobbedlang=`echo $lang | sed -e 's/_/-/g'` cat >> "$ac_file.tmp" <> "$ac_file.tmp" <> i | ullmax / ull | ullmax % ull;], ac_cv_type_unsigned_long_long=yes, ac_cv_type_unsigned_long_long=no)]) if test $ac_cv_type_unsigned_long_long = yes; then AC_DEFINE(HAVE_UNSIGNED_LONG_LONG, 1, [Define if you have the 'unsigned long long' type.]) fi ]) ltris-1.0.19/m4/Makefile.am0000664000175000017500000000052112140770045012234 00000000000000EXTRA_DIST = codeset.m4 gettext.m4 glibc21.m4 iconv.m4 intdiv0.m4 intmax.m4 inttypes.m4 inttypes_h.m4 inttypes-pri.m4 isc-posix.m4 lcmessage.m4 lib-ld.m4 lib-link.m4 lib-prefix.m4 longdouble.m4 longlong.m4 nls.m4 po.m4 printf-posix.m4 progtest.m4 signed.m4 size_max.m4 stdint_h.m4 uintmax_t.m4 ulonglong.m4 wchar_t.m4 wint_t.m4 xsize.m4 ltris-1.0.19/m4/gettext.m40000664000175000017500000004513012140770045012133 00000000000000# gettext.m4 serial 28 (gettext-0.13) dnl Copyright (C) 1995-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2003. dnl Macro to add for using GNU gettext. dnl Usage: AM_GNU_GETTEXT([INTLSYMBOL], [NEEDSYMBOL], [INTLDIR]). dnl INTLSYMBOL can be one of 'external', 'no-libtool', 'use-libtool'. The dnl default (if it is not specified or empty) is 'no-libtool'. dnl INTLSYMBOL should be 'external' for packages with no intl directory, dnl and 'no-libtool' or 'use-libtool' for packages with an intl directory. dnl If INTLSYMBOL is 'use-libtool', then a libtool library dnl $(top_builddir)/intl/libintl.la will be created (shared and/or static, dnl depending on --{enable,disable}-{shared,static} and on the presence of dnl AM-DISABLE-SHARED). If INTLSYMBOL is 'no-libtool', a static library dnl $(top_builddir)/intl/libintl.a will be created. dnl If NEEDSYMBOL is specified and is 'need-ngettext', then GNU gettext dnl implementations (in libc or libintl) without the ngettext() function dnl will be ignored. If NEEDSYMBOL is specified and is dnl 'need-formatstring-macros', then GNU gettext implementations that don't dnl support the ISO C 99 formatstring macros will be ignored. dnl INTLDIR is used to find the intl libraries. If empty, dnl the value `$(top_builddir)/intl/' is used. dnl dnl The result of the configuration is one of three cases: dnl 1) GNU gettext, as included in the intl subdirectory, will be compiled dnl and used. dnl Catalog format: GNU --> install in $(datadir) dnl Catalog extension: .mo after installation, .gmo in source tree dnl 2) GNU gettext has been found in the system's C library. dnl Catalog format: GNU --> install in $(datadir) dnl Catalog extension: .mo after installation, .gmo in source tree dnl 3) No internationalization, always use English msgid. dnl Catalog format: none dnl Catalog extension: none dnl If INTLSYMBOL is 'external', only cases 2 and 3 can occur. dnl The use of .gmo is historical (it was needed to avoid overwriting the dnl GNU format catalogs when building on a platform with an X/Open gettext), dnl but we keep it in order not to force irrelevant filename changes on the dnl maintainers. dnl AC_DEFUN([AM_GNU_GETTEXT], [ dnl Argument checking. ifelse([$1], [], , [ifelse([$1], [external], , [ifelse([$1], [no-libtool], , [ifelse([$1], [use-libtool], , [errprint([ERROR: invalid first argument to AM_GNU_GETTEXT ])])])])]) ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], , [errprint([ERROR: invalid second argument to AM_GNU_GETTEXT ])])])]) define(gt_included_intl, ifelse([$1], [external], [no], [yes])) define(gt_libtool_suffix_prefix, ifelse([$1], [use-libtool], [l], [])) AC_REQUIRE([AM_PO_SUBDIRS])dnl ifelse(gt_included_intl, yes, [ AC_REQUIRE([AM_INTL_SUBDIR])dnl ]) dnl Prerequisites of AC_LIB_LINKFLAGS_BODY. AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) dnl Sometimes libintl requires libiconv, so first search for libiconv. dnl Ideally we would do this search only after the dnl if test "$USE_NLS" = "yes"; then dnl if test "$gt_cv_func_gnugettext_libc" != "yes"; then dnl tests. But if configure.in invokes AM_ICONV after AM_GNU_GETTEXT dnl the configure script would need to contain the same shell code dnl again, outside any 'if'. There are two solutions: dnl - Invoke AM_ICONV_LINKFLAGS_BODY here, outside any 'if'. dnl - Control the expansions in more detail using AC_PROVIDE_IFELSE. dnl Since AC_PROVIDE_IFELSE is only in autoconf >= 2.52 and not dnl documented, we avoid it. ifelse(gt_included_intl, yes, , [ AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY]) ]) dnl Set USE_NLS. AM_NLS ifelse(gt_included_intl, yes, [ BUILD_INCLUDED_LIBINTL=no USE_INCLUDED_LIBINTL=no ]) LIBINTL= LTLIBINTL= POSUB= dnl If we use NLS figure out what method if test "$USE_NLS" = "yes"; then gt_use_preinstalled_gnugettext=no ifelse(gt_included_intl, yes, [ AC_MSG_CHECKING([whether included gettext is requested]) AC_ARG_WITH(included-gettext, [ --with-included-gettext use the GNU gettext library included here], nls_cv_force_use_gnu_gettext=$withval, nls_cv_force_use_gnu_gettext=no) AC_MSG_RESULT($nls_cv_force_use_gnu_gettext) nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" if test "$nls_cv_force_use_gnu_gettext" != "yes"; then ]) dnl User does not insist on using GNU NLS library. Figure out what dnl to use. If GNU gettext is available we use this. Else we have dnl to fall back to GNU NLS library. dnl Add a version number to the cache macros. define([gt_api_version], ifelse([$2], [need-formatstring-macros], 3, ifelse([$2], [need-ngettext], 2, 1))) define([gt_cv_func_gnugettext_libc], [gt_cv_func_gnugettext]gt_api_version[_libc]) define([gt_cv_func_gnugettext_libintl], [gt_cv_func_gnugettext]gt_api_version[_libintl]) AC_CACHE_CHECK([for GNU gettext in libc], gt_cv_func_gnugettext_libc, [AC_TRY_LINK([#include ]ifelse([$2], [need-formatstring-macros], [#ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif changequote(,)dnl typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; changequote([,])dnl ], [])[extern int _nl_msg_cat_cntr; extern int *_nl_domain_bindings;], [bindtextdomain ("", ""); return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_domain_bindings], gt_cv_func_gnugettext_libc=yes, gt_cv_func_gnugettext_libc=no)]) if test "$gt_cv_func_gnugettext_libc" != "yes"; then dnl Sometimes libintl requires libiconv, so first search for libiconv. ifelse(gt_included_intl, yes, , [ AM_ICONV_LINK ]) dnl Search for libintl and define LIBINTL, LTLIBINTL and INCINTL dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv]) dnl because that would add "-liconv" to LIBINTL and LTLIBINTL dnl even if libiconv doesn't exist. AC_LIB_LINKFLAGS_BODY([intl]) AC_CACHE_CHECK([for GNU gettext in libintl], gt_cv_func_gnugettext_libintl, [gt_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$CPPFLAGS $INCINTL" gt_save_LIBS="$LIBS" LIBS="$LIBS $LIBINTL" dnl Now see whether libintl exists and does not depend on libiconv. AC_TRY_LINK([#include ]ifelse([$2], [need-formatstring-macros], [#ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif changequote(,)dnl typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; changequote([,])dnl ], [])[extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias ();], [bindtextdomain ("", ""); return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_expand_alias (0)], gt_cv_func_gnugettext_libintl=yes, gt_cv_func_gnugettext_libintl=no) dnl Now see whether libintl exists and depends on libiconv. if test "$gt_cv_func_gnugettext_libintl" != yes && test -n "$LIBICONV"; then LIBS="$LIBS $LIBICONV" AC_TRY_LINK([#include ]ifelse([$2], [need-formatstring-macros], [#ifndef __GNU_GETTEXT_SUPPORTED_REVISION #define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1) #endif changequote(,)dnl typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1]; changequote([,])dnl ], [])[extern int _nl_msg_cat_cntr; extern #ifdef __cplusplus "C" #endif const char *_nl_expand_alias ();], [bindtextdomain ("", ""); return (int) gettext ("")]ifelse([$2], [need-ngettext], [ + (int) ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_expand_alias (0)], [LIBINTL="$LIBINTL $LIBICONV" LTLIBINTL="$LTLIBINTL $LTLIBICONV" gt_cv_func_gnugettext_libintl=yes ]) fi CPPFLAGS="$gt_save_CPPFLAGS" LIBS="$gt_save_LIBS"]) fi dnl If an already present or preinstalled GNU gettext() is found, dnl use it. But if this macro is used in GNU gettext, and GNU dnl gettext is already preinstalled in libintl, we update this dnl libintl. (Cf. the install rule in intl/Makefile.in.) if test "$gt_cv_func_gnugettext_libc" = "yes" \ || { test "$gt_cv_func_gnugettext_libintl" = "yes" \ && test "$PACKAGE" != gettext-runtime \ && test "$PACKAGE" != gettext-tools; }; then gt_use_preinstalled_gnugettext=yes else dnl Reset the values set by searching for libintl. LIBINTL= LTLIBINTL= INCINTL= fi ifelse(gt_included_intl, yes, [ if test "$gt_use_preinstalled_gnugettext" != "yes"; then dnl GNU gettext is not found in the C library. dnl Fall back on included GNU gettext library. nls_cv_use_gnu_gettext=yes fi fi if test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Mark actions used to generate GNU NLS library. BUILD_INCLUDED_LIBINTL=yes USE_INCLUDED_LIBINTL=yes LIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LIBICONV" LTLIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LTLIBICONV" LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'` fi if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then dnl Mark actions to use GNU gettext tools. CATOBJEXT=.gmo fi ]) if test "$gt_use_preinstalled_gnugettext" = "yes" \ || test "$nls_cv_use_gnu_gettext" = "yes"; then AC_DEFINE(ENABLE_NLS, 1, [Define to 1 if translation of program messages to the user's native language is requested.]) else USE_NLS=no fi fi AC_MSG_CHECKING([whether to use NLS]) AC_MSG_RESULT([$USE_NLS]) if test "$USE_NLS" = "yes"; then AC_MSG_CHECKING([where the gettext function comes from]) if test "$gt_use_preinstalled_gnugettext" = "yes"; then if test "$gt_cv_func_gnugettext_libintl" = "yes"; then gt_source="external libintl" else gt_source="libc" fi else gt_source="included intl directory" fi AC_MSG_RESULT([$gt_source]) fi if test "$USE_NLS" = "yes"; then if test "$gt_use_preinstalled_gnugettext" = "yes"; then if test "$gt_cv_func_gnugettext_libintl" = "yes"; then AC_MSG_CHECKING([how to link with libintl]) AC_MSG_RESULT([$LIBINTL]) AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCINTL]) fi dnl For backward compatibility. Some packages may be using this. AC_DEFINE(HAVE_GETTEXT, 1, [Define if the GNU gettext() function is already present or preinstalled.]) AC_DEFINE(HAVE_DCGETTEXT, 1, [Define if the GNU dcgettext() function is already present or preinstalled.]) fi dnl We need to process the po/ directory. POSUB=po fi ifelse(gt_included_intl, yes, [ dnl If this is used in GNU gettext we have to set BUILD_INCLUDED_LIBINTL dnl to 'yes' because some of the testsuite requires it. if test "$PACKAGE" = gettext-runtime || test "$PACKAGE" = gettext-tools; then BUILD_INCLUDED_LIBINTL=yes fi dnl Make all variables we use known to autoconf. AC_SUBST(BUILD_INCLUDED_LIBINTL) AC_SUBST(USE_INCLUDED_LIBINTL) AC_SUBST(CATOBJEXT) dnl For backward compatibility. Some configure.ins may be using this. nls_cv_header_intl= nls_cv_header_libgt= dnl For backward compatibility. Some Makefiles may be using this. DATADIRNAME=share AC_SUBST(DATADIRNAME) dnl For backward compatibility. Some Makefiles may be using this. INSTOBJEXT=.mo AC_SUBST(INSTOBJEXT) dnl For backward compatibility. Some Makefiles may be using this. GENCAT=gencat AC_SUBST(GENCAT) dnl For backward compatibility. Some Makefiles may be using this. if test "$USE_INCLUDED_LIBINTL" = yes; then INTLOBJS="\$(GETTOBJS)" fi AC_SUBST(INTLOBJS) dnl Enable libtool support if the surrounding package wishes it. INTL_LIBTOOL_SUFFIX_PREFIX=gt_libtool_suffix_prefix AC_SUBST(INTL_LIBTOOL_SUFFIX_PREFIX) ]) dnl For backward compatibility. Some Makefiles may be using this. INTLLIBS="$LIBINTL" AC_SUBST(INTLLIBS) dnl Make all documented variables known to autoconf. AC_SUBST(LIBINTL) AC_SUBST(LTLIBINTL) AC_SUBST(POSUB) ]) dnl Checks for all prerequisites of the intl subdirectory, dnl except for INTL_LIBTOOL_SUFFIX_PREFIX (and possibly LIBTOOL), INTLOBJS, dnl USE_INCLUDED_LIBINTL, BUILD_INCLUDED_LIBINTL. AC_DEFUN([AM_INTL_SUBDIR], [ AC_REQUIRE([AC_PROG_INSTALL])dnl AC_REQUIRE([AM_MKINSTALLDIRS])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_PROG_RANLIB])dnl AC_REQUIRE([AC_ISC_POSIX])dnl AC_REQUIRE([AC_HEADER_STDC])dnl AC_REQUIRE([AC_C_CONST])dnl AC_REQUIRE([bh_C_SIGNED])dnl AC_REQUIRE([AC_C_INLINE])dnl AC_REQUIRE([AC_TYPE_OFF_T])dnl AC_REQUIRE([AC_TYPE_SIZE_T])dnl AC_REQUIRE([jm_AC_TYPE_LONG_LONG])dnl AC_REQUIRE([gt_TYPE_LONGDOUBLE])dnl AC_REQUIRE([gt_TYPE_WCHAR_T])dnl AC_REQUIRE([gt_TYPE_WINT_T])dnl AC_REQUIRE([jm_AC_HEADER_INTTYPES_H]) AC_REQUIRE([jm_AC_HEADER_STDINT_H]) AC_REQUIRE([gt_TYPE_INTMAX_T]) AC_REQUIRE([gt_PRINTF_POSIX]) AC_REQUIRE([AC_FUNC_ALLOCA])dnl AC_REQUIRE([AC_FUNC_MMAP])dnl AC_REQUIRE([jm_GLIBC21])dnl AC_REQUIRE([gt_INTDIV0])dnl AC_REQUIRE([jm_AC_TYPE_UINTMAX_T])dnl AC_REQUIRE([gt_HEADER_INTTYPES_H])dnl AC_REQUIRE([gt_INTTYPES_PRI])dnl AC_REQUIRE([gl_XSIZE])dnl AC_CHECK_TYPE([ptrdiff_t], , [AC_DEFINE([ptrdiff_t], [long], [Define as the type of the result of subtracting two pointers, if the system doesn't define it.]) ]) AC_CHECK_HEADERS([argz.h limits.h locale.h nl_types.h malloc.h stddef.h \ stdlib.h string.h unistd.h sys/param.h]) AC_CHECK_FUNCS([asprintf fwprintf getcwd getegid geteuid getgid getuid \ mempcpy munmap putenv setenv setlocale snprintf stpcpy strcasecmp strdup \ strtoul tsearch wcslen __argz_count __argz_stringify __argz_next \ __fsetlocking]) dnl Use the _snprintf function only if it is declared (because on NetBSD it dnl is defined as a weak alias of snprintf; we prefer to use the latter). gt_CHECK_DECL(_snprintf, [#include ]) gt_CHECK_DECL(_snwprintf, [#include ]) dnl Use the *_unlocked functions only if they are declared. dnl (because some of them were defined without being declared in Solaris dnl 2.5.1 but were removed in Solaris 2.6, whereas we want binaries built dnl on Solaris 2.5.1 to run on Solaris 2.6). dnl Don't use AC_CHECK_DECLS because it isn't supported in autoconf-2.13. gt_CHECK_DECL(feof_unlocked, [#include ]) gt_CHECK_DECL(fgets_unlocked, [#include ]) gt_CHECK_DECL(getc_unlocked, [#include ]) case $gt_cv_func_printf_posix in *yes) HAVE_POSIX_PRINTF=1 ;; *) HAVE_POSIX_PRINTF=0 ;; esac AC_SUBST([HAVE_POSIX_PRINTF]) if test "$ac_cv_func_asprintf" = yes; then HAVE_ASPRINTF=1 else HAVE_ASPRINTF=0 fi AC_SUBST([HAVE_ASPRINTF]) if test "$ac_cv_func_snprintf" = yes; then HAVE_SNPRINTF=1 else HAVE_SNPRINTF=0 fi AC_SUBST([HAVE_SNPRINTF]) if test "$ac_cv_func_wprintf" = yes; then HAVE_WPRINTF=1 else HAVE_WPRINTF=0 fi AC_SUBST([HAVE_WPRINTF]) AM_ICONV AM_LANGINFO_CODESET if test $ac_cv_header_locale_h = yes; then AM_LC_MESSAGES fi dnl intl/plural.c is generated from intl/plural.y. It requires bison, dnl because plural.y uses bison specific features. It requires at least dnl bison-1.26 because earlier versions generate a plural.c that doesn't dnl compile. dnl bison is only needed for the maintainer (who touches plural.y). But in dnl order to avoid separate Makefiles or --enable-maintainer-mode, we put dnl the rule in general Makefile. Now, some people carelessly touch the dnl files or have a broken "make" program, hence the plural.c rule will dnl sometimes fire. To avoid an error, defines BISON to ":" if it is not dnl present or too old. AC_CHECK_PROGS([INTLBISON], [bison]) if test -z "$INTLBISON"; then ac_verc_fail=yes else dnl Found it, now check the version. AC_MSG_CHECKING([version of bison]) changequote(<<,>>)dnl ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'` case $ac_prog_version in '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;; 1.2[6-9]* | 1.[3-9][0-9]* | [2-9].*) changequote([,])dnl ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;; *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;; esac AC_MSG_RESULT([$ac_prog_version]) fi if test $ac_verc_fail = yes; then INTLBISON=: fi ]) dnl gt_CHECK_DECL(FUNC, INCLUDES) dnl Check whether a function is declared. AC_DEFUN([gt_CHECK_DECL], [ AC_CACHE_CHECK([whether $1 is declared], ac_cv_have_decl_$1, [AC_TRY_COMPILE([$2], [ #ifndef $1 char *p = (char *) $1; #endif ], ac_cv_have_decl_$1=yes, ac_cv_have_decl_$1=no)]) if test $ac_cv_have_decl_$1 = yes; then gt_value=1 else gt_value=0 fi AC_DEFINE_UNQUOTED([HAVE_DECL_]translit($1, [a-z], [A-Z]), [$gt_value], [Define to 1 if you have the declaration of `$1', and to 0 if you don't.]) ]) dnl Usage: AM_GNU_GETTEXT_VERSION([gettext-version]) AC_DEFUN([AM_GNU_GETTEXT_VERSION], []) ltris-1.0.19/m4/size_max.m40000664000175000017500000000407212140770045012266 00000000000000# size_max.m4 serial 2 dnl Copyright (C) 2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. AC_DEFUN([gl_SIZE_MAX], [ AC_CHECK_HEADERS(stdint.h) dnl First test whether the system already has SIZE_MAX. AC_MSG_CHECKING([for SIZE_MAX]) result= AC_EGREP_CPP([Found it], [ #include #if HAVE_STDINT_H #include #endif #ifdef SIZE_MAX Found it #endif ], result=yes) if test -z "$result"; then dnl Define it ourselves. Here we assume that the type 'size_t' is not wider dnl than the type 'unsigned long'. dnl The _AC_COMPUTE_INT macro works up to LONG_MAX, since it uses 'expr', dnl which is guaranteed to work from LONG_MIN to LONG_MAX. _AC_COMPUTE_INT([~(size_t)0 / 10], res_hi, [#include ], result=?) _AC_COMPUTE_INT([~(size_t)0 % 10], res_lo, [#include ], result=?) _AC_COMPUTE_INT([sizeof (size_t) <= sizeof (unsigned int)], fits_in_uint, [#include ], result=?) if test "$fits_in_uint" = 1; then dnl Even though SIZE_MAX fits in an unsigned int, it must be of type dnl 'unsigned long' if the type 'size_t' is the same as 'unsigned long'. AC_TRY_COMPILE([#include extern size_t foo; extern unsigned long foo; ], [], fits_in_uint=0) fi if test -z "$result"; then if test "$fits_in_uint" = 1; then result="$res_hi$res_lo"U else result="$res_hi$res_lo"UL fi else dnl Shouldn't happen, but who knows... result='~(size_t)0' fi fi AC_MSG_RESULT([$result]) if test "$result" != yes; then AC_DEFINE_UNQUOTED([SIZE_MAX], [$result], [Define as the maximum value of type 'size_t', if the system doesn't define it.]) fi ]) ltris-1.0.19/m4/signed.m40000664000175000017500000000140112140770045011711 00000000000000# signed.m4 serial 1 (gettext-0.10.40) dnl Copyright (C) 2001-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. AC_DEFUN([bh_C_SIGNED], [ AC_CACHE_CHECK([for signed], bh_cv_c_signed, [AC_TRY_COMPILE(, [signed char x;], bh_cv_c_signed=yes, bh_cv_c_signed=no)]) if test $bh_cv_c_signed = no; then AC_DEFINE(signed, , [Define to empty if the C compiler doesn't support this keyword.]) fi ]) ltris-1.0.19/m4/lib-prefix.m40000664000175000017500000001250712140770045012512 00000000000000# lib-prefix.m4 serial 3 (gettext-0.13) dnl Copyright (C) 2001-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. dnl AC_LIB_ARG_WITH is synonymous to AC_ARG_WITH in autoconf-2.13, and dnl similar to AC_ARG_WITH in autoconf 2.52...2.57 except that is doesn't dnl require excessive bracketing. ifdef([AC_HELP_STRING], [AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[[$2]],[$3],[$4])])], [AC_DEFUN([AC_][LIB_ARG_WITH], [AC_ARG_WITH([$1],[$2],[$3],[$4])])]) dnl AC_LIB_PREFIX adds to the CPPFLAGS and LDFLAGS the flags that are needed dnl to access previously installed libraries. The basic assumption is that dnl a user will want packages to use other packages he previously installed dnl with the same --prefix option. dnl This macro is not needed if only AC_LIB_LINKFLAGS is used to locate dnl libraries, but is otherwise very convenient. AC_DEFUN([AC_LIB_PREFIX], [ AC_BEFORE([$0], [AC_LIB_LINKFLAGS]) AC_REQUIRE([AC_PROG_CC]) AC_REQUIRE([AC_CANONICAL_HOST]) AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) dnl By default, look in $includedir and $libdir. use_additional=yes AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) AC_LIB_ARG_WITH([lib-prefix], [ --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib --without-lib-prefix don't search for libraries in includedir and libdir], [ if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) else additional_includedir="$withval/include" additional_libdir="$withval/lib" fi fi ]) if test $use_additional = yes; then dnl Potentially add $additional_includedir to $CPPFLAGS. dnl But don't add it dnl 1. if it's the standard /usr/include, dnl 2. if it's already present in $CPPFLAGS, dnl 3. if it's /usr/local/include and we are using GCC on Linux, dnl 4. if it doesn't exist as a directory. if test "X$additional_includedir" != "X/usr/include"; then haveit= for x in $CPPFLAGS; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux*) haveit=yes;; esac fi fi if test -z "$haveit"; then if test -d "$additional_includedir"; then dnl Really add $additional_includedir to $CPPFLAGS. CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }-I$additional_includedir" fi fi fi fi dnl Potentially add $additional_libdir to $LDFLAGS. dnl But don't add it dnl 1. if it's the standard /usr/lib, dnl 2. if it's already present in $LDFLAGS, dnl 3. if it's /usr/local/lib and we are using GCC on Linux, dnl 4. if it doesn't exist as a directory. if test "X$additional_libdir" != "X/usr/lib"; then haveit= for x in $LDFLAGS; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test "X$additional_libdir" = "X/usr/local/lib"; then if test -n "$GCC"; then case $host_os in linux*) haveit=yes;; esac fi fi if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LDFLAGS. LDFLAGS="${LDFLAGS}${LDFLAGS:+ }-L$additional_libdir" fi fi fi fi fi ]) dnl AC_LIB_PREPARE_PREFIX creates variables acl_final_prefix, dnl acl_final_exec_prefix, containing the values to which $prefix and dnl $exec_prefix will expand at the end of the configure script. AC_DEFUN([AC_LIB_PREPARE_PREFIX], [ dnl Unfortunately, prefix and exec_prefix get only finally determined dnl at the end of configure. if test "X$prefix" = "XNONE"; then acl_final_prefix="$ac_default_prefix" else acl_final_prefix="$prefix" fi if test "X$exec_prefix" = "XNONE"; then acl_final_exec_prefix='${prefix}' else acl_final_exec_prefix="$exec_prefix" fi acl_save_prefix="$prefix" prefix="$acl_final_prefix" eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" prefix="$acl_save_prefix" ]) dnl AC_LIB_WITH_FINAL_PREFIX([statement]) evaluates statement, with the dnl variables prefix and exec_prefix bound to the values they will have dnl at the end of the configure script. AC_DEFUN([AC_LIB_WITH_FINAL_PREFIX], [ acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" $1 exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" ]) ltris-1.0.19/m4/wchar_t.m40000664000175000017500000000155312140770045012077 00000000000000# wchar_t.m4 serial 1 (gettext-0.12) dnl Copyright (C) 2002-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. dnl Test whether has the 'wchar_t' type. dnl Prerequisite: AC_PROG_CC AC_DEFUN([gt_TYPE_WCHAR_T], [ AC_CACHE_CHECK([for wchar_t], gt_cv_c_wchar_t, [AC_TRY_COMPILE([#include wchar_t foo = (wchar_t)'\0';], , gt_cv_c_wchar_t=yes, gt_cv_c_wchar_t=no)]) if test $gt_cv_c_wchar_t = yes; then AC_DEFINE(HAVE_WCHAR_T, 1, [Define if you have the 'wchar_t' type.]) fi ]) ltris-1.0.19/m4/longlong.m40000664000175000017500000000164312140770045012267 00000000000000# longlong.m4 serial 4 dnl Copyright (C) 1999-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Paul Eggert. # Define HAVE_LONG_LONG if 'long long' works. AC_DEFUN([jm_AC_TYPE_LONG_LONG], [ AC_CACHE_CHECK([for long long], ac_cv_type_long_long, [AC_TRY_LINK([long long ll = 1LL; int i = 63;], [long long llmax = (long long) -1; return ll << i | ll >> i | llmax / ll | llmax % ll;], ac_cv_type_long_long=yes, ac_cv_type_long_long=no)]) if test $ac_cv_type_long_long = yes; then AC_DEFINE(HAVE_LONG_LONG, 1, [Define if you have the 'long long' type.]) fi ]) ltris-1.0.19/m4/lib-ld.m40000664000175000017500000000675612140770045011625 00000000000000# lib-ld.m4 serial 3 (gettext-0.13) dnl Copyright (C) 1996-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl Subroutines of libtool.m4, dnl with replacements s/AC_/AC_LIB/ and s/lt_cv/acl_cv/ to avoid collision dnl with libtool.m4. dnl From libtool-1.4. Sets the variable with_gnu_ld to yes or no. AC_DEFUN([AC_LIB_PROG_LD_GNU], [AC_CACHE_CHECK([if the linker ($LD) is GNU ld], acl_cv_prog_gnu_ld, [# I'd rather use --version here, but apparently some GNU ld's only accept -v. case `$LD -v 2>&1 conf$$.sh echo "exit 0" >>conf$$.sh chmod +x conf$$.sh if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then PATH_SEPARATOR=';' else PATH_SEPARATOR=: fi rm -f conf$$.sh fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by GCC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]* | [A-Za-z]:[\\/]*)] [re_direlt='/[^/][^/]*/\.\./'] # Canonicalize the path of ld ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'` while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(acl_cv_path_LD, [if test -z "$LD"; then IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then acl_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some GNU ld's only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$acl_cv_path_LD" -v 2>&1 < /dev/null` in *GNU* | *'with BFD'*) test "$with_gnu_ld" != no && break ;; *) test "$with_gnu_ld" != yes && break ;; esac fi done IFS="$ac_save_ifs" else acl_cv_path_LD="$LD" # Let the user override the test with a path. fi]) LD="$acl_cv_path_LD" if test -n "$LD"; then AC_MSG_RESULT($LD) else AC_MSG_RESULT(no) fi test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH]) AC_LIB_PROG_LD_GNU ]) ltris-1.0.19/m4/lib-link.m40000664000175000017500000005534312140770045012157 00000000000000# lib-link.m4 serial 4 (gettext-0.12) dnl Copyright (C) 2001-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. dnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and dnl the libraries corresponding to explicit and implicit dependencies. dnl Sets and AC_SUBSTs the LIB${NAME} and LTLIB${NAME} variables and dnl augments the CPPFLAGS variable. AC_DEFUN([AC_LIB_LINKFLAGS], [ AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) define([Name],[translit([$1],[./-], [___])]) define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) AC_CACHE_CHECK([how to link with lib[]$1], [ac_cv_lib[]Name[]_libs], [ AC_LIB_LINKFLAGS_BODY([$1], [$2]) ac_cv_lib[]Name[]_libs="$LIB[]NAME" ac_cv_lib[]Name[]_ltlibs="$LTLIB[]NAME" ac_cv_lib[]Name[]_cppflags="$INC[]NAME" ]) LIB[]NAME="$ac_cv_lib[]Name[]_libs" LTLIB[]NAME="$ac_cv_lib[]Name[]_ltlibs" INC[]NAME="$ac_cv_lib[]Name[]_cppflags" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) AC_SUBST([LIB]NAME) AC_SUBST([LTLIB]NAME) dnl Also set HAVE_LIB[]NAME so that AC_LIB_HAVE_LINKFLAGS can reuse the dnl results of this search when this library appears as a dependency. HAVE_LIB[]NAME=yes undefine([Name]) undefine([NAME]) ]) dnl AC_LIB_HAVE_LINKFLAGS(name, dependencies, includes, testcode) dnl searches for libname and the libraries corresponding to explicit and dnl implicit dependencies, together with the specified include files and dnl the ability to compile and link the specified testcode. If found, it dnl sets and AC_SUBSTs HAVE_LIB${NAME}=yes and the LIB${NAME} and dnl LTLIB${NAME} variables and augments the CPPFLAGS variable, and dnl #defines HAVE_LIB${NAME} to 1. Otherwise, it sets and AC_SUBSTs dnl HAVE_LIB${NAME}=no and LIB${NAME} and LTLIB${NAME} to empty. AC_DEFUN([AC_LIB_HAVE_LINKFLAGS], [ AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) define([Name],[translit([$1],[./-], [___])]) define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) dnl Search for lib[]Name and define LIB[]NAME, LTLIB[]NAME and INC[]NAME dnl accordingly. AC_LIB_LINKFLAGS_BODY([$1], [$2]) dnl Add $INC[]NAME to CPPFLAGS before performing the following checks, dnl because if the user has installed lib[]Name and not disabled its use dnl via --without-lib[]Name-prefix, he wants to use it. ac_save_CPPFLAGS="$CPPFLAGS" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) AC_CACHE_CHECK([for lib[]$1], [ac_cv_lib[]Name], [ ac_save_LIBS="$LIBS" LIBS="$LIBS $LIB[]NAME" AC_TRY_LINK([$3], [$4], [ac_cv_lib[]Name=yes], [ac_cv_lib[]Name=no]) LIBS="$ac_save_LIBS" ]) if test "$ac_cv_lib[]Name" = yes; then HAVE_LIB[]NAME=yes AC_DEFINE([HAVE_LIB]NAME, 1, [Define if you have the $1 library.]) AC_MSG_CHECKING([how to link with lib[]$1]) AC_MSG_RESULT([$LIB[]NAME]) else HAVE_LIB[]NAME=no dnl If $LIB[]NAME didn't lead to a usable library, we don't need dnl $INC[]NAME either. CPPFLAGS="$ac_save_CPPFLAGS" LIB[]NAME= LTLIB[]NAME= fi AC_SUBST([HAVE_LIB]NAME) AC_SUBST([LIB]NAME) AC_SUBST([LTLIB]NAME) undefine([Name]) undefine([NAME]) ]) dnl Determine the platform dependent parameters needed to use rpath: dnl libext, shlibext, hardcode_libdir_flag_spec, hardcode_libdir_separator, dnl hardcode_direct, hardcode_minus_L. AC_DEFUN([AC_LIB_RPATH], [ AC_REQUIRE([AC_PROG_CC]) dnl we use $CC, $GCC, $LDFLAGS AC_REQUIRE([AC_LIB_PROG_LD]) dnl we use $LD, $with_gnu_ld AC_REQUIRE([AC_CANONICAL_HOST]) dnl we use $host AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT]) dnl we use $ac_aux_dir AC_CACHE_CHECK([for shared library run path origin], acl_cv_rpath, [ CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh . ./conftest.sh rm -f ./conftest.sh acl_cv_rpath=done ]) wl="$acl_cv_wl" libext="$acl_cv_libext" shlibext="$acl_cv_shlibext" hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" hardcode_direct="$acl_cv_hardcode_direct" hardcode_minus_L="$acl_cv_hardcode_minus_L" dnl Determine whether the user wants rpath handling at all. AC_ARG_ENABLE(rpath, [ --disable-rpath do not hardcode runtime library paths], :, enable_rpath=yes) ]) dnl AC_LIB_LINKFLAGS_BODY(name [, dependencies]) searches for libname and dnl the libraries corresponding to explicit and implicit dependencies. dnl Sets the LIB${NAME}, LTLIB${NAME} and INC${NAME} variables. AC_DEFUN([AC_LIB_LINKFLAGS_BODY], [ define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) dnl By default, look in $includedir and $libdir. use_additional=yes AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) AC_LIB_ARG_WITH([lib$1-prefix], [ --with-lib$1-prefix[=DIR] search for lib$1 in DIR/include and DIR/lib --without-lib$1-prefix don't search for lib$1 in includedir and libdir], [ if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) else additional_includedir="$withval/include" additional_libdir="$withval/lib" fi fi ]) dnl Search the library and its dependencies in $additional_libdir and dnl $LDFLAGS. Using breadth-first-seach. LIB[]NAME= LTLIB[]NAME= INC[]NAME= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='$1 $2' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" dnl See if it was already located by an earlier AC_LIB_LINKFLAGS dnl or AC_LIB_HAVE_LINKFLAGS call. uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$value" else dnl An earlier call to AC_LIB_HAVE_LINKFLAGS has determined dnl that this library doesn't exist. So just drop it. : fi else dnl Search the library lib$name in $additional_libdir and $LDFLAGS dnl and the already constructed $LIBNAME/$LTLIBNAME. found_dir= found_la= found_so= found_a= if test $use_additional = yes; then if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext"; then found_dir="$additional_libdir" found_so="$additional_libdir/lib$name.$shlibext" if test -f "$additional_libdir/lib$name.la"; then found_la="$additional_libdir/lib$name.la" fi else if test -f "$additional_libdir/lib$name.$libext"; then found_dir="$additional_libdir" found_a="$additional_libdir/lib$name.$libext" if test -f "$additional_libdir/lib$name.la"; then found_la="$additional_libdir/lib$name.la" fi fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` if test -n "$shlibext" && test -f "$dir/lib$name.$shlibext"; then found_dir="$dir" found_so="$dir/lib$name.$shlibext" if test -f "$dir/lib$name.la"; then found_la="$dir/lib$name.la" fi else if test -f "$dir/lib$name.$libext"; then found_dir="$dir" found_a="$dir/lib$name.$libext" if test -f "$dir/lib$name.la"; then found_la="$dir/lib$name.la" fi fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then dnl Found the library. LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then dnl Linking with a shared library. We attempt to hardcode its dnl directory into the executable's runpath, unless it's the dnl standard /usr/lib. if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/lib"; then dnl No hardcoding is needed. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else dnl Use an explicit option to hardcode DIR into the resulting dnl binary. dnl Potentially add DIR to ltrpathdirs. dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi dnl The hardcoding into $LIBNAME is system dependent. if test "$hardcode_direct" = yes; then dnl Using DIR/libNAME.so during linking hardcodes DIR into the dnl resulting binary. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then dnl Use an explicit option to hardcode DIR into the resulting dnl binary. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" dnl Potentially add DIR to rpathdirs. dnl The rpathdirs will be appended to $LIBNAME at the end. haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else dnl Rely on "-L$found_dir". dnl But don't add it if it's already contained in the LDFLAGS dnl or the already constructed $LIBNAME haveit= for x in $LDFLAGS $LIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir" fi if test "$hardcode_minus_L" != no; then dnl FIXME: Not sure whether we should use dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" dnl here. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else dnl We cannot use $hardcode_runpath_var and LD_RUN_PATH dnl here, because this doesn't fit in flags passed to the dnl compiler. So give up. No hardcoding. This affects only dnl very old systems. dnl FIXME: Not sure whether we should use dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" dnl here. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then dnl Linking with a static library. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_a" else dnl We shouldn't come here, but anyway it's good to have a dnl fallback. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir -l$name" fi fi dnl Assume the include files are nearby. additional_includedir= case "$found_dir" in */lib | */lib/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e 's,/lib/*$,,'` additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then dnl Potentially add $additional_includedir to $INCNAME. dnl But don't add it dnl 1. if it's the standard /usr/include, dnl 2. if it's /usr/local/include and we are using GCC on Linux, dnl 3. if it's already present in $CPPFLAGS or the already dnl constructed $INCNAME, dnl 4. if it doesn't exist as a directory. if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux*) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INC[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then dnl Really add $additional_includedir to $INCNAME. INC[]NAME="${INC[]NAME}${INC[]NAME:+ }-I$additional_includedir" fi fi fi fi fi dnl Look for dependencies. if test -n "$found_la"; then dnl Read the .la file. It defines the variables dnl dlname, library_names, old_library, dependency_libs, current, dnl age, revision, installed, dlopen, dlpreopen, libdir. save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" dnl We use only dependency_libs. for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` dnl Potentially add $additional_libdir to $LIBNAME and $LTLIBNAME. dnl But don't add it dnl 1. if it's the standard /usr/lib, dnl 2. if it's /usr/local/lib and we are using GCC on Linux, dnl 3. if it's already present in $LDFLAGS or the already dnl constructed $LIBNAME, dnl 4. if it doesn't exist as a directory. if test "X$additional_libdir" != "X/usr/lib"; then haveit= if test "X$additional_libdir" = "X/usr/local/lib"; then if test -n "$GCC"; then case $host_os in linux*) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LIBNAME. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LTLIBNAME. LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then dnl Potentially add DIR to rpathdirs. dnl The rpathdirs will be appended to $LIBNAME at the end. haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi dnl Potentially add DIR to ltrpathdirs. dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) dnl Handle this in the next round. names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) dnl Handle this in the next round. Throw away the .la's dnl directory; it is already contained in a preceding -L dnl option. names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) dnl Most likely an immediate library name. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$dep" LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$dep" ;; esac done fi else dnl Didn't find the library; assume it is in the system directories dnl known to the linker and runtime loader. (All the system dnl directories known to the linker should also be known to the dnl runtime loader, otherwise the system is severely misconfigured.) LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$hardcode_libdir_separator"; then dnl Weird platform: only the last -rpath option counts, the user must dnl pass all path elements in one option. We can arrange that for a dnl single library, but not when more than one $LIBNAMEs are used. alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir" done dnl Note: hardcode_libdir_flag_spec uses $libdir and $wl. acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" else dnl The -rpath options are cumulative. for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then dnl When using libtool, the option that works for both libraries and dnl executables is -R. The -R options are cumulative. for found_dir in $ltrpathdirs; do LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-R$found_dir" done fi ]) dnl AC_LIB_APPENDTOVAR(VAR, CONTENTS) appends the elements of CONTENTS to VAR, dnl unless already present in VAR. dnl Works only for CPPFLAGS, not for LIB* variables because that sometimes dnl contains two or three consecutive elements that belong together. AC_DEFUN([AC_LIB_APPENDTOVAR], [ for element in [$2]; do haveit= for x in $[$1]; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then [$1]="${[$1]}${[$1]:+ }$element" fi done ]) ltris-1.0.19/m4/nls.m40000664000175000017500000000350512140770045011243 00000000000000# nls.m4 serial 1 (gettext-0.12) dnl Copyright (C) 1995-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl dnl This file can can be used in projects which are not available under dnl the GNU General Public License or the GNU Library General Public dnl License but which still want to provide support for the GNU gettext dnl functionality. dnl Please note that the actual code of the GNU gettext library is covered dnl by the GNU Library General Public License, and the rest of the GNU dnl gettext package package is covered by the GNU General Public License. dnl They are *not* in the public domain. dnl Authors: dnl Ulrich Drepper , 1995-2000. dnl Bruno Haible , 2000-2003. AC_DEFUN([AM_NLS], [ AC_MSG_CHECKING([whether NLS is requested]) dnl Default is enabled NLS AC_ARG_ENABLE(nls, [ --disable-nls do not use Native Language Support], USE_NLS=$enableval, USE_NLS=yes) AC_MSG_RESULT($USE_NLS) AC_SUBST(USE_NLS) ]) AC_DEFUN([AM_MKINSTALLDIRS], [ dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly dnl find the mkinstalldirs script in another subdir but $(top_srcdir). dnl Try to locate it. MKINSTALLDIRS= if test -n "$ac_aux_dir"; then case "$ac_aux_dir" in /*) MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" ;; *) MKINSTALLDIRS="\$(top_builddir)/$ac_aux_dir/mkinstalldirs" ;; esac fi if test -z "$MKINSTALLDIRS"; then MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs" fi AC_SUBST(MKINSTALLDIRS) ]) ltris-1.0.19/m4/glibc21.m40000664000175000017500000000172712140770045011676 00000000000000# glibc21.m4 serial 2 (fileutils-4.1.3, gettext-0.10.40) dnl Copyright (C) 2000-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. # Test for the GNU C Library, version 2.1 or newer. # From Bruno Haible. AC_DEFUN([jm_GLIBC21], [ AC_CACHE_CHECK(whether we are using the GNU C Library 2.1 or newer, ac_cv_gnu_library_2_1, [AC_EGREP_CPP([Lucky GNU user], [ #include #ifdef __GNU_LIBRARY__ #if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2) Lucky GNU user #endif #endif ], ac_cv_gnu_library_2_1=yes, ac_cv_gnu_library_2_1=no) ] ) AC_SUBST(GLIBC21) GLIBC21="$ac_cv_gnu_library_2_1" ] ) ltris-1.0.19/m4/intdiv0.m40000664000175000017500000000356512140770045012032 00000000000000# intdiv0.m4 serial 1 (gettext-0.11.3) dnl Copyright (C) 2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Bruno Haible. AC_DEFUN([gt_INTDIV0], [ AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_CACHE_CHECK([whether integer division by zero raises SIGFPE], gt_cv_int_divbyzero_sigfpe, [ AC_TRY_RUN([ #include #include static void #ifdef __cplusplus sigfpe_handler (int sig) #else sigfpe_handler (sig) int sig; #endif { /* Exit with code 0 if SIGFPE, with code 1 if any other signal. */ exit (sig != SIGFPE); } int x = 1; int y = 0; int z; int nan; int main () { signal (SIGFPE, sigfpe_handler); /* IRIX and AIX (when "xlc -qcheck" is used) yield signal SIGTRAP. */ #if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP) signal (SIGTRAP, sigfpe_handler); #endif /* Linux/SPARC yields signal SIGILL. */ #if defined (__sparc__) && defined (__linux__) signal (SIGILL, sigfpe_handler); #endif z = x / y; nan = y / y; exit (1); } ], gt_cv_int_divbyzero_sigfpe=yes, gt_cv_int_divbyzero_sigfpe=no, [ # Guess based on the CPU. case "$host_cpu" in alpha* | i[34567]86 | m68k | s390*) gt_cv_int_divbyzero_sigfpe="guessing yes";; *) gt_cv_int_divbyzero_sigfpe="guessing no";; esac ]) ]) case "$gt_cv_int_divbyzero_sigfpe" in *yes) value=1;; *) value=0;; esac AC_DEFINE_UNQUOTED(INTDIV0_RAISES_SIGFPE, $value, [Define if integer division by zero raises signal SIGFPE.]) ]) ltris-1.0.19/m4/inttypes.m40000664000175000017500000000171712140770045012331 00000000000000# inttypes.m4 serial 1 (gettext-0.11.4) dnl Copyright (C) 1997-2002 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Paul Eggert. # Define HAVE_INTTYPES_H if exists and doesn't clash with # . AC_DEFUN([gt_HEADER_INTTYPES_H], [ AC_CACHE_CHECK([for inttypes.h], gt_cv_header_inttypes_h, [ AC_TRY_COMPILE( [#include #include ], [], gt_cv_header_inttypes_h=yes, gt_cv_header_inttypes_h=no) ]) if test $gt_cv_header_inttypes_h = yes; then AC_DEFINE_UNQUOTED(HAVE_INTTYPES_H, 1, [Define if exists and doesn't clash with .]) fi ]) ltris-1.0.19/m4/inttypes_h.m40000664000175000017500000000210312140770045012626 00000000000000# inttypes_h.m4 serial 5 (gettext-0.12) dnl Copyright (C) 1997-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Paul Eggert. # Define HAVE_INTTYPES_H_WITH_UINTMAX if exists, # doesn't clash with , and declares uintmax_t. AC_DEFUN([jm_AC_HEADER_INTTYPES_H], [ AC_CACHE_CHECK([for inttypes.h], jm_ac_cv_header_inttypes_h, [AC_TRY_COMPILE( [#include #include ], [uintmax_t i = (uintmax_t) -1;], jm_ac_cv_header_inttypes_h=yes, jm_ac_cv_header_inttypes_h=no)]) if test $jm_ac_cv_header_inttypes_h = yes; then AC_DEFINE_UNQUOTED(HAVE_INTTYPES_H_WITH_UINTMAX, 1, [Define if exists, doesn't clash with , and declares uintmax_t. ]) fi ]) ltris-1.0.19/m4/stdint_h.m40000664000175000017500000000205312140770045012260 00000000000000# stdint_h.m4 serial 3 (gettext-0.12) dnl Copyright (C) 1997-2003 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General dnl Public License, this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl From Paul Eggert. # Define HAVE_STDINT_H_WITH_UINTMAX if exists, # doesn't clash with , and declares uintmax_t. AC_DEFUN([jm_AC_HEADER_STDINT_H], [ AC_CACHE_CHECK([for stdint.h], jm_ac_cv_header_stdint_h, [AC_TRY_COMPILE( [#include #include ], [uintmax_t i = (uintmax_t) -1;], jm_ac_cv_header_stdint_h=yes, jm_ac_cv_header_stdint_h=no)]) if test $jm_ac_cv_header_stdint_h = yes; then AC_DEFINE_UNQUOTED(HAVE_STDINT_H_WITH_UINTMAX, 1, [Define if exists, doesn't clash with , and declares uintmax_t. ]) fi ]) ltris-1.0.19/install-sh0000775000175000017500000001272012140770051011665 00000000000000#!/bin/sh # # install - install a program, script, or datafile # This comes from X11R5 (mit/util/scripts/install.sh). # # Copyright 1991 by the Massachusetts Institute of Technology # # Permission to use, copy, modify, distribute, and sell this software and its # documentation for any purpose is hereby granted without fee, provided that # the above copyright notice appear in all copies and that both that # copyright notice and this permission notice appear in supporting # documentation, and that the name of M.I.T. not be used in advertising or # publicity pertaining to distribution of the software without specific, # written prior permission. M.I.T. makes no representations about the # suitability of this software for any purpose. It is provided "as is" # without express or implied warranty. # # Calling this script install-sh is preferred over install.sh, to prevent # `make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. It can only install one file at a time, a restriction # shared with many OS's install programs. # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit="${DOITPROG-}" # put in absolute paths if you don't have them in your path; or use env. vars. mvprog="${MVPROG-mv}" cpprog="${CPPROG-cp}" chmodprog="${CHMODPROG-chmod}" chownprog="${CHOWNPROG-chown}" chgrpprog="${CHGRPPROG-chgrp}" stripprog="${STRIPPROG-strip}" rmprog="${RMPROG-rm}" mkdirprog="${MKDIRPROG-mkdir}" transformbasename="" transform_arg="" instcmd="$mvprog" chmodcmd="$chmodprog 0755" chowncmd="" chgrpcmd="" stripcmd="" rmcmd="$rmprog -f" mvcmd="$mvprog" src="" dst="" dir_arg="" while [ x"$1" != x ]; do case $1 in -c) instcmd="$cpprog" shift continue;; -d) dir_arg=true shift continue;; -m) chmodcmd="$chmodprog $2" shift shift continue;; -o) chowncmd="$chownprog $2" shift shift continue;; -g) chgrpcmd="$chgrpprog $2" shift shift continue;; -s) stripcmd="$stripprog" shift continue;; -t=*) transformarg=`echo $1 | sed 's/-t=//'` shift continue;; -b=*) transformbasename=`echo $1 | sed 's/-b=//'` shift continue;; *) if [ x"$src" = x ] then src=$1 else # this colon is to work around a 386BSD /bin/sh bug : dst=$1 fi shift continue;; esac done if [ x"$src" = x ] then echo "install: no input file specified" exit 1 else true fi if [ x"$dir_arg" != x ]; then dst=$src src="" if [ -d $dst ]; then instcmd=: else instcmd=mkdir fi else # Waiting for this to be detected by the "$instcmd $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if [ -f $src -o -d $src ] then true else echo "install: $src does not exist" exit 1 fi if [ x"$dst" = x ] then echo "install: no destination specified" exit 1 else true fi # If destination is a directory, append the input filename; if your system # does not like double slashes in filenames, you may need to add some logic if [ -d $dst ] then dst="$dst"/`basename $src` else true fi fi ## this sed command emulates the dirname command dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'` # Make sure that the destination directory exists. # this part is taken from Noah Friedman's mkinstalldirs script # Skip lots of stat calls in the usual case. if [ ! -d "$dstdir" ]; then defaultIFS=' ' IFS="${IFS-${defaultIFS}}" oIFS="${IFS}" # Some sh's can't handle IFS=/ for some reason. IFS='%' set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'` IFS="${oIFS}" pathcomp='' while [ $# -ne 0 ] ; do pathcomp="${pathcomp}${1}" shift if [ ! -d "${pathcomp}" ] ; then $mkdirprog "${pathcomp}" else true fi pathcomp="${pathcomp}/" done fi if [ x"$dir_arg" != x ] then $doit $instcmd $dst && if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else true ; fi && if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi && if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi && if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fi else # If we're going to rename the final executable, determine the name now. if [ x"$transformarg" = x ] then dstfile=`basename $dst` else dstfile=`basename $dst $transformbasename | sed $transformarg`$transformbasename fi # don't allow the sed command to completely eliminate the filename if [ x"$dstfile" = x ] then dstfile=`basename $dst` else true fi # Make a temp file name in the proper directory. dsttmp=$dstdir/#inst.$$# # Move or copy the file name to the temp name $doit $instcmd $src $dsttmp && trap "rm -f ${dsttmp}" 0 && # and set any options; do chmod last to preserve setuid bits # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $instcmd $src $dsttmp" command. if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else true;fi && if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi && if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi && if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi && # Now rename the file to the real destination. $doit $rmcmd -f $dstdir/$dstfile && $doit $mvcmd $dsttmp $dstdir/$dstfile fi && exit 0